-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat 1256 runner to not use meetup api to display events #1335
Feat 1256 runner to not use meetup api to display events #1335
Conversation
Par contre je n'ai pas trouvé de moyen de tester le runner (en l'éxécutant) @agallou |
$this->meetupClient = $meetupClient; | ||
$this->officiesCollection = new OfficesCollection(); | ||
$this->transformer = new Transformer($this->officiesCollection); | ||
$this->meetupRepository = $meetupRepository; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pour moi il faut conserver l'appel au transformer. Le format de ce qu'on envoie à Algolia doit toujours être celui-ci :
public function transform(array $meetup) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok je modifie ça à l'occasion
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
C'est fait j'ai restoré le transformer
par contre j'ai des doutes sur le faite qu'il fasse lui passer OfficesCollections
à l'instanciation. Le contenu de la méthode transform
me parait également peut adapté puis qu'on a un tableau d'objet Meetups désormais à traiter. Comment puis-je tester tout ca @agallou ? En modifiant tests/units/AppBundle/Indexation/Meetups/Transformer.php
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Le plus simple que je vois est de se créer un compte de test sur Algolia.
De modifier les paramètres lié à algolia dans le parameters.yml :
web/app/config/parameters.yml.dist-docker
Line 20 in 6c24a04
algolia_app_id: DVB92YWTPE |
Et de relancer
indexing:meetups
.Et ensuite aller voir cette page en local : https://afup.org/meetups/
Pour moi le officesCollection peux rester, il permet d'en récupérer les libellés, mais effectivement il faut adapter le transformer pour non plus traiter un tableau qui viens de l'API meetup, mais de la base de données.
(au besoin si tu veux on peux s'appeler si ça peux être plus clair)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Je re-regarde ca dès que possible et je te redis
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Voilà c'est fait @agallou 🙂
…to feat-1256-runner-to-not-use-meetup-api-to-display-events
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bravo 💪
Completes #1300 to solve #1256