Skip to content
Extraits de code Groupes Projets
Valider 40529c54 rédigé par Jamesie Pic's avatar Jamesie Pic
Parcourir les fichiers

Signals update

representative_post_save is gone, thanks to memopol rewrite.

It was replaced with representative_pre_import, which allows skipping
some meps.
parent e6d4e44e
Branches
Étiquettes
Aucune requête de fusion associée trouvée
......@@ -18,8 +18,8 @@ from representatives.models import (Address, Constituency, Country, Email,
logger = logging.getLogger(__name__)
representative_post_save = django.dispatch.Signal(
providing_args=['representative', 'data'])
representative_pre_import = django.dispatch.Signal(
providing_args=['representative_data'])
def _parse_date(date):
......@@ -81,6 +81,16 @@ class ParltrackImporter(GenericImporter):
mep_json['Name']['full'], mep_json['UserID'])
return
# Some versions of memopol will connect to this and skip inactive meps.
responses = representative_pre_import.send(sender=self,
representative_data=mep_json)
for receiver, response in responses:
if response is False:
logger.debug(
'Skipping MEP %s', mep_json['Name']['full'])
return
try:
representative = Representative.objects.get(remote_id=remote_id)
except Representative.DoesNotExist:
......@@ -95,14 +105,6 @@ class ParltrackImporter(GenericImporter):
self.add_contacts(representative, mep_json)
# if you have memopol installed, this hook will trigger
# the legislature.models.mempol_representative to synchronize with
# legislature.models subclasses. If you choose a one-to-one relation
# instead then good for you, you made a wise decision and this won't do
# anything !
representative_post_save.send(
sender=self, representative=representative, data=mep_json)
logger.debug('Imported MEP %s', unicode(representative))
return representative
......
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