unrealon 1.0.9__py3-none-any.whl → 1.1.1__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.
- unrealon/__init__.py +23 -21
- unrealon-1.1.1.dist-info/METADATA +722 -0
- unrealon-1.1.1.dist-info/RECORD +82 -0
- {unrealon-1.0.9.dist-info → unrealon-1.1.1.dist-info}/WHEEL +1 -1
- unrealon-1.1.1.dist-info/entry_points.txt +9 -0
- {unrealon-1.0.9.dist-info → unrealon-1.1.1.dist-info/licenses}/LICENSE +1 -1
- unrealon_bridge/__init__.py +114 -0
- unrealon_bridge/cli.py +316 -0
- unrealon_bridge/client/__init__.py +93 -0
- unrealon_bridge/client/base.py +78 -0
- unrealon_bridge/client/commands.py +89 -0
- unrealon_bridge/client/connection.py +90 -0
- unrealon_bridge/client/events.py +65 -0
- unrealon_bridge/client/health.py +38 -0
- unrealon_bridge/client/html_parser.py +146 -0
- unrealon_bridge/client/logging.py +139 -0
- unrealon_bridge/client/proxy.py +70 -0
- unrealon_bridge/client/scheduler.py +450 -0
- unrealon_bridge/client/session.py +70 -0
- unrealon_bridge/configs/__init__.py +14 -0
- unrealon_bridge/configs/bridge_config.py +212 -0
- unrealon_bridge/configs/bridge_config.yaml +39 -0
- unrealon_bridge/models/__init__.py +138 -0
- unrealon_bridge/models/base.py +28 -0
- unrealon_bridge/models/command.py +41 -0
- unrealon_bridge/models/events.py +40 -0
- unrealon_bridge/models/html_parser.py +79 -0
- unrealon_bridge/models/logging.py +55 -0
- unrealon_bridge/models/parser.py +63 -0
- unrealon_bridge/models/proxy.py +41 -0
- unrealon_bridge/models/requests.py +95 -0
- unrealon_bridge/models/responses.py +88 -0
- unrealon_bridge/models/scheduler.py +592 -0
- unrealon_bridge/models/session.py +28 -0
- unrealon_bridge/server/__init__.py +91 -0
- unrealon_bridge/server/base.py +171 -0
- unrealon_bridge/server/handlers/__init__.py +23 -0
- unrealon_bridge/server/handlers/command.py +110 -0
- unrealon_bridge/server/handlers/html_parser.py +139 -0
- unrealon_bridge/server/handlers/logging.py +95 -0
- unrealon_bridge/server/handlers/parser.py +95 -0
- unrealon_bridge/server/handlers/proxy.py +75 -0
- unrealon_bridge/server/handlers/scheduler.py +545 -0
- unrealon_bridge/server/handlers/session.py +66 -0
- unrealon_browser/__init__.py +61 -18
- unrealon_browser/{src/cli → cli}/browser_cli.py +6 -13
- unrealon_browser/{src/cli → cli}/cookies_cli.py +5 -1
- unrealon_browser/{src/core → core}/browser_manager.py +2 -2
- unrealon_browser/{src/managers → managers}/captcha.py +1 -1
- unrealon_browser/{src/managers → managers}/cookies.py +1 -1
- unrealon_browser/managers/logger_bridge.py +231 -0
- unrealon_browser/{src/managers → managers}/profile.py +1 -1
- unrealon_driver/__init__.py +73 -19
- unrealon_driver/browser/__init__.py +8 -0
- unrealon_driver/browser/config.py +74 -0
- unrealon_driver/browser/manager.py +416 -0
- unrealon_driver/exceptions.py +28 -0
- unrealon_driver/parser/__init__.py +55 -0
- unrealon_driver/parser/cli_manager.py +141 -0
- unrealon_driver/parser/daemon_manager.py +227 -0
- unrealon_driver/parser/managers/__init__.py +46 -0
- unrealon_driver/parser/managers/browser.py +51 -0
- unrealon_driver/parser/managers/config.py +281 -0
- unrealon_driver/parser/managers/error.py +412 -0
- unrealon_driver/parser/managers/html.py +732 -0
- unrealon_driver/parser/managers/logging.py +609 -0
- unrealon_driver/parser/managers/result.py +321 -0
- unrealon_driver/parser/parser_manager.py +628 -0
- unrealon/sdk_config.py +0 -88
- unrealon-1.0.9.dist-info/METADATA +0 -810
- unrealon-1.0.9.dist-info/RECORD +0 -246
- unrealon_browser/pyproject.toml +0 -182
- unrealon_browser/src/__init__.py +0 -62
- unrealon_browser/src/managers/logger_bridge.py +0 -395
- unrealon_driver/README.md +0 -204
- unrealon_driver/pyproject.toml +0 -187
- unrealon_driver/src/__init__.py +0 -90
- unrealon_driver/src/cli/__init__.py +0 -10
- unrealon_driver/src/cli/main.py +0 -66
- unrealon_driver/src/cli/simple.py +0 -510
- unrealon_driver/src/config/__init__.py +0 -11
- unrealon_driver/src/config/auto_config.py +0 -478
- unrealon_driver/src/core/__init__.py +0 -18
- unrealon_driver/src/core/exceptions.py +0 -289
- unrealon_driver/src/core/parser.py +0 -638
- unrealon_driver/src/dto/__init__.py +0 -66
- unrealon_driver/src/dto/cli.py +0 -119
- unrealon_driver/src/dto/config.py +0 -18
- unrealon_driver/src/dto/events.py +0 -237
- unrealon_driver/src/dto/execution.py +0 -313
- unrealon_driver/src/dto/services.py +0 -311
- unrealon_driver/src/execution/__init__.py +0 -23
- unrealon_driver/src/execution/daemon_mode.py +0 -317
- unrealon_driver/src/execution/interactive_mode.py +0 -88
- unrealon_driver/src/execution/modes.py +0 -45
- unrealon_driver/src/execution/scheduled_mode.py +0 -209
- unrealon_driver/src/execution/test_mode.py +0 -250
- unrealon_driver/src/logging/__init__.py +0 -24
- unrealon_driver/src/logging/driver_logger.py +0 -512
- unrealon_driver/src/services/__init__.py +0 -24
- unrealon_driver/src/services/browser_service.py +0 -726
- unrealon_driver/src/services/llm/__init__.py +0 -15
- unrealon_driver/src/services/llm/browser_llm_service.py +0 -363
- unrealon_driver/src/services/llm/llm.py +0 -195
- unrealon_driver/src/services/logger_service.py +0 -232
- unrealon_driver/src/services/metrics_service.py +0 -185
- unrealon_driver/src/services/scheduler_service.py +0 -489
- unrealon_driver/src/services/websocket_service.py +0 -362
- unrealon_driver/src/utils/__init__.py +0 -16
- unrealon_driver/src/utils/service_factory.py +0 -317
- unrealon_driver/src/utils/time_formatter.py +0 -338
- unrealon_llm/README.md +0 -44
- unrealon_llm/__init__.py +0 -26
- unrealon_llm/pyproject.toml +0 -154
- unrealon_llm/src/__init__.py +0 -228
- unrealon_llm/src/cli/__init__.py +0 -0
- unrealon_llm/src/core/__init__.py +0 -11
- unrealon_llm/src/core/smart_client.py +0 -438
- unrealon_llm/src/dto/__init__.py +0 -155
- unrealon_llm/src/dto/models/__init__.py +0 -0
- unrealon_llm/src/dto/models/config.py +0 -343
- unrealon_llm/src/dto/models/core.py +0 -328
- unrealon_llm/src/dto/models/enums.py +0 -123
- unrealon_llm/src/dto/models/html_analysis.py +0 -345
- unrealon_llm/src/dto/models/statistics.py +0 -473
- unrealon_llm/src/dto/models/translation.py +0 -383
- unrealon_llm/src/dto/models/type_conversion.py +0 -462
- unrealon_llm/src/dto/schemas/__init__.py +0 -0
- unrealon_llm/src/exceptions.py +0 -392
- unrealon_llm/src/llm_config/__init__.py +0 -20
- unrealon_llm/src/llm_config/logging_config.py +0 -178
- unrealon_llm/src/llm_logging/__init__.py +0 -42
- unrealon_llm/src/llm_logging/llm_events.py +0 -107
- unrealon_llm/src/llm_logging/llm_logger.py +0 -466
- unrealon_llm/src/managers/__init__.py +0 -15
- unrealon_llm/src/managers/cache_manager.py +0 -67
- unrealon_llm/src/managers/cost_manager.py +0 -107
- unrealon_llm/src/managers/request_manager.py +0 -298
- unrealon_llm/src/modules/__init__.py +0 -0
- unrealon_llm/src/modules/html_processor/__init__.py +0 -25
- unrealon_llm/src/modules/html_processor/base_processor.py +0 -415
- unrealon_llm/src/modules/html_processor/details_processor.py +0 -85
- unrealon_llm/src/modules/html_processor/listing_processor.py +0 -91
- unrealon_llm/src/modules/html_processor/models/__init__.py +0 -20
- unrealon_llm/src/modules/html_processor/models/processing_models.py +0 -40
- unrealon_llm/src/modules/html_processor/models/universal_model.py +0 -56
- unrealon_llm/src/modules/html_processor/processor.py +0 -102
- unrealon_llm/src/modules/llm/__init__.py +0 -0
- unrealon_llm/src/modules/translator/__init__.py +0 -0
- unrealon_llm/src/provider.py +0 -116
- unrealon_llm/src/utils/__init__.py +0 -95
- unrealon_llm/src/utils/common.py +0 -64
- unrealon_llm/src/utils/data_extractor.py +0 -188
- unrealon_llm/src/utils/html_cleaner.py +0 -767
- unrealon_llm/src/utils/language_detector.py +0 -308
- unrealon_llm/src/utils/models_cache.py +0 -592
- unrealon_llm/src/utils/smart_counter.py +0 -229
- unrealon_llm/src/utils/token_counter.py +0 -189
- unrealon_sdk/README.md +0 -25
- unrealon_sdk/__init__.py +0 -30
- unrealon_sdk/pyproject.toml +0 -231
- unrealon_sdk/src/__init__.py +0 -150
- unrealon_sdk/src/cli/__init__.py +0 -12
- unrealon_sdk/src/cli/commands/__init__.py +0 -22
- unrealon_sdk/src/cli/commands/benchmark.py +0 -42
- unrealon_sdk/src/cli/commands/diagnostics.py +0 -573
- unrealon_sdk/src/cli/commands/health.py +0 -46
- unrealon_sdk/src/cli/commands/integration.py +0 -498
- unrealon_sdk/src/cli/commands/reports.py +0 -43
- unrealon_sdk/src/cli/commands/security.py +0 -36
- unrealon_sdk/src/cli/commands/server.py +0 -483
- unrealon_sdk/src/cli/commands/servers.py +0 -56
- unrealon_sdk/src/cli/commands/tests.py +0 -55
- unrealon_sdk/src/cli/main.py +0 -126
- unrealon_sdk/src/cli/utils/reporter.py +0 -519
- unrealon_sdk/src/clients/openapi.yaml +0 -3347
- unrealon_sdk/src/clients/python_http/__init__.py +0 -3
- unrealon_sdk/src/clients/python_http/api_config.py +0 -228
- unrealon_sdk/src/clients/python_http/models/BaseModel.py +0 -12
- unrealon_sdk/src/clients/python_http/models/BroadcastDeliveryStats.py +0 -33
- unrealon_sdk/src/clients/python_http/models/BroadcastMessage.py +0 -17
- unrealon_sdk/src/clients/python_http/models/BroadcastMessageRequest.py +0 -35
- unrealon_sdk/src/clients/python_http/models/BroadcastPriority.py +0 -10
- unrealon_sdk/src/clients/python_http/models/BroadcastResponse.py +0 -21
- unrealon_sdk/src/clients/python_http/models/BroadcastResultResponse.py +0 -33
- unrealon_sdk/src/clients/python_http/models/BroadcastTarget.py +0 -11
- unrealon_sdk/src/clients/python_http/models/ConnectionStats.py +0 -27
- unrealon_sdk/src/clients/python_http/models/ConnectionsResponse.py +0 -21
- unrealon_sdk/src/clients/python_http/models/DeveloperMessageResponse.py +0 -23
- unrealon_sdk/src/clients/python_http/models/ErrorResponse.py +0 -25
- unrealon_sdk/src/clients/python_http/models/HTTPValidationError.py +0 -16
- unrealon_sdk/src/clients/python_http/models/HealthResponse.py +0 -23
- unrealon_sdk/src/clients/python_http/models/HealthStatus.py +0 -33
- unrealon_sdk/src/clients/python_http/models/LogLevel.py +0 -10
- unrealon_sdk/src/clients/python_http/models/LoggingRequest.py +0 -27
- unrealon_sdk/src/clients/python_http/models/LoggingResponse.py +0 -23
- unrealon_sdk/src/clients/python_http/models/MaintenanceMode.py +0 -9
- unrealon_sdk/src/clients/python_http/models/MaintenanceModeRequest.py +0 -33
- unrealon_sdk/src/clients/python_http/models/MaintenanceStatusResponse.py +0 -39
- unrealon_sdk/src/clients/python_http/models/ParserCommandRequest.py +0 -25
- unrealon_sdk/src/clients/python_http/models/ParserMessageResponse.py +0 -21
- unrealon_sdk/src/clients/python_http/models/ParserRegistrationRequest.py +0 -28
- unrealon_sdk/src/clients/python_http/models/ParserRegistrationResponse.py +0 -25
- unrealon_sdk/src/clients/python_http/models/ParserType.py +0 -10
- unrealon_sdk/src/clients/python_http/models/ProxyBlockRequest.py +0 -19
- unrealon_sdk/src/clients/python_http/models/ProxyEndpointResponse.py +0 -20
- unrealon_sdk/src/clients/python_http/models/ProxyListResponse.py +0 -19
- unrealon_sdk/src/clients/python_http/models/ProxyProvider.py +0 -10
- unrealon_sdk/src/clients/python_http/models/ProxyPurchaseRequest.py +0 -25
- unrealon_sdk/src/clients/python_http/models/ProxyResponse.py +0 -47
- unrealon_sdk/src/clients/python_http/models/ProxyRotationRequest.py +0 -23
- unrealon_sdk/src/clients/python_http/models/ProxyStatus.py +0 -10
- unrealon_sdk/src/clients/python_http/models/ProxyUsageRequest.py +0 -19
- unrealon_sdk/src/clients/python_http/models/ProxyUsageStatsResponse.py +0 -26
- unrealon_sdk/src/clients/python_http/models/ServiceRegistrationDto.py +0 -23
- unrealon_sdk/src/clients/python_http/models/ServiceStatsResponse.py +0 -31
- unrealon_sdk/src/clients/python_http/models/SessionStartRequest.py +0 -23
- unrealon_sdk/src/clients/python_http/models/SuccessResponse.py +0 -25
- unrealon_sdk/src/clients/python_http/models/SystemNotificationResponse.py +0 -23
- unrealon_sdk/src/clients/python_http/models/ValidationError.py +0 -18
- unrealon_sdk/src/clients/python_http/models/ValidationErrorResponse.py +0 -21
- unrealon_sdk/src/clients/python_http/models/WebSocketMetrics.py +0 -21
- unrealon_sdk/src/clients/python_http/models/__init__.py +0 -44
- unrealon_sdk/src/clients/python_http/services/None_service.py +0 -35
- unrealon_sdk/src/clients/python_http/services/ParserManagement_service.py +0 -190
- unrealon_sdk/src/clients/python_http/services/ProxyManagement_service.py +0 -289
- unrealon_sdk/src/clients/python_http/services/SocketLogging_service.py +0 -187
- unrealon_sdk/src/clients/python_http/services/SystemHealth_service.py +0 -119
- unrealon_sdk/src/clients/python_http/services/WebSocketAPI_service.py +0 -198
- unrealon_sdk/src/clients/python_http/services/__init__.py +0 -0
- unrealon_sdk/src/clients/python_http/services/admin_service.py +0 -125
- unrealon_sdk/src/clients/python_http/services/async_None_service.py +0 -35
- unrealon_sdk/src/clients/python_http/services/async_ParserManagement_service.py +0 -190
- unrealon_sdk/src/clients/python_http/services/async_ProxyManagement_service.py +0 -289
- unrealon_sdk/src/clients/python_http/services/async_SocketLogging_service.py +0 -189
- unrealon_sdk/src/clients/python_http/services/async_SystemHealth_service.py +0 -123
- unrealon_sdk/src/clients/python_http/services/async_WebSocketAPI_service.py +0 -200
- unrealon_sdk/src/clients/python_http/services/async_admin_service.py +0 -125
- unrealon_sdk/src/clients/python_websocket/__init__.py +0 -28
- unrealon_sdk/src/clients/python_websocket/client.py +0 -490
- unrealon_sdk/src/clients/python_websocket/events.py +0 -732
- unrealon_sdk/src/clients/python_websocket/example.py +0 -136
- unrealon_sdk/src/clients/python_websocket/types.py +0 -871
- unrealon_sdk/src/core/__init__.py +0 -64
- unrealon_sdk/src/core/client.py +0 -556
- unrealon_sdk/src/core/config.py +0 -465
- unrealon_sdk/src/core/exceptions.py +0 -239
- unrealon_sdk/src/core/metadata.py +0 -191
- unrealon_sdk/src/core/models.py +0 -142
- unrealon_sdk/src/core/types.py +0 -68
- unrealon_sdk/src/dto/__init__.py +0 -268
- unrealon_sdk/src/dto/authentication.py +0 -108
- unrealon_sdk/src/dto/cache.py +0 -208
- unrealon_sdk/src/dto/common.py +0 -19
- unrealon_sdk/src/dto/concurrency.py +0 -393
- unrealon_sdk/src/dto/events.py +0 -108
- unrealon_sdk/src/dto/health.py +0 -339
- unrealon_sdk/src/dto/load_balancing.py +0 -336
- unrealon_sdk/src/dto/logging.py +0 -230
- unrealon_sdk/src/dto/performance.py +0 -165
- unrealon_sdk/src/dto/rate_limiting.py +0 -295
- unrealon_sdk/src/dto/resource_pooling.py +0 -128
- unrealon_sdk/src/dto/structured_logging.py +0 -112
- unrealon_sdk/src/dto/task_scheduling.py +0 -121
- unrealon_sdk/src/dto/websocket.py +0 -55
- unrealon_sdk/src/enterprise/__init__.py +0 -59
- unrealon_sdk/src/enterprise/authentication.py +0 -401
- unrealon_sdk/src/enterprise/cache_manager.py +0 -578
- unrealon_sdk/src/enterprise/error_recovery.py +0 -494
- unrealon_sdk/src/enterprise/event_system.py +0 -549
- unrealon_sdk/src/enterprise/health_monitor.py +0 -747
- unrealon_sdk/src/enterprise/load_balancer.py +0 -964
- unrealon_sdk/src/enterprise/logging/__init__.py +0 -68
- unrealon_sdk/src/enterprise/logging/cleanup.py +0 -156
- unrealon_sdk/src/enterprise/logging/development.py +0 -744
- unrealon_sdk/src/enterprise/logging/service.py +0 -410
- unrealon_sdk/src/enterprise/multithreading_manager.py +0 -853
- unrealon_sdk/src/enterprise/performance_monitor.py +0 -539
- unrealon_sdk/src/enterprise/proxy_manager.py +0 -696
- unrealon_sdk/src/enterprise/rate_limiter.py +0 -652
- unrealon_sdk/src/enterprise/resource_pool.py +0 -763
- unrealon_sdk/src/enterprise/task_scheduler.py +0 -709
- unrealon_sdk/src/internal/__init__.py +0 -10
- unrealon_sdk/src/internal/command_router.py +0 -497
- unrealon_sdk/src/internal/connection_manager.py +0 -397
- unrealon_sdk/src/internal/http_client.py +0 -446
- unrealon_sdk/src/internal/websocket_client.py +0 -420
- unrealon_sdk/src/provider.py +0 -471
- unrealon_sdk/src/utils.py +0 -234
- /unrealon_browser/{src/cli → cli}/__init__.py +0 -0
- /unrealon_browser/{src/cli → cli}/interactive_mode.py +0 -0
- /unrealon_browser/{src/cli → cli}/main.py +0 -0
- /unrealon_browser/{src/core → core}/__init__.py +0 -0
- /unrealon_browser/{src/dto → dto}/__init__.py +0 -0
- /unrealon_browser/{src/dto → dto}/models/config.py +0 -0
- /unrealon_browser/{src/dto → dto}/models/core.py +0 -0
- /unrealon_browser/{src/dto → dto}/models/dataclasses.py +0 -0
- /unrealon_browser/{src/dto → dto}/models/detection.py +0 -0
- /unrealon_browser/{src/dto → dto}/models/enums.py +0 -0
- /unrealon_browser/{src/dto → dto}/models/statistics.py +0 -0
- /unrealon_browser/{src/managers → managers}/__init__.py +0 -0
- /unrealon_browser/{src/managers → managers}/stealth.py +0 -0
|
@@ -1,187 +0,0 @@
|
|
|
1
|
-
import json
|
|
2
|
-
from typing import *
|
|
3
|
-
|
|
4
|
-
import httpx
|
|
5
|
-
|
|
6
|
-
from ..api_config import APIConfig, HTTPException
|
|
7
|
-
from ..models import *
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
def add_log_entry_api_v1_logging_log_post(
|
|
11
|
-
data: LoggingRequest,
|
|
12
|
-
authorization: Optional[str] = None,
|
|
13
|
-
api_config_override: Optional[APIConfig] = None,
|
|
14
|
-
) -> LoggingResponse:
|
|
15
|
-
api_config = api_config_override if api_config_override else APIConfig()
|
|
16
|
-
|
|
17
|
-
base_path = api_config.base_path
|
|
18
|
-
path = f"/api/v1/logging/log"
|
|
19
|
-
headers = {
|
|
20
|
-
"Content-Type": "application/json",
|
|
21
|
-
"Accept": "application/json",
|
|
22
|
-
"Authorization": f"Bearer { api_config.get_access_token() }",
|
|
23
|
-
**({"authorization": authorization} if authorization is not None else {}),
|
|
24
|
-
}
|
|
25
|
-
query_params: Dict[str, Any] = {}
|
|
26
|
-
|
|
27
|
-
query_params = {key: value for (key, value) in query_params.items() if value is not None}
|
|
28
|
-
|
|
29
|
-
with httpx.Client(base_url=base_path, verify=api_config.verify) as client:
|
|
30
|
-
response = client.request("post", httpx.URL(path), headers=headers, params=query_params, json=data.model_dump())
|
|
31
|
-
|
|
32
|
-
if response.status_code != 200:
|
|
33
|
-
raise HTTPException(response.status_code, f" failed with status code: {response.status_code}")
|
|
34
|
-
|
|
35
|
-
return LoggingResponse(**response.json()) if response.json() is not None else LoggingResponse()
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
def list_developer_sessions_api_v1_logging_sessions_get(
|
|
39
|
-
authorization: Optional[str] = None, api_config_override: Optional[APIConfig] = None
|
|
40
|
-
) -> SuccessResponse:
|
|
41
|
-
api_config = api_config_override if api_config_override else APIConfig()
|
|
42
|
-
|
|
43
|
-
base_path = api_config.base_path
|
|
44
|
-
path = f"/api/v1/logging/sessions"
|
|
45
|
-
headers = {
|
|
46
|
-
"Content-Type": "application/json",
|
|
47
|
-
"Accept": "application/json",
|
|
48
|
-
"Authorization": f"Bearer { api_config.get_access_token() }",
|
|
49
|
-
**({"authorization": authorization} if authorization is not None else {}),
|
|
50
|
-
}
|
|
51
|
-
query_params: Dict[str, Any] = {}
|
|
52
|
-
|
|
53
|
-
query_params = {key: value for (key, value) in query_params.items() if value is not None}
|
|
54
|
-
|
|
55
|
-
with httpx.Client(base_url=base_path, verify=api_config.verify) as client:
|
|
56
|
-
response = client.request(
|
|
57
|
-
"get",
|
|
58
|
-
httpx.URL(path),
|
|
59
|
-
headers=headers,
|
|
60
|
-
params=query_params,
|
|
61
|
-
)
|
|
62
|
-
|
|
63
|
-
if response.status_code != 200:
|
|
64
|
-
raise HTTPException(response.status_code, f" failed with status code: {response.status_code}")
|
|
65
|
-
|
|
66
|
-
return SuccessResponse(**response.json()) if response.json() is not None else SuccessResponse()
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
def start_logging_session_api_v1_logging_sessions_start_post(
|
|
70
|
-
data: SessionStartRequest,
|
|
71
|
-
authorization: Optional[str] = None,
|
|
72
|
-
api_config_override: Optional[APIConfig] = None,
|
|
73
|
-
) -> LoggingResponse:
|
|
74
|
-
api_config = api_config_override if api_config_override else APIConfig()
|
|
75
|
-
|
|
76
|
-
base_path = api_config.base_path
|
|
77
|
-
path = f"/api/v1/logging/sessions/start"
|
|
78
|
-
headers = {
|
|
79
|
-
"Content-Type": "application/json",
|
|
80
|
-
"Accept": "application/json",
|
|
81
|
-
"Authorization": f"Bearer { api_config.get_access_token() }",
|
|
82
|
-
**({"authorization": authorization} if authorization is not None else {}),
|
|
83
|
-
}
|
|
84
|
-
query_params: Dict[str, Any] = {}
|
|
85
|
-
|
|
86
|
-
query_params = {key: value for (key, value) in query_params.items() if value is not None}
|
|
87
|
-
|
|
88
|
-
with httpx.Client(base_url=base_path, verify=api_config.verify) as client:
|
|
89
|
-
response = client.request("post", httpx.URL(path), headers=headers, params=query_params, json=data.model_dump())
|
|
90
|
-
|
|
91
|
-
if response.status_code != 200:
|
|
92
|
-
raise HTTPException(response.status_code, f" failed with status code: {response.status_code}")
|
|
93
|
-
|
|
94
|
-
return LoggingResponse(**response.json()) if response.json() is not None else LoggingResponse()
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
def terminate_session_api_v1_logging_sessions__session_id__delete(
|
|
98
|
-
session_id: str, authorization: Optional[str] = None, api_config_override: Optional[APIConfig] = None
|
|
99
|
-
) -> LoggingResponse:
|
|
100
|
-
api_config = api_config_override if api_config_override else APIConfig()
|
|
101
|
-
|
|
102
|
-
base_path = api_config.base_path
|
|
103
|
-
path = f"/api/v1/logging/sessions/{session_id}"
|
|
104
|
-
headers = {
|
|
105
|
-
"Content-Type": "application/json",
|
|
106
|
-
"Accept": "application/json",
|
|
107
|
-
"Authorization": f"Bearer { api_config.get_access_token() }",
|
|
108
|
-
**({"authorization": authorization} if authorization is not None else {}),
|
|
109
|
-
}
|
|
110
|
-
query_params: Dict[str, Any] = {}
|
|
111
|
-
|
|
112
|
-
query_params = {key: value for (key, value) in query_params.items() if value is not None}
|
|
113
|
-
|
|
114
|
-
with httpx.Client(base_url=base_path, verify=api_config.verify) as client:
|
|
115
|
-
response = client.request(
|
|
116
|
-
"delete",
|
|
117
|
-
httpx.URL(path),
|
|
118
|
-
headers=headers,
|
|
119
|
-
params=query_params,
|
|
120
|
-
)
|
|
121
|
-
|
|
122
|
-
if response.status_code != 200:
|
|
123
|
-
raise HTTPException(response.status_code, f" failed with status code: {response.status_code}")
|
|
124
|
-
|
|
125
|
-
return LoggingResponse(**response.json()) if response.json() is not None else LoggingResponse()
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
def get_session_logs_api_v1_logging_sessions__session_id__logs_get(
|
|
129
|
-
session_id: str,
|
|
130
|
-
count: Optional[int] = None,
|
|
131
|
-
authorization: Optional[str] = None,
|
|
132
|
-
api_config_override: Optional[APIConfig] = None,
|
|
133
|
-
) -> SuccessResponse:
|
|
134
|
-
api_config = api_config_override if api_config_override else APIConfig()
|
|
135
|
-
|
|
136
|
-
base_path = api_config.base_path
|
|
137
|
-
path = f"/api/v1/logging/sessions/{session_id}/logs"
|
|
138
|
-
headers = {
|
|
139
|
-
"Content-Type": "application/json",
|
|
140
|
-
"Accept": "application/json",
|
|
141
|
-
"Authorization": f"Bearer { api_config.get_access_token() }",
|
|
142
|
-
**({"authorization": authorization} if authorization is not None else {}),
|
|
143
|
-
}
|
|
144
|
-
query_params: Dict[str, Any] = {"count": count}
|
|
145
|
-
|
|
146
|
-
query_params = {key: value for (key, value) in query_params.items() if value is not None}
|
|
147
|
-
|
|
148
|
-
with httpx.Client(base_url=base_path, verify=api_config.verify) as client:
|
|
149
|
-
response = client.request(
|
|
150
|
-
"get",
|
|
151
|
-
httpx.URL(path),
|
|
152
|
-
headers=headers,
|
|
153
|
-
params=query_params,
|
|
154
|
-
)
|
|
155
|
-
|
|
156
|
-
if response.status_code != 200:
|
|
157
|
-
raise HTTPException(response.status_code, f" failed with status code: {response.status_code}")
|
|
158
|
-
|
|
159
|
-
return SuccessResponse(**response.json()) if response.json() is not None else SuccessResponse()
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
def get_logging_stats_api_v1_logging_stats_get(api_config_override: Optional[APIConfig] = None) -> SuccessResponse:
|
|
163
|
-
api_config = api_config_override if api_config_override else APIConfig()
|
|
164
|
-
|
|
165
|
-
base_path = api_config.base_path
|
|
166
|
-
path = f"/api/v1/logging/stats"
|
|
167
|
-
headers = {
|
|
168
|
-
"Content-Type": "application/json",
|
|
169
|
-
"Accept": "application/json",
|
|
170
|
-
"Authorization": f"Bearer { api_config.get_access_token() }",
|
|
171
|
-
}
|
|
172
|
-
query_params: Dict[str, Any] = {}
|
|
173
|
-
|
|
174
|
-
query_params = {key: value for (key, value) in query_params.items() if value is not None}
|
|
175
|
-
|
|
176
|
-
with httpx.Client(base_url=base_path, verify=api_config.verify) as client:
|
|
177
|
-
response = client.request(
|
|
178
|
-
"get",
|
|
179
|
-
httpx.URL(path),
|
|
180
|
-
headers=headers,
|
|
181
|
-
params=query_params,
|
|
182
|
-
)
|
|
183
|
-
|
|
184
|
-
if response.status_code != 200:
|
|
185
|
-
raise HTTPException(response.status_code, f" failed with status code: {response.status_code}")
|
|
186
|
-
|
|
187
|
-
return SuccessResponse(**response.json()) if response.json() is not None else SuccessResponse()
|
|
@@ -1,119 +0,0 @@
|
|
|
1
|
-
import json
|
|
2
|
-
from typing import *
|
|
3
|
-
|
|
4
|
-
import httpx
|
|
5
|
-
|
|
6
|
-
from ..api_config import APIConfig, HTTPException
|
|
7
|
-
from ..models import *
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
def system_health_check_api_v1_health__get(api_config_override: Optional[APIConfig] = None) -> HealthResponse:
|
|
11
|
-
api_config = api_config_override if api_config_override else APIConfig()
|
|
12
|
-
|
|
13
|
-
base_path = api_config.base_path
|
|
14
|
-
path = f"/api/v1/health/"
|
|
15
|
-
headers = {
|
|
16
|
-
"Content-Type": "application/json",
|
|
17
|
-
"Accept": "application/json",
|
|
18
|
-
"Authorization": f"Bearer { api_config.get_access_token() }",
|
|
19
|
-
}
|
|
20
|
-
query_params: Dict[str, Any] = {}
|
|
21
|
-
|
|
22
|
-
query_params = {key: value for (key, value) in query_params.items() if value is not None}
|
|
23
|
-
|
|
24
|
-
with httpx.Client(base_url=base_path, verify=api_config.verify) as client:
|
|
25
|
-
response = client.request(
|
|
26
|
-
"get",
|
|
27
|
-
httpx.URL(path),
|
|
28
|
-
headers=headers,
|
|
29
|
-
params=query_params,
|
|
30
|
-
)
|
|
31
|
-
|
|
32
|
-
if response.status_code != 200:
|
|
33
|
-
raise HTTPException(response.status_code, f" failed with status code: {response.status_code}")
|
|
34
|
-
|
|
35
|
-
return HealthResponse(**response.json()) if response.json() is not None else HealthResponse()
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
def health_statistics_api_v1_health_statistics_get(api_config_override: Optional[APIConfig] = None) -> SuccessResponse:
|
|
39
|
-
api_config = api_config_override if api_config_override else APIConfig()
|
|
40
|
-
|
|
41
|
-
base_path = api_config.base_path
|
|
42
|
-
path = f"/api/v1/health/statistics"
|
|
43
|
-
headers = {
|
|
44
|
-
"Content-Type": "application/json",
|
|
45
|
-
"Accept": "application/json",
|
|
46
|
-
"Authorization": f"Bearer { api_config.get_access_token() }",
|
|
47
|
-
}
|
|
48
|
-
query_params: Dict[str, Any] = {}
|
|
49
|
-
|
|
50
|
-
query_params = {key: value for (key, value) in query_params.items() if value is not None}
|
|
51
|
-
|
|
52
|
-
with httpx.Client(base_url=base_path, verify=api_config.verify) as client:
|
|
53
|
-
response = client.request(
|
|
54
|
-
"get",
|
|
55
|
-
httpx.URL(path),
|
|
56
|
-
headers=headers,
|
|
57
|
-
params=query_params,
|
|
58
|
-
)
|
|
59
|
-
|
|
60
|
-
if response.status_code != 200:
|
|
61
|
-
raise HTTPException(response.status_code, f" failed with status code: {response.status_code}")
|
|
62
|
-
|
|
63
|
-
return SuccessResponse(**response.json()) if response.json() is not None else SuccessResponse()
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
def quick_health_status_api_v1_health_status_get(api_config_override: Optional[APIConfig] = None) -> SuccessResponse:
|
|
67
|
-
api_config = api_config_override if api_config_override else APIConfig()
|
|
68
|
-
|
|
69
|
-
base_path = api_config.base_path
|
|
70
|
-
path = f"/api/v1/health/status"
|
|
71
|
-
headers = {
|
|
72
|
-
"Content-Type": "application/json",
|
|
73
|
-
"Accept": "application/json",
|
|
74
|
-
"Authorization": f"Bearer { api_config.get_access_token() }",
|
|
75
|
-
}
|
|
76
|
-
query_params: Dict[str, Any] = {}
|
|
77
|
-
|
|
78
|
-
query_params = {key: value for (key, value) in query_params.items() if value is not None}
|
|
79
|
-
|
|
80
|
-
with httpx.Client(base_url=base_path, verify=api_config.verify) as client:
|
|
81
|
-
response = client.request(
|
|
82
|
-
"get",
|
|
83
|
-
httpx.URL(path),
|
|
84
|
-
headers=headers,
|
|
85
|
-
params=query_params,
|
|
86
|
-
)
|
|
87
|
-
|
|
88
|
-
if response.status_code != 200:
|
|
89
|
-
raise HTTPException(response.status_code, f" failed with status code: {response.status_code}")
|
|
90
|
-
|
|
91
|
-
return SuccessResponse(**response.json()) if response.json() is not None else SuccessResponse()
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
def legacy_health_check_health_get(api_config_override: Optional[APIConfig] = None) -> Any:
|
|
95
|
-
api_config = api_config_override if api_config_override else APIConfig()
|
|
96
|
-
|
|
97
|
-
base_path = api_config.base_path
|
|
98
|
-
path = f"/health"
|
|
99
|
-
headers = {
|
|
100
|
-
"Content-Type": "application/json",
|
|
101
|
-
"Accept": "application/json",
|
|
102
|
-
"Authorization": f"Bearer { api_config.get_access_token() }",
|
|
103
|
-
}
|
|
104
|
-
query_params: Dict[str, Any] = {}
|
|
105
|
-
|
|
106
|
-
query_params = {key: value for (key, value) in query_params.items() if value is not None}
|
|
107
|
-
|
|
108
|
-
with httpx.Client(base_url=base_path, verify=api_config.verify) as client:
|
|
109
|
-
response = client.request(
|
|
110
|
-
"get",
|
|
111
|
-
httpx.URL(path),
|
|
112
|
-
headers=headers,
|
|
113
|
-
params=query_params,
|
|
114
|
-
)
|
|
115
|
-
|
|
116
|
-
if response.status_code != 200:
|
|
117
|
-
raise HTTPException(response.status_code, f" failed with status code: {response.status_code}")
|
|
118
|
-
|
|
119
|
-
return response.json()
|
|
@@ -1,198 +0,0 @@
|
|
|
1
|
-
import json
|
|
2
|
-
from typing import *
|
|
3
|
-
|
|
4
|
-
import httpx
|
|
5
|
-
|
|
6
|
-
from ..api_config import APIConfig, HTTPException
|
|
7
|
-
from ..models import *
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
def broadcast_to_room_api_v1_ws_broadcast__room__post(
|
|
11
|
-
room: str, data: BroadcastMessage, api_config_override: Optional[APIConfig] = None
|
|
12
|
-
) -> BroadcastResponse:
|
|
13
|
-
api_config = api_config_override if api_config_override else APIConfig()
|
|
14
|
-
|
|
15
|
-
base_path = api_config.base_path
|
|
16
|
-
path = f"/api/v1/ws/broadcast/{room}"
|
|
17
|
-
headers = {
|
|
18
|
-
"Content-Type": "application/json",
|
|
19
|
-
"Accept": "application/json",
|
|
20
|
-
"Authorization": f"Bearer { api_config.get_access_token() }",
|
|
21
|
-
}
|
|
22
|
-
query_params: Dict[str, Any] = {}
|
|
23
|
-
|
|
24
|
-
query_params = {key: value for (key, value) in query_params.items() if value is not None}
|
|
25
|
-
|
|
26
|
-
with httpx.Client(base_url=base_path, verify=api_config.verify) as client:
|
|
27
|
-
response = client.request("post", httpx.URL(path), headers=headers, params=query_params, json=data.model_dump())
|
|
28
|
-
|
|
29
|
-
if response.status_code != 200:
|
|
30
|
-
raise HTTPException(response.status_code, f" failed with status code: {response.status_code}")
|
|
31
|
-
|
|
32
|
-
return BroadcastResponse(**response.json()) if response.json() is not None else BroadcastResponse()
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
def get_connections_api_v1_ws_connections_get(api_config_override: Optional[APIConfig] = None) -> ConnectionsResponse:
|
|
36
|
-
api_config = api_config_override if api_config_override else APIConfig()
|
|
37
|
-
|
|
38
|
-
base_path = api_config.base_path
|
|
39
|
-
path = f"/api/v1/ws/connections"
|
|
40
|
-
headers = {
|
|
41
|
-
"Content-Type": "application/json",
|
|
42
|
-
"Accept": "application/json",
|
|
43
|
-
"Authorization": f"Bearer { api_config.get_access_token() }",
|
|
44
|
-
}
|
|
45
|
-
query_params: Dict[str, Any] = {}
|
|
46
|
-
|
|
47
|
-
query_params = {key: value for (key, value) in query_params.items() if value is not None}
|
|
48
|
-
|
|
49
|
-
with httpx.Client(base_url=base_path, verify=api_config.verify) as client:
|
|
50
|
-
response = client.request(
|
|
51
|
-
"get",
|
|
52
|
-
httpx.URL(path),
|
|
53
|
-
headers=headers,
|
|
54
|
-
params=query_params,
|
|
55
|
-
)
|
|
56
|
-
|
|
57
|
-
if response.status_code != 200:
|
|
58
|
-
raise HTTPException(response.status_code, f" failed with status code: {response.status_code}")
|
|
59
|
-
|
|
60
|
-
return ConnectionsResponse(**response.json()) if response.json() is not None else ConnectionsResponse()
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
def websocket_health_check_api_v1_ws_health_get(api_config_override: Optional[APIConfig] = None) -> HealthStatus:
|
|
64
|
-
api_config = api_config_override if api_config_override else APIConfig()
|
|
65
|
-
|
|
66
|
-
base_path = api_config.base_path
|
|
67
|
-
path = f"/api/v1/ws/health"
|
|
68
|
-
headers = {
|
|
69
|
-
"Content-Type": "application/json",
|
|
70
|
-
"Accept": "application/json",
|
|
71
|
-
"Authorization": f"Bearer { api_config.get_access_token() }",
|
|
72
|
-
}
|
|
73
|
-
query_params: Dict[str, Any] = {}
|
|
74
|
-
|
|
75
|
-
query_params = {key: value for (key, value) in query_params.items() if value is not None}
|
|
76
|
-
|
|
77
|
-
with httpx.Client(base_url=base_path, verify=api_config.verify) as client:
|
|
78
|
-
response = client.request(
|
|
79
|
-
"get",
|
|
80
|
-
httpx.URL(path),
|
|
81
|
-
headers=headers,
|
|
82
|
-
params=query_params,
|
|
83
|
-
)
|
|
84
|
-
|
|
85
|
-
if response.status_code != 200:
|
|
86
|
-
raise HTTPException(response.status_code, f" failed with status code: {response.status_code}")
|
|
87
|
-
|
|
88
|
-
return HealthStatus(**response.json()) if response.json() is not None else HealthStatus()
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
def broadcast_system_notification_api_v1_ws_notification_system_post(
|
|
92
|
-
title: str, content: str, priority: Optional[str] = None, api_config_override: Optional[APIConfig] = None
|
|
93
|
-
) -> SystemNotificationResponse:
|
|
94
|
-
api_config = api_config_override if api_config_override else APIConfig()
|
|
95
|
-
|
|
96
|
-
base_path = api_config.base_path
|
|
97
|
-
path = f"/api/v1/ws/notification/system"
|
|
98
|
-
headers = {
|
|
99
|
-
"Content-Type": "application/json",
|
|
100
|
-
"Accept": "application/json",
|
|
101
|
-
"Authorization": f"Bearer { api_config.get_access_token() }",
|
|
102
|
-
}
|
|
103
|
-
query_params: Dict[str, Any] = {"title": title, "content": content, "priority": priority}
|
|
104
|
-
|
|
105
|
-
query_params = {key: value for (key, value) in query_params.items() if value is not None}
|
|
106
|
-
|
|
107
|
-
with httpx.Client(base_url=base_path, verify=api_config.verify) as client:
|
|
108
|
-
response = client.request(
|
|
109
|
-
"post",
|
|
110
|
-
httpx.URL(path),
|
|
111
|
-
headers=headers,
|
|
112
|
-
params=query_params,
|
|
113
|
-
)
|
|
114
|
-
|
|
115
|
-
if response.status_code != 200:
|
|
116
|
-
raise HTTPException(response.status_code, f" failed with status code: {response.status_code}")
|
|
117
|
-
|
|
118
|
-
return (
|
|
119
|
-
SystemNotificationResponse(**response.json()) if response.json() is not None else SystemNotificationResponse()
|
|
120
|
-
)
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
def send_to_developer_api_v1_ws_send_developer__developer_id__post(
|
|
124
|
-
developer_id: str, data: BroadcastMessage, api_config_override: Optional[APIConfig] = None
|
|
125
|
-
) -> DeveloperMessageResponse:
|
|
126
|
-
api_config = api_config_override if api_config_override else APIConfig()
|
|
127
|
-
|
|
128
|
-
base_path = api_config.base_path
|
|
129
|
-
path = f"/api/v1/ws/send/developer/{developer_id}"
|
|
130
|
-
headers = {
|
|
131
|
-
"Content-Type": "application/json",
|
|
132
|
-
"Accept": "application/json",
|
|
133
|
-
"Authorization": f"Bearer { api_config.get_access_token() }",
|
|
134
|
-
}
|
|
135
|
-
query_params: Dict[str, Any] = {}
|
|
136
|
-
|
|
137
|
-
query_params = {key: value for (key, value) in query_params.items() if value is not None}
|
|
138
|
-
|
|
139
|
-
with httpx.Client(base_url=base_path, verify=api_config.verify) as client:
|
|
140
|
-
response = client.request("post", httpx.URL(path), headers=headers, params=query_params, json=data.model_dump())
|
|
141
|
-
|
|
142
|
-
if response.status_code != 200:
|
|
143
|
-
raise HTTPException(response.status_code, f" failed with status code: {response.status_code}")
|
|
144
|
-
|
|
145
|
-
return DeveloperMessageResponse(**response.json()) if response.json() is not None else DeveloperMessageResponse()
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
def send_to_parser_api_v1_ws_send_parser__parser_id__post(
|
|
149
|
-
parser_id: str, data: BroadcastMessage, api_config_override: Optional[APIConfig] = None
|
|
150
|
-
) -> ParserMessageResponse:
|
|
151
|
-
api_config = api_config_override if api_config_override else APIConfig()
|
|
152
|
-
|
|
153
|
-
base_path = api_config.base_path
|
|
154
|
-
path = f"/api/v1/ws/send/parser/{parser_id}"
|
|
155
|
-
headers = {
|
|
156
|
-
"Content-Type": "application/json",
|
|
157
|
-
"Accept": "application/json",
|
|
158
|
-
"Authorization": f"Bearer { api_config.get_access_token() }",
|
|
159
|
-
}
|
|
160
|
-
query_params: Dict[str, Any] = {}
|
|
161
|
-
|
|
162
|
-
query_params = {key: value for (key, value) in query_params.items() if value is not None}
|
|
163
|
-
|
|
164
|
-
with httpx.Client(base_url=base_path, verify=api_config.verify) as client:
|
|
165
|
-
response = client.request("post", httpx.URL(path), headers=headers, params=query_params, json=data.model_dump())
|
|
166
|
-
|
|
167
|
-
if response.status_code != 200:
|
|
168
|
-
raise HTTPException(response.status_code, f" failed with status code: {response.status_code}")
|
|
169
|
-
|
|
170
|
-
return ParserMessageResponse(**response.json()) if response.json() is not None else ParserMessageResponse()
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
def websocket_stats_api_v1_ws_stats_get(api_config_override: Optional[APIConfig] = None) -> ConnectionStats:
|
|
174
|
-
api_config = api_config_override if api_config_override else APIConfig()
|
|
175
|
-
|
|
176
|
-
base_path = api_config.base_path
|
|
177
|
-
path = f"/api/v1/ws/stats"
|
|
178
|
-
headers = {
|
|
179
|
-
"Content-Type": "application/json",
|
|
180
|
-
"Accept": "application/json",
|
|
181
|
-
"Authorization": f"Bearer { api_config.get_access_token() }",
|
|
182
|
-
}
|
|
183
|
-
query_params: Dict[str, Any] = {}
|
|
184
|
-
|
|
185
|
-
query_params = {key: value for (key, value) in query_params.items() if value is not None}
|
|
186
|
-
|
|
187
|
-
with httpx.Client(base_url=base_path, verify=api_config.verify) as client:
|
|
188
|
-
response = client.request(
|
|
189
|
-
"get",
|
|
190
|
-
httpx.URL(path),
|
|
191
|
-
headers=headers,
|
|
192
|
-
params=query_params,
|
|
193
|
-
)
|
|
194
|
-
|
|
195
|
-
if response.status_code != 200:
|
|
196
|
-
raise HTTPException(response.status_code, f" failed with status code: {response.status_code}")
|
|
197
|
-
|
|
198
|
-
return ConnectionStats(**response.json()) if response.json() is not None else ConnectionStats()
|
|
File without changes
|
|
@@ -1,125 +0,0 @@
|
|
|
1
|
-
import json
|
|
2
|
-
from typing import *
|
|
3
|
-
|
|
4
|
-
import httpx
|
|
5
|
-
|
|
6
|
-
from ..api_config import APIConfig, HTTPException
|
|
7
|
-
from ..models import *
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
def broadcast_message_api_v1_admin_broadcast_post(
|
|
11
|
-
data: BroadcastMessageRequest,
|
|
12
|
-
authorization: Optional[str] = None,
|
|
13
|
-
api_config_override: Optional[APIConfig] = None,
|
|
14
|
-
) -> BroadcastResultResponse:
|
|
15
|
-
api_config = api_config_override if api_config_override else APIConfig()
|
|
16
|
-
|
|
17
|
-
base_path = api_config.base_path
|
|
18
|
-
path = f"/api/v1/admin/broadcast"
|
|
19
|
-
headers = {
|
|
20
|
-
"Content-Type": "application/json",
|
|
21
|
-
"Accept": "application/json",
|
|
22
|
-
"Authorization": f"Bearer { api_config.get_access_token() }",
|
|
23
|
-
**({"authorization": authorization} if authorization is not None else {}),
|
|
24
|
-
}
|
|
25
|
-
query_params: Dict[str, Any] = {}
|
|
26
|
-
|
|
27
|
-
query_params = {key: value for (key, value) in query_params.items() if value is not None}
|
|
28
|
-
|
|
29
|
-
with httpx.Client(base_url=base_path, verify=api_config.verify) as client:
|
|
30
|
-
response = client.request("post", httpx.URL(path), headers=headers, params=query_params, json=data.model_dump())
|
|
31
|
-
|
|
32
|
-
if response.status_code != 200:
|
|
33
|
-
raise HTTPException(response.status_code, f" failed with status code: {response.status_code}")
|
|
34
|
-
|
|
35
|
-
return BroadcastResultResponse(**response.json()) if response.json() is not None else BroadcastResultResponse()
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
def manage_maintenance_mode_api_v1_admin_maintenance_post(
|
|
39
|
-
data: MaintenanceModeRequest,
|
|
40
|
-
authorization: Optional[str] = None,
|
|
41
|
-
api_config_override: Optional[APIConfig] = None,
|
|
42
|
-
) -> MaintenanceStatusResponse:
|
|
43
|
-
api_config = api_config_override if api_config_override else APIConfig()
|
|
44
|
-
|
|
45
|
-
base_path = api_config.base_path
|
|
46
|
-
path = f"/api/v1/admin/maintenance"
|
|
47
|
-
headers = {
|
|
48
|
-
"Content-Type": "application/json",
|
|
49
|
-
"Accept": "application/json",
|
|
50
|
-
"Authorization": f"Bearer { api_config.get_access_token() }",
|
|
51
|
-
**({"authorization": authorization} if authorization is not None else {}),
|
|
52
|
-
}
|
|
53
|
-
query_params: Dict[str, Any] = {}
|
|
54
|
-
|
|
55
|
-
query_params = {key: value for (key, value) in query_params.items() if value is not None}
|
|
56
|
-
|
|
57
|
-
with httpx.Client(base_url=base_path, verify=api_config.verify) as client:
|
|
58
|
-
response = client.request("post", httpx.URL(path), headers=headers, params=query_params, json=data.model_dump())
|
|
59
|
-
|
|
60
|
-
if response.status_code != 200:
|
|
61
|
-
raise HTTPException(response.status_code, f" failed with status code: {response.status_code}")
|
|
62
|
-
|
|
63
|
-
return MaintenanceStatusResponse(**response.json()) if response.json() is not None else MaintenanceStatusResponse()
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
def get_maintenance_status_api_v1_admin_maintenance_status_get(
|
|
67
|
-
authorization: Optional[str] = None, api_config_override: Optional[APIConfig] = None
|
|
68
|
-
) -> MaintenanceStatusResponse:
|
|
69
|
-
api_config = api_config_override if api_config_override else APIConfig()
|
|
70
|
-
|
|
71
|
-
base_path = api_config.base_path
|
|
72
|
-
path = f"/api/v1/admin/maintenance/status"
|
|
73
|
-
headers = {
|
|
74
|
-
"Content-Type": "application/json",
|
|
75
|
-
"Accept": "application/json",
|
|
76
|
-
"Authorization": f"Bearer { api_config.get_access_token() }",
|
|
77
|
-
**({"authorization": authorization} if authorization is not None else {}),
|
|
78
|
-
}
|
|
79
|
-
query_params: Dict[str, Any] = {}
|
|
80
|
-
|
|
81
|
-
query_params = {key: value for (key, value) in query_params.items() if value is not None}
|
|
82
|
-
|
|
83
|
-
with httpx.Client(base_url=base_path, verify=api_config.verify) as client:
|
|
84
|
-
response = client.request(
|
|
85
|
-
"get",
|
|
86
|
-
httpx.URL(path),
|
|
87
|
-
headers=headers,
|
|
88
|
-
params=query_params,
|
|
89
|
-
)
|
|
90
|
-
|
|
91
|
-
if response.status_code != 200:
|
|
92
|
-
raise HTTPException(response.status_code, f" failed with status code: {response.status_code}")
|
|
93
|
-
|
|
94
|
-
return MaintenanceStatusResponse(**response.json()) if response.json() is not None else MaintenanceStatusResponse()
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
def get_admin_service_stats_api_v1_admin_stats_get(
|
|
98
|
-
authorization: Optional[str] = None, api_config_override: Optional[APIConfig] = None
|
|
99
|
-
) -> ServiceStatsResponse:
|
|
100
|
-
api_config = api_config_override if api_config_override else APIConfig()
|
|
101
|
-
|
|
102
|
-
base_path = api_config.base_path
|
|
103
|
-
path = f"/api/v1/admin/stats"
|
|
104
|
-
headers = {
|
|
105
|
-
"Content-Type": "application/json",
|
|
106
|
-
"Accept": "application/json",
|
|
107
|
-
"Authorization": f"Bearer { api_config.get_access_token() }",
|
|
108
|
-
**({"authorization": authorization} if authorization is not None else {}),
|
|
109
|
-
}
|
|
110
|
-
query_params: Dict[str, Any] = {}
|
|
111
|
-
|
|
112
|
-
query_params = {key: value for (key, value) in query_params.items() if value is not None}
|
|
113
|
-
|
|
114
|
-
with httpx.Client(base_url=base_path, verify=api_config.verify) as client:
|
|
115
|
-
response = client.request(
|
|
116
|
-
"get",
|
|
117
|
-
httpx.URL(path),
|
|
118
|
-
headers=headers,
|
|
119
|
-
params=query_params,
|
|
120
|
-
)
|
|
121
|
-
|
|
122
|
-
if response.status_code != 200:
|
|
123
|
-
raise HTTPException(response.status_code, f" failed with status code: {response.status_code}")
|
|
124
|
-
|
|
125
|
-
return ServiceStatsResponse(**response.json()) if response.json() is not None else ServiceStatsResponse()
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import json
|
|
2
|
-
from typing import *
|
|
3
|
-
|
|
4
|
-
import httpx
|
|
5
|
-
|
|
6
|
-
from ..api_config import APIConfig, HTTPException
|
|
7
|
-
from ..models import *
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
async def root__get(api_config_override: Optional[APIConfig] = None) -> Any:
|
|
11
|
-
api_config = api_config_override if api_config_override else APIConfig()
|
|
12
|
-
|
|
13
|
-
base_path = api_config.base_path
|
|
14
|
-
path = f"/"
|
|
15
|
-
headers = {
|
|
16
|
-
"Content-Type": "application/json",
|
|
17
|
-
"Accept": "application/json",
|
|
18
|
-
"Authorization": f"Bearer { api_config.get_access_token() }",
|
|
19
|
-
}
|
|
20
|
-
query_params: Dict[str, Any] = {}
|
|
21
|
-
|
|
22
|
-
query_params = {key: value for (key, value) in query_params.items() if value is not None}
|
|
23
|
-
|
|
24
|
-
async with httpx.AsyncClient(base_url=base_path, verify=api_config.verify) as client:
|
|
25
|
-
response = await client.request(
|
|
26
|
-
"get",
|
|
27
|
-
httpx.URL(path),
|
|
28
|
-
headers=headers,
|
|
29
|
-
params=query_params,
|
|
30
|
-
)
|
|
31
|
-
|
|
32
|
-
if response.status_code != 200:
|
|
33
|
-
raise HTTPException(response.status_code, f" failed with status code: {response.status_code}")
|
|
34
|
-
|
|
35
|
-
return response.json()
|