dmart 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- alembic/__init__.py +0 -0
- alembic/env.py +91 -0
- api/__init__.py +0 -0
- api/info/__init__.py +0 -0
- api/info/router.py +109 -0
- api/managed/__init__.py +0 -0
- api/managed/router.py +1541 -0
- api/managed/utils.py +1850 -0
- api/public/__init__.py +0 -0
- api/public/router.py +758 -0
- api/qr/__init__.py +0 -0
- api/qr/router.py +108 -0
- api/user/__init__.py +0 -0
- api/user/router.py +1401 -0
- api/user/service.py +270 -0
- bundler.py +44 -0
- config/__init__.py +0 -0
- config/channels.json +11 -0
- config/notification.json +17 -0
- data_adapters/__init__.py +0 -0
- data_adapters/adapter.py +16 -0
- data_adapters/base_data_adapter.py +467 -0
- data_adapters/file/__init__.py +0 -0
- data_adapters/file/adapter.py +2043 -0
- data_adapters/file/adapter_helpers.py +1013 -0
- data_adapters/file/archive.py +150 -0
- data_adapters/file/create_index.py +331 -0
- data_adapters/file/create_users_folders.py +52 -0
- data_adapters/file/custom_validations.py +68 -0
- data_adapters/file/drop_index.py +40 -0
- data_adapters/file/health_check.py +560 -0
- data_adapters/file/redis_services.py +1110 -0
- data_adapters/helpers.py +27 -0
- data_adapters/sql/__init__.py +0 -0
- data_adapters/sql/adapter.py +3210 -0
- data_adapters/sql/adapter_helpers.py +491 -0
- data_adapters/sql/create_tables.py +451 -0
- data_adapters/sql/create_users_folders.py +53 -0
- data_adapters/sql/db_to_json_migration.py +482 -0
- data_adapters/sql/health_check_sql.py +232 -0
- data_adapters/sql/json_to_db_migration.py +454 -0
- data_adapters/sql/update_query_policies.py +101 -0
- data_generator.py +81 -0
- dmart-0.1.0.dist-info/METADATA +27 -0
- dmart-0.1.0.dist-info/RECORD +106 -0
- dmart-0.1.0.dist-info/WHEEL +5 -0
- dmart-0.1.0.dist-info/entry_points.txt +2 -0
- dmart-0.1.0.dist-info/top_level.txt +23 -0
- dmart.py +513 -0
- get_settings.py +7 -0
- languages/__init__.py +0 -0
- languages/arabic.json +15 -0
- languages/english.json +16 -0
- languages/kurdish.json +14 -0
- languages/loader.py +13 -0
- main.py +506 -0
- migrate.py +24 -0
- models/__init__.py +0 -0
- models/api.py +203 -0
- models/core.py +597 -0
- models/enums.py +255 -0
- password_gen.py +8 -0
- plugins/__init__.py +0 -0
- pytests/__init__.py +0 -0
- pytests/api_user_models_erros_test.py +16 -0
- pytests/api_user_models_requests_test.py +98 -0
- pytests/archive_test.py +72 -0
- pytests/base_test.py +300 -0
- pytests/get_settings_test.py +14 -0
- pytests/json_to_db_migration_test.py +237 -0
- pytests/service_test.py +26 -0
- pytests/test_info.py +55 -0
- pytests/test_status.py +15 -0
- run_notification_campaign.py +98 -0
- scheduled_notification_handler.py +121 -0
- schema_migration.py +208 -0
- schema_modulate.py +192 -0
- set_admin_passwd.py +55 -0
- sync.py +202 -0
- utils/__init__.py +0 -0
- utils/access_control.py +306 -0
- utils/async_request.py +8 -0
- utils/exporter.py +309 -0
- utils/firebase_notifier.py +57 -0
- utils/generate_email.py +38 -0
- utils/helpers.py +352 -0
- utils/hypercorn_config.py +12 -0
- utils/internal_error_code.py +60 -0
- utils/jwt.py +124 -0
- utils/logger.py +167 -0
- utils/middleware.py +99 -0
- utils/notification.py +75 -0
- utils/password_hashing.py +16 -0
- utils/plugin_manager.py +215 -0
- utils/query_policies_helper.py +112 -0
- utils/regex.py +44 -0
- utils/repository.py +529 -0
- utils/router_helper.py +19 -0
- utils/settings.py +165 -0
- utils/sms_notifier.py +21 -0
- utils/social_sso.py +67 -0
- utils/templates/activation.html.j2 +26 -0
- utils/templates/reminder.html.j2 +17 -0
- utils/ticket_sys_utils.py +203 -0
- utils/web_notifier.py +29 -0
- websocket.py +231 -0
api/qr/__init__.py
ADDED
|
File without changes
|
api/qr/router.py
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
from time import time
|
|
2
|
+
from fastapi import APIRouter, Depends, Path, Body, status
|
|
3
|
+
from fastapi.responses import StreamingResponse
|
|
4
|
+
from api.managed.router import retrieve_entry_meta
|
|
5
|
+
from utils.internal_error_code import InternalErrorCode
|
|
6
|
+
from utils.jwt import JWTBearer
|
|
7
|
+
from io import BytesIO
|
|
8
|
+
import models.api as api
|
|
9
|
+
import utils.regex as regex
|
|
10
|
+
import hmac
|
|
11
|
+
import hashlib
|
|
12
|
+
from utils.settings import settings
|
|
13
|
+
from models.enums import ResourceType
|
|
14
|
+
from fastapi.responses import ORJSONResponse
|
|
15
|
+
|
|
16
|
+
router = APIRouter(default_response_class=ORJSONResponse)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
@router.get("/generate/{resource_type}/{space_name}/{subpath:path}/{shortname}")
|
|
20
|
+
async def generate_qr_user_profile(
|
|
21
|
+
resource_type: ResourceType = Path(...),
|
|
22
|
+
space_name: str = Path(..., pattern=regex.SPACENAME, examples=["data"]),
|
|
23
|
+
subpath: str = Path(..., pattern=regex.SUBPATH, examples=["/content"]),
|
|
24
|
+
shortname: str = Path(..., pattern=regex.SHORTNAME,
|
|
25
|
+
examples=["unique_shortname"]),
|
|
26
|
+
logged_in_user=Depends(JWTBearer()),
|
|
27
|
+
) -> StreamingResponse:
|
|
28
|
+
data: str | dict = await retrieve_entry_meta(
|
|
29
|
+
resource_type,
|
|
30
|
+
space_name,
|
|
31
|
+
subpath,
|
|
32
|
+
shortname,
|
|
33
|
+
logged_in_user=logged_in_user,
|
|
34
|
+
)
|
|
35
|
+
|
|
36
|
+
if (
|
|
37
|
+
isinstance(data, dict)
|
|
38
|
+
and data.get("owner_shortname") != logged_in_user
|
|
39
|
+
and f"management/{subpath}/{data['shortname']}"
|
|
40
|
+
!= f"{space_name}/users/{logged_in_user}"
|
|
41
|
+
):
|
|
42
|
+
raise api.Exception(
|
|
43
|
+
status.HTTP_400_BAD_REQUEST,
|
|
44
|
+
api.Error(type="qr", code=InternalErrorCode.QR_ERROR,
|
|
45
|
+
message="QR cannot be generated"),
|
|
46
|
+
)
|
|
47
|
+
m = hmac.new(settings.jwt_secret.encode(), digestmod=hashlib.sha256)
|
|
48
|
+
data = f"{resource_type}/{space_name}/{subpath}/{shortname}"
|
|
49
|
+
date = int(time())
|
|
50
|
+
m.update(f"{date}.{data}".encode())
|
|
51
|
+
hexed_data = m.hexdigest()
|
|
52
|
+
|
|
53
|
+
try:
|
|
54
|
+
segno = __import__("segno")
|
|
55
|
+
qrcode = segno.make(f"{date}.{hexed_data}")
|
|
56
|
+
v_path = BytesIO()
|
|
57
|
+
qrcode.save(v_path, kind="png", dpi=600, scale=10)
|
|
58
|
+
|
|
59
|
+
return StreamingResponse(iter([v_path.getvalue()]), media_type="image/png")
|
|
60
|
+
except ModuleNotFoundError:
|
|
61
|
+
raise api.Exception(
|
|
62
|
+
status.HTTP_400_BAD_REQUEST,
|
|
63
|
+
api.Error(
|
|
64
|
+
type="request",
|
|
65
|
+
code=InternalErrorCode.NOT_ALLOWED,
|
|
66
|
+
message="segno is not installed!",
|
|
67
|
+
),
|
|
68
|
+
)
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
@router.post("/validate")
|
|
72
|
+
async def validate_qr_user_profile(
|
|
73
|
+
resource_type: ResourceType = Body(...),
|
|
74
|
+
space_name: str = Body(..., pattern=regex.SPACENAME, examples=["data"]),
|
|
75
|
+
subpath: str = Body(..., pattern=regex.SUBPATH, examples=["/content"]),
|
|
76
|
+
shortname: str = Body(..., pattern=regex.SHORTNAME,
|
|
77
|
+
examples=["unique_shortname"]),
|
|
78
|
+
logged_in_user=Depends(JWTBearer()),
|
|
79
|
+
qr_data: str = Body(..., embed=True),
|
|
80
|
+
):
|
|
81
|
+
await retrieve_entry_meta(
|
|
82
|
+
resource_type,
|
|
83
|
+
space_name,
|
|
84
|
+
subpath,
|
|
85
|
+
shortname,
|
|
86
|
+
logged_in_user=logged_in_user,
|
|
87
|
+
)
|
|
88
|
+
arr_data = qr_data.split(".")
|
|
89
|
+
req_date, req_data = arr_data[0], arr_data[1]
|
|
90
|
+
if int(req_date) + 60 < int(time()):
|
|
91
|
+
raise api.Exception(
|
|
92
|
+
status.HTTP_400_BAD_REQUEST,
|
|
93
|
+
api.Error(type="qr", code=InternalErrorCode.QR_EXPIRED,
|
|
94
|
+
message="QR did expire"),
|
|
95
|
+
)
|
|
96
|
+
data = f"{resource_type}/{space_name}/{subpath}/{shortname}"
|
|
97
|
+
m = hmac.new(settings.jwt_secret.encode(), digestmod=hashlib.sha256)
|
|
98
|
+
m.update(f"{req_date}.{data}".encode())
|
|
99
|
+
hexed_data = m.hexdigest()
|
|
100
|
+
|
|
101
|
+
if hexed_data == req_data:
|
|
102
|
+
return api.Response(status=api.Status.success)
|
|
103
|
+
else:
|
|
104
|
+
raise api.Exception(
|
|
105
|
+
status.HTTP_400_BAD_REQUEST,
|
|
106
|
+
api.Error(type="qr", code=InternalErrorCode.QR_INVALID,
|
|
107
|
+
message="Invalid data passed"),
|
|
108
|
+
)
|
api/user/__init__.py
ADDED
|
File without changes
|