2023-02-16 15:11:29 +02:00
|
|
|
from typing import Literal
|
|
|
|
|
2023-06-22 14:06:10 +03:00
|
|
|
from fastapi import HTTPException
|
2023-02-16 15:55:03 +02:00
|
|
|
|
2023-06-22 14:06:10 +03:00
|
|
|
|
|
|
|
class AlbumNotFoundError(HTTPException):
|
2023-02-16 16:32:56 +02:00
|
|
|
"""Raises HTTP 404 if no album with this ID found."""
|
2023-03-12 15:59:13 +02:00
|
|
|
|
2023-02-16 15:11:29 +02:00
|
|
|
def __init__(self, id: str):
|
|
|
|
self.id = id
|
|
|
|
self.openapi = {
|
2023-02-16 15:55:03 +02:00
|
|
|
"description": "Album Does Not Exist",
|
2023-02-16 15:11:29 +02:00
|
|
|
"content": {
|
|
|
|
"application/json": {
|
2023-03-12 15:59:13 +02:00
|
|
|
"example": {"detail": "Could not find album with id '{id}'."}
|
2023-02-16 15:55:03 +02:00
|
|
|
}
|
2023-03-12 15:59:13 +02:00
|
|
|
},
|
2023-02-16 15:55:03 +02:00
|
|
|
}
|
|
|
|
|
2023-03-12 15:59:13 +02:00
|
|
|
|
2023-06-22 14:06:10 +03:00
|
|
|
class AlbumNameNotFoundError(HTTPException):
|
2023-02-16 16:32:56 +02:00
|
|
|
"""Raises HTTP 404 if no album with this name found."""
|
2023-03-12 15:59:13 +02:00
|
|
|
|
2023-02-16 15:55:03 +02:00
|
|
|
def __init__(self, name: str):
|
|
|
|
self.name = name
|
|
|
|
self.openapi = {
|
|
|
|
"description": "Album Does Not Exist",
|
|
|
|
"content": {
|
|
|
|
"application/json": {
|
2023-03-12 15:59:13 +02:00
|
|
|
"example": {"detail": "Could not find album with name '{name}'."}
|
2023-02-16 15:11:29 +02:00
|
|
|
}
|
2023-03-12 15:59:13 +02:00
|
|
|
},
|
2023-02-16 15:11:29 +02:00
|
|
|
}
|
2023-06-22 14:06:10 +03:00
|
|
|
super().__init__(
|
|
|
|
status_code=404,
|
|
|
|
detail=self.openapi["content"]["application/json"]["example"][
|
|
|
|
"detail"
|
|
|
|
].format(name=self.name),
|
|
|
|
)
|
2023-02-16 15:11:29 +02:00
|
|
|
|
2023-03-12 15:59:13 +02:00
|
|
|
|
2023-06-22 14:06:10 +03:00
|
|
|
class AlbumAlreadyExistsError(HTTPException):
|
2023-02-16 16:32:56 +02:00
|
|
|
"""Raises HTTP 409 if album with this name already exists."""
|
2023-03-12 15:59:13 +02:00
|
|
|
|
2023-02-16 15:11:29 +02:00
|
|
|
def __init__(self, name: str):
|
|
|
|
self.name = name
|
|
|
|
self.openapi = {
|
2023-02-16 15:55:03 +02:00
|
|
|
"description": "Album Already Exists",
|
2023-02-16 15:11:29 +02:00
|
|
|
"content": {
|
|
|
|
"application/json": {
|
2023-03-12 15:59:13 +02:00
|
|
|
"example": {"detail": "Album with name '{name}' already exists."}
|
2023-02-16 15:11:29 +02:00
|
|
|
}
|
2023-03-12 15:59:13 +02:00
|
|
|
},
|
2023-02-16 15:11:29 +02:00
|
|
|
}
|
2023-06-22 14:06:10 +03:00
|
|
|
super().__init__(
|
|
|
|
status_code=409,
|
|
|
|
detail=self.openapi["content"]["application/json"]["example"][
|
|
|
|
"detail"
|
|
|
|
].format(name=self.name),
|
|
|
|
)
|
2023-02-16 15:11:29 +02:00
|
|
|
|
2023-03-12 15:59:13 +02:00
|
|
|
|
2023-06-22 14:06:10 +03:00
|
|
|
class AlbumIncorrectError(HTTPException):
|
2023-02-16 16:32:56 +02:00
|
|
|
"""Raises HTTP 406 if album's title or name is invalid."""
|
2023-03-12 15:59:13 +02:00
|
|
|
|
2023-02-16 15:11:29 +02:00
|
|
|
def __init__(self, place: Literal["name", "title"], error: str) -> None:
|
|
|
|
self.place = place
|
|
|
|
self.error = error
|
|
|
|
self.openapi = {
|
2023-02-16 15:55:03 +02:00
|
|
|
"description": "Album Name/Title Invalid",
|
2023-02-16 15:11:29 +02:00
|
|
|
"content": {
|
|
|
|
"application/json": {
|
2023-06-22 14:06:10 +03:00
|
|
|
"example": {"detail": "Album {place} invalid: {error}"}
|
2023-02-16 15:11:29 +02:00
|
|
|
}
|
2023-03-12 15:59:13 +02:00
|
|
|
},
|
2023-02-16 15:55:03 +02:00
|
|
|
}
|
2023-06-22 14:06:10 +03:00
|
|
|
super().__init__(
|
|
|
|
status_code=406,
|
|
|
|
detail=self.openapi["content"]["application/json"]["example"][
|
|
|
|
"detail"
|
|
|
|
].format(place=self.place, error=self.error),
|
|
|
|
)
|
2023-02-16 15:55:03 +02:00
|
|
|
|
2023-03-12 15:59:13 +02:00
|
|
|
|
2023-06-22 14:06:10 +03:00
|
|
|
class PhotoNotFoundError(HTTPException):
|
2023-02-16 16:32:56 +02:00
|
|
|
"""Raises HTTP 404 if no photo with this ID found."""
|
2023-03-12 15:59:13 +02:00
|
|
|
|
2023-02-16 15:55:03 +02:00
|
|
|
def __init__(self, id: str):
|
|
|
|
self.id = id
|
|
|
|
self.openapi = {
|
|
|
|
"description": "Photo Does Not Exist",
|
|
|
|
"content": {
|
|
|
|
"application/json": {
|
2023-03-12 15:59:13 +02:00
|
|
|
"example": {"detail": "Could not find photo with id '{id}'."}
|
2023-02-16 15:55:03 +02:00
|
|
|
}
|
2023-03-12 15:59:13 +02:00
|
|
|
},
|
2023-02-16 15:55:03 +02:00
|
|
|
}
|
2023-06-22 14:06:10 +03:00
|
|
|
super().__init__(
|
|
|
|
status_code=404,
|
|
|
|
detail=self.openapi["content"]["application/json"]["example"][
|
|
|
|
"detail"
|
|
|
|
].format(id=self.id),
|
|
|
|
)
|
2023-02-16 15:55:03 +02:00
|
|
|
|
2023-03-12 15:59:13 +02:00
|
|
|
|
2023-06-22 14:06:10 +03:00
|
|
|
class PhotoSearchQueryEmptyError(HTTPException):
|
2023-02-16 16:32:56 +02:00
|
|
|
"""Raises HTTP 422 if no photo search query provided."""
|
2023-03-12 15:59:13 +02:00
|
|
|
|
2023-02-16 16:32:56 +02:00
|
|
|
def __init__(self):
|
|
|
|
self.openapi = {
|
|
|
|
"description": "Invalid Query",
|
|
|
|
"content": {
|
|
|
|
"application/json": {
|
|
|
|
"example": {
|
|
|
|
"detail": "You must provide query, caption or coordinates to look for photos."
|
|
|
|
}
|
|
|
|
}
|
2023-03-12 15:59:13 +02:00
|
|
|
},
|
2023-02-16 16:32:56 +02:00
|
|
|
}
|
2023-06-22 14:06:10 +03:00
|
|
|
super().__init__(
|
|
|
|
status_code=422,
|
|
|
|
detail=self.openapi["content"]["application/json"]["example"]["detail"],
|
|
|
|
)
|
2023-02-16 16:32:56 +02:00
|
|
|
|
2023-03-12 15:59:13 +02:00
|
|
|
|
2023-06-22 14:06:10 +03:00
|
|
|
class VideoNotFoundError(HTTPException):
|
2023-02-16 16:32:56 +02:00
|
|
|
"""Raises HTTP 404 if no video with this ID found."""
|
2023-03-12 15:59:13 +02:00
|
|
|
|
2023-02-16 16:32:56 +02:00
|
|
|
def __init__(self, id: str):
|
|
|
|
self.id = id
|
|
|
|
self.openapi = {
|
|
|
|
"description": "Video Does Not Exist",
|
|
|
|
"content": {
|
|
|
|
"application/json": {
|
2023-03-12 15:59:13 +02:00
|
|
|
"example": {"detail": "Could not find video with id '{id}'."}
|
2023-02-16 16:32:56 +02:00
|
|
|
}
|
2023-03-12 15:59:13 +02:00
|
|
|
},
|
2023-02-16 16:32:56 +02:00
|
|
|
}
|
2023-06-22 14:06:10 +03:00
|
|
|
super().__init__(
|
|
|
|
status_code=404,
|
|
|
|
detail=self.openapi["content"]["application/json"]["example"][
|
|
|
|
"detail"
|
|
|
|
].format(id=self.id),
|
|
|
|
)
|
2023-02-16 16:32:56 +02:00
|
|
|
|
2023-03-12 15:59:13 +02:00
|
|
|
|
2023-06-22 14:06:10 +03:00
|
|
|
class VideoSearchQueryEmptyError(HTTPException):
|
2023-02-16 16:32:56 +02:00
|
|
|
"""Raises HTTP 422 if no video search query provided."""
|
2023-03-12 15:59:13 +02:00
|
|
|
|
2023-02-16 16:32:56 +02:00
|
|
|
def __init__(self):
|
|
|
|
self.openapi = {
|
|
|
|
"description": "Invalid Query",
|
|
|
|
"content": {
|
|
|
|
"application/json": {
|
|
|
|
"example": {
|
|
|
|
"detail": "You must provide query or caption to look for videos."
|
|
|
|
}
|
|
|
|
}
|
2023-03-12 15:59:13 +02:00
|
|
|
},
|
2023-02-16 16:32:56 +02:00
|
|
|
}
|
2023-06-22 14:06:10 +03:00
|
|
|
super().__init__(
|
|
|
|
status_code=422,
|
|
|
|
detail=self.openapi["content"]["application/json"]["example"]["detail"],
|
|
|
|
)
|
2023-02-16 16:32:56 +02:00
|
|
|
|
2023-03-12 15:59:13 +02:00
|
|
|
|
2023-06-27 14:51:18 +03:00
|
|
|
class SearchLimitInvalidError(HTTPException):
|
|
|
|
"""Raises HTTP 400 if search results limit not in valid range."""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.openapi = {
|
|
|
|
"description": "Invalid Limit",
|
|
|
|
"content": {
|
|
|
|
"application/json": {
|
|
|
|
"example": {
|
|
|
|
"detail": "Parameter 'limit' must be greater or equal to 1."
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
super().__init__(
|
|
|
|
status_code=400,
|
|
|
|
detail=self.openapi["content"]["application/json"]["example"]["detail"],
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2023-06-22 14:06:10 +03:00
|
|
|
class SearchPageInvalidError(HTTPException):
|
2023-02-16 16:32:56 +02:00
|
|
|
"""Raises HTTP 400 if page or page size are not in valid range."""
|
2023-03-12 15:59:13 +02:00
|
|
|
|
2023-02-16 15:55:03 +02:00
|
|
|
def __init__(self):
|
|
|
|
self.openapi = {
|
|
|
|
"description": "Invalid Page",
|
|
|
|
"content": {
|
|
|
|
"application/json": {
|
|
|
|
"example": {
|
|
|
|
"detail": "Parameters 'page' and 'page_size' must be greater or equal to 1."
|
|
|
|
}
|
|
|
|
}
|
2023-03-12 15:59:13 +02:00
|
|
|
},
|
2023-02-16 15:55:03 +02:00
|
|
|
}
|
2023-06-22 14:06:10 +03:00
|
|
|
super().__init__(
|
|
|
|
status_code=400,
|
|
|
|
detail=self.openapi["content"]["application/json"]["example"]["detail"],
|
|
|
|
)
|
2023-02-16 15:55:03 +02:00
|
|
|
|
2023-03-12 15:59:13 +02:00
|
|
|
|
2023-06-22 14:06:10 +03:00
|
|
|
class SearchTokenInvalidError(HTTPException):
|
2023-02-16 16:32:56 +02:00
|
|
|
"""Raises HTTP 401 if search token is not valid."""
|
2023-03-12 15:59:13 +02:00
|
|
|
|
2023-02-16 15:55:03 +02:00
|
|
|
def __init__(self):
|
|
|
|
self.openapi = {
|
|
|
|
"description": "Invalid Token",
|
|
|
|
"content": {
|
2023-03-12 15:59:13 +02:00
|
|
|
"application/json": {"example": {"detail": "Invalid search token."}}
|
|
|
|
},
|
2023-02-16 15:55:03 +02:00
|
|
|
}
|
2023-06-22 14:06:10 +03:00
|
|
|
super().__init__(
|
|
|
|
status_code=401,
|
|
|
|
detail=self.openapi["content"]["application/json"]["example"]["detail"],
|
|
|
|
)
|
2023-02-16 15:55:03 +02:00
|
|
|
|
2023-03-12 15:59:13 +02:00
|
|
|
|
2023-06-22 14:06:10 +03:00
|
|
|
class UserEmailCodeInvalid(HTTPException):
|
2023-02-16 16:32:56 +02:00
|
|
|
"""Raises HTTP 400 if email confirmation code is not valid."""
|
2023-03-12 15:59:13 +02:00
|
|
|
|
2023-02-16 15:55:03 +02:00
|
|
|
def __init__(self):
|
|
|
|
self.openapi = {
|
|
|
|
"description": "Invalid Email Code",
|
|
|
|
"content": {
|
|
|
|
"application/json": {
|
2023-03-12 15:59:13 +02:00
|
|
|
"example": {"detail": "Confirmation code is invalid."}
|
2023-02-16 15:55:03 +02:00
|
|
|
}
|
2023-03-12 15:59:13 +02:00
|
|
|
},
|
2023-02-16 15:55:03 +02:00
|
|
|
}
|
2023-06-22 14:06:10 +03:00
|
|
|
super().__init__(
|
|
|
|
status_code=400,
|
|
|
|
detail=self.openapi["content"]["application/json"]["example"]["detail"],
|
|
|
|
)
|
2023-02-16 15:55:03 +02:00
|
|
|
|
2023-03-12 15:59:13 +02:00
|
|
|
|
2023-06-22 14:06:10 +03:00
|
|
|
class UserAlreadyExists(HTTPException):
|
2023-02-16 16:32:56 +02:00
|
|
|
"""Raises HTTP 409 if user with this name already exists."""
|
2023-03-12 15:59:13 +02:00
|
|
|
|
2023-02-16 15:55:03 +02:00
|
|
|
def __init__(self):
|
|
|
|
self.openapi = {
|
|
|
|
"description": "User Already Exists",
|
|
|
|
"content": {
|
|
|
|
"application/json": {
|
2023-03-12 15:59:13 +02:00
|
|
|
"example": {"detail": "User with this username already exists."}
|
2023-02-16 15:55:03 +02:00
|
|
|
}
|
2023-03-12 15:59:13 +02:00
|
|
|
},
|
2023-02-16 15:55:03 +02:00
|
|
|
}
|
2023-06-22 14:06:10 +03:00
|
|
|
super().__init__(
|
|
|
|
status_code=409,
|
|
|
|
detail=self.openapi["content"]["application/json"]["example"]["detail"],
|
|
|
|
)
|
2023-02-16 15:55:03 +02:00
|
|
|
|
2023-03-12 15:59:13 +02:00
|
|
|
|
2023-06-22 14:06:10 +03:00
|
|
|
class AccessTokenInvalidError(HTTPException):
|
2023-02-18 01:19:46 +02:00
|
|
|
"""Raises HTTP 401 if access token is not valid."""
|
2023-03-12 15:59:13 +02:00
|
|
|
|
2023-02-18 01:19:46 +02:00
|
|
|
def __init__(self):
|
|
|
|
self.openapi = {
|
|
|
|
"description": "Invalid Access Token",
|
|
|
|
"content": {
|
2023-03-12 15:59:13 +02:00
|
|
|
"application/json": {"example": {"detail": "Invalid access token."}}
|
|
|
|
},
|
2023-02-18 01:19:46 +02:00
|
|
|
}
|
2023-06-22 14:06:10 +03:00
|
|
|
super().__init__(
|
|
|
|
status_code=401,
|
|
|
|
detail=self.openapi["content"]["application/json"]["example"]["detail"],
|
|
|
|
)
|
2023-02-18 01:19:46 +02:00
|
|
|
|
2023-03-12 15:59:13 +02:00
|
|
|
|
2023-06-22 14:06:10 +03:00
|
|
|
class UserCredentialsInvalid(HTTPException):
|
2023-02-16 16:32:56 +02:00
|
|
|
"""Raises HTTP 401 if user credentials are not valid."""
|
2023-03-12 15:59:13 +02:00
|
|
|
|
2023-02-16 15:55:03 +02:00
|
|
|
def __init__(self):
|
|
|
|
self.openapi = {
|
|
|
|
"description": "Invalid Credentials",
|
|
|
|
"content": {
|
2023-03-12 15:59:13 +02:00
|
|
|
"application/json": {"example": {"detail": "Invalid credentials."}}
|
|
|
|
},
|
|
|
|
}
|
2023-06-22 14:06:10 +03:00
|
|
|
super().__init__(
|
|
|
|
status_code=401,
|
|
|
|
detail=self.openapi["content"]["application/json"]["example"]["detail"],
|
|
|
|
)
|
2023-11-25 18:50:09 +02:00
|
|
|
|
|
|
|
|
|
|
|
class UserMediaQuotaReached(HTTPException):
|
|
|
|
"""Raises HTTP 403 if user's quota has been reached."""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.openapi = {
|
|
|
|
"description": "Media Quota Reached",
|
|
|
|
"content": {
|
|
|
|
"application/json": {
|
|
|
|
"example": {
|
|
|
|
"detail": "Media quota has been reached, media upload impossible."
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
super().__init__(
|
|
|
|
status_code=403,
|
|
|
|
detail=self.openapi["content"]["application/json"]["example"]["detail"],
|
|
|
|
)
|