Skip to content
Extraits de code Groupes Projets
Valider ac9cad63 rédigé par Bram's avatar Bram
Parcourir les fichiers

[mod] refactor, put exporting functions in an utils.py

parent 480ae1eb
Branches
Étiquettes
Aucune requête de fusion associée trouvée
import json
from representatives.models import Representative
from django.core.management.base import BaseCommand
from representatives.utils import export_all_representatives
class Command(BaseCommand):
args = '<poll_id poll_id ...>'
help = 'Closes the specified poll for voting'
def handle(self, *args, **options):
result = []
personal_fields = ("first_name", "last_name", "full_name", "birth_place", "cv")
gender_dict = dict(Representative.GENDER)
for representative in Representative.objects.all():
reps = {"id": representative.remote_id}
reps["personal"] = {field: getattr(representative, field) for field in personal_fields}
reps["personal"]["gender"] = gender_dict[representative.gender]
reps["personal"]["birth_date"] = representative.birth_date.strftime("%F") if representative.birth_date else None
reps["contact"] = {}
reps["contact"]["emails"] = [{"email": email.email, "type": email.kind} for email in representative.email_set.all()]
reps["contact"]["websites"] = [{"website": website.url, "type": website.kind} for website in representative.website_set.all()]
reps["contact"]["phones"] = [{"phone": phone.number, "type": phone.kind, "address": phone.address_id, "id": phone.id} for phone in representative.phone_set.all()]
reps["contact"]["address"] = [{
"id": address.id,
"country": {"name": address.country.name, "code": address.country.code},
"city": address.city,
"street": address.street,
"number": address.number,
"postcode": address.postcode,
"floor": address.floor,
"office_number": address.office_number,
"type": address.kind,
"geo": None,
"phones": [phone.id for phone in address.phone_set.all()],
} for address in representative.address_set.all()]
reps["mandates"] = [{
"name": mandate.name,
"type": mandate.kind,
"short_id": mandate.short_id,
"url_official": mandate.url,
"constituency": mandate.constituency,
"role": mandate.role,
"begin_date": mandate.begin_date.strftime("%F") if mandate.begin_date else None,
"end_date": mandate.end_date.strftime("%F") if mandate.end_date else None,
"current": mandate.active,
} for mandate in representative.mandate_set.all()]
result.append(reps)
print json.dumps(result, indent=4)
print json.dumps(export_all_representatives(), indent=4)
from representatives.models import Representative
PERSONAL_FIELDS = ("first_name", "last_name", "full_name", "birth_place", "cv")
GENDER_DICT = dict(Representative.GENDER)
def export_a_representative(representative):
reps = {"id": representative.remote_id}
reps["personal"] = {field: getattr(representative, field) for field in PERSONAL_FIELDS}
reps["personal"]["gender"] = GENDER_DICT[representative.gender]
reps["personal"]["birth_date"] = representative.birth_date.strftime("%F") if representative.birth_date else None
reps["contact"] = {}
reps["contact"]["emails"] = [{"email": email.email, "type": email.kind} for email in representative.email_set.all()]
reps["contact"]["websites"] = [{"website": website.url, "type": website.kind} for website in representative.website_set.all()]
reps["contact"]["phones"] = [{"phone": phone.number, "type": phone.kind, "address": phone.address_id, "id": phone.id} for phone in representative.phone_set.all()]
reps["contact"]["address"] = [{
"id": address.id,
"country": {"name": address.country.name, "code": address.country.code},
"city": address.city,
"street": address.street,
"number": address.number,
"postcode": address.postcode,
"floor": address.floor,
"office_number": address.office_number,
"type": address.kind,
"geo": None,
"phones": [phone.id for phone in address.phone_set.all()],
} for address in representative.address_set.all()]
reps["mandates"] = [{
"name": mandate.name,
"type": mandate.kind,
"short_id": mandate.short_id,
"url_official": mandate.url,
"constituency": mandate.constituency,
"role": mandate.role,
"begin_date": mandate.begin_date.strftime("%F") if mandate.begin_date else None,
"end_date": mandate.end_date.strftime("%F") if mandate.end_date else None,
"current": mandate.active,
} for mandate in representative.mandate_set.all()]
return reps
def export_all_representatives():
return [export_a_representative(representative) for representative in Representative.objects.all()]
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Veuillez vous inscrire ou vous pour commenter