Skip to content

Commit

Permalink
Merge branch 'features/40_update_institutions_models' of https://gith…
Browse files Browse the repository at this point in the history
…ub.com/cfpb/regtech-user-fi-management into features/40_update_institutions_models
  • Loading branch information
Nargis Sultani committed Nov 30, 2023
2 parents 090ffdf + 8dabaed commit 0f07409
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 31 deletions.
3 changes: 2 additions & 1 deletion db_revisions/env.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
ENV = os.getenv("ENV", "LOCAL")

if ENV == "LOCAL":
load_dotenv("src/.env.local")
file_dir = os.path.dirname(os.path.realpath(__file__))
load_dotenv(f"{file_dir}/../src/.env.local")
else:
load_dotenv()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,9 @@ def upgrade() -> None:
op.create_foreign_key(None, "financial_institutions", "address_state", ["hq_address_state"], ["code"])
op.create_foreign_key(None, "financial_institutions", "hmda_institution_type", ["hmda_institution_type_id"], ["id"])
op.create_foreign_key(None, "financial_institutions", "sbl_institution_type", ["sbl_institution_type_id"], ["id"])
# ### end Alembic commands ###


def downgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###

op.drop_column("financial_institutions", "top_holder_rssd_id")
op.drop_column("financial_institutions", "top_holder_legal_name")
op.drop_column("financial_institutions", "top_holder_lei")
Expand All @@ -86,4 +83,3 @@ def downgrade() -> None:
op.drop_column("financial_institutions", "primary_federal_regulator_id")
op.drop_column("financial_institutions", "rssd_id")
op.drop_column("financial_institutions", "tax_id")
# ### end Alembic commands ###
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@


def upgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
op.create_table(
"address_state",
sa.Column("code", sa.String(length=2), nullable=False),
Expand All @@ -28,10 +27,7 @@ def upgrade() -> None:
sa.PrimaryKeyConstraint("code"),
sa.UniqueConstraint("name"),
)
# ### end Alembic commands ###


def downgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
op.drop_table("address_state")
# ### end Alembic commands ###
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@


def upgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###

op.create_table(
"federal_regulator",
sa.Column("id", sa.String(length=4), nullable=False),
Expand All @@ -30,11 +28,6 @@ def upgrade() -> None:
sa.UniqueConstraint("name"),
)

# ### end Alembic commands ###


def downgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
op.drop_table("federal_regulator")

# ### end Alembic commands ###
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@


def upgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###

op.create_table(
"sbl_institution_type",
sa.Column("id", sa.String(), nullable=False),
Expand All @@ -31,12 +29,6 @@ def upgrade() -> None:
)
op.create_index(op.f("ix_sbl_institution_type_id"), "sbl_institution_type", ["id"], unique=False)

# ### end Alembic commands ###


def downgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###

op.drop_table("sbl_institution_type")

# ### end Alembic commands ###
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@


def upgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###

op.create_table(
"hmda_institution_type",
sa.Column("id", sa.String(), nullable=False),
Expand All @@ -31,11 +29,6 @@ def upgrade() -> None:
)
op.create_index(op.f("ix_hmda_institution_type_id"), "hmda_institution_type", ["id"], unique=False)

# ### end Alembic commands ###


def downgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
op.drop_table("hmda_institution_type")

# ### end Alembic commands ###
12 changes: 12 additions & 0 deletions src/main.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
import os
import logging
from http import HTTPStatus
from fastapi import FastAPI, HTTPException, Request
from fastapi.responses import JSONResponse
from fastapi.security import OAuth2AuthorizationCodeBearer
from fastapi.middleware.cors import CORSMiddleware
from starlette.middleware.authentication import AuthenticationMiddleware
from alembic.config import Config
from alembic import command

from routers import admin_router, institutions_router

Expand All @@ -17,6 +20,15 @@
app = FastAPI()


@app.on_event("startup")
async def app_start():
file_dir = os.path.dirname(os.path.realpath(__file__))
alembic_cfg = Config(f"{file_dir}/../alembic.ini")
alembic_cfg.set_main_option("script_location", f"{file_dir}/../db_revisions")
alembic_cfg.set_main_option("prepend_sys_path", f"{file_dir}/../")
command.upgrade(alembic_cfg, "head")


@app.exception_handler(HTTPException)
async def http_exception_handler(request: Request, exception: HTTPException) -> JSONResponse:
log.error(exception, exc_info=True, stack_info=True)
Expand Down

0 comments on commit 0f07409

Please sign in to comment.