dataflow-core 2.0.6__py3-none-any.whl → 2.0.7__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.
Potentially problematic release.
This version of dataflow-core might be problematic. Click here for more details.
- authenticator/dataflowhubauthenticator.py +17 -1
- dataflow/scripts/create_environment.sh +2 -2
- {dataflow_core-2.0.6.dist-info → dataflow_core-2.0.7.dist-info}/METADATA +6 -10
- {dataflow_core-2.0.6.dist-info → dataflow_core-2.0.7.dist-info}/RECORD +7 -9
- {dataflow_core-2.0.6.dist-info → dataflow_core-2.0.7.dist-info}/WHEEL +1 -1
- {dataflow_core-2.0.6.dist-info → dataflow_core-2.0.7.dist-info}/entry_points.txt +0 -1
- dataflow/models/session.py +0 -17
- dataflow/models/user.py +0 -23
- {dataflow_core-2.0.6.dist-info → dataflow_core-2.0.7.dist-info}/top_level.txt +0 -0
|
@@ -65,7 +65,23 @@ class DataflowHubAuthenticator(Authenticator):
|
|
|
65
65
|
self.db.refresh(db_item)
|
|
66
66
|
|
|
67
67
|
expires = datetime.now(timezone.utc) + timedelta(days=365)
|
|
68
|
-
handler.
|
|
68
|
+
host = handler.request.host
|
|
69
|
+
parts = host.split('.')
|
|
70
|
+
if len(parts) >= 2:
|
|
71
|
+
domain = '.'.join(parts[-2:])
|
|
72
|
+
else:
|
|
73
|
+
domain = host
|
|
74
|
+
base_domain = f".{domain}"
|
|
75
|
+
handler.set_cookie(
|
|
76
|
+
"dataflow_session",
|
|
77
|
+
session_id,
|
|
78
|
+
domain=base_domain,
|
|
79
|
+
path="/",
|
|
80
|
+
expires=expires,
|
|
81
|
+
secure=True,
|
|
82
|
+
httponly=True,
|
|
83
|
+
samesite="None"
|
|
84
|
+
)
|
|
69
85
|
user_dict = {"name": username, "session_id": session_id}
|
|
70
86
|
return user_dict
|
|
71
87
|
|
|
@@ -17,9 +17,9 @@ ${conda_env_path}/bin/pip install --root-user-action ignore ${libraries[@]}
|
|
|
17
17
|
# 3. Install Dataflow Airflow to a separate path in environment
|
|
18
18
|
${conda_env_path}/bin/pip install \
|
|
19
19
|
--force-reinstall --root-user-action ignore \
|
|
20
|
-
--no-warn-conflicts dataflow-airflow==2.10.
|
|
20
|
+
--no-warn-conflicts dataflow-airflow==2.10.5 \
|
|
21
21
|
--target ${conda_env_path}/bin/airflow-libraries/ \
|
|
22
|
-
--constraint https://raw.githubusercontent.com//apache/airflow/constraints-2.10.
|
|
22
|
+
--constraint https://raw.githubusercontent.com//apache/airflow/constraints-2.10.5/constraints-${py_version}.txt || true
|
|
23
23
|
|
|
24
24
|
files=(
|
|
25
25
|
${conda_env_path}/lib/python${py_version}/site-packages/dbt/config/profile.py
|
|
@@ -1,18 +1,14 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: dataflow-core
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.7
|
|
4
4
|
Summary: Dataflow core package
|
|
5
|
-
Home-page: UNKNOWN
|
|
6
5
|
Author: Dataflow
|
|
7
|
-
Author-email:
|
|
8
|
-
License: UNKNOWN
|
|
9
|
-
Platform: UNKNOWN
|
|
6
|
+
Author-email:
|
|
10
7
|
Requires-Dist: sqlalchemy
|
|
11
8
|
Requires-Dist: boto3
|
|
12
9
|
Requires-Dist: psycopg2-binary
|
|
13
10
|
Requires-Dist: pymysql
|
|
14
11
|
Requires-Dist: requests
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
12
|
+
Dynamic: author
|
|
13
|
+
Dynamic: requires-dist
|
|
14
|
+
Dynamic: summary
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
authenticator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
authenticator/dataflowairflowauthenticator.py,sha256=PcGlL2cq5EA9RdtClyrOupvNXxk6h54UPQcQ-g4VQtA,3117
|
|
3
|
-
authenticator/dataflowhubauthenticator.py,sha256=
|
|
3
|
+
authenticator/dataflowhubauthenticator.py,sha256=m7ef84WfAjQ0IM8bg-1JhPs75rMNwKq3B0ZB5XF-07w,3403
|
|
4
4
|
authenticator/dataflowsupersetauthenticator.py,sha256=M2pNpIdmWwzJVuMQ6trXLWQT4HpcYT84bC93uOSm0fQ,1772
|
|
5
5
|
authenticator/package/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
authenticator/package/configuration.py,sha256=7To6XwH1eESiYp39eqPcswXWwrdBUdPF6xN6WnazOF0,663
|
|
@@ -13,13 +13,11 @@ dataflow/configuration.py,sha256=7To6XwH1eESiYp39eqPcswXWwrdBUdPF6xN6WnazOF0,663
|
|
|
13
13
|
dataflow/dataflow.py,sha256=viEKxu1bVFtenbPx8etCb7Gf-Hbwv0KvkE7occVbX8I,5136
|
|
14
14
|
dataflow/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
15
|
dataflow/models/database.py,sha256=y09pqnglsBBtDZlyhvqDAlpUSFovwAzBAi6jOYl_XNk,896
|
|
16
|
-
dataflow/
|
|
17
|
-
dataflow/models/user.py,sha256=IYogp_vt0yDBG5i936uNPjgTis77VYPzITn9XpQUIyw,788
|
|
18
|
-
dataflow/scripts/create_environment.sh,sha256=r4cKRTMf1G9pXx1fqMpzkvd-ROzUH0Qp16f9t84Nh5c,1300
|
|
16
|
+
dataflow/scripts/create_environment.sh,sha256=nnE2295DCflUGz11RR0k6-TulQlpoXLqEpKZ9QU5t6g,1300
|
|
19
17
|
dataflow/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
18
|
dataflow/utils/aws_secrets_manager.py,sha256=FqHm3YRynv580FpFsS0RfI1MSGY5aq-V7t4blpiYsS4,2588
|
|
21
|
-
dataflow_core-2.0.
|
|
22
|
-
dataflow_core-2.0.
|
|
23
|
-
dataflow_core-2.0.
|
|
24
|
-
dataflow_core-2.0.
|
|
25
|
-
dataflow_core-2.0.
|
|
19
|
+
dataflow_core-2.0.7.dist-info/METADATA,sha256=em6wCVL-OURnlA9c7tHV_25vCM6fsrEVuRCOuAtIKBo,301
|
|
20
|
+
dataflow_core-2.0.7.dist-info/WHEEL,sha256=wXxTzcEDnjrTwFYjLPcsW_7_XihufBwmpiBeiXNBGEA,91
|
|
21
|
+
dataflow_core-2.0.7.dist-info/entry_points.txt,sha256=ppj_EIbYrJJwCPg1kfdsZk5q1N-Ejfis1neYrnjhO8o,117
|
|
22
|
+
dataflow_core-2.0.7.dist-info/top_level.txt,sha256=SZsUOpSCK9ntUy-3Tusxzf5A2e8ebwD8vouPb1dPt_8,23
|
|
23
|
+
dataflow_core-2.0.7.dist-info/RECORD,,
|
dataflow/models/session.py
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
"""models.py"""
|
|
2
|
-
from sqlalchemy import Column, Integer, String
|
|
3
|
-
from sqlalchemy.ext.declarative import declarative_base
|
|
4
|
-
|
|
5
|
-
#instance for create declarative base
|
|
6
|
-
Base=declarative_base()
|
|
7
|
-
|
|
8
|
-
class Session_table(Base):
|
|
9
|
-
"""
|
|
10
|
-
Table SESSIONS
|
|
11
|
-
"""
|
|
12
|
-
|
|
13
|
-
__tablename__='SESSION'
|
|
14
|
-
|
|
15
|
-
id = Column(Integer, primary_key=True, index=True, unique=True, nullable=False, autoincrement=True)
|
|
16
|
-
session_id = Column(String, unique=True, nullable=False)
|
|
17
|
-
user_id = Column(String, nullable=False)
|
dataflow/models/user.py
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
"""models.py"""
|
|
2
|
-
from sqlalchemy import Column, Integer, String, LargeBinary, Enum
|
|
3
|
-
from sqlalchemy.ext.declarative import declarative_base
|
|
4
|
-
|
|
5
|
-
#instance for create declarative base
|
|
6
|
-
Base=declarative_base()
|
|
7
|
-
|
|
8
|
-
class User(Base):
|
|
9
|
-
"""
|
|
10
|
-
Table USER
|
|
11
|
-
"""
|
|
12
|
-
|
|
13
|
-
__tablename__='USER'
|
|
14
|
-
|
|
15
|
-
user_id = Column(Integer, primary_key=True, index=True, autoincrement=True, nullable=False)
|
|
16
|
-
user_name = Column(String, unique=True, nullable=False)
|
|
17
|
-
first_name = Column(String)
|
|
18
|
-
last_name = Column(String)
|
|
19
|
-
email = Column(String, unique=True)
|
|
20
|
-
role = Column(Enum('admin', 'user', name='role_field'), nullable=False)
|
|
21
|
-
image = Column(LargeBinary)
|
|
22
|
-
active = Column(Enum('N', 'Y', name='active_field'), nullable=False, server_default=str("N"))
|
|
23
|
-
password = Column(String, nullable=False)
|
|
File without changes
|