feat: add get and delete files
This commit is contained in:
@@ -14,7 +14,7 @@ from itd.routes.notifications import get_notifications, mark_as_read, mark_all_a
|
|||||||
from itd.routes.posts import create_post, get_posts, get_post, edit_post, delete_post, pin_post, repost, view_post, get_liked_posts, restore_post, like_post, unlike_post, get_user_posts
|
from itd.routes.posts import create_post, get_posts, get_post, edit_post, delete_post, pin_post, repost, view_post, get_liked_posts, restore_post, like_post, unlike_post, get_user_posts
|
||||||
from itd.routes.reports import report
|
from itd.routes.reports import report
|
||||||
from itd.routes.search import search
|
from itd.routes.search import search
|
||||||
from itd.routes.files import upload_file
|
from itd.routes.files import upload_file, get_file, delete_file
|
||||||
from itd.routes.auth import refresh_token, change_password, logout
|
from itd.routes.auth import refresh_token, change_password, logout
|
||||||
from itd.routes.verification import verify, get_verification_status
|
from itd.routes.verification import verify, get_verification_status
|
||||||
from itd.routes.pins import get_pins, remove_pin, set_pin
|
from itd.routes.pins import get_pins, remove_pin, set_pin
|
||||||
@@ -37,7 +37,7 @@ from itd.exceptions import (
|
|||||||
NoCookie, NoAuthData, SamePassword, InvalidOldPassword, NotFound, ValidationError, UserBanned,
|
NoCookie, NoAuthData, SamePassword, InvalidOldPassword, NotFound, ValidationError, UserBanned,
|
||||||
PendingRequestExists, Forbidden, UsernameTaken, CantFollowYourself, Unauthorized,
|
PendingRequestExists, Forbidden, UsernameTaken, CantFollowYourself, Unauthorized,
|
||||||
CantRepostYourPost, AlreadyReposted, AlreadyReported, TooLarge, PinNotOwned, NoContent,
|
CantRepostYourPost, AlreadyReposted, AlreadyReported, TooLarge, PinNotOwned, NoContent,
|
||||||
AlreadyFollowing
|
AlreadyFollowing, NotFoundOrForbidden
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@@ -952,6 +952,43 @@ class Client:
|
|||||||
|
|
||||||
return File.model_validate(res.json())
|
return File.model_validate(res.json())
|
||||||
|
|
||||||
|
@refresh_on_error
|
||||||
|
def get_file(self, id: UUID) -> File:
|
||||||
|
"""Получить файл
|
||||||
|
|
||||||
|
Args:
|
||||||
|
id (UUID): UUID файла
|
||||||
|
|
||||||
|
Raises:
|
||||||
|
NotFoundOrForbidden: Файл не найден или нет доступа
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
File: Файл
|
||||||
|
"""
|
||||||
|
res = get_file(self.token, id)
|
||||||
|
if res.json().get('error', {}).get('code') == 'NOT_FOUND':
|
||||||
|
raise NotFoundOrForbidden('File')
|
||||||
|
res.raise_for_status()
|
||||||
|
|
||||||
|
return File.model_validate(res.json())
|
||||||
|
|
||||||
|
@refresh_on_error
|
||||||
|
def delete_file(self, id: UUID) -> File:
|
||||||
|
"""Удалить файл
|
||||||
|
|
||||||
|
Args:
|
||||||
|
id (UUID): UUID файла
|
||||||
|
|
||||||
|
Raises:
|
||||||
|
NotFound: Файл не найден
|
||||||
|
"""
|
||||||
|
res = delete_file(self.token, id)
|
||||||
|
if res.json().get('error', {}).get('code') == 'NOT_FOUND':
|
||||||
|
raise NotFound('File')
|
||||||
|
res.raise_for_status()
|
||||||
|
|
||||||
|
return File.model_validate(res.json())
|
||||||
|
|
||||||
def update_banner(self, name: str) -> UserProfileUpdate:
|
def update_banner(self, name: str) -> UserProfileUpdate:
|
||||||
"""Обновить банер (шорткат из upload_file + update_profile)
|
"""Обновить банер (шорткат из upload_file + update_profile)
|
||||||
|
|
||||||
|
|||||||
@@ -37,6 +37,13 @@ class NotFound(Exception):
|
|||||||
def __str__(self):
|
def __str__(self):
|
||||||
return f'{self.obj} not found'
|
return f'{self.obj} not found'
|
||||||
|
|
||||||
|
class NotFoundOrForbidden(Exception):
|
||||||
|
def __init__(self, obj: str):
|
||||||
|
self.obj = obj
|
||||||
|
def __str__(self):
|
||||||
|
return f'{self.obj} not found or access denied'
|
||||||
|
|
||||||
|
|
||||||
class UserBanned(Exception):
|
class UserBanned(Exception):
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return 'User banned'
|
return 'User banned'
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
from uuid import UUID
|
from uuid import UUID
|
||||||
|
from datetime import datetime
|
||||||
|
|
||||||
from pydantic import BaseModel, Field
|
from pydantic import BaseModel, Field
|
||||||
|
|
||||||
@@ -10,6 +11,7 @@ class File(BaseModel):
|
|||||||
filename: str
|
filename: str
|
||||||
mime_type: str = Field(alias='mimeType')
|
mime_type: str = Field(alias='mimeType')
|
||||||
size: int
|
size: int
|
||||||
|
created_at: datetime | None = Field(None, alias='createdAt')
|
||||||
|
|
||||||
|
|
||||||
class PostAttach(BaseModel):
|
class PostAttach(BaseModel):
|
||||||
|
|||||||
@@ -1,7 +1,14 @@
|
|||||||
from _io import BufferedReader
|
from _io import BufferedReader
|
||||||
|
from uuid import UUID
|
||||||
|
|
||||||
from itd.request import fetch
|
from itd.request import fetch
|
||||||
|
|
||||||
|
|
||||||
def upload_file(token: str, name: str, data: BufferedReader):
|
def upload_file(token: str, name: str, data: BufferedReader):
|
||||||
return fetch(token, 'post', 'files/upload', files={'file': (name, data)})
|
return fetch(token, 'post', 'files/upload', files={'file': (name, data)})
|
||||||
|
|
||||||
|
def get_file(token: str, id: UUID):
|
||||||
|
return fetch(token, 'get', f'files/{id}')
|
||||||
|
|
||||||
|
def delete_file(token: str, id: UUID):
|
||||||
|
return fetch(token, 'delete', f'files/{id}')
|
||||||
@@ -2,16 +2,8 @@ from warnings import deprecated
|
|||||||
from uuid import UUID
|
from uuid import UUID
|
||||||
from itd.request import fetch
|
from itd.request import fetch
|
||||||
|
|
||||||
@deprecated("get_hastags устарела используйте get_hashtags")
|
|
||||||
def get_hastags(token: str, limit: int = 10):
|
|
||||||
return fetch(token, 'get', 'hashtags/trending', {'limit': limit})
|
|
||||||
|
|
||||||
def get_hashtags(token: str, limit: int = 10):
|
def get_hashtags(token: str, limit: int = 10):
|
||||||
return fetch(token, 'get', 'hashtags/trending', {'limit': limit})
|
return fetch(token, 'get', 'hashtags/trending', {'limit': limit})
|
||||||
|
|
||||||
@deprecated("get_posts_by_hastag устерла используй get_posts_by_hashtag")
|
|
||||||
def get_posts_by_hastag(token: str, hashtag: str, limit: int = 20, cursor: UUID | None = None):
|
|
||||||
return fetch(token, 'get', f'hashtags/{hashtag}/posts', {'limit': limit, 'cursor': cursor})
|
|
||||||
|
|
||||||
def get_posts_by_hashtag(token: str, hashtag: str, limit: int = 20, cursor: UUID | None = None):
|
def get_posts_by_hashtag(token: str, hashtag: str, limit: int = 20, cursor: UUID | None = None):
|
||||||
return fetch(token, 'get', f'hashtags/{hashtag}/posts', {'limit': limit, 'cursor': cursor})
|
return fetch(token, 'get', f'hashtags/{hashtag}/posts', {'limit': limit, 'cursor': cursor})
|
||||||
|
|||||||
Reference in New Issue
Block a user