Update pre-commit hook and reformat files

This commit is contained in:
Santiago Lo Coco 2023-11-01 12:06:52 -03:00
parent 98bacab6a9
commit 5084c38283
32 changed files with 123 additions and 99 deletions

View File

@ -50,11 +50,11 @@ preparation:
- echo "DOCKER_HUB_SUBSCRIPTION_IMAGE=$DOCKER_HUB_USER/subs-manager:${BUILD_ID}" >> context.env - echo "DOCKER_HUB_SUBSCRIPTION_IMAGE=$DOCKER_HUB_USER/subs-manager:${BUILD_ID}" >> context.env
- echo "DOCKER_HUB_USER_MANAGER_IMAGE=$DOCKER_HUB_USER/user-manager:${BUILD_ID}" >> context.env - echo "DOCKER_HUB_USER_MANAGER_IMAGE=$DOCKER_HUB_USER/user-manager:${BUILD_ID}" >> context.env
- echo "DOCKER_HUB_FLIGHT_INFO_IMAGE=$DOCKER_HUB_USER/flights-information:${BUILD_ID}" >> context.env - echo "DOCKER_HUB_FLIGHT_INFO_IMAGE=$DOCKER_HUB_USER/flights-information:${BUILD_ID}" >> context.env
- echo "ENV_DEV_FILE=$(echo $ENV_DEV)" >> context.env - echo "ENV_DEV_FILE=$(echo $ENV_DEV)" >> context.env
- echo "ENV_PROD_FILE=$(echo $ENV_PROD)" >> context.env - echo "ENV_PROD_FILE=$(echo $ENV_PROD)" >> context.env
artifacts: artifacts:
paths: paths:
- context.env - context.env
build-auth-api: build-auth-api:
@ -352,8 +352,8 @@ test-browser-integration:
script: script:
- export $(cat context.env | xargs) - export $(cat context.env | xargs)
- docker login -u $CI_REGISTRY_USER --password $CI_JOB_TOKEN $CI_REGISTRY - docker login -u $CI_REGISTRY_USER --password $CI_JOB_TOKEN $CI_REGISTRY
- export TEST_TARGET=INTEGRATION - export TEST_TARGET=INTEGRATION
- export API_IMAGE=$FLIGHTS_INFO_TEST_IMAGE_NAME - export API_IMAGE=$FLIGHTS_INFO_TEST_IMAGE_NAME
- docker compose -f flights-domain/docker-compose.yml --env-file $ENV_DEV_FILE down - docker compose -f flights-domain/docker-compose.yml --env-file $ENV_DEV_FILE down
@ -395,8 +395,8 @@ test-screen-integration:
script: script:
- export $(cat context.env | xargs) - export $(cat context.env | xargs)
- docker login -u $CI_REGISTRY_USER --password $CI_JOB_TOKEN $CI_REGISTRY - docker login -u $CI_REGISTRY_USER --password $CI_JOB_TOKEN $CI_REGISTRY
- export TEST_TARGET=INTEGRATION - export TEST_TARGET=INTEGRATION
- export API_IMAGE=$FLIGHTS_INFO_TEST_IMAGE_NAME - export API_IMAGE=$FLIGHTS_INFO_TEST_IMAGE_NAME
- docker compose -f flights-domain/docker-compose.yml --env-file $ENV_DEV_FILE down - docker compose -f flights-domain/docker-compose.yml --env-file $ENV_DEV_FILE down
@ -463,12 +463,12 @@ deliver-dockerhub:
- docker push $DOCKER_HUB_GATEWAY_IMAGE - docker push $DOCKER_HUB_GATEWAY_IMAGE
- docker push $DOCKER_HUB_BROWSER_CLIENT_IMAGE - docker push $DOCKER_HUB_BROWSER_CLIENT_IMAGE
- docker push $DOCKER_HUB_SCREEN_CLIENT_IMAGE - docker push $DOCKER_HUB_SCREEN_CLIENT_IMAGE
needs: needs:
- job: test-screen-integration - job: test-screen-integration
- job: test-browser-integration - job: test-browser-integration
- job: preparation - job: preparation
artifacts: true artifacts: true
build-and-run-elk: build-and-run-elk:
@ -491,7 +491,7 @@ build-and-run-elk:
- docker build observability/elk/kibana -f observability/elk/kibana/Dockerfile --build-arg "ELASTIC_VERSION=8.7.1" -t ${KIBANA_PROD_IMAGE_NAME} - docker build observability/elk/kibana -f observability/elk/kibana/Dockerfile --build-arg "ELASTIC_VERSION=8.7.1" -t ${KIBANA_PROD_IMAGE_NAME}
- docker build observability/elk/extensions/curator -f observability/elk/extensions/curator/Dockerfile -t ${CURATOR_PROD_IMAGE_NAME} - docker build observability/elk/extensions/curator -f observability/elk/extensions/curator/Dockerfile -t ${CURATOR_PROD_IMAGE_NAME}
- docker build observability/elk/extensions/heartbeat -f observability/elk/extensions/heartbeat/Dockerfile --build-arg "ELASTIC_VERSION=8.7.1" -t ${HEARTBEAT_PROD_IMAGE_NAME} - docker build observability/elk/extensions/heartbeat -f observability/elk/extensions/heartbeat/Dockerfile --build-arg "ELASTIC_VERSION=8.7.1" -t ${HEARTBEAT_PROD_IMAGE_NAME}
- docker compose -f observability/docker-compose.yml --env-file $ENV_DEV_FILE --profile setup up -d - docker compose -f observability/docker-compose.yml --env-file $ENV_DEV_FILE --profile setup up -d
- docker compose -f observability/docker-compose.yml -f observability/elk/extensions/curator/curator-compose.yml -f observability/elk/extensions/heartbeat/heartbeat-compose.yml --env-file $ENV_DEV_FILE up -d - docker compose -f observability/docker-compose.yml -f observability/elk/extensions/curator/curator-compose.yml -f observability/elk/extensions/heartbeat/heartbeat-compose.yml --env-file $ENV_DEV_FILE up -d
needs: needs:
@ -500,7 +500,7 @@ build-and-run-elk:
deploy-prod: deploy-prod:
stage: deploy stage: deploy
tags: tags:
- prod - prod
rules: rules:
- if: $CI_COMMIT_REF_NAME == "master" - if: $CI_COMMIT_REF_NAME == "master"

View File

@ -1,11 +1,28 @@
files: ^flights-domain/
repos: repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: check-added-large-files
- id: check-case-conflict
- id: check-executables-have-shebangs
- id: check-merge-conflict
- id: check-symlinks
- id: check-yaml
exclude: observability/
- id: debug-statements
exclude: tests/
- id: destroyed-symlinks
- id: end-of-file-fixer
files: \.(py|sh|rst|yml|yaml)$
- id: mixed-line-ending
- id: trailing-whitespace
files: \.(py|sh|rst|yml|yaml)$
- repo: https://github.com/ambv/black - repo: https://github.com/ambv/black
rev: 23.10.0 rev: 23.10.0
hooks: hooks:
- id: black - id: black
- repo: https://github.com/pycqa/flake8 - repo: https://github.com/pycqa/flake8
rev: 6.1.0 rev: 6.0.0
hooks: hooks:
- id: flake8 - id: flake8
args: [--config, flights-domain/flights-information/setup.cfg] args: [--config, flights-domain/flights-information/setup.cfg]
@ -13,4 +30,4 @@ repos:
rev: 5.12.0 rev: 5.12.0
hooks: hooks:
- id: isort - id: isort
args: ['--src-path', 'flights-domain/flights-information/src', 'auth-domain/user-manager/src', 'gateway/src', 'subscription-domain/subscription-manager/src'] args: ['--profile', 'black', '--src-path', 'flights-domain/flights-information/src', 'auth-domain/user-manager/src', 'gateway/src', 'subscription-domain/subscription-manager/src']

View File

@ -21,7 +21,7 @@ services:
networks: networks:
- auth - auth
usermanager-db: usermanager-db:
container_name: fids_usermanager_db container_name: fids_usermanager_db
build: build:
context: ./db context: ./db
@ -42,4 +42,4 @@ services:
networks: networks:
auth: auth:
driver: bridge driver: bridge

View File

@ -1,5 +1,5 @@
exclude_dirs: exclude_dirs:
- src/tests - src/tests
#tests: ['B201', 'B301'] #tests: ['B201', 'B301']
#skips: ['B101', 'B601'] #skips: ['B101', 'B601']

View File

@ -8,4 +8,4 @@ done
echo "PostgreSQL started" echo "PostgreSQL started"
python manage.py run -h 0.0.0.0 python manage.py run -h 0.0.0.0

View File

@ -4,7 +4,7 @@ from src import create_app, db
from src.api.models.users import User from src.api.models.users import User
app = create_app() app = create_app()
cli = FlaskGroup(create_app=create_app) cli = FlaskGroup(create_app=create_app)
@cli.command("recreate_db") @cli.command("recreate_db")
@ -16,9 +16,25 @@ def recreate_db():
@cli.command("seed_db") @cli.command("seed_db")
def seed_db(): def seed_db():
db.session.add(User(username="lufthansa", email="info@lufthansa.com", password="password1234", airline=True)) db.session.add(
db.session.add(User(username="ryanair", email="info@ryanair.com", password="password1234", airline=True)) User(
db.session.add(User(username="messi", email="messi@gmail.com", password="password1234")) username="lufthansa",
email="info@lufthansa.com",
password="password1234",
airline=True,
)
)
db.session.add(
User(
username="ryanair",
email="info@ryanair.com",
password="password1234",
airline=True,
)
)
db.session.add(
User(username="messi", email="messi@gmail.com", password="password1234")
)
db.session.commit() db.session.commit()

View File

@ -1,4 +1,4 @@
#!/bin/bash -e #!/bin/bash -e
if [ "${TEST_TARGET:-}" = "INTEGRATION" ]; then if [ "${TEST_TARGET:-}" = "INTEGRATION" ]; then
@ -13,11 +13,10 @@ else
## Linting ## Linting
flake8 src --extend-ignore E221 --extend-ignore E501 flake8 src --extend-ignore E221 --extend-ignore E501
# black src --check # black src --check
# isort src --check # isort src --check
## Security ## Security
# bandit -c .bandit.yml -r . # bandit -c .bandit.yml -r .
fi fi

View File

@ -55,9 +55,11 @@ class Login(Resource):
access_token = user.encode_token(user.id, "access", user.airline) access_token = user.encode_token(user.id, "access", user.airline)
refresh_token = user.encode_token(user.id, "refresh") refresh_token = user.encode_token(user.id, "refresh")
response_object = {"access_token": access_token, response_object = {
"refresh_token": refresh_token, "access_token": access_token,
"user_id": user.id} "refresh_token": refresh_token,
"user_id": user.id,
}
return response_object, 200 return response_object, 200
@ -84,7 +86,7 @@ class Refresh(Resource):
response_object = { response_object = {
"access_token": access_token, "access_token": access_token,
"refresh_token": refresh_token, "refresh_token": refresh_token,
"user_id": user.id "user_id": user.id,
} }
return response_object, 200 return response_object, 200
except jwt.ExpiredSignatureError: except jwt.ExpiredSignatureError:

View File

@ -39,7 +39,7 @@ class User(db.Model):
"exp": datetime.datetime.utcnow() + datetime.timedelta(seconds=seconds), "exp": datetime.datetime.utcnow() + datetime.timedelta(seconds=seconds),
"iat": datetime.datetime.utcnow(), "iat": datetime.datetime.utcnow(),
"sub": user_id, "sub": user_id,
"airline": airline "airline": airline,
} }
return jwt.encode( return jwt.encode(
payload, current_app.config.get("SECRET_KEY"), algorithm="HS256" payload, current_app.config.get("SECRET_KEY"), algorithm="HS256"
@ -61,7 +61,7 @@ class User(db.Model):
"username": fields.String(required=True), "username": fields.String(required=True),
"email": fields.String(required=True), "email": fields.String(required=True),
"created_date": fields.DateTime, "created_date": fields.DateTime,
"airline": fields.Boolean(readOnly=True) "airline": fields.Boolean(readOnly=True),
}, },
) )
@ -82,7 +82,7 @@ class User(db.Model):
{ {
"username": fields.String(required=True), "username": fields.String(required=True),
"email": fields.String(required=True), "email": fields.String(required=True),
"id": fields.Integer(required=True) "id": fields.Integer(required=True),
}, },
) )
@ -119,5 +119,5 @@ class User(db.Model):
"Access and Refresh Token", "Access and Refresh Token",
cls.get_api_auth_refresh_model(namespace), cls.get_api_auth_refresh_model(namespace),
{"access_token": fields.String(required=True)}, {"access_token": fields.String(required=True)},
{"user_id": fields.Integer(required=True)} {"user_id": fields.Integer(required=True)},
) )

View File

@ -1,5 +1,4 @@
from src.api.models.generic import (get_model_create_response, from src.api.models.generic import get_model_create_response, get_model_error_response
get_model_error_response)
def test_model_create_response(test_namespace): def test_model_create_response(test_namespace):

View File

@ -23,7 +23,7 @@ services:
- flights - flights
- subscriptions - subscriptions
flights-api-db: flights-api-db:
container_name: fids_flights_db container_name: fids_flights_db
build: build:
context: ./db context: ./db
@ -47,4 +47,4 @@ networks:
name: subscription-domain_subscriptions name: subscription-domain_subscriptions
external: true external: true
flights: flights:
driver: bridge driver: bridge

View File

@ -1,5 +1,5 @@
exclude_dirs: exclude_dirs:
- src/tests - src/tests
#tests: ['B201', 'B301'] #tests: ['B201', 'B301']
#skips: ['B101', 'B601'] #skips: ['B101', 'B601']

View File

@ -1,4 +1,4 @@
#!/bin/bash -e #!/bin/bash -e
if [ "${TEST_TARGET:-}" = "INTEGRATION" ]; then if [ "${TEST_TARGET:-}" = "INTEGRATION" ]; then
@ -12,7 +12,7 @@ else
## Linting ## Linting
flake8 src --extend-ignore E221 --extend-ignore E501 flake8 src --extend-ignore E221 --extend-ignore E501
# black src --check # black src --check
# isort . --src-path src --check # isort . --src-path src --check

View File

@ -6,6 +6,7 @@ from src.api.routes import flights, health
Base.metadata.create_all(bind=engine) Base.metadata.create_all(bind=engine)
app = FastAPI(title="Flights Information API") app = FastAPI(title="Flights Information API")
app.include_router(flights.router, prefix="/flights") app.include_router(flights.router, prefix="/flights")
app.include_router(health.router, prefix="/health") app.include_router(health.router, prefix="/health")

View File

@ -1,5 +1,5 @@
exclude_dirs: exclude_dirs:
- src/tests - src/tests
#tests: ['B201', 'B301'] #tests: ['B201', 'B301']
#skips: ['B101', 'B601'] #skips: ['B101', 'B601']

View File

@ -43,4 +43,4 @@ networks:
name: observability_elk name: observability_elk
external: true external: true
gateway: gateway:
driver: bridge driver: bridge

View File

@ -1,7 +0,0 @@
#!/bin/sh
# while ! curl -f 'fids_logstash:9600/_node/pipelines'; do
# sleep 1
# done
nc -vz -w1 localhost 5004 # && curl -f fids_logstash:9600/_node/pipelines

View File

@ -1,4 +1,4 @@
#!/bin/bash -e #!/bin/bash -e
if [ "${TEST_TARGET:-}" = "INTEGRATION" ]; then if [ "${TEST_TARGET:-}" = "INTEGRATION" ]; then
@ -14,7 +14,7 @@ else
## Linting ## Linting
flake8 src --extend-ignore E221 --extend-ignore E501 flake8 src --extend-ignore E221 --extend-ignore E501
# black src --check # black src --check
# isort . --src-path src --check # isort . --src-path src --check

View File

@ -3,10 +3,10 @@ import logging
from fastapi import FastAPI from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware from fastapi.middleware.cors import CORSMiddleware
from src.api.routes import (auth, flights, health, notifications, from src.api.routes import auth, flights, health, notifications, subscriptions, users
subscriptions, users)
logging.config.fileConfig("logging.conf", disable_existing_loggers=False)
logging.config.fileConfig('logging.conf', disable_existing_loggers=False)
app = FastAPI(title="Flights Information API") app = FastAPI(title="Flights Information API")
app.include_router(flights.router, prefix="/flights") app.include_router(flights.router, prefix="/flights")

View File

@ -25,9 +25,7 @@ async def create_flight(
auth = await checkAuth(authorization) auth = await checkAuth(authorization)
flight_data = flight.model_dump() flight_data = flight.model_dump()
flight_data["user_id"] = auth["id"] flight_data["user_id"] = auth["id"]
(response, status, _) = await request( (response, status, _) = await request(f"{API_FLIGHTS}", "POST", json=flight_data)
f"{API_FLIGHTS}", "POST", json=flight_data
)
if status < 200 or status > 204: if status < 200 or status > 204:
raise HTTPException(status_code=status, detail=response) raise HTTPException(status_code=status, detail=response)
return response return response
@ -42,16 +40,18 @@ async def update_flight(
auth = await checkAuth(authorization) auth = await checkAuth(authorization)
status = status_update.model_dump() status = status_update.model_dump()
status["user_id"] = auth["id"] status["user_id"] = auth["id"]
(response, status, _) = await request( (response, status, _) = await request(f"{API_FLIGHTS}/{id}", "PATCH", json=status)
f"{API_FLIGHTS}/{id}", "PATCH", json=status
)
if status < 200 or status > 204: if status < 200 or status > 204:
raise HTTPException(status_code=status, detail=response) raise HTTPException(status_code=status, detail=response)
return response return response
@router.get("", response_model=list[Flight]) @router.get("", response_model=list[Flight])
async def get_flights(origin: Optional[str] = None, destination: Optional[str] = None, lastUpdated: Optional[str] = None): async def get_flights(
origin: Optional[str] = None,
destination: Optional[str] = None,
lastUpdated: Optional[str] = None,
):
query = {} query = {}
if origin: if origin:
query["origin"] = origin query["origin"] = origin

View File

@ -1,21 +1,13 @@
# from src.api.main import my_logger
import logging import logging
from fastapi import APIRouter from fastapi import APIRouter
# from sys import stdout
my_logger = logging.getLogger(__name__) my_logger = logging.getLogger(__name__)
# my_logger.setLevel(logging.INFO)
# consoleHandler = logging.StreamHandler(stdout)
# my_logger.addHandler(consoleHandler)
# handler = graypy.GELFUDPHandler("fids_logstash", 12201)
# my_logger.addHandler(handler)
router = APIRouter() router = APIRouter()
@router.get("", status_code=200) @router.get("", status_code=200)
async def get_health(): async def get_health():
my_logger.info("{\"health\":\"OK\"}") my_logger.info('{"health":"OK"}')
return {"status": "OK"} return {"status": "OK"}

View File

@ -12,8 +12,7 @@ router = APIRouter()
@router.post("") @router.post("")
async def create_subscription( async def create_subscription(
subscription: Subscription, subscription: Subscription, authorization: Annotated[str | None, Header()] = None
authorization: Annotated[str | None, Header()] = None
): ):
await checkAuth(authorization) await checkAuth(authorization)
(response, status, _) = await request( (response, status, _) = await request(

View File

@ -5,7 +5,7 @@ services:
setup: setup:
profiles: profiles:
- setup - setup
image: ${ELK_SETUP_IMAGE} image: ${ELK_SETUP_IMAGE}
init: true init: true
environment: environment:
ELASTIC_PASSWORD: ${ELASTIC_PASSWORD:-} ELASTIC_PASSWORD: ${ELASTIC_PASSWORD:-}

2
run.sh
View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
usage() { usage() {
printf "$0 usage: \n -x: down\n -d \$DOMAIN: domain\n -t: tests\n" $0 printf "$0 usage: \n -x: down\n -d \$DOMAIN: domain\n -t: tests\n" $0
exit 0 exit 0
} }

View File

@ -25,7 +25,7 @@ services:
networks: networks:
- subscriptions - subscriptions
subscriptions-api-db: subscriptions-api-db:
container_name: fids_subscriptions_db container_name: fids_subscriptions_db
build: build:
context: ./db context: ./db
@ -46,4 +46,4 @@ services:
networks: networks:
subscriptions: subscriptions:
driver: bridge driver: bridge

View File

@ -1,5 +1,5 @@
exclude_dirs: exclude_dirs:
- src/tests - src/tests
#tests: ['B201', 'B301'] #tests: ['B201', 'B301']
#skips: ['B101', 'B601'] #skips: ['B101', 'B601']

View File

@ -1,4 +1,4 @@
#!/bin/bash -e #!/bin/bash -e
if [ "${TEST_TARGET:-}" = "INTEGRATION" ]; then if [ "${TEST_TARGET:-}" = "INTEGRATION" ]; then
@ -13,7 +13,7 @@ else
touch coverage.xml touch coverage.xml
## Linting ## Linting
flake8 src --extend-ignore E221 --extend-ignore E501 flake8 src --extend-ignore E221 --extend-ignore E501
# black src --check # black src --check
# isort . --src-path src --check # isort . --src-path src --check

View File

@ -21,8 +21,9 @@ def create_subscription(db: Session, subscription: SubscriptionPydantic):
def remove_subscription(db: Session, user_id: int, flight_id: int): def remove_subscription(db: Session, user_id: int, flight_id: int):
db.query(Subscription).filter(Subscription.user_id == user_id db.query(Subscription).filter(
and Subscription.flight_id == flight_id).delete() Subscription.user_id == user_id and Subscription.flight_id == flight_id
).delete()
db.commit() db.commit()

View File

@ -6,6 +6,7 @@ from src.api.routes import health, messages, notifications, subscriptions
Base.metadata.create_all(bind=engine) Base.metadata.create_all(bind=engine)
app = FastAPI(title="Subscription Information API") app = FastAPI(title="Subscription Information API")
app.include_router(subscriptions.router, prefix="/subscriptions") app.include_router(subscriptions.router, prefix="/subscriptions")
app.include_router(notifications.router, prefix="/notifications") app.include_router(notifications.router, prefix="/notifications")

View File

@ -12,7 +12,9 @@ router = APIRouter()
@router.post("") @router.post("")
async def send_notification(flight: FlightData, background_tasks: BackgroundTasks, db: Session = Depends(get_db)): async def send_notification(
flight: FlightData, background_tasks: BackgroundTasks, db: Session = Depends(get_db)
):
db_subscriptions = sub_crud.send_subscriptions(db=db, flight=flight) db_subscriptions = sub_crud.send_subscriptions(db=db, flight=flight)
for subscription in db_subscriptions: for subscription in db_subscriptions:
db_chat = notif_crud.get_chat_id(db=db, user_id=subscription.user_id) db_chat = notif_crud.get_chat_id(db=db, user_id=subscription.user_id)

View File

@ -14,14 +14,12 @@ from src.api.utils.messages import get_flight_message, get_invalid_message
router = APIRouter() router = APIRouter()
msg_options = re.compile(r'^/(flight \d+|stop|start)$') msg_options = re.compile(r"^/(flight \d+|stop|start)$")
@router.post("") @router.post("")
async def create_chat( async def create_chat(
chat: Update, chat: Update, background_tasks: BackgroundTasks, db: Session = Depends(get_db)
background_tasks: BackgroundTasks,
db: Session = Depends(get_db)
): ):
print(chat.model_dump()) print(chat.model_dump())
message = chat.message message = chat.message
@ -32,19 +30,19 @@ async def create_chat(
background_tasks.add_task(telegram.send_message, chat_id, msg) background_tasks.add_task(telegram.send_message, chat_id, msg)
return Response(status_code=204) return Response(status_code=204)
action = text.partition(' ')[0] action = text.partition(" ")[0]
if action == '/start': if action == "/start":
user_id = int(message["text"].partition(' ')[2]) user_id = int(message["text"].partition(" ")[2])
new_chat = Chat(chat_id=str(message["chat"]["id"]), user_id=user_id) new_chat = Chat(chat_id=str(message["chat"]["id"]), user_id=user_id)
notif_crud.create_chat(db=db, chat=new_chat) notif_crud.create_chat(db=db, chat=new_chat)
elif action == '/stop': elif action == "/stop":
chat_id = str(message["chat"]["id"]) chat_id = str(message["chat"]["id"])
user_id = notif_crud.get_user_from_chat(db=db, chat_id=chat_id).user_id user_id = notif_crud.get_user_from_chat(db=db, chat_id=chat_id).user_id
subs_crud.remove_subscriptions(user_id) subs_crud.remove_subscriptions(user_id)
notif_crud.remove_chat(db=db, chat_id=chat_id) notif_crud.remove_chat(db=db, chat_id=chat_id)
elif action == '/flight': elif action == "/flight":
chat_id = str(message["chat"]["id"]) chat_id = str(message["chat"]["id"])
flight_id = int(message["text"].partition(' ')[2]) flight_id = int(message["text"].partition(" ")[2])
(response, status, _) = await request(f"{API_FLIGHTS}/{flight_id}", "GET") (response, status, _) = await request(f"{API_FLIGHTS}/{flight_id}", "GET")
if status < 200 or status > 204: if status < 200 or status > 204:
msg = f"Could not get flight '{flight_id}'. Sorry!" msg = f"Could not get flight '{flight_id}'. Sorry!"

View File

@ -22,6 +22,10 @@ def get_subscriptions(user_id: int, db: Session = Depends(get_db)):
@router.delete("/{user_id}") @router.delete("/{user_id}")
def delete_subscription(user_id: int, subscription: SubscriptionRemove, db: Session = Depends(get_db)): def delete_subscription(
sub_crud.remove_subscription(db=db, user_id=user_id, flight_id=subscription.flight_id) user_id: int, subscription: SubscriptionRemove, db: Session = Depends(get_db)
):
sub_crud.remove_subscription(
db=db, user_id=user_id, flight_id=subscription.flight_id
)
return Response(status_code=204) return Response(status_code=204)