Skip to content

Commit a29f20e

Browse files
committed
Add endpoints for Users and accounts.
1 parent 508592f commit a29f20e

10 files changed

+257
-11
lines changed

__pycache__/main.cpython-39.pyc

67 Bytes
Binary file not shown.

accounts/crud.py

-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ async def create(self, *, obj_in: UserCreate, db: AsyncSession, slug_field: str
5959
raise ie.orig
6060
except SQLAlchemyError as se:
6161
raise se
62-
6362

6463
async def update(
6564
self, *,

accounts/main.py

+2-10
Original file line numberDiff line numberDiff line change
@@ -45,16 +45,8 @@ def update_user_me(
4545
"""
4646
Update own user.
4747
"""
48-
current_user_data = jsonable_encoder(current_user)
49-
user_in = schemas.UserUpdate(**current_user_data)
50-
if password is not None:
51-
user_in.password = password
52-
if full_name is not None:
53-
user_in.full_name = full_name
54-
if email is not None:
55-
user_in.email = email
56-
user = crud.user.update(db, db_obj=current_user, obj_in=user_in)
57-
return user
48+
return current_user
49+
5850

5951

6052

main.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
from fastapi import FastAPI
22

3+
from accounts import main as account_router
34
from blog import main as blog_router
45
from contact import main as contact_router
56

67
app = FastAPI()
78

89
app.include_router(blog_router.router)
910
app.include_router(contact_router.router, tags=["Contact"])
11+
app.include_router(account_router.router, tags=["Users"])
1012

1113

1214
@app.get("/", tags=["Home"])
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
"""Rename read_length to read_time
2+
3+
Revision ID: 1e0c0d4f51f6
4+
Revises: 9150a2b603d9
5+
Create Date: 2021-10-17 13:56:31.265803
6+
7+
"""
8+
from alembic import op
9+
import sqlalchemy as sa
10+
from core.base import Base
11+
12+
13+
# revision identifiers, used by Alembic.
14+
revision = '1e0c0d4f51f6'
15+
down_revision = '9150a2b603d9'
16+
branch_labels = None
17+
depends_on = None
18+
19+
20+
def upgrade():
21+
# ### commands auto generated by Alembic - please adjust! ###
22+
op.add_column('posts', sa.Column('read_time', sa.Integer(), nullable=True))
23+
op.drop_column('posts', 'read_length')
24+
# ### end Alembic commands ###
25+
26+
27+
def downgrade():
28+
# ### commands auto generated by Alembic - please adjust! ###
29+
op.add_column('posts', sa.Column('read_length', sa.INTEGER(), nullable=True))
30+
op.drop_column('posts', 'read_time')
31+
# ### end Alembic commands ###
+106
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
"""Init
2+
3+
Revision ID: 29ab561fd33d
4+
Revises:
5+
Create Date: 2021-10-12 00:09:19.054328
6+
7+
"""
8+
from alembic import op
9+
import sqlalchemy as sa
10+
from core.base import Base
11+
12+
13+
# revision identifiers, used by Alembic.
14+
revision = '29ab561fd33d'
15+
down_revision = None
16+
branch_labels = None
17+
depends_on = None
18+
19+
20+
def upgrade():
21+
# ### commands auto generated by Alembic - please adjust! ###
22+
op.create_table('categories',
23+
sa.Column('id', sa.Integer(), nullable=False),
24+
sa.Column('title', sa.String(length=100), nullable=True),
25+
sa.Column('description', sa.String(length=250), nullable=True),
26+
sa.Column('slug', sa.String(length=255), nullable=False),
27+
sa.Column('active', sa.Boolean(), nullable=True),
28+
sa.Column('created', sa.DateTime(), server_default=sa.text('(CURRENT_TIMESTAMP)'), nullable=True),
29+
sa.Column('updated', sa.DateTime(), server_default=sa.text('(CURRENT_TIMESTAMP)'), nullable=True),
30+
sa.PrimaryKeyConstraint('id')
31+
)
32+
op.create_index(op.f('ix_categories_id'), 'categories', ['id'], unique=False)
33+
op.create_index(op.f('ix_categories_slug'), 'categories', ['slug'], unique=True)
34+
op.create_index(op.f('ix_categories_title'), 'categories', ['title'], unique=False)
35+
op.create_table('contacts',
36+
sa.Column('id', sa.Integer(), nullable=False),
37+
sa.Column('firstname', sa.String(length=100), nullable=False),
38+
sa.Column('lastname', sa.String(length=100), nullable=False),
39+
sa.Column('email', sa.String(length=255), nullable=False),
40+
sa.Column('message', sa.Text(), nullable=False),
41+
sa.Column('status', sa.Boolean(), nullable=True),
42+
sa.Column('created', sa.DateTime(), server_default=sa.text('(CURRENT_TIMESTAMP)'), nullable=True),
43+
sa.PrimaryKeyConstraint('id')
44+
)
45+
op.create_index(op.f('ix_contacts_email'), 'contacts', ['email'], unique=False)
46+
op.create_index(op.f('ix_contacts_id'), 'contacts', ['id'], unique=False)
47+
op.create_table('users',
48+
sa.Column('id', sa.Integer(), nullable=False),
49+
sa.Column('firstname', sa.String(length=100), nullable=False),
50+
sa.Column('lastname', sa.String(length=100), nullable=False),
51+
sa.Column('username', sa.String(length=100), nullable=False),
52+
sa.Column('email', sa.String(length=255), nullable=False),
53+
sa.Column('password', sa.Text(), nullable=False),
54+
sa.Column('active', sa.Boolean(), nullable=True),
55+
sa.Column('staff', sa.Boolean(), nullable=True),
56+
sa.Column('admin', sa.Boolean(), nullable=True),
57+
sa.Column('created', sa.DateTime(), server_default=sa.text('(CURRENT_TIMESTAMP)'), nullable=True),
58+
sa.Column('updated', sa.DateTime(), server_default=sa.text('(CURRENT_TIMESTAMP)'), nullable=True),
59+
sa.PrimaryKeyConstraint('id')
60+
)
61+
op.create_index(op.f('ix_users_email'), 'users', ['email'], unique=True)
62+
op.create_index(op.f('ix_users_id'), 'users', ['id'], unique=False)
63+
op.create_index(op.f('ix_users_username'), 'users', ['username'], unique=True)
64+
op.create_table('posts',
65+
sa.Column('id', sa.Integer(), nullable=False),
66+
sa.Column('author_id', sa.Integer(), nullable=True),
67+
sa.Column('category_id', sa.Integer(), nullable=True),
68+
sa.Column('title', sa.String(length=100), nullable=False),
69+
sa.Column('description', sa.String(length=250), nullable=True),
70+
sa.Column('intro', sa.String(length=200), nullable=True),
71+
sa.Column('content', sa.Text(), nullable=True),
72+
sa.Column('post_image', sa.Text(), nullable=True),
73+
sa.Column('slug', sa.String(length=255), nullable=False),
74+
sa.Column('read_length', sa.Integer(), nullable=True),
75+
sa.Column('view_count', sa.Integer(), nullable=True),
76+
sa.Column('active', sa.Boolean(), nullable=True),
77+
sa.Column('created', sa.DateTime(), server_default=sa.text('(CURRENT_TIMESTAMP)'), nullable=True),
78+
sa.Column('updated', sa.DateTime(), server_default=sa.text('(CURRENT_TIMESTAMP)'), nullable=True),
79+
sa.ForeignKeyConstraint(['author_id'], ['users.id'], ),
80+
sa.ForeignKeyConstraint(['category_id'], ['categories.id'], ),
81+
sa.PrimaryKeyConstraint('id')
82+
)
83+
op.create_index(op.f('ix_posts_id'), 'posts', ['id'], unique=False)
84+
op.create_index(op.f('ix_posts_slug'), 'posts', ['slug'], unique=True)
85+
op.create_index(op.f('ix_posts_title'), 'posts', ['title'], unique=False)
86+
# ### end Alembic commands ###
87+
88+
89+
def downgrade():
90+
# ### commands auto generated by Alembic - please adjust! ###
91+
op.drop_index(op.f('ix_posts_title'), table_name='posts')
92+
op.drop_index(op.f('ix_posts_slug'), table_name='posts')
93+
op.drop_index(op.f('ix_posts_id'), table_name='posts')
94+
op.drop_table('posts')
95+
op.drop_index(op.f('ix_users_username'), table_name='users')
96+
op.drop_index(op.f('ix_users_id'), table_name='users')
97+
op.drop_index(op.f('ix_users_email'), table_name='users')
98+
op.drop_table('users')
99+
op.drop_index(op.f('ix_contacts_id'), table_name='contacts')
100+
op.drop_index(op.f('ix_contacts_email'), table_name='contacts')
101+
op.drop_table('contacts')
102+
op.drop_index(op.f('ix_categories_title'), table_name='categories')
103+
op.drop_index(op.f('ix_categories_slug'), table_name='categories')
104+
op.drop_index(op.f('ix_categories_id'), table_name='categories')
105+
op.drop_table('categories')
106+
# ### end Alembic commands ###
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
"""Removed Cascade
2+
3+
Revision ID: 40f0ee5383ef
4+
Revises: 507a013e929a
5+
Create Date: 2021-10-12 22:17:23.665538
6+
7+
"""
8+
from alembic import op
9+
import sqlalchemy as sa
10+
from core.base import Base
11+
12+
13+
# revision identifiers, used by Alembic.
14+
revision = '40f0ee5383ef'
15+
down_revision = '507a013e929a'
16+
branch_labels = None
17+
depends_on = None
18+
19+
20+
def upgrade():
21+
# ### commands auto generated by Alembic - please adjust! ###
22+
pass
23+
# ### end Alembic commands ###
24+
25+
26+
def downgrade():
27+
# ### commands auto generated by Alembic - please adjust! ###
28+
pass
29+
# ### end Alembic commands ###
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
"""Add nullable to time fields
2+
3+
Revision ID: 48245b4ab25a
4+
Revises: 40f0ee5383ef
5+
Create Date: 2021-10-13 18:55:59.264251
6+
7+
"""
8+
from alembic import op
9+
import sqlalchemy as sa
10+
from core.base import Base
11+
12+
13+
# revision identifiers, used by Alembic.
14+
revision = '48245b4ab25a'
15+
down_revision = '40f0ee5383ef'
16+
branch_labels = None
17+
depends_on = None
18+
19+
20+
def upgrade():
21+
# ### commands auto generated by Alembic - please adjust! ###
22+
pass
23+
# ### end Alembic commands ###
24+
25+
26+
def downgrade():
27+
# ### commands auto generated by Alembic - please adjust! ###
28+
pass
29+
# ### end Alembic commands ###
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
"""Add Cascade
2+
3+
Revision ID: 507a013e929a
4+
Revises: 29ab561fd33d
5+
Create Date: 2021-10-12 22:04:01.806519
6+
7+
"""
8+
from alembic import op
9+
import sqlalchemy as sa
10+
from core.base import Base
11+
12+
13+
# revision identifiers, used by Alembic.
14+
revision = '507a013e929a'
15+
down_revision = '29ab561fd33d'
16+
branch_labels = None
17+
depends_on = None
18+
19+
20+
def upgrade():
21+
# ### commands auto generated by Alembic - please adjust! ###
22+
pass
23+
# ### end Alembic commands ###
24+
25+
26+
def downgrade():
27+
# ### commands auto generated by Alembic - please adjust! ###
28+
pass
29+
# ### end Alembic commands ###
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
"""Removed index from email.
2+
3+
Revision ID: 9150a2b603d9
4+
Revises: 48245b4ab25a
5+
Create Date: 2021-10-14 23:08:22.507568
6+
7+
"""
8+
from alembic import op
9+
import sqlalchemy as sa
10+
from core.base import Base
11+
12+
13+
# revision identifiers, used by Alembic.
14+
revision = '9150a2b603d9'
15+
down_revision = '48245b4ab25a'
16+
branch_labels = None
17+
depends_on = None
18+
19+
20+
def upgrade():
21+
# ### commands auto generated by Alembic - please adjust! ###
22+
op.drop_index('ix_contacts_email', table_name='contacts')
23+
# ### end Alembic commands ###
24+
25+
26+
def downgrade():
27+
# ### commands auto generated by Alembic - please adjust! ###
28+
op.create_index('ix_contacts_email', 'contacts', ['email'], unique=False)
29+
# ### end Alembic commands ###

0 commit comments

Comments
 (0)