feat: add comments

This commit is contained in:
firedotguy
2026-01-29 20:09:16 +03:00
parent 6441ffabf1
commit b56598f893
3 changed files with 45 additions and 3 deletions

22
itd/comments.py Normal file
View File

@@ -0,0 +1,22 @@
from itd.request import fetch
def add_comment(token: str, post_id: int, content: str, reply_comment_id: int | None = None):
data = {'content': content}
if reply_comment_id:
data['replyTo'] = str(reply_comment_id)
return fetch(token, 'post', f'posts/{post_id}/comments', data)
def get_comments(token: str, post_id: int, limit: int = 20, cursor: int = 0, sort: str = 'popular'):
return fetch(token, 'get', f'posts/{post_id}/comments', {'limit': limit, 'sort': sort, 'cursor': cursor})
def like_comment(token: str, comment_id: int):
return fetch(token, 'post', f'comments/{comment_id}/like')
def unlike_comment(token: str, comment_id: int):
return fetch(token, 'delete', f'comments/{comment_id}/like')
def delete_comment(token: str, comment_id: int):
return fetch(token, 'delete', f'comments/{comment_id}')
def update_comment(token: str, comment_id: int, content: str):
return fetch(token, 'put', f'comments/{comment_id}', {'content': content})