2020-08-20 03:51:57 +00:00
|
|
|
import fetch from 'node-fetch';
|
2020-08-20 02:25:21 +00:00
|
|
|
import {
|
2020-12-20 17:33:14 +00:00
|
|
|
CommentResponse,
|
|
|
|
CreateComment,
|
|
|
|
CreateCommentLike,
|
|
|
|
DeleteComment,
|
|
|
|
EditComment,
|
|
|
|
GetComments,
|
|
|
|
GetCommentsResponse,
|
|
|
|
MarkCommentAsRead,
|
|
|
|
RemoveComment,
|
|
|
|
SaveComment,
|
|
|
|
} from './interfaces/api/comment';
|
|
|
|
import {
|
|
|
|
AddModToCommunity,
|
|
|
|
AddModToCommunityResponse,
|
|
|
|
BanFromCommunity,
|
|
|
|
BanFromCommunityResponse,
|
2021-08-20 00:49:15 +00:00
|
|
|
BlockCommunity,
|
|
|
|
BlockCommunityResponse,
|
2020-12-20 17:33:14 +00:00
|
|
|
CommunityResponse,
|
|
|
|
CreateCommunity,
|
|
|
|
DeleteCommunity,
|
|
|
|
EditCommunity,
|
|
|
|
FollowCommunity,
|
|
|
|
GetCommunity,
|
|
|
|
GetCommunityResponse,
|
|
|
|
ListCommunities,
|
|
|
|
ListCommunitiesResponse,
|
|
|
|
RemoveCommunity,
|
|
|
|
TransferCommunity,
|
|
|
|
} from './interfaces/api/community';
|
|
|
|
import {
|
|
|
|
CreatePost,
|
|
|
|
CreatePostLike,
|
|
|
|
DeletePost,
|
|
|
|
EditPost,
|
|
|
|
GetPost,
|
|
|
|
GetPostResponse,
|
|
|
|
GetPosts,
|
|
|
|
GetPostsResponse,
|
2021-08-19 15:14:39 +00:00
|
|
|
GetSiteMetadata,
|
|
|
|
GetSiteMetadataResponse,
|
2020-12-20 17:33:14 +00:00
|
|
|
LockPost,
|
|
|
|
PostResponse,
|
|
|
|
RemovePost,
|
|
|
|
SavePost,
|
|
|
|
StickyPost,
|
|
|
|
} from './interfaces/api/post';
|
|
|
|
import {
|
|
|
|
CreateSite,
|
|
|
|
EditSite,
|
|
|
|
GetModlog,
|
|
|
|
GetModlogResponse,
|
|
|
|
GetSite,
|
2020-08-20 02:25:21 +00:00
|
|
|
GetSiteConfig,
|
|
|
|
GetSiteConfigResponse,
|
2020-12-20 17:33:14 +00:00
|
|
|
GetSiteResponse,
|
|
|
|
SaveSiteConfig,
|
|
|
|
Search,
|
2020-08-20 02:25:21 +00:00
|
|
|
SearchResponse,
|
2020-12-20 17:33:14 +00:00
|
|
|
SiteResponse,
|
|
|
|
TransferSite,
|
|
|
|
} from './interfaces/api/site';
|
|
|
|
import {
|
|
|
|
AddAdmin,
|
2020-08-20 02:25:21 +00:00
|
|
|
AddAdminResponse,
|
2021-03-12 18:22:16 +00:00
|
|
|
BanPerson,
|
|
|
|
BanPersonResponse,
|
2020-12-20 17:33:14 +00:00
|
|
|
CreatePrivateMessage,
|
|
|
|
DeleteAccount,
|
|
|
|
DeletePrivateMessage,
|
|
|
|
EditPrivateMessage,
|
2020-08-20 02:25:21 +00:00
|
|
|
GetCaptchaResponse,
|
2020-12-20 17:33:14 +00:00
|
|
|
GetPrivateMessages,
|
|
|
|
GetReplies,
|
|
|
|
GetRepliesResponse,
|
2021-03-12 18:22:16 +00:00
|
|
|
GetPersonDetails,
|
|
|
|
GetPersonDetailsResponse,
|
|
|
|
GetPersonMentions,
|
|
|
|
GetPersonMentionsResponse,
|
2020-12-20 17:33:14 +00:00
|
|
|
Login,
|
|
|
|
LoginResponse,
|
|
|
|
MarkAllAsRead,
|
|
|
|
MarkPrivateMessageAsRead,
|
2021-03-12 18:22:16 +00:00
|
|
|
MarkPersonMentionAsRead,
|
2020-12-20 17:33:14 +00:00
|
|
|
PasswordChange,
|
|
|
|
PasswordReset,
|
|
|
|
PasswordResetResponse,
|
2020-08-20 02:25:21 +00:00
|
|
|
PrivateMessageResponse,
|
|
|
|
PrivateMessagesResponse,
|
2020-12-20 17:33:14 +00:00
|
|
|
Register,
|
|
|
|
SaveUserSettings,
|
2021-04-01 21:35:37 +00:00
|
|
|
ChangePassword,
|
2021-03-12 18:22:16 +00:00
|
|
|
PersonMentionResponse,
|
2021-08-20 00:49:15 +00:00
|
|
|
BlockPerson,
|
|
|
|
BlockPersonResponse,
|
2021-03-12 18:22:16 +00:00
|
|
|
} from './interfaces/api/person';
|
2020-08-20 02:25:21 +00:00
|
|
|
|
2021-03-29 14:29:27 +00:00
|
|
|
import { VERSION } from './interfaces/others';
|
|
|
|
|
2020-08-20 02:25:21 +00:00
|
|
|
enum HttpType {
|
|
|
|
Get = 'GET',
|
|
|
|
Post = 'POST',
|
|
|
|
Put = 'PUT',
|
|
|
|
}
|
|
|
|
|
|
|
|
export class LemmyHttp {
|
2021-03-29 14:29:27 +00:00
|
|
|
private apiUrl: string;
|
2020-11-12 19:42:31 +00:00
|
|
|
private headers: { [key: string]: string } = {};
|
2020-08-20 02:25:21 +00:00
|
|
|
|
2021-01-24 17:37:04 +00:00
|
|
|
/**
|
|
|
|
* Generates a new instance of LemmyHttp
|
2021-03-29 14:29:27 +00:00
|
|
|
* @param baseUrl the base url, without the vX version: https://lemmy.ml -> goes to https://lemmy.ml/api/vX
|
2021-01-24 17:37:04 +00:00
|
|
|
* @param headers optional headers. Should contain x-real-ip and x-forwarded-for
|
|
|
|
*/
|
2020-11-12 19:42:31 +00:00
|
|
|
constructor(baseUrl: string, headers?: { [key: string]: string }) {
|
2021-03-29 14:29:27 +00:00
|
|
|
this.apiUrl = `${baseUrl}/api/${VERSION}`;
|
2020-11-12 19:42:31 +00:00
|
|
|
|
|
|
|
if (headers) {
|
|
|
|
this.headers = headers;
|
|
|
|
}
|
2020-08-20 02:25:21 +00:00
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async getSite(form: GetSite): Promise<GetSiteResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Get, '/site', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async createSite(form: CreateSite): Promise<SiteResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Post, '/site', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async editSite(form: EditSite): Promise<SiteResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Put, '/site', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async transferSite(form: TransferSite): Promise<GetSiteResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Post, '/site/transfer', form);
|
|
|
|
}
|
|
|
|
|
|
|
|
async getSiteConfig(form: GetSiteConfig): Promise<GetSiteConfigResponse> {
|
|
|
|
return this.wrapper(HttpType.Get, '/site/config', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async saveSiteConfig(form: SaveSiteConfig): Promise<GetSiteConfigResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Put, '/site/config', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async getModlog(form: GetModlog): Promise<GetModlogResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Get, '/modlog', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async search(form: Search): Promise<SearchResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Get, '/search', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async createCommunity(form: CreateCommunity): Promise<CommunityResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Post, '/community', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async getCommunity(form: GetCommunity): Promise<GetCommunityResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Get, '/community', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async editCommunity(form: EditCommunity): Promise<CommunityResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Put, '/community', form);
|
|
|
|
}
|
|
|
|
|
|
|
|
async listCommunities(
|
2020-12-20 17:33:14 +00:00
|
|
|
form: ListCommunities
|
2020-08-20 02:25:21 +00:00
|
|
|
): Promise<ListCommunitiesResponse> {
|
|
|
|
return this.wrapper(HttpType.Get, '/community/list', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async followCommunity(form: FollowCommunity): Promise<CommunityResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Post, '/community/follow', form);
|
|
|
|
}
|
|
|
|
|
2021-08-20 00:49:15 +00:00
|
|
|
async blockCommunity(form: BlockCommunity): Promise<BlockCommunityResponse> {
|
|
|
|
return this.wrapper(HttpType.Post, '/community/block', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async deleteCommunity(form: DeleteCommunity): Promise<CommunityResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Post, '/community/delete', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async removeCommunity(form: RemoveCommunity): Promise<CommunityResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Post, '/community/remove', form);
|
|
|
|
}
|
|
|
|
|
|
|
|
async transferCommunity(
|
2020-12-20 17:33:14 +00:00
|
|
|
form: TransferCommunity
|
2020-08-20 02:25:21 +00:00
|
|
|
): Promise<GetCommunityResponse> {
|
|
|
|
return this.wrapper(HttpType.Post, '/community/transfer', form);
|
|
|
|
}
|
|
|
|
|
|
|
|
async banFromCommunity(
|
2020-12-20 17:33:14 +00:00
|
|
|
form: BanFromCommunity
|
2020-08-20 02:25:21 +00:00
|
|
|
): Promise<BanFromCommunityResponse> {
|
|
|
|
return this.wrapper(HttpType.Post, '/community/ban_user', form);
|
|
|
|
}
|
|
|
|
|
|
|
|
async addModToCommunity(
|
2020-12-20 17:33:14 +00:00
|
|
|
form: AddModToCommunity
|
2020-08-20 02:25:21 +00:00
|
|
|
): Promise<AddModToCommunityResponse> {
|
|
|
|
return this.wrapper(HttpType.Post, '/community/mod', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async createPost(form: CreatePost): Promise<PostResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Post, '/post', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async getPost(form: GetPost): Promise<GetPostResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Get, '/post', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async editPost(form: EditPost): Promise<PostResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Put, '/post', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async deletePost(form: DeletePost): Promise<PostResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Post, '/post/delete', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async removePost(form: RemovePost): Promise<PostResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Post, '/post/remove', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async lockPost(form: LockPost): Promise<PostResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Post, '/post/lock', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async stickyPost(form: StickyPost): Promise<PostResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Post, '/post/sticky', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async getPosts(form: GetPosts): Promise<GetPostsResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Get, '/post/list', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async likePost(form: CreatePostLike): Promise<PostResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Post, '/post/like', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async savePost(form: SavePost): Promise<PostResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Put, '/post/save', form);
|
|
|
|
}
|
|
|
|
|
2021-08-19 15:14:39 +00:00
|
|
|
async getSiteMetadata(
|
|
|
|
form: GetSiteMetadata
|
|
|
|
): Promise<GetSiteMetadataResponse> {
|
|
|
|
return this.wrapper(HttpType.Get, '/post/site_metadata', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async createComment(form: CreateComment): Promise<CommentResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Post, '/comment', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async editComment(form: EditComment): Promise<CommentResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Put, '/comment', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async deleteComment(form: DeleteComment): Promise<CommentResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Post, '/comment/delete', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async removeComment(form: RemoveComment): Promise<CommentResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Post, '/comment/remove', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async markCommentAsRead(form: MarkCommentAsRead): Promise<CommentResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Post, '/comment/mark_as_read', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async likeComment(form: CreateCommentLike): Promise<CommentResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Post, '/comment/like', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async saveComment(form: SaveComment): Promise<CommentResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Put, '/comment/save', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async getComments(form: GetComments): Promise<GetCommentsResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Get, '/comment/list', form);
|
|
|
|
}
|
|
|
|
|
|
|
|
async getPrivateMessages(
|
2020-12-20 17:33:14 +00:00
|
|
|
form: GetPrivateMessages
|
2020-08-20 02:25:21 +00:00
|
|
|
): Promise<PrivateMessagesResponse> {
|
|
|
|
return this.wrapper(HttpType.Get, '/private_message/list', form);
|
|
|
|
}
|
|
|
|
|
|
|
|
async createPrivateMessage(
|
2020-12-20 17:33:14 +00:00
|
|
|
form: CreatePrivateMessage
|
2020-08-20 02:25:21 +00:00
|
|
|
): Promise<PrivateMessageResponse> {
|
|
|
|
return this.wrapper(HttpType.Post, '/private_message', form);
|
|
|
|
}
|
|
|
|
|
|
|
|
async editPrivateMessage(
|
2020-12-20 17:33:14 +00:00
|
|
|
form: EditPrivateMessage
|
2020-08-20 02:25:21 +00:00
|
|
|
): Promise<PrivateMessageResponse> {
|
|
|
|
return this.wrapper(HttpType.Put, '/private_message', form);
|
|
|
|
}
|
|
|
|
|
|
|
|
async deletePrivateMessage(
|
2020-12-20 17:33:14 +00:00
|
|
|
form: DeletePrivateMessage
|
2020-08-20 02:25:21 +00:00
|
|
|
): Promise<PrivateMessageResponse> {
|
|
|
|
return this.wrapper(HttpType.Post, '/private_message/delete', form);
|
|
|
|
}
|
|
|
|
|
|
|
|
async markPrivateMessageAsRead(
|
2020-12-20 17:33:14 +00:00
|
|
|
form: MarkPrivateMessageAsRead
|
2020-08-20 02:25:21 +00:00
|
|
|
): Promise<PrivateMessageResponse> {
|
|
|
|
return this.wrapper(HttpType.Post, '/private_message/mark_as_read', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async register(form: Register): Promise<LoginResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Post, '/user/register', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async login(form: Login): Promise<LoginResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Post, '/user/login', form);
|
|
|
|
}
|
|
|
|
|
2021-03-12 18:22:16 +00:00
|
|
|
async getPersonDetails(
|
|
|
|
form: GetPersonDetails
|
|
|
|
): Promise<GetPersonDetailsResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Get, '/user', form);
|
|
|
|
}
|
|
|
|
|
2021-03-12 18:22:16 +00:00
|
|
|
async getPersonMentions(
|
|
|
|
form: GetPersonMentions
|
|
|
|
): Promise<GetPersonMentionsResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Get, '/user/mention', form);
|
|
|
|
}
|
|
|
|
|
2021-03-12 18:22:16 +00:00
|
|
|
async markPersonMentionAsRead(
|
|
|
|
form: MarkPersonMentionAsRead
|
|
|
|
): Promise<PersonMentionResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Post, '/user/mention/mark_as_read', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async getReplies(form: GetReplies): Promise<GetRepliesResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Get, '/user/replies', form);
|
|
|
|
}
|
|
|
|
|
2021-03-12 18:22:16 +00:00
|
|
|
async banPerson(form: BanPerson): Promise<BanPersonResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Post, '/user/ban', form);
|
|
|
|
}
|
|
|
|
|
2021-08-20 00:49:15 +00:00
|
|
|
async blockPerson(form: BlockPerson): Promise<BlockPersonResponse> {
|
|
|
|
return this.wrapper(HttpType.Post, '/user/block', form);
|
|
|
|
}
|
|
|
|
|
2020-08-20 02:25:21 +00:00
|
|
|
async getCaptcha(): Promise<GetCaptchaResponse> {
|
|
|
|
return this.wrapper(HttpType.Get, '/user/get_captcha', {});
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async deleteAccount(form: DeleteAccount): Promise<LoginResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Post, '/user/delete_account', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async passwordReset(form: PasswordReset): Promise<PasswordResetResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Post, '/user/password_reset', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async passwordChange(form: PasswordChange): Promise<LoginResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Post, '/user/password_change', form);
|
|
|
|
}
|
|
|
|
|
2021-03-21 19:51:40 +00:00
|
|
|
async markAllAsRead(form: MarkAllAsRead): Promise<GetRepliesResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Post, '/user/mark_all_as_read', form);
|
|
|
|
}
|
|
|
|
|
2021-03-12 19:03:44 +00:00
|
|
|
async saveUserSettings(form: SaveUserSettings): Promise<LoginResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Put, '/user/save_user_settings', form);
|
|
|
|
}
|
|
|
|
|
2021-04-01 21:35:37 +00:00
|
|
|
async changePassword(form: ChangePassword): Promise<LoginResponse> {
|
|
|
|
return this.wrapper(HttpType.Put, '/user/change_password', form);
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:33:14 +00:00
|
|
|
async addAdmin(form: AddAdmin): Promise<AddAdminResponse> {
|
2020-08-20 02:25:21 +00:00
|
|
|
return this.wrapper(HttpType.Post, '/admin/add', form);
|
|
|
|
}
|
|
|
|
|
|
|
|
private buildFullUrl(endpoint: string): string {
|
2021-03-29 14:29:27 +00:00
|
|
|
return `${this.apiUrl}${endpoint}`;
|
2020-08-20 02:25:21 +00:00
|
|
|
}
|
|
|
|
|
2020-12-20 19:21:26 +00:00
|
|
|
private async wrapper<ResponseType, MessageType>(
|
2020-08-20 02:25:21 +00:00
|
|
|
type_: HttpType,
|
|
|
|
endpoint: string,
|
|
|
|
form: MessageType
|
2020-12-20 19:21:26 +00:00
|
|
|
): Promise<ResponseType> {
|
2020-08-20 02:25:21 +00:00
|
|
|
if (type_ == HttpType.Get) {
|
2020-08-20 03:51:57 +00:00
|
|
|
let getUrl = `${this.buildFullUrl(endpoint)}?${encodeGetParams(form)}`;
|
2020-08-20 02:25:21 +00:00
|
|
|
return fetch(getUrl, {
|
|
|
|
method: 'GET',
|
2020-11-12 19:42:31 +00:00
|
|
|
headers: this.headers,
|
2020-08-20 02:25:21 +00:00
|
|
|
}).then(d => d.json());
|
|
|
|
} else {
|
|
|
|
return fetch(this.buildFullUrl(endpoint), {
|
|
|
|
method: type_,
|
|
|
|
headers: {
|
|
|
|
'Content-Type': 'application/json',
|
2020-11-12 19:42:31 +00:00
|
|
|
...this.headers,
|
2020-08-20 02:25:21 +00:00
|
|
|
},
|
|
|
|
body: JSON.stringify(form),
|
|
|
|
}).then(d => d.json());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function encodeGetParams(p: any): string {
|
|
|
|
return Object.entries(p)
|
|
|
|
.map(kv => kv.map(encodeURIComponent).join('='))
|
|
|
|
.join('&');
|
|
|
|
}
|