Skip to content

Commit

Permalink
style(api): restore data_utils spaces (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
mvergez authored and amandine-sahl committed Dec 8, 2023
1 parent dcd9d44 commit a50d2ca
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion backend/gn_module_monitoring/routes/data_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
d'utilisateurs
de nomenclature
de taxonomie
TODO cache
"""

Expand Down Expand Up @@ -115,6 +116,7 @@ def get_util_nomenclature_api(code_nomenclature_type, cd_nomenclature):
revoie un champ d'un object de type nomenclature
à partir de son type et de son cd_nomenclature
renvoie l'objet entier si field_name renseigné en paramètre de route est 'all'
:param code_nomenclature_type:
:param cd_nomenclature:
:return object entier si field_name = all, la valeur du champs defini par field_name sinon
Expand Down Expand Up @@ -164,6 +166,7 @@ def get_util_from_id_api(type_util, id):
"""
revoie un champ d'un object de type nomenclature, taxonomy, utilisateur, ...
renvoie l'objet entier si field_name renseigné en paramètre de route est 'all'
:param type_util: 'nomenclature' | 'taxonomy' | 'utilisateur' | etc....
:param id: id de l'object requis
:type type_util: str
Expand Down Expand Up @@ -207,18 +210,21 @@ def get_util_from_ids_api(type_util, ids):
"""
variante de get_util_from_id_api pour plusieurs id
renvoie un tableau de valeur (ou de dictionnaire si key est 'all')
parametre get
key: all renvoie tout l'objet
sinon renvoie un champ
separator_out:
pour reformer une chaine de caractere a partir du tableau résultat de la requete
si separator_out == ' ,'
alors ['jean', 'pierre', 'paul'].join(separator_out) -> 'jean, pierre, paul'
:param type_util: 'nomenclature' | 'taxonomy' | 'utilisateur'
:param ids: plusieurs id reliée par des '-' (ex: 1-123-3-4)
:type type_util: str
:type ids: str
:return list si key=all ou chaine de caratere
"""

field_name = request.args.get("field_name", "all")
Expand All @@ -244,4 +250,4 @@ def get_util_from_ids_api(type_util, ids):
return [r.as_dict() for r in res]

# renvoie une chaine de caratère
return separator_out.join([r[0] for r in res])
return separator_out.join([r[0] for r in res])

0 comments on commit a50d2ca

Please sign in to comment.