Skip to content

Commit 3426b34

Browse files
authored
Merge pull request #785 from hngprojects/dev
Merge DevOps to Dev
2 parents 5aa506a + 9ce291f commit 3426b34

File tree

377 files changed

+22364
-2753
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

377 files changed

+22364
-2753
lines changed

.env.sample

+17-3
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,29 @@ MYSQL_DRIVER=
1010
DB_URL=postgresql://username:password@localhost:5432/test
1111
SECRET_KEY = ""
1212
ALGORITHM = HS256
13-
ACCESS_TOKEN_EXPIRE_MINUTES = 30
14-
JWT_REFRESH_EXPIRY=5
13+
ACCESS_TOKEN_EXPIRE_MINUTES = 3000
14+
JWT_REFRESH_EXPIRY=7
1515
APP_URL=
1616

1717
GOOGLE_CLIENT_ID=""
1818
GOOGLE_CLIENT_SECRET=""
1919

20+
FRONTEND_URL='http://127.0.0.1:3000/login-success'
21+
22+
TESTING=''
23+
2024
MAIL_USERNAME=""
2125
MAIL_PASSWORD=""
22-
MAIL_FROM=""
26+
MAIL_FROM="[email protected]"
2327
MAIL_PORT=465
2428
MAIL_SERVER="smtp.gmail.com"
29+
30+
TWILIO_ACCOUNT_SID="MOCK_ACCOUNT_SID"
31+
TWILIO_AUTH_TOKEN="MOCK_AUTH_TOKEN"
32+
TWILIO_PHONE_NUMBER="TWILIO_PHONE_NUMBER"
33+
34+
FLUTTERWAVE_SECRET=""
35+
PAYSTACK_SECRET=""
36+
37+
MAILJET_API_KEY='MAIL JET API KEY'
38+
MAILJET_API_SECRET='SECRET KEY'

.gitignore

+7-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22
__pycache__/
33
*.py[cod]
44
*$py.class
5+
media/
56

67
# C extensions
78
*.so
8-
9+
test_cases.py
910
# Distribution / packaging
1011
.Python
1112
build/
@@ -25,6 +26,7 @@ share/python-wheels/
2526
.installed.cfg
2627
*.egg
2728
MANIFEST
29+
api/core/dependencies/mailjet.py
2830

2931
# PyInstaller
3032
# Usually these files are written by a python script from a template
@@ -50,7 +52,7 @@ coverage.xml
5052
.hypothesis/
5153
.pytest_cache/
5254
cover/
53-
55+
case_test.py
5456
# Translations
5557
*.mo
5658
*.pot
@@ -128,6 +130,7 @@ celerybeat.pid
128130

129131
env/
130132
venv/
133+
*venv/
131134
ENV/
132135
env.bak/
133136
venv.bak/
@@ -164,3 +167,5 @@ cython_debug/
164167
# and can be added to the global gitignore or merged into this file. For a more nuclear
165168
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
166169
#.idea/
170+
171+
test_case1.py

alembic/env.py

+7-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@
44
from alembic import context
55
from decouple import config as decouple_config
66
from api.v1.models import *
7-
from api.v1.models.base import Base
7+
from api.v1.models.permissions.permissions import Permission
8+
from api.v1.models.permissions.role_permissions import role_permissions
9+
from api.v1.models.permissions.user_org_role import user_organization_roles
10+
from api.v1.models.permissions.role import Role
11+
from api.v1.models.associations import Base
812

913

1014
# this is the Alembic Config object, which provides
@@ -71,7 +75,7 @@ def run_migrations_online() -> None:
7175

7276
with connectable.connect() as connection:
7377
context.configure(
74-
connection=connection, target_metadata=target_metadata
78+
connection=connection, target_metadata=target_metadata,
7579
)
7680

7781
with context.begin_transaction():
@@ -81,4 +85,4 @@ def run_migrations_online() -> None:
8185
if context.is_offline_mode():
8286
run_migrations_offline()
8387
else:
84-
run_migrations_online()
88+
run_migrations_online()
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
"""create squeeze table
2+
3+
Revision ID: 085de908c797
4+
Revises: 70dab65f6844
5+
Create Date: 2024-08-01 00:05:04.351726
6+
7+
"""
8+
from typing import Sequence, Union
9+
10+
from alembic import op
11+
import sqlalchemy as sa
12+
13+
14+
# revision identifiers, used by Alembic.
15+
revision: str = '085de908c797'
16+
down_revision: Union[str, None] = '70dab65f6844'
17+
branch_labels: Union[str, Sequence[str], None] = None
18+
depends_on: Union[str, Sequence[str], None] = None
19+
20+
21+
def upgrade() -> None:
22+
# ### commands auto generated by Alembic - please adjust! ###
23+
op.create_table('squeezes',
24+
sa.Column('title', sa.String(), nullable=False),
25+
sa.Column('email', sa.String(), nullable=False),
26+
sa.Column('user_id', sa.String(), nullable=False),
27+
sa.Column('url_slug', sa.String(), nullable=True),
28+
sa.Column('headline', sa.String(), nullable=True),
29+
sa.Column('sub_headline', sa.String(), nullable=True),
30+
sa.Column('body', sa.Text(), nullable=True),
31+
sa.Column('type', sa.String(), nullable=True),
32+
sa.Column('full_name', sa.String(), nullable=True),
33+
sa.Column('status', sa.Enum('online', 'offline', name='squeezestatusenum'), nullable=True),
34+
sa.Column('id', sa.String(), nullable=False),
35+
sa.Column('created_at', sa.DateTime(timezone=True), server_default=sa.text('now()'), nullable=True),
36+
sa.Column('updated_at', sa.DateTime(timezone=True), server_default=sa.text('now()'), nullable=True),
37+
sa.ForeignKeyConstraint(['user_id'], ['users.id'], ondelete='CASCADE'),
38+
sa.PrimaryKeyConstraint('id')
39+
)
40+
op.create_index(op.f('ix_squeezes_id'), 'squeezes', ['id'], unique=False)
41+
# ### end Alembic commands ###
42+
43+
44+
def downgrade() -> None:
45+
# ### commands auto generated by Alembic - please adjust! ###
46+
op.drop_index(op.f('ix_squeezes_id'), table_name='squeezes')
47+
op.drop_table('squeezes')
48+
# ### end Alembic commands ###
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
"""add data privacy settings and team members tables
2+
3+
Revision ID: 1778dd5dc8a6
4+
Revises: 3cfce484758c
5+
Create Date: 2024-08-06 01:11:37.170473
6+
7+
"""
8+
from typing import Sequence, Union
9+
10+
from alembic import op
11+
import sqlalchemy as sa
12+
13+
14+
# revision identifiers, used by Alembic.
15+
revision: str = '1778dd5dc8a6'
16+
down_revision: Union[str, None] = '3cfce484758c'
17+
branch_labels: Union[str, Sequence[str], None] = None
18+
depends_on: Union[str, Sequence[str], None] = None
19+
20+
21+
def upgrade() -> None:
22+
# ### commands auto generated by Alembic - please adjust! ###
23+
op.create_table('data_privacy_settings',
24+
sa.Column('profile_visibility', sa.Boolean(), server_default='true', nullable=True),
25+
sa.Column('share_data_with_partners', sa.Boolean(), server_default='false', nullable=True),
26+
sa.Column('receice_email_updates', sa.Boolean(), server_default='true', nullable=True),
27+
sa.Column('enable_two_factor_authentication', sa.Boolean(), server_default='false', nullable=True),
28+
sa.Column('use_data_encryption', sa.Boolean(), server_default='true', nullable=True),
29+
sa.Column('allow_analytics', sa.Boolean(), server_default='true', nullable=True),
30+
sa.Column('personalized_ads', sa.Boolean(), server_default='false', nullable=True),
31+
sa.Column('user_id', sa.String(), nullable=False),
32+
sa.Column('id', sa.String(), nullable=False),
33+
sa.Column('created_at', sa.DateTime(timezone=True), server_default=sa.text('now()'), nullable=True),
34+
sa.Column('updated_at', sa.DateTime(timezone=True), server_default=sa.text('now()'), nullable=True),
35+
sa.ForeignKeyConstraint(['user_id'], ['users.id'], ondelete='CASCADE'),
36+
sa.PrimaryKeyConstraint('id')
37+
)
38+
op.create_index(op.f('ix_data_privacy_settings_id'), 'data_privacy_settings', ['id'], unique=False)
39+
# ### end Alembic commands ###
40+
41+
42+
def downgrade() -> None:
43+
# ### commands auto generated by Alembic - please adjust! ###
44+
op.drop_index(op.f('ix_data_privacy_settings_id'), table_name='data_privacy_settings')
45+
op.drop_table('data_privacy_settings')
46+
# ### end Alembic commands ###
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
"""add email templates table
2+
3+
Revision ID: 27ffc98eab7b
4+
Revises: eb6fe394d75b
5+
Create Date: 2024-08-01 12:10:26.298413
6+
7+
"""
8+
from typing import Sequence, Union
9+
10+
from alembic import op
11+
import sqlalchemy as sa
12+
13+
14+
# revision identifiers, used by Alembic.
15+
revision: str = '27ffc98eab7b'
16+
down_revision: Union[str, None] = 'eb6fe394d75b'
17+
branch_labels: Union[str, Sequence[str], None] = None
18+
depends_on: Union[str, Sequence[str], None] = None
19+
20+
21+
def upgrade() -> None:
22+
# ### commands auto generated by Alembic - please adjust! ###
23+
op.create_table('email_templates',
24+
sa.Column('name', sa.Text(), nullable=False),
25+
sa.Column('html_content', sa.Text(), nullable=False),
26+
sa.Column('id', sa.String(), nullable=False),
27+
sa.Column('created_at', sa.DateTime(timezone=True), server_default=sa.text('now()'), nullable=True),
28+
sa.Column('updated_at', sa.DateTime(timezone=True), server_default=sa.text('now()'), nullable=True),
29+
sa.PrimaryKeyConstraint('id')
30+
)
31+
op.create_index(op.f('ix_email_templates_id'), 'email_templates', ['id'], unique=False)
32+
# ### end Alembic commands ###
33+
34+
35+
def downgrade() -> None:
36+
# ### commands auto generated by Alembic - please adjust! ###
37+
op.drop_index(op.f('ix_email_templates_id'), table_name='email_templates')
38+
op.drop_table('email_templates')
39+
# ### end Alembic commands ###
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
"""fix: resolved naming issues
2+
3+
Revision ID: 3b6d16e973a2
4+
Revises: 5e8d48445236
5+
Create Date: 2024-08-07 17:34:13.208213
6+
7+
"""
8+
from typing import Sequence, Union
9+
10+
from alembic import op
11+
import sqlalchemy as sa
12+
13+
14+
# revision identifiers, used by Alembic.
15+
revision: str = '3b6d16e973a2'
16+
down_revision: Union[str, None] = '5e8d48445236'
17+
branch_labels: Union[str, Sequence[str], None] = None
18+
depends_on: Union[str, Sequence[str], None] = None
19+
20+
21+
def upgrade() -> None:
22+
# ### commands auto generated by Alembic - please adjust! ###
23+
op.add_column('organizations', sa.Column('name', sa.String(), nullable=False))
24+
op.add_column('organizations', sa.Column('email', sa.String(), nullable=True))
25+
op.add_column('organizations', sa.Column('type', sa.String(), nullable=True))
26+
op.add_column('organizations', sa.Column('description', sa.String(), nullable=True))
27+
op.drop_constraint('organizations_company_email_key', 'organizations', type_='unique')
28+
op.drop_constraint('organizations_company_name_key', 'organizations', type_='unique')
29+
op.create_unique_constraint(None, 'organizations', ['email'])
30+
op.create_unique_constraint(None, 'organizations', ['name'])
31+
op.drop_column('organizations', 'company_name')
32+
op.drop_column('organizations', 'organization_type')
33+
op.drop_column('organizations', 'lga')
34+
op.drop_column('organizations', 'company_email')
35+
# ### end Alembic commands ###
36+
37+
38+
def downgrade() -> None:
39+
# ### commands auto generated by Alembic - please adjust! ###
40+
op.add_column('organizations', sa.Column('company_email', sa.VARCHAR(), autoincrement=False, nullable=True))
41+
op.add_column('organizations', sa.Column('lga', sa.VARCHAR(), autoincrement=False, nullable=True))
42+
op.add_column('organizations', sa.Column('organization_type', sa.VARCHAR(), autoincrement=False, nullable=True))
43+
op.add_column('organizations', sa.Column('company_name', sa.VARCHAR(), autoincrement=False, nullable=False))
44+
op.drop_constraint(None, 'organizations', type_='unique')
45+
op.drop_constraint(None, 'organizations', type_='unique')
46+
op.create_unique_constraint('organizations_company_name_key', 'organizations', ['company_name'])
47+
op.create_unique_constraint('organizations_company_email_key', 'organizations', ['company_email'])
48+
op.drop_column('organizations', 'description')
49+
op.drop_column('organizations', 'type')
50+
op.drop_column('organizations', 'email')
51+
op.drop_column('organizations', 'name')
52+
# ### end Alembic commands ###
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
"""add data privacy settings and team members tables
2+
3+
Revision ID: 3cfce484758c
4+
Revises: 7231aadcf4e4
5+
Create Date: 2024-08-06 01:09:37.338636
6+
7+
"""
8+
from typing import Sequence, Union
9+
10+
from alembic import op
11+
import sqlalchemy as sa
12+
13+
14+
# revision identifiers, used by Alembic.
15+
revision: str = '3cfce484758c'
16+
down_revision: Union[str, None] = '7231aadcf4e4'
17+
branch_labels: Union[str, Sequence[str], None] = None
18+
depends_on: Union[str, Sequence[str], None] = None
19+
20+
21+
def upgrade() -> None:
22+
# ### commands auto generated by Alembic - please adjust! ###
23+
op.create_table('team_members',
24+
sa.Column('name', sa.String(), nullable=False),
25+
sa.Column('role', sa.String(), nullable=False),
26+
sa.Column('description', sa.Text(), nullable=False),
27+
sa.Column('picture_url', sa.String(), nullable=False),
28+
sa.Column('team_type', sa.String(), nullable=True),
29+
sa.Column('facebook_link', sa.String(), nullable=True),
30+
sa.Column('instagram_link', sa.String(), nullable=True),
31+
sa.Column('xtwitter_link', sa.String(), nullable=True),
32+
sa.Column('id', sa.String(), nullable=False),
33+
sa.Column('created_at', sa.DateTime(timezone=True), server_default=sa.text('now()'), nullable=True),
34+
sa.Column('updated_at', sa.DateTime(timezone=True), server_default=sa.text('now()'), nullable=True),
35+
sa.PrimaryKeyConstraint('id')
36+
)
37+
op.create_index(op.f('ix_team_members_id'), 'team_members', ['id'], unique=False)
38+
# ### end Alembic commands ###
39+
40+
41+
def downgrade() -> None:
42+
# ### commands auto generated by Alembic - please adjust! ###
43+
op.drop_index(op.f('ix_team_members_id'), table_name='team_members')
44+
op.drop_table('team_members')
45+
# ### end Alembic commands ###
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
"""update relation on user data privacy setting
2+
3+
Revision ID: 5957c6e4194f
4+
Revises: 836938cb4ce1
5+
Create Date: 2024-08-06 11:39:10.013428
6+
7+
"""
8+
from typing import Sequence, Union
9+
10+
from alembic import op
11+
import sqlalchemy as sa
12+
13+
14+
# revision identifiers, used by Alembic.
15+
revision: str = '5957c6e4194f'
16+
down_revision: Union[str, None] = '836938cb4ce1'
17+
branch_labels: Union[str, Sequence[str], None] = None
18+
depends_on: Union[str, Sequence[str], None] = None
19+
20+
21+
def upgrade() -> None:
22+
# ### commands auto generated by Alembic - please adjust! ###
23+
pass
24+
# ### end Alembic commands ###
25+
26+
27+
def downgrade() -> None:
28+
# ### commands auto generated by Alembic - please adjust! ###
29+
pass
30+
# ### end Alembic commands ###

0 commit comments

Comments
 (0)