jaaql-middleware-python 3.1.16.26__tar.gz → 3.1.16.28__tar.gz
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.
- {jaaql-middleware-python-3.1.16.26/jaaql_middleware_python.egg-info → jaaql-middleware-python-3.1.16.28}/PKG-INFO +19 -1
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/README.md +4 -4
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/config/config-docker.ini +20 -20
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/config/config-test.ini +20 -20
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/config/config.ini +23 -23
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/config_constants.py +11 -11
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/constants.py +225 -225
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/db/db_interface.py +208 -208
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/db/db_pg_interface.py +138 -138
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/db/db_utils.py +175 -175
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/documentation/documentation_internal.py +1130 -1130
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/documentation/documentation_public.py +838 -838
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/documentation/documentation_shared.py +411 -411
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/email/email_manager.py +88 -88
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/email/email_manager_service.py +481 -481
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/email/patch_ems.py +9 -9
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/exceptions/http_status_exception.py +26 -26
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/interpreter/interpret_jaaql.py +358 -358
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/jaaql.py +138 -138
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/migrations/migration_history.sql +15 -15
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/migrations/migrations.py +96 -96
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/mvc/base_controller.py +640 -640
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/mvc/base_model.py +533 -533
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/mvc/controller.py +357 -357
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/mvc/model.py +1820 -1820
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/mvc/queries.py +142 -142
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/mvc/response.py +9 -9
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/openapi/swagger_documentation.py +689 -689
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/scripts/install_1.sql +12 -12
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/scripts/install_2.sql +564 -564
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/services/patch_script_install.py +9 -9
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/services/script_install.py +97 -97
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/test/component.py +45 -45
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/test/components/001_install.py +211 -211
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/test/components/002_applications.py +69 -69
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/test/components/003_signup.py +110 -110
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/test/components/004_database.py +7 -7
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/test/components/006_configuration.py +7 -7
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/test/components/007_authorization.py +7 -7
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/test/components/008_user.py +7 -7
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/test/components/009_oauth.py +7 -7
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/test/components/010_external_account.py +7 -7
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/test/components/011_external_app.py +7 -7
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/test/components/012_external_configuration.py +7 -7
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/test/components/013_external_account.py +7 -7
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/test/components/014_jaaql.py +8 -8
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/test/components/base_component.py +32 -32
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/test/components/component_utils.py +27 -27
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/test/perf.py +64 -64
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/utilities/crypt_utils.py +187 -187
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/utilities/options.py +167 -167
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/utilities/utils.py +133 -133
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/utilities/utils_no_project_imports.py +5 -5
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28/jaaql_middleware_python.egg-info}/PKG-INFO +19 -1
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/LICENSE.txt +0 -0
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/__init__.py +0 -0
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/config/__init__.py +0 -0
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/db/__init__.py +0 -0
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/documentation/__init__.py +0 -0
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/email/__init__.py +0 -0
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/exceptions/__init__.py +0 -0
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/exceptions/custom_http_status.py +0 -0
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/exceptions/not_yet_implement_exception.py +0 -0
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/interpreter/__init__.py +0 -0
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/migrations/__init__.py +0 -0
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/mvc/__init__.py +0 -0
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/mvc/controller_interface.py +0 -0
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/mvc/model_interface.py +0 -0
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/openapi/__init__.py +0 -0
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/patch.py +0 -0
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/scripts/__init__.py +0 -0
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/scripts/swagger_template.html +0 -0
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/services/__init__.py +0 -0
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/test/__init__.py +0 -0
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/test/components/__init__.py +0 -0
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/utilities/__init__.py +0 -0
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/utilities/vault.py +0 -0
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql_middleware_python.egg-info/SOURCES.txt +0 -0
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql_middleware_python.egg-info/dependency_links.txt +0 -0
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql_middleware_python.egg-info/requires.txt +0 -0
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql_middleware_python.egg-info/top_level.txt +0 -0
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/setup.cfg +0 -0
- {jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: jaaql-middleware-python
|
|
3
|
-
Version: 3.1.16.
|
|
3
|
+
Version: 3.1.16.28
|
|
4
4
|
Summary: The jaaql package, allowing for rapid development and deployment of RESTful HTTP applications
|
|
5
5
|
Home-page: https://github.com/JAAQL/JAAQL-middleware-python
|
|
6
6
|
Author: Software Quality Measurement and Improvement bv
|
|
@@ -8,6 +8,24 @@ Author-email: aaron.tasker@sqmi.nl
|
|
|
8
8
|
License: Mozilla Public License Version 2.0 with Commons Clause
|
|
9
9
|
Description-Content-Type: text/markdown
|
|
10
10
|
License-File: LICENSE.txt
|
|
11
|
+
Requires-Dist: psycopg[binary]~=3.0.14
|
|
12
|
+
Requires-Dist: Pillow~=9.1.1
|
|
13
|
+
Requires-Dist: cryptography~=38.0.4
|
|
14
|
+
Requires-Dist: flask~=2.1.2
|
|
15
|
+
Requires-Dist: coverage~=6.0
|
|
16
|
+
Requires-Dist: psycopg-pool~=3.1.1
|
|
17
|
+
Requires-Dist: pyjwt~=1.7.1
|
|
18
|
+
Requires-Dist: pyyaml~=5.4.1
|
|
19
|
+
Requires-Dist: werkzeug~=2.1.2
|
|
20
|
+
Requires-Dist: argon2-cffi~=21.3.0
|
|
21
|
+
Requires-Dist: pyotp~=2.6.0
|
|
22
|
+
Requires-Dist: qrcode~=7.3.1
|
|
23
|
+
Requires-Dist: gunicorn~=20.1.0
|
|
24
|
+
Requires-Dist: gevent~=22.10.2
|
|
25
|
+
Requires-Dist: requests~=2.28.2
|
|
26
|
+
Requires-Dist: pyzbar~=0.1.9
|
|
27
|
+
Requires-Dist: requests-unixsocket~=0.3.0
|
|
28
|
+
Requires-Dist: selenium~=4.2.0
|
|
11
29
|
|
|
12
30
|
# JAAQL-middleware-python
|
|
13
31
|
Please navigate to docker/docker.md to see setup instructions
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# JAAQL-middleware-python
|
|
2
|
-
Please navigate to docker/docker.md to see setup instructions
|
|
3
|
-
|
|
4
|
-
The project can be deployed alone to function as a database portal or extended as shown in the example app located at https://github.com/JAAQL/JAAQL-example-app
|
|
1
|
+
# JAAQL-middleware-python
|
|
2
|
+
Please navigate to docker/docker.md to see setup instructions
|
|
3
|
+
|
|
4
|
+
The project can be deployed alone to function as a database portal or extended as shown in the example app located at https://github.com/JAAQL/JAAQL-example-app
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
[DATABASE]
|
|
2
|
-
interface: postgres
|
|
3
|
-
|
|
4
|
-
[SYSTEM]
|
|
5
|
-
logging: True
|
|
6
|
-
|
|
7
|
-
[SECURITY]
|
|
8
|
-
mfa_label: {{MFA_LABEL}}
|
|
9
|
-
mfa_issuer: {{MFA_ISSUER}}
|
|
10
|
-
force_mfa: {{FORCE_MFA}}
|
|
11
|
-
invite_only: {{INVITE_ONLY}}
|
|
12
|
-
do_audit: {{DO_AUDIT}}
|
|
13
|
-
token_expiry_ms: 1800000
|
|
14
|
-
token_refresh_expiry_ms: 604800000
|
|
15
|
-
|
|
16
|
-
[SWAGGER]
|
|
17
|
-
url: {{SERVER_ADDRESS}}
|
|
18
|
-
|
|
19
|
-
[DEBUG]
|
|
20
|
-
output_query_exceptions: {{OUTPUT_QUERY_EXCEPTIONS}}
|
|
1
|
+
[DATABASE]
|
|
2
|
+
interface: postgres
|
|
3
|
+
|
|
4
|
+
[SYSTEM]
|
|
5
|
+
logging: True
|
|
6
|
+
|
|
7
|
+
[SECURITY]
|
|
8
|
+
mfa_label: {{MFA_LABEL}}
|
|
9
|
+
mfa_issuer: {{MFA_ISSUER}}
|
|
10
|
+
force_mfa: {{FORCE_MFA}}
|
|
11
|
+
invite_only: {{INVITE_ONLY}}
|
|
12
|
+
do_audit: {{DO_AUDIT}}
|
|
13
|
+
token_expiry_ms: 1800000
|
|
14
|
+
token_refresh_expiry_ms: 604800000
|
|
15
|
+
|
|
16
|
+
[SWAGGER]
|
|
17
|
+
url: {{SERVER_ADDRESS}}
|
|
18
|
+
|
|
19
|
+
[DEBUG]
|
|
20
|
+
output_query_exceptions: {{OUTPUT_QUERY_EXCEPTIONS}}
|
{jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/config/config-test.ini
RENAMED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
[DATABASE]
|
|
2
|
-
interface: postgres
|
|
3
|
-
|
|
4
|
-
[SYSTEM]
|
|
5
|
-
logging: True
|
|
6
|
-
|
|
7
|
-
[SERVER]
|
|
8
|
-
port: 6060
|
|
9
|
-
|
|
10
|
-
[SECURITY]
|
|
11
|
-
mfa_label: test
|
|
12
|
-
mfa_issuer: JAAQL
|
|
13
|
-
force_mfa: false
|
|
14
|
-
invite_only: false
|
|
15
|
-
do_audit: false
|
|
16
|
-
token_expiry_ms: 1800000
|
|
17
|
-
token_refresh_expiry_ms: 604800000
|
|
18
|
-
|
|
19
|
-
[SWAGGER]
|
|
20
|
-
url: http://localhost:6060
|
|
1
|
+
[DATABASE]
|
|
2
|
+
interface: postgres
|
|
3
|
+
|
|
4
|
+
[SYSTEM]
|
|
5
|
+
logging: True
|
|
6
|
+
|
|
7
|
+
[SERVER]
|
|
8
|
+
port: 6060
|
|
9
|
+
|
|
10
|
+
[SECURITY]
|
|
11
|
+
mfa_label: test
|
|
12
|
+
mfa_issuer: JAAQL
|
|
13
|
+
force_mfa: false
|
|
14
|
+
invite_only: false
|
|
15
|
+
do_audit: false
|
|
16
|
+
token_expiry_ms: 1800000
|
|
17
|
+
token_refresh_expiry_ms: 604800000
|
|
18
|
+
|
|
19
|
+
[SWAGGER]
|
|
20
|
+
url: http://localhost:6060
|
{jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/config/config.ini
RENAMED
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
[DATABASE]
|
|
2
|
-
interface: postgres
|
|
3
|
-
|
|
4
|
-
[SYSTEM]
|
|
5
|
-
logging: True
|
|
6
|
-
|
|
7
|
-
[SERVER]
|
|
8
|
-
port: 6060
|
|
9
|
-
|
|
10
|
-
[SECURITY]
|
|
11
|
-
mfa_label: test
|
|
12
|
-
mfa_issuer: JAAQL
|
|
13
|
-
force_mfa: false
|
|
14
|
-
invite_only: false
|
|
15
|
-
do_audit: true
|
|
16
|
-
token_expiry_ms: 1800000
|
|
17
|
-
token_refresh_expiry_ms: 604800000
|
|
18
|
-
|
|
19
|
-
[SWAGGER]
|
|
20
|
-
url: http://localhost:6060
|
|
21
|
-
|
|
22
|
-
[DEBUG]
|
|
23
|
-
output_query_exceptions: True
|
|
1
|
+
[DATABASE]
|
|
2
|
+
interface: postgres
|
|
3
|
+
|
|
4
|
+
[SYSTEM]
|
|
5
|
+
logging: True
|
|
6
|
+
|
|
7
|
+
[SERVER]
|
|
8
|
+
port: 6060
|
|
9
|
+
|
|
10
|
+
[SECURITY]
|
|
11
|
+
mfa_label: test
|
|
12
|
+
mfa_issuer: JAAQL
|
|
13
|
+
force_mfa: false
|
|
14
|
+
invite_only: false
|
|
15
|
+
do_audit: true
|
|
16
|
+
token_expiry_ms: 1800000
|
|
17
|
+
token_refresh_expiry_ms: 604800000
|
|
18
|
+
|
|
19
|
+
[SWAGGER]
|
|
20
|
+
url: http://localhost:6060
|
|
21
|
+
|
|
22
|
+
[DEBUG]
|
|
23
|
+
output_query_exceptions: True
|
{jaaql-middleware-python-3.1.16.26 → jaaql-middleware-python-3.1.16.28}/jaaql/config_constants.py
RENAMED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
CONFIG_KEY__security = "SECURITY"
|
|
2
|
-
CONFIG_KEY_SECURITY__mfa_label = "mfa_label"
|
|
3
|
-
CONFIG_KEY_SECURITY__force_mfa = "force_mfa"
|
|
4
|
-
CONFIG_KEY_SECURITY__invite_only = "invite_only"
|
|
5
|
-
CONFIG_KEY_SECURITY__do_audit = "do_audit"
|
|
6
|
-
CONFIG_KEY__swagger = "SWAGGER"
|
|
7
|
-
CONFIG_KEY_SWAGGER__url = "url"
|
|
8
|
-
CONFIG_KEY__server = "SERVER"
|
|
9
|
-
CONFIG_KEY_SERVER__port = "port"
|
|
10
|
-
CONFIG_KEY_SECURITY__mfa_issuer = "mfa_issuer"
|
|
11
|
-
CONFIG_KEY_SECURITY__token_expiry_ms = "token_expiry_ms"
|
|
1
|
+
CONFIG_KEY__security = "SECURITY"
|
|
2
|
+
CONFIG_KEY_SECURITY__mfa_label = "mfa_label"
|
|
3
|
+
CONFIG_KEY_SECURITY__force_mfa = "force_mfa"
|
|
4
|
+
CONFIG_KEY_SECURITY__invite_only = "invite_only"
|
|
5
|
+
CONFIG_KEY_SECURITY__do_audit = "do_audit"
|
|
6
|
+
CONFIG_KEY__swagger = "SWAGGER"
|
|
7
|
+
CONFIG_KEY_SWAGGER__url = "url"
|
|
8
|
+
CONFIG_KEY__server = "SERVER"
|
|
9
|
+
CONFIG_KEY_SERVER__port = "port"
|
|
10
|
+
CONFIG_KEY_SECURITY__mfa_issuer = "mfa_issuer"
|
|
11
|
+
CONFIG_KEY_SECURITY__token_expiry_ms = "token_expiry_ms"
|
|
12
12
|
CONFIG_KEY_SECURITY__token_refresh_expiry_ms = "token_refresh_expiry_ms"
|
|
@@ -1,225 +1,225 @@
|
|
|
1
|
-
KEY__id = "id"
|
|
2
|
-
KEY__last_totp = "last_totp"
|
|
3
|
-
KEY__attachment_name = "name"
|
|
4
|
-
KEY__application = "application"
|
|
5
|
-
KEY__application_description = "application_description"
|
|
6
|
-
KEY__configuration = "configuration"
|
|
7
|
-
KEY__configuration_name = "name"
|
|
8
|
-
KEY__configuration_description = "configuration_description"
|
|
9
|
-
KEY__exception = "exception"
|
|
10
|
-
KEY__data_validation_view = "data_validation_view"
|
|
11
|
-
KEY__allow_uninstall = "allow_uninstall"
|
|
12
|
-
KEY__uninstall_key = "uninstall_key"
|
|
13
|
-
KEY__install_key = "install_key"
|
|
14
|
-
KEY__deletion_key = "deletion_key"
|
|
15
|
-
KEY__render_as = "render_as"
|
|
16
|
-
KEY__url = "url"
|
|
17
|
-
KEY__superjaaql_password = "superjaaql_password"
|
|
18
|
-
KEY__public_username = "public_username"
|
|
19
|
-
KEY__records_total = "records_total"
|
|
20
|
-
KEY__records_filtered = "records_filtered"
|
|
21
|
-
KEY__data = "data"
|
|
22
|
-
KEY__db_url = "db_url"
|
|
23
|
-
KEY__precedence = "precedence"
|
|
24
|
-
KEY__roles = "roles"
|
|
25
|
-
KEY__pre_auth_key = "pre_auth_key"
|
|
26
|
-
KEY__email = "email"
|
|
27
|
-
KEY__sort = "sort"
|
|
28
|
-
KEY__invite_key = "invite_key"
|
|
29
|
-
KEY__invite_or_poll_key = "invite_or_poll_key"
|
|
30
|
-
KEY__invite_poll_key = "invite_poll_key"
|
|
31
|
-
KEY__invite_code = "invite_code"
|
|
32
|
-
KEY__invite_key_status = "invite_key_status"
|
|
33
|
-
KEY__reset_key = "reset_key"
|
|
34
|
-
KEY__reset_or_poll_key = "reset_or_poll_key"
|
|
35
|
-
KEY__reset_poll_key = "reset_poll_key"
|
|
36
|
-
KEY__reset_code = "reset_code"
|
|
37
|
-
KEY__reset_key_status = "reset_key_status"
|
|
38
|
-
KEY__parameters = "parameters"
|
|
39
|
-
KEY__oauth_token = "oauth_token"
|
|
40
|
-
KEY__template = "template"
|
|
41
|
-
KEY__create_file = "create_file"
|
|
42
|
-
KEY__subject = "subject"
|
|
43
|
-
KEY__recipient = "recipient"
|
|
44
|
-
KEY__completed = "completed"
|
|
45
|
-
KEY__filename = "filename"
|
|
46
|
-
KEY__content = "content"
|
|
47
|
-
KEY__attachments = "attachments"
|
|
48
|
-
KEY__app_relative_path = "app_relative_path"
|
|
49
|
-
KEY__sender = "sender"
|
|
50
|
-
KEY__search = "search"
|
|
51
|
-
KEY__application_name = "name"
|
|
52
|
-
KEY__db_super_user_password = "db_super_user_password"
|
|
53
|
-
KEY__dataset = "dataset"
|
|
54
|
-
KEY__dataset_name = "name"
|
|
55
|
-
KEY__dataset_description = "dataset_description"
|
|
56
|
-
KEY__size = "size"
|
|
57
|
-
KEY__database = "database"
|
|
58
|
-
KEY__node_name = "name"
|
|
59
|
-
KEY__authorization = "authorization"
|
|
60
|
-
KEY__argument = "argument"
|
|
61
|
-
KEY__is_node = "is_node"
|
|
62
|
-
KEY__application_new_url = "new_url"
|
|
63
|
-
KEY__connection = "connection"
|
|
64
|
-
KEY__node = "node"
|
|
65
|
-
KEY__application_url = "url"
|
|
66
|
-
KEY__key = "key"
|
|
67
|
-
KEY__role = "role"
|
|
68
|
-
KEY__mfa_key = "mfa_key"
|
|
69
|
-
KEY__mfa_enabled = "mfa_enabled"
|
|
70
|
-
KEY__username = "username"
|
|
71
|
-
KEY__password = "password"
|
|
72
|
-
KEY__default_database = "default_database"
|
|
73
|
-
KEY__new_password = "new_password"
|
|
74
|
-
KEY__new_password_confirm = "new_password_confirm"
|
|
75
|
-
KEY__page = "page"
|
|
76
|
-
KEY__use_mfa = "use_mfa"
|
|
77
|
-
KEY__show_deleted = "show_deleted"
|
|
78
|
-
KEY__description = "description"
|
|
79
|
-
KEY__database_name = "name"
|
|
80
|
-
KEY__create = "create"
|
|
81
|
-
KEY__drop = "drop"
|
|
82
|
-
KEY__force_transactional = "force_transactional"
|
|
83
|
-
KEY__port = "port"
|
|
84
|
-
KEY__address = "address"
|
|
85
|
-
KEY__jaaql_name = "jaaql_name"
|
|
86
|
-
KEY__otp_uri = "otp_uri"
|
|
87
|
-
KEY__otp_qr = "otp_qr"
|
|
88
|
-
KEY__jaaql_otp_uri = "jaaql_otp_uri"
|
|
89
|
-
KEY__jaaql_otp_qr = "jaaql_otp_qr"
|
|
90
|
-
KEY__superjaaql_otp_uri = "superjaaql_otp_uri"
|
|
91
|
-
KEY__superjaaql_otp_qr = "superjaaql_otp_qr"
|
|
92
|
-
KEY__is_public = "is_public"
|
|
93
|
-
KEY__account = "account"
|
|
94
|
-
KEY__encrypted_password = "encrypted_password"
|
|
95
|
-
KEY__email_template_name = "name"
|
|
96
|
-
KEY__column_name = "column_name"
|
|
97
|
-
KEY__table_name = "table_name"
|
|
98
|
-
KEY__is_primary = "is_primary"
|
|
99
|
-
KEY__data_validation_table = "data_validation_table"
|
|
100
|
-
KEY__recipient_validation_view = "recipient_validation_view"
|
|
101
|
-
KEY__email_template = "template"
|
|
102
|
-
KEY__do_send_signup_email = "do_send_signup_email"
|
|
103
|
-
KEY__allow_confirm_signup_attempt = "allow_confirm_signup_attempt"
|
|
104
|
-
KEY__allow_reset_password = "allow_reset_password"
|
|
105
|
-
KEY__already_signed_up_email_template = "existing_user_template"
|
|
106
|
-
KEY__allow_signup = "allow_signup"
|
|
107
|
-
KEY__email_account_name = "name"
|
|
108
|
-
KEY__email_sent = "sent"
|
|
109
|
-
KEY__body = "body"
|
|
110
|
-
KEY__default_email_signup_template = "default_email_signup_template"
|
|
111
|
-
KEY__default_email_already_signed_up_template = "default_email_already_signed_up_template"
|
|
112
|
-
KEY__default_reset_password_template = "default_reset_password_template"
|
|
113
|
-
KEY__document_id = "document_id"
|
|
114
|
-
KEY__as_attachment = "as_attachment"
|
|
115
|
-
KEY__email_account_protocol = "protocol"
|
|
116
|
-
KEY__email_account_host = "host"
|
|
117
|
-
KEY__email_account_port = "port"
|
|
118
|
-
KEY__email_account_username = "username"
|
|
119
|
-
KEY__email_account_send_name = "send_name"
|
|
120
|
-
|
|
121
|
-
ATTR__deleted = "deleted"
|
|
122
|
-
|
|
123
|
-
HEADER__security = "Authentication-Token"
|
|
124
|
-
HEADER__security_bypass = "Authentication-Token-Bypass"
|
|
125
|
-
|
|
126
|
-
SQL__where = "WHERE"
|
|
127
|
-
SQL__order_by = "ORDER BY"
|
|
128
|
-
SQL__limit = "LIMIT"
|
|
129
|
-
SQL__offset = "OFFSET"
|
|
130
|
-
SQL__asc = "ASC"
|
|
131
|
-
SQL__desc = "DESC"
|
|
132
|
-
SQL__and = "AND"
|
|
133
|
-
SQL__or = "OR"
|
|
134
|
-
SQL__like = "LIKE"
|
|
135
|
-
SQL__eq = "="
|
|
136
|
-
SQL__paren_open = "("
|
|
137
|
-
SQL__paren_close = ")"
|
|
138
|
-
SQL__single_quote = "'"
|
|
139
|
-
SQL__double_quote = '"'
|
|
140
|
-
SQL__lower = "lower"
|
|
141
|
-
SQL__varchar_cast = "::varchar"
|
|
142
|
-
SQL__is_null = "is null"
|
|
143
|
-
|
|
144
|
-
SEPARATOR__comma_space = ", "
|
|
145
|
-
SEPARATOR__comma = ","
|
|
146
|
-
SEPARATOR__space = " "
|
|
147
|
-
|
|
148
|
-
JAAQL__arg_marker = ":"
|
|
149
|
-
|
|
150
|
-
DIR__config = "config"
|
|
151
|
-
DIR__www = "www"
|
|
152
|
-
DIR__render_template = "rendered_documents"
|
|
153
|
-
|
|
154
|
-
FILE__config = "config.ini"
|
|
155
|
-
|
|
156
|
-
ENCODING__utf = "UTF-8"
|
|
157
|
-
ENCODING__ascii = "ascii"
|
|
158
|
-
EXAMPLE__jwt = "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.e30.yXvILkvUUCBqAFlAv6wQ1Q-QRAjfe3eSosO949U73Vo"
|
|
159
|
-
|
|
160
|
-
VAULT_KEY__db_crypt_key = "db_crypt_key"
|
|
161
|
-
VAULT_KEY__db_repeatable_salt = "repeatable_salt"
|
|
162
|
-
VAULT_KEY__jaaql_local_access_key = "jaaql_access_key"
|
|
163
|
-
VAULT_KEY__jaaql_lookup_connection = "jaaql_lookup_connection"
|
|
164
|
-
VAULT_KEY__allow_jaaql_uninstall = "Allow jaaql uninstall"
|
|
165
|
-
|
|
166
|
-
ENVIRON__vault_key = "JAAQL_VAULT_PASSWORD"
|
|
167
|
-
ENVIRON__local_install = "JAAQL_LOCAL_INSTALL"
|
|
168
|
-
ENVIRON__jaaql_profiling = "JAAQL_PROFILING"
|
|
169
|
-
ENVIRON__email_credentials = "JAAQL_EMAIL_CREDENTIALS"
|
|
170
|
-
ENVIRON__install_path = "INSTALL_PATH"
|
|
171
|
-
ENVIRON__sentinel_url = "SENTINEL_URL"
|
|
172
|
-
|
|
173
|
-
EMAIL_PARAM__signup_key = "JAAQL_INVITE_KEY"
|
|
174
|
-
EMAIL_PARAM__invite_code = "JAAQL_INVITE_SHORT_CODE"
|
|
175
|
-
|
|
176
|
-
EMAIL_PARAM__reset_key = "JAAQL_RESET_KEY"
|
|
177
|
-
EMAIL_PARAM__reset_code = "JAAQL_RESET_SHORT_CODE"
|
|
178
|
-
|
|
179
|
-
CONFIG_KEY__server = "SERVER"
|
|
180
|
-
CONFIG_KEY_SERVER__port = "port"
|
|
181
|
-
|
|
182
|
-
JWT_PURPOSE__oauth = "oauth"
|
|
183
|
-
JWT_PURPOSE__pre_auth = "pre_auth"
|
|
184
|
-
JWT_PURPOSE__connection = "connection"
|
|
185
|
-
|
|
186
|
-
ERR__not_yet_installed = "JAAQL has not yet been installed!"
|
|
187
|
-
ERR__user_public = "Cannot perform this action on a public user!"
|
|
188
|
-
ERR__too_many_signup_attempts = "Too many signup attempts"
|
|
189
|
-
ERR__too_many_reset_requests = "Too many reset requests"
|
|
190
|
-
ERR__too_many_code_attempts = "Code disabled due to too many incorrect attempts. Please use the link in the email"
|
|
191
|
-
ERR__document_still_rendering = "Document still rendering"
|
|
192
|
-
ERR__document_id_not_found = "Document id not found"
|
|
193
|
-
|
|
194
|
-
PG_ENV__password = "POSTGRES_PASSWORD"
|
|
195
|
-
|
|
196
|
-
HTML__base64_png = "data:image/png;base64,"
|
|
197
|
-
FORMAT__png = "png"
|
|
198
|
-
|
|
199
|
-
NODE__host_node = "host"
|
|
200
|
-
DB__jaaql = "jaaql"
|
|
201
|
-
DB__postgres = "postgres"
|
|
202
|
-
|
|
203
|
-
PORT__ems = 6061
|
|
204
|
-
|
|
205
|
-
ENDPOINT__configuration_authorizations = "/internal/applications/configurations/authorizations"
|
|
206
|
-
ENDPOINT__reload_accounts = "/reload-accounts"
|
|
207
|
-
ENDPOINT__send_email = "/send-email"
|
|
208
|
-
ENDPOINT__internal_applications = "/internal/applications"
|
|
209
|
-
ENDPOINT__internal_templates = "/internal/emails/templates"
|
|
210
|
-
ENDPOINT__internal_accounts = "/internal/emails/accounts"
|
|
211
|
-
ENDPOINT__is_alive = "/internal/is-alive"
|
|
212
|
-
ENDPOINT__jaaql_emails = "/emails"
|
|
213
|
-
ENDPOINT__report_sentinel_error = "/sentinel/reporting/error"
|
|
214
|
-
ENDPOINT__install = "/internal/install"
|
|
215
|
-
|
|
216
|
-
CONFIG__default = "Default config"
|
|
217
|
-
CONFIG__default_desc = "Default config description"
|
|
218
|
-
DATASET__default = "Default dataset"
|
|
219
|
-
DATASET__default_desc = "Default dataset description"
|
|
220
|
-
|
|
221
|
-
HTTP_STATUS__too_early = 425 # Shiv for python 3.8
|
|
222
|
-
|
|
223
|
-
USERNAME__jaaql = "jaaql"
|
|
224
|
-
|
|
225
|
-
VERSION = "3.1.16.
|
|
1
|
+
KEY__id = "id"
|
|
2
|
+
KEY__last_totp = "last_totp"
|
|
3
|
+
KEY__attachment_name = "name"
|
|
4
|
+
KEY__application = "application"
|
|
5
|
+
KEY__application_description = "application_description"
|
|
6
|
+
KEY__configuration = "configuration"
|
|
7
|
+
KEY__configuration_name = "name"
|
|
8
|
+
KEY__configuration_description = "configuration_description"
|
|
9
|
+
KEY__exception = "exception"
|
|
10
|
+
KEY__data_validation_view = "data_validation_view"
|
|
11
|
+
KEY__allow_uninstall = "allow_uninstall"
|
|
12
|
+
KEY__uninstall_key = "uninstall_key"
|
|
13
|
+
KEY__install_key = "install_key"
|
|
14
|
+
KEY__deletion_key = "deletion_key"
|
|
15
|
+
KEY__render_as = "render_as"
|
|
16
|
+
KEY__url = "url"
|
|
17
|
+
KEY__superjaaql_password = "superjaaql_password"
|
|
18
|
+
KEY__public_username = "public_username"
|
|
19
|
+
KEY__records_total = "records_total"
|
|
20
|
+
KEY__records_filtered = "records_filtered"
|
|
21
|
+
KEY__data = "data"
|
|
22
|
+
KEY__db_url = "db_url"
|
|
23
|
+
KEY__precedence = "precedence"
|
|
24
|
+
KEY__roles = "roles"
|
|
25
|
+
KEY__pre_auth_key = "pre_auth_key"
|
|
26
|
+
KEY__email = "email"
|
|
27
|
+
KEY__sort = "sort"
|
|
28
|
+
KEY__invite_key = "invite_key"
|
|
29
|
+
KEY__invite_or_poll_key = "invite_or_poll_key"
|
|
30
|
+
KEY__invite_poll_key = "invite_poll_key"
|
|
31
|
+
KEY__invite_code = "invite_code"
|
|
32
|
+
KEY__invite_key_status = "invite_key_status"
|
|
33
|
+
KEY__reset_key = "reset_key"
|
|
34
|
+
KEY__reset_or_poll_key = "reset_or_poll_key"
|
|
35
|
+
KEY__reset_poll_key = "reset_poll_key"
|
|
36
|
+
KEY__reset_code = "reset_code"
|
|
37
|
+
KEY__reset_key_status = "reset_key_status"
|
|
38
|
+
KEY__parameters = "parameters"
|
|
39
|
+
KEY__oauth_token = "oauth_token"
|
|
40
|
+
KEY__template = "template"
|
|
41
|
+
KEY__create_file = "create_file"
|
|
42
|
+
KEY__subject = "subject"
|
|
43
|
+
KEY__recipient = "recipient"
|
|
44
|
+
KEY__completed = "completed"
|
|
45
|
+
KEY__filename = "filename"
|
|
46
|
+
KEY__content = "content"
|
|
47
|
+
KEY__attachments = "attachments"
|
|
48
|
+
KEY__app_relative_path = "app_relative_path"
|
|
49
|
+
KEY__sender = "sender"
|
|
50
|
+
KEY__search = "search"
|
|
51
|
+
KEY__application_name = "name"
|
|
52
|
+
KEY__db_super_user_password = "db_super_user_password"
|
|
53
|
+
KEY__dataset = "dataset"
|
|
54
|
+
KEY__dataset_name = "name"
|
|
55
|
+
KEY__dataset_description = "dataset_description"
|
|
56
|
+
KEY__size = "size"
|
|
57
|
+
KEY__database = "database"
|
|
58
|
+
KEY__node_name = "name"
|
|
59
|
+
KEY__authorization = "authorization"
|
|
60
|
+
KEY__argument = "argument"
|
|
61
|
+
KEY__is_node = "is_node"
|
|
62
|
+
KEY__application_new_url = "new_url"
|
|
63
|
+
KEY__connection = "connection"
|
|
64
|
+
KEY__node = "node"
|
|
65
|
+
KEY__application_url = "url"
|
|
66
|
+
KEY__key = "key"
|
|
67
|
+
KEY__role = "role"
|
|
68
|
+
KEY__mfa_key = "mfa_key"
|
|
69
|
+
KEY__mfa_enabled = "mfa_enabled"
|
|
70
|
+
KEY__username = "username"
|
|
71
|
+
KEY__password = "password"
|
|
72
|
+
KEY__default_database = "default_database"
|
|
73
|
+
KEY__new_password = "new_password"
|
|
74
|
+
KEY__new_password_confirm = "new_password_confirm"
|
|
75
|
+
KEY__page = "page"
|
|
76
|
+
KEY__use_mfa = "use_mfa"
|
|
77
|
+
KEY__show_deleted = "show_deleted"
|
|
78
|
+
KEY__description = "description"
|
|
79
|
+
KEY__database_name = "name"
|
|
80
|
+
KEY__create = "create"
|
|
81
|
+
KEY__drop = "drop"
|
|
82
|
+
KEY__force_transactional = "force_transactional"
|
|
83
|
+
KEY__port = "port"
|
|
84
|
+
KEY__address = "address"
|
|
85
|
+
KEY__jaaql_name = "jaaql_name"
|
|
86
|
+
KEY__otp_uri = "otp_uri"
|
|
87
|
+
KEY__otp_qr = "otp_qr"
|
|
88
|
+
KEY__jaaql_otp_uri = "jaaql_otp_uri"
|
|
89
|
+
KEY__jaaql_otp_qr = "jaaql_otp_qr"
|
|
90
|
+
KEY__superjaaql_otp_uri = "superjaaql_otp_uri"
|
|
91
|
+
KEY__superjaaql_otp_qr = "superjaaql_otp_qr"
|
|
92
|
+
KEY__is_public = "is_public"
|
|
93
|
+
KEY__account = "account"
|
|
94
|
+
KEY__encrypted_password = "encrypted_password"
|
|
95
|
+
KEY__email_template_name = "name"
|
|
96
|
+
KEY__column_name = "column_name"
|
|
97
|
+
KEY__table_name = "table_name"
|
|
98
|
+
KEY__is_primary = "is_primary"
|
|
99
|
+
KEY__data_validation_table = "data_validation_table"
|
|
100
|
+
KEY__recipient_validation_view = "recipient_validation_view"
|
|
101
|
+
KEY__email_template = "template"
|
|
102
|
+
KEY__do_send_signup_email = "do_send_signup_email"
|
|
103
|
+
KEY__allow_confirm_signup_attempt = "allow_confirm_signup_attempt"
|
|
104
|
+
KEY__allow_reset_password = "allow_reset_password"
|
|
105
|
+
KEY__already_signed_up_email_template = "existing_user_template"
|
|
106
|
+
KEY__allow_signup = "allow_signup"
|
|
107
|
+
KEY__email_account_name = "name"
|
|
108
|
+
KEY__email_sent = "sent"
|
|
109
|
+
KEY__body = "body"
|
|
110
|
+
KEY__default_email_signup_template = "default_email_signup_template"
|
|
111
|
+
KEY__default_email_already_signed_up_template = "default_email_already_signed_up_template"
|
|
112
|
+
KEY__default_reset_password_template = "default_reset_password_template"
|
|
113
|
+
KEY__document_id = "document_id"
|
|
114
|
+
KEY__as_attachment = "as_attachment"
|
|
115
|
+
KEY__email_account_protocol = "protocol"
|
|
116
|
+
KEY__email_account_host = "host"
|
|
117
|
+
KEY__email_account_port = "port"
|
|
118
|
+
KEY__email_account_username = "username"
|
|
119
|
+
KEY__email_account_send_name = "send_name"
|
|
120
|
+
|
|
121
|
+
ATTR__deleted = "deleted"
|
|
122
|
+
|
|
123
|
+
HEADER__security = "Authentication-Token"
|
|
124
|
+
HEADER__security_bypass = "Authentication-Token-Bypass"
|
|
125
|
+
|
|
126
|
+
SQL__where = "WHERE"
|
|
127
|
+
SQL__order_by = "ORDER BY"
|
|
128
|
+
SQL__limit = "LIMIT"
|
|
129
|
+
SQL__offset = "OFFSET"
|
|
130
|
+
SQL__asc = "ASC"
|
|
131
|
+
SQL__desc = "DESC"
|
|
132
|
+
SQL__and = "AND"
|
|
133
|
+
SQL__or = "OR"
|
|
134
|
+
SQL__like = "LIKE"
|
|
135
|
+
SQL__eq = "="
|
|
136
|
+
SQL__paren_open = "("
|
|
137
|
+
SQL__paren_close = ")"
|
|
138
|
+
SQL__single_quote = "'"
|
|
139
|
+
SQL__double_quote = '"'
|
|
140
|
+
SQL__lower = "lower"
|
|
141
|
+
SQL__varchar_cast = "::varchar"
|
|
142
|
+
SQL__is_null = "is null"
|
|
143
|
+
|
|
144
|
+
SEPARATOR__comma_space = ", "
|
|
145
|
+
SEPARATOR__comma = ","
|
|
146
|
+
SEPARATOR__space = " "
|
|
147
|
+
|
|
148
|
+
JAAQL__arg_marker = ":"
|
|
149
|
+
|
|
150
|
+
DIR__config = "config"
|
|
151
|
+
DIR__www = "www"
|
|
152
|
+
DIR__render_template = "rendered_documents"
|
|
153
|
+
|
|
154
|
+
FILE__config = "config.ini"
|
|
155
|
+
|
|
156
|
+
ENCODING__utf = "UTF-8"
|
|
157
|
+
ENCODING__ascii = "ascii"
|
|
158
|
+
EXAMPLE__jwt = "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.e30.yXvILkvUUCBqAFlAv6wQ1Q-QRAjfe3eSosO949U73Vo"
|
|
159
|
+
|
|
160
|
+
VAULT_KEY__db_crypt_key = "db_crypt_key"
|
|
161
|
+
VAULT_KEY__db_repeatable_salt = "repeatable_salt"
|
|
162
|
+
VAULT_KEY__jaaql_local_access_key = "jaaql_access_key"
|
|
163
|
+
VAULT_KEY__jaaql_lookup_connection = "jaaql_lookup_connection"
|
|
164
|
+
VAULT_KEY__allow_jaaql_uninstall = "Allow jaaql uninstall"
|
|
165
|
+
|
|
166
|
+
ENVIRON__vault_key = "JAAQL_VAULT_PASSWORD"
|
|
167
|
+
ENVIRON__local_install = "JAAQL_LOCAL_INSTALL"
|
|
168
|
+
ENVIRON__jaaql_profiling = "JAAQL_PROFILING"
|
|
169
|
+
ENVIRON__email_credentials = "JAAQL_EMAIL_CREDENTIALS"
|
|
170
|
+
ENVIRON__install_path = "INSTALL_PATH"
|
|
171
|
+
ENVIRON__sentinel_url = "SENTINEL_URL"
|
|
172
|
+
|
|
173
|
+
EMAIL_PARAM__signup_key = "JAAQL_INVITE_KEY"
|
|
174
|
+
EMAIL_PARAM__invite_code = "JAAQL_INVITE_SHORT_CODE"
|
|
175
|
+
|
|
176
|
+
EMAIL_PARAM__reset_key = "JAAQL_RESET_KEY"
|
|
177
|
+
EMAIL_PARAM__reset_code = "JAAQL_RESET_SHORT_CODE"
|
|
178
|
+
|
|
179
|
+
CONFIG_KEY__server = "SERVER"
|
|
180
|
+
CONFIG_KEY_SERVER__port = "port"
|
|
181
|
+
|
|
182
|
+
JWT_PURPOSE__oauth = "oauth"
|
|
183
|
+
JWT_PURPOSE__pre_auth = "pre_auth"
|
|
184
|
+
JWT_PURPOSE__connection = "connection"
|
|
185
|
+
|
|
186
|
+
ERR__not_yet_installed = "JAAQL has not yet been installed!"
|
|
187
|
+
ERR__user_public = "Cannot perform this action on a public user!"
|
|
188
|
+
ERR__too_many_signup_attempts = "Too many signup attempts"
|
|
189
|
+
ERR__too_many_reset_requests = "Too many reset requests"
|
|
190
|
+
ERR__too_many_code_attempts = "Code disabled due to too many incorrect attempts. Please use the link in the email"
|
|
191
|
+
ERR__document_still_rendering = "Document still rendering"
|
|
192
|
+
ERR__document_id_not_found = "Document id not found"
|
|
193
|
+
|
|
194
|
+
PG_ENV__password = "POSTGRES_PASSWORD"
|
|
195
|
+
|
|
196
|
+
HTML__base64_png = "data:image/png;base64,"
|
|
197
|
+
FORMAT__png = "png"
|
|
198
|
+
|
|
199
|
+
NODE__host_node = "host"
|
|
200
|
+
DB__jaaql = "jaaql"
|
|
201
|
+
DB__postgres = "postgres"
|
|
202
|
+
|
|
203
|
+
PORT__ems = 6061
|
|
204
|
+
|
|
205
|
+
ENDPOINT__configuration_authorizations = "/internal/applications/configurations/authorizations"
|
|
206
|
+
ENDPOINT__reload_accounts = "/reload-accounts"
|
|
207
|
+
ENDPOINT__send_email = "/send-email"
|
|
208
|
+
ENDPOINT__internal_applications = "/internal/applications"
|
|
209
|
+
ENDPOINT__internal_templates = "/internal/emails/templates"
|
|
210
|
+
ENDPOINT__internal_accounts = "/internal/emails/accounts"
|
|
211
|
+
ENDPOINT__is_alive = "/internal/is-alive"
|
|
212
|
+
ENDPOINT__jaaql_emails = "/emails"
|
|
213
|
+
ENDPOINT__report_sentinel_error = "/sentinel/reporting/error"
|
|
214
|
+
ENDPOINT__install = "/internal/install"
|
|
215
|
+
|
|
216
|
+
CONFIG__default = "Default config"
|
|
217
|
+
CONFIG__default_desc = "Default config description"
|
|
218
|
+
DATASET__default = "Default dataset"
|
|
219
|
+
DATASET__default_desc = "Default dataset description"
|
|
220
|
+
|
|
221
|
+
HTTP_STATUS__too_early = 425 # Shiv for python 3.8
|
|
222
|
+
|
|
223
|
+
USERNAME__jaaql = "jaaql"
|
|
224
|
+
|
|
225
|
+
VERSION = "3.1.16.28"
|