mirror of
https://github.com/ae-utbm/sith.git
synced 2025-11-10 05:53:06 +00:00
hmac_hexdigest util function
This commit is contained in:
32
api/templates/api/third_party/auth.jinja
vendored
Normal file
32
api/templates/api/third_party/auth.jinja
vendored
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
{% extends "core/base.jinja" %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<form method="post">
|
||||||
|
{% csrf_token %}
|
||||||
|
<h3>{% trans %}Confidentiality{% endtrans %}</h3>
|
||||||
|
<p>
|
||||||
|
{% trans trimmed app=third_party_app %}
|
||||||
|
By ticking this box and clicking on the send button, you
|
||||||
|
acknowledge and agree to provide {{ app }} with your
|
||||||
|
first name, last name, nickname and any other information
|
||||||
|
that was the third party app was explicitly authorized to fetch
|
||||||
|
and that it must have acknowledged to you, in a complete and accurate manner.
|
||||||
|
{% endtrans %}
|
||||||
|
</p>
|
||||||
|
<p class="margin-bottom">
|
||||||
|
{% trans trimmed app=third_party_app, cgu_link=third_party_cgu, sith_cgu_link=sith_cgu %}
|
||||||
|
The privacy policies of <a href="{{ cgu_link }}">{{ app }}</a>
|
||||||
|
and of <a href="{{ sith_cgu_link }}">the Students' Association</a>
|
||||||
|
applies as soon as the form is submitted.
|
||||||
|
{% endtrans %}
|
||||||
|
</p>
|
||||||
|
<div class="row">{{ form.cgu_accepted }} {{ form.cgu_accepted.label_tag() }}</div>
|
||||||
|
<br>
|
||||||
|
<h3 class="margin-bottom">{% trans %}Confirmation of identity{% endtrans %}</h3>
|
||||||
|
<div class="row margin-bottom">
|
||||||
|
{{ form.is_username_valid }} {{ form.is_username_valid.label_tag() }}
|
||||||
|
</div>
|
||||||
|
{% for field in form.hidden_fields() %}{{ field }}{% endfor %}
|
||||||
|
<input type="submit" class="btn btn-blue">
|
||||||
|
</form>
|
||||||
|
{% endblock %}
|
||||||
@@ -12,22 +12,32 @@
|
|||||||
# OR WITHIN THE LOCAL FILE "LICENSE"
|
# OR WITHIN THE LOCAL FILE "LICENSE"
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import hmac
|
||||||
from datetime import date, timedelta
|
from datetime import date, timedelta
|
||||||
|
|
||||||
# Image utils
|
# Image utils
|
||||||
from io import BytesIO
|
from io import BytesIO
|
||||||
from typing import Final
|
from typing import TYPE_CHECKING
|
||||||
|
from urllib.parse import urlencode
|
||||||
|
|
||||||
import PIL
|
import PIL
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.core.files.base import ContentFile
|
from django.core.files.base import ContentFile
|
||||||
from django.core.files.uploadedfile import UploadedFile
|
|
||||||
from django.http import HttpRequest
|
|
||||||
from django.utils.timezone import localdate
|
from django.utils.timezone import localdate
|
||||||
from PIL import ExifTags
|
from PIL import ExifTags
|
||||||
from PIL.Image import Image, Resampling
|
from PIL.Image import Image, Resampling
|
||||||
|
|
||||||
|
if TYPE_CHECKING:
|
||||||
|
from _hashlib import HASH
|
||||||
|
from collections.abc import Buffer, Mapping, Sequence
|
||||||
|
from typing import Any, Callable, Final
|
||||||
|
|
||||||
|
from django.core.files.uploadedfile import UploadedFile
|
||||||
|
from django.http import HttpRequest
|
||||||
|
|
||||||
|
|
||||||
RED_PIXEL_PNG: Final[bytes] = (
|
RED_PIXEL_PNG: Final[bytes] = (
|
||||||
b"\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52"
|
b"\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52"
|
||||||
b"\x00\x00\x00\x01\x00\x00\x00\x01\x08\x02\x00\x00\x00\x90\x77\x53"
|
b"\x00\x00\x00\x01\x00\x00\x00\x01\x08\x02\x00\x00\x00\x90\x77\x53"
|
||||||
@@ -186,7 +196,7 @@ def exif_auto_rotate(image):
|
|||||||
|
|
||||||
def get_client_ip(request: HttpRequest) -> str | None:
|
def get_client_ip(request: HttpRequest) -> str | None:
|
||||||
headers = (
|
headers = (
|
||||||
"X_FORWARDED_FOR", # Common header for proixes
|
"X_FORWARDED_FOR", # Common header for proxies
|
||||||
"FORWARDED", # Standard header defined by RFC 7239.
|
"FORWARDED", # Standard header defined by RFC 7239.
|
||||||
"REMOTE_ADDR", # Default IP Address (direct connection)
|
"REMOTE_ADDR", # Default IP Address (direct connection)
|
||||||
)
|
)
|
||||||
@@ -195,3 +205,30 @@ def get_client_ip(request: HttpRequest) -> str | None:
|
|||||||
return ip
|
return ip
|
||||||
|
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
def hmac_hexdigest(
|
||||||
|
key: str | bytes,
|
||||||
|
data: Mapping[str, Any] | Sequence[tuple[str, Any]],
|
||||||
|
digest: str | Callable[[Buffer], HASH] = "sha256",
|
||||||
|
) -> str:
|
||||||
|
"""Return the hexdigest of the signature of the given data.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
key: the HMAC key used for the signature
|
||||||
|
data: the data to sign
|
||||||
|
digest: a PEP247 hashing algorithm
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
```python
|
||||||
|
data = {
|
||||||
|
"foo": 5,
|
||||||
|
"bar": "somevalue",
|
||||||
|
}
|
||||||
|
hmac_key = secrets.token_hex(64)
|
||||||
|
signature = hmac_hexdigest(hmac_key, data, "sha512")
|
||||||
|
```
|
||||||
|
"""
|
||||||
|
if isinstance(key, str):
|
||||||
|
key = key.encode()
|
||||||
|
return hmac.digest(key, urlencode(data).encode(), digest).hex()
|
||||||
|
|||||||
Reference in New Issue
Block a user