-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: API pour le service Datacube (#1160)
- Loading branch information
Showing
12 changed files
with
232 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
from rest_framework import serializers | ||
|
||
from lemarche.tenders.models import Tender | ||
|
||
|
||
class SimpleTenderSerializer(serializers.ModelSerializer): | ||
slug = serializers.CharField(read_only=True) | ||
company_name = serializers.CharField(source="author.company.name", read_only=True) | ||
company_slug = serializers.CharField(source="author.company.slug", read_only=True) | ||
author_email = serializers.CharField(source="author.email", read_only=True) | ||
|
||
class Meta: | ||
model = Tender | ||
fields = [ | ||
"created_at", | ||
"updated_at", | ||
"title", | ||
"slug", | ||
"kind", | ||
"presta_type", | ||
"amount", | ||
"amount_exact", | ||
"status", | ||
"source", | ||
"author_email", | ||
"company_name", | ||
"company_slug", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
import freezegun | ||
from django.test import TestCase, override_settings | ||
from django.urls import reverse | ||
|
||
from lemarche.companies.factories import CompanyFactory | ||
from lemarche.tenders.factories import TenderFactory | ||
from lemarche.users.factories import UserFactory | ||
from lemarche.users.models import User | ||
|
||
|
||
class DatacubeApiTest(TestCase): | ||
maxDiff = None | ||
|
||
@override_settings(DATACUBE_API_TOKEN="bar") | ||
def test_list_tenders_authentication(self): | ||
url = reverse("api:datacube-tenders") | ||
response = self.client.get(url) | ||
self.assertEqual(response.status_code, 401) | ||
|
||
# an appropriate token from the settings is required | ||
response = self.client.get(url, headers={"Authorization": "Token "}) | ||
self.assertEqual(response.status_code, 401) | ||
|
||
response = self.client.get(url, headers={"Authorization": "Token foo"}) | ||
self.assertEqual(response.status_code, 401) | ||
|
||
response = self.client.get(url, headers={"Authorization": "Token bar"}) | ||
self.assertEqual(response.status_code, 200) | ||
|
||
# or alternatively, if you're logged in as superuser | ||
admin = UserFactory(kind="ADMIN") | ||
self.client.force_login(admin) | ||
response = self.client.get(url) | ||
self.assertEqual(response.status_code, 403) | ||
|
||
admin.is_superuser = True | ||
admin.save(update_fields=["is_superuser"]) | ||
response = self.client.get(url) | ||
self.assertEqual(response.status_code, 200) | ||
|
||
@freezegun.freeze_time("2024-06-21 12:23:34") | ||
@override_settings(DATACUBE_API_TOKEN="bar") | ||
def test_list_tenders_content(self): | ||
url = reverse("api:datacube-tenders") | ||
response = self.client.get(url, headers={"Authorization": "Token bar"}) | ||
self.assertEqual(response.status_code, 200) | ||
self.assertEqual(response.json(), {"count": 0, "next": None, "previous": None, "results": []}) | ||
|
||
user = UserFactory(kind=User.KIND_BUYER) | ||
CompanyFactory(name="Lagarde et Fils", users=[user]) | ||
TenderFactory(title="Sébastien Le Lopez", amount="0-42K", author=user, presta_type=["FANFAN", "LA", "TULIPE"]) | ||
|
||
# no associated company | ||
TenderFactory(title="Marc Henry", amount_exact=697) | ||
|
||
response = self.client.get(url, headers={"Authorization": "Token bar"}) | ||
self.assertEqual(response.status_code, 200) | ||
self.assertEqual( | ||
response.json(), | ||
{ | ||
"count": 2, | ||
"next": None, | ||
"previous": None, | ||
"results": [ | ||
{ | ||
"amount": "0-42K", | ||
"amount_exact": None, | ||
"author_email": "email1@example.com", | ||
"company_name": "Lagarde et Fils", | ||
"company_slug": "lagarde-et-fils", | ||
"created_at": "2024-06-21T14:23:34+02:00", | ||
"kind": "QUOTE", | ||
"presta_type": ["FANFAN", "LA", "TULIPE"], | ||
"slug": "sebastien-le-lopez", | ||
"source": "FORM", | ||
"status": "SENT", | ||
"title": "Sébastien Le Lopez", | ||
"updated_at": "2024-06-21T14:23:34+02:00", | ||
}, | ||
{ | ||
"amount": None, | ||
"amount_exact": 697, | ||
"author_email": "email2@example.com", | ||
"created_at": "2024-06-21T14:23:34+02:00", | ||
"kind": "QUOTE", | ||
"presta_type": [], | ||
"slug": "marc-henry", | ||
"source": "FORM", | ||
"status": "SENT", | ||
"title": "Marc Henry", | ||
"updated_at": "2024-06-21T14:23:34+02:00", | ||
}, | ||
], | ||
}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
from django.conf import settings | ||
from django.contrib.auth.models import AnonymousUser | ||
from drf_spectacular.utils import extend_schema | ||
from rest_framework import authentication, exceptions, generics, permissions | ||
|
||
from lemarche.tenders.models import Tender | ||
|
||
from .serializers import SimpleTenderSerializer | ||
|
||
|
||
class DatacubeApiAnonymousUser(AnonymousUser): | ||
pass | ||
|
||
|
||
class DatacubeApiAuthentication(authentication.TokenAuthentication): | ||
def authenticate_credentials(self, key): | ||
configured_token = settings.DATACUBE_API_TOKEN | ||
if configured_token and key == configured_token: | ||
return (DatacubeApiAnonymousUser(), key) | ||
raise exceptions.AuthenticationFailed("Invalid token.") | ||
|
||
|
||
class HasTokenOrIsSuperadmin(permissions.BasePermission): | ||
def has_permission(self, request, view): | ||
if isinstance(request.user, DatacubeApiAnonymousUser): | ||
return True | ||
return request.user.is_superuser | ||
|
||
|
||
class SimpleTenderList(generics.ListAPIView): | ||
"""Simplified list of tenders along with their listed companies. | ||
curl -H "Authorization: Token xxxxx" http://marche.fqdn/api/datacube-tenders/ | ||
""" | ||
|
||
queryset = ( | ||
Tender.objects.filter( | ||
created_at__gte=settings.DATACUBE_API_TENDER_START_DATE, | ||
) | ||
.exclude(author__isnull=True) | ||
.prefetch_related("author", "author__company") | ||
.order_by("-created_at") | ||
.all() | ||
) | ||
serializer_class = SimpleTenderSerializer | ||
permission_classes = [] | ||
authentication_classes = [] | ||
|
||
authentication_classes = ( | ||
DatacubeApiAuthentication, | ||
authentication.SessionAuthentication, | ||
) | ||
permission_classes = (HasTokenOrIsSuperadmin,) | ||
|
||
@extend_schema(exclude=True) | ||
def get(self, request, *args, **kwargs): | ||
return super().get(self, request, *args, **kwargs) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters