move things around
This commit is contained in:
parent
0e31cd9aec
commit
247e7720d1
4
app.py
4
app.py
@ -1,9 +1,9 @@
|
|||||||
from fastapi import FastAPI
|
from fastapi import FastAPI
|
||||||
from pydantic import BaseModel
|
from pydantic import BaseModel
|
||||||
import uvicorn
|
import uvicorn
|
||||||
import api
|
from controllers import album
|
||||||
|
|
||||||
# Initialize the app
|
# Initialize the app
|
||||||
app = FastAPI()
|
app = FastAPI()
|
||||||
|
|
||||||
app.include_router(api.router)
|
app.include_router(album.router)
|
||||||
|
@ -1,9 +1,8 @@
|
|||||||
from fastapi import APIRouter, Depends, HTTPException
|
from fastapi import APIRouter, Depends, HTTPException
|
||||||
from fastapi_utils.cbv import cbv
|
from fastapi_utils.cbv import cbv
|
||||||
from sqlalchemy.orm import Session
|
from sqlalchemy.orm import Session
|
||||||
from crud import get_all_albums, create_album, get_album_by_id, update_album, delete_album
|
from models.album import get_all_albums, create_album, get_album_by_id, update_album, delete_album, AlbumException
|
||||||
from database import get_db
|
from database import get_db
|
||||||
from exceptions import AlbumException
|
|
||||||
from schemas import Album, CreateAndUpdateAlbum, PaginatedAlbum
|
from schemas import Album, CreateAndUpdateAlbum, PaginatedAlbum
|
||||||
|
|
||||||
router = APIRouter()
|
router = APIRouter()
|
||||||
@ -22,7 +21,7 @@ class Albums:
|
|||||||
|
|
||||||
return response
|
return response
|
||||||
|
|
||||||
# API endpoint to add a album info to the database
|
# API endpoint to add an album to the database
|
||||||
@router.post("/albums")
|
@router.post("/albums")
|
||||||
def add_album(self, album: CreateAndUpdateAlbum):
|
def add_album(self, album: CreateAndUpdateAlbum):
|
||||||
|
|
||||||
@ -36,7 +35,6 @@ class Albums:
|
|||||||
# API endpoint to get info of a particular album
|
# API endpoint to get info of a particular album
|
||||||
@router.get("/albums/{album_id}", response_model=Album)
|
@router.get("/albums/{album_id}", response_model=Album)
|
||||||
def get_album(album_id: int, session: Session = Depends(get_db)):
|
def get_album(album_id: int, session: Session = Depends(get_db)):
|
||||||
|
|
||||||
try:
|
try:
|
||||||
album = get_album_by_id(session, album_id)
|
album = get_album_by_id(session, album_id)
|
||||||
return album
|
return album
|
||||||
@ -47,7 +45,6 @@ def get_album(album_id: int, session: Session = Depends(get_db)):
|
|||||||
# API to update a existing album info
|
# API to update a existing album info
|
||||||
@router.put("/albums/{album_id}", response_model=Album)
|
@router.put("/albums/{album_id}", response_model=Album)
|
||||||
def update_album(album_id: int, new_info: CreateAndUpdateAlbum, session: Session = Depends(get_db)):
|
def update_album(album_id: int, new_info: CreateAndUpdateAlbum, session: Session = Depends(get_db)):
|
||||||
|
|
||||||
try:
|
try:
|
||||||
album = update_album(session, album_id, new_info)
|
album = update_album(session, album_id, new_info)
|
||||||
return album
|
return album
|
||||||
@ -55,10 +52,9 @@ def update_album(album_id: int, new_info: CreateAndUpdateAlbum, session: Session
|
|||||||
raise HTTPException(**ex.__dict__)
|
raise HTTPException(**ex.__dict__)
|
||||||
|
|
||||||
|
|
||||||
# API to delete a album info from the data base
|
# API to delete an album info from the database
|
||||||
@router.delete("/albums/{album_id}")
|
@router.delete("/albums/{album_id}")
|
||||||
def delete_album(album_id: int, session: Session = Depends(get_db)):
|
def delete_album(album_id: int, session: Session = Depends(get_db)):
|
||||||
|
|
||||||
try:
|
try:
|
||||||
return delete_album(session, album_id)
|
return delete_album(session, album_id)
|
||||||
except AlbumException as ex:
|
except AlbumException as ex:
|
@ -1,15 +0,0 @@
|
|||||||
# exceptions.py
|
|
||||||
class AlbumException(Exception):
|
|
||||||
...
|
|
||||||
|
|
||||||
|
|
||||||
class AlbumNotFoundError(AlbumException):
|
|
||||||
def __init__(self):
|
|
||||||
self.status_code = 404
|
|
||||||
self.detail = "Album Not Found"
|
|
||||||
|
|
||||||
|
|
||||||
class AlbumAlreadyExistError(AlbumException):
|
|
||||||
def __init__(self):
|
|
||||||
self.status_code = 409
|
|
||||||
self.detail = "Album Already Exists"
|
|
12
models.py
12
models.py
@ -1,12 +0,0 @@
|
|||||||
from sqlalchemy.schema import Column
|
|
||||||
from sqlalchemy.types import String, Integer, Float
|
|
||||||
from database import Base
|
|
||||||
|
|
||||||
|
|
||||||
class Album(Base):
|
|
||||||
__tablename__ = "albums"
|
|
||||||
|
|
||||||
id = Column(Integer, primary_key=True, index=True)
|
|
||||||
title = Column(String)
|
|
||||||
artist = Column(String)
|
|
||||||
price = Column(Float)
|
|
@ -1,11 +1,36 @@
|
|||||||
# crud.py
|
from sqlalchemy.schema import Column
|
||||||
|
from sqlalchemy.types import String, Integer, Float
|
||||||
|
from database import Base
|
||||||
from typing import List
|
from typing import List
|
||||||
from sqlalchemy.orm import Session
|
from sqlalchemy.orm import Session
|
||||||
from exceptions import AlbumAlreadyExistError, AlbumNotFoundError
|
|
||||||
from models import Album
|
|
||||||
from schemas import CreateAndUpdateAlbum
|
from schemas import CreateAndUpdateAlbum
|
||||||
|
|
||||||
|
|
||||||
|
class Album(Base):
|
||||||
|
__tablename__ = "albums"
|
||||||
|
|
||||||
|
id = Column(Integer, primary_key=True, index=True)
|
||||||
|
title = Column(String)
|
||||||
|
artist = Column(String)
|
||||||
|
price = Column(Float)
|
||||||
|
|
||||||
|
|
||||||
|
class AlbumException(Exception):
|
||||||
|
...
|
||||||
|
|
||||||
|
|
||||||
|
class AlbumNotFoundError(AlbumException):
|
||||||
|
def __init__(self):
|
||||||
|
self.status_code = 404
|
||||||
|
self.detail = "Album Not Found"
|
||||||
|
|
||||||
|
|
||||||
|
class AlbumAlreadyExistError(AlbumException):
|
||||||
|
def __init__(self):
|
||||||
|
self.status_code = 409
|
||||||
|
self.detail = "Album Already Exists"
|
||||||
|
|
||||||
|
|
||||||
# Function to get list of album info
|
# Function to get list of album info
|
||||||
def get_all_albums(session: Session, limit: int, offset: int) -> List[Album]:
|
def get_all_albums(session: Session, limit: int, offset: int) -> List[Album]:
|
||||||
return session.query(Album).offset(offset).limit(limit).all()
|
return session.query(Album).offset(offset).limit(limit).all()
|
||||||
@ -51,7 +76,7 @@ def update_album(session: Session, _id: int, info_update: CreateAndUpdateAlbum)
|
|||||||
return album
|
return album
|
||||||
|
|
||||||
|
|
||||||
# Function to delete a album info from the db
|
# Function to delete an album info from the db
|
||||||
def delete_album(session: Session, _id: int):
|
def delete_album(session: Session, _id: int):
|
||||||
album = get_album_by_id(session, _id)
|
album = get_album_by_id(session, _id)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user