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

[feat] Addressbook API and more #929

Open
wants to merge 10 commits into
base: develop
Choose a base branch
from
Open

Conversation

etchegom
Copy link
Collaborator

@etchegom etchegom commented Jan 14, 2025

Il s'agit de :

  • Une correction de bug
  • Une nouvelle fonctionnalité programmée
  • Une nouvelle fonctionnalité spontanée

Décrivez vos changements

  • ajout du model OrganizationGroup
  • API CRUD contacts
  • API CRUD organisations
  • API CRUD groupes d'organisations
  • recherche des contacts (vector & watson)
  • ajout d'une FK contact dans le model TaskFollowup et modification des payload liés
  • mise à jour des endpoints d'API task-followup

Notes:

  • j'ai splitté les tests de addressbook en plusieurs modules pour davantage de clarté
  • j'ai déplacé et renommé la classe existante de SearchFilter dans la partie "rest", et je l'ai amélioré pour ajouter du ranking, afin de répondre aux specs de la recherche de contacts. Il faudrait voir si on peut utiliser watson dans une autre class de type SearchFilter et comparer la pertinence des résultats et l'usage.
  • Les API addressbook utilisent désormais une pagination de type limit/offset, il faut vérifier la non-regression.
  • J'ai ajouté un commutateur pour activer la recherche vector/watson dans les contacts

Checklist d'acceptation de revue de code

  • Aucun texte ne fait référence à du vocabulaire spécifique d'un métier
  • Mon code est auto-documenté ou la documentation a été mise à jour/créée
  • La gestion du multi-portail a été prise en compte
  • L'accessibilité a été prise en compte
  • Pre-commit est configuré et a été lancé
  • Des tests couvrant le code changé ont été ajoutés/modifiés
  • L'ensemble des tests front et back sont au vert

Demandes

  • Je souhaite un déploiement en préproduction

@etchegom etchegom self-assigned this Jan 16, 2025
recoco/utils.py Outdated Show resolved Hide resolved
@etchegom etchegom changed the title 🚧 [feat] Addressbook API and more [feat] Addressbook API and more Jan 20, 2025
@etchegom etchegom force-pushed the feat/addressbook-api branch 2 times, most recently from 5c4a6b8 to 9b88bd6 Compare January 21, 2025 10:05
recoco/rest_api/filters.py Outdated Show resolved Hide resolved
@etchegom etchegom marked this pull request as ready for review January 21, 2025 16:05
Comment on lines 89 to 96
class WatsonSearchFilter(BaseSearchFilter):
def filter_queryset(self, request, queryset, view):
search_terms = " ".join(self.get_search_terms(request))
return (
watson_search.filter(queryset, search_text=search_terms)
.annotate(search_rank=F("watson_rank"))
.filter(search_rank__gte=self.get_search_min_rank(view, request))
)
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ca fonctionne avec watson, mais pour le moment je ne sais pas faire:

  • booster des champs les uns par rapport aux autres
  • ajouter une config "french"

else:
search_vector += _vector

search_query = SearchQuery(search_terms, config="french")
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@etchegom etchegom force-pushed the feat/addressbook-api branch 2 times, most recently from 0ac21aa to 934befd Compare January 24, 2025 09:29
@etchegom etchegom force-pushed the feat/addressbook-api branch 2 times, most recently from 1523612 to ec58903 Compare January 27, 2025 09:37
@etchegom etchegom force-pushed the feat/addressbook-api branch from c8e796b to 07fda9a Compare January 28, 2025 07:51
from recoco.utils import is_staff_for_site


class IsStaff(BasePermission):
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ça pourrait être pas mal de l'appeler IsStaffForSite pour éviter les confusion avec Staff Recoco

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

✔️



class VectorSearchFilter(BaseSearchFilter):

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pourrais tu documenter en quelques mots ce que ça fait stp ?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

✔️

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants