Skip to content
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

DiscussionsLive : mauvaise récupération des informations de l'organisation #3726

Closed
AntoineAugusti opened this issue Jan 17, 2024 · 0 comments · Fixed by #3727
Closed

DiscussionsLive : mauvaise récupération des informations de l'organisation #3726

AntoineAugusti opened this issue Jan 17, 2024 · 0 comments · Fixed by #3727
Assignees
Labels
bug Un truc pas normal qui pose problème

Comments

@AntoineAugusti
Copy link
Member

Dans DiscussionsLive, on essaie de trouver les membres d'une organisation afin de pouvoir remplacer le logo d'un producteur lorsque celui-ci répond et n'a pas d'avatar.

Problème, le code actuel utilise le champ organization qui contient le nom de l'organisation et non son identifiant.

L'API est donc appelée avec le nom de l'organisation et non son identifiant. Ceci fonctionne pour quelques organisations mais pas pour toutes.

curl -I "https://www.data.gouv.fr/api/1/organizations/Ville%20de%20Besancon/"
HTTP/1.1 308 PERMANENT REDIRECT
server: nginx
date: Wed, 17 Jan 2024 14:49:48 GMT
content-type: text/html; charset=utf-8
content-length: 265
location: /api/1/organizations/ville-de-besancon/

redirige bien vers le slug attendu, mais pas pour l'organisation Point d'Accès National transport.data.gouv.fr par exemple.

Il faudrait utiliser le champ organization_id pour être plus robuste.

Lignes concernées :

defp organization_info(%DB.Dataset{organization: nil}), do: :no_organization
defp organization_info(%DB.Dataset{organization: organization}) when is_binary(organization) do
Datagouvfr.Client.Organization.Wrapper.get(organization, restrict_fields: true)
end

@vdegove Navré d'avoir raté ça à l'occasion de #3553 !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Un truc pas normal qui pose problème
Projects
None yet
2 participants