mirror of
https://github.com/krawieck/lemmur/
synced 2024-12-17 19:09:07 +01:00
162 lines
4.1 KiB
Dart
162 lines
4.1 KiB
Dart
|
import 'package:flutter/foundation.dart';
|
||
|
|
||
|
class UserEndpoint {
|
||
|
String instanceUrl;
|
||
|
UserEndpoint(this.instanceUrl);
|
||
|
|
||
|
/// POST /user/login
|
||
|
/// https://dev.lemmy.ml/docs/contributing_websocket_http_api.html#login
|
||
|
String login({
|
||
|
String usernameOrEmail,
|
||
|
String password,
|
||
|
}) {
|
||
|
assert(usernameOrEmail != null, password != null);
|
||
|
throw UnimplementedError();
|
||
|
}
|
||
|
|
||
|
/// POST /user/register
|
||
|
/// https://dev.lemmy.ml/docs/contributing_websocket_http_api.html#register
|
||
|
String register({
|
||
|
@required String username,
|
||
|
String email,
|
||
|
String password,
|
||
|
}) {
|
||
|
throw UnimplementedError();
|
||
|
}
|
||
|
|
||
|
/// GET /user/get_captcha
|
||
|
/// https://dev.lemmy.ml/docs/contributing_websocket_http_api.html#get-captcha
|
||
|
String getCaptcha() {
|
||
|
throw UnimplementedError();
|
||
|
}
|
||
|
|
||
|
/// GET /user
|
||
|
/// https://dev.lemmy.ml/docs/contributing_websocket_http_api.html#get-user-details
|
||
|
String getDetails({
|
||
|
int userId,
|
||
|
String username,
|
||
|
@required String sort,
|
||
|
int page,
|
||
|
int limit,
|
||
|
int communityId,
|
||
|
bool savedOnly,
|
||
|
String auth,
|
||
|
}) {
|
||
|
throw UnimplementedError();
|
||
|
}
|
||
|
|
||
|
/// PUT /save_user_settings
|
||
|
/// https://dev.lemmy.ml/docs/contributing_websocket_http_api.html#save-user-settings
|
||
|
String updateSettings({
|
||
|
@required bool showNsfw,
|
||
|
@required String theme,
|
||
|
@required int defaultSortType,
|
||
|
@required int defaultListingType,
|
||
|
@required String auth,
|
||
|
}) {
|
||
|
throw UnimplementedError();
|
||
|
}
|
||
|
|
||
|
/// GET /user/replies
|
||
|
/// https://dev.lemmy.ml/docs/contributing_websocket_http_api.html#get-replies--inbox
|
||
|
String getReplies({
|
||
|
@required String sort,
|
||
|
int page,
|
||
|
int limit,
|
||
|
@required bool unreadOnly,
|
||
|
@required String auth,
|
||
|
}) {
|
||
|
throw UnimplementedError();
|
||
|
}
|
||
|
|
||
|
/// GET /user/mentions
|
||
|
/// https://dev.lemmy.ml/docs/contributing_websocket_http_api.html#get-user-mentions
|
||
|
String getMentions({
|
||
|
String sort,
|
||
|
@required int page,
|
||
|
@required int limit,
|
||
|
bool unreadOnly,
|
||
|
String auth,
|
||
|
}) {
|
||
|
throw UnimplementedError();
|
||
|
}
|
||
|
|
||
|
/// POST /user/mention/mark_as_read
|
||
|
/// https://dev.lemmy.ml/docs/contributing_websocket_http_api.html#mark-user-mention-as-read
|
||
|
String markMentionsAsRead({
|
||
|
@required int userMentionId,
|
||
|
@required bool read,
|
||
|
@required String auth,
|
||
|
}) {
|
||
|
throw UnimplementedError();
|
||
|
}
|
||
|
|
||
|
/// GET /private_message/list
|
||
|
/// https://dev.lemmy.ml/docs/contributing_websocket_http_api.html#get-private-messages
|
||
|
String getPrivateMessages({
|
||
|
@required bool unreadOnly,
|
||
|
int page,
|
||
|
int limit,
|
||
|
@required String auth,
|
||
|
}) {
|
||
|
throw UnimplementedError();
|
||
|
}
|
||
|
|
||
|
/// POST /private_message
|
||
|
/// https://dev.lemmy.ml/docs/contributing_websocket_http_api.html#create-private-message
|
||
|
String createPrivateMessage({
|
||
|
@required String content,
|
||
|
@required int recipientId,
|
||
|
@required String auth,
|
||
|
}) {
|
||
|
throw UnimplementedError();
|
||
|
}
|
||
|
|
||
|
/// PUT /private_message
|
||
|
/// https://dev.lemmy.ml/docs/contributing_websocket_http_api.html#edit-private-message
|
||
|
String updatePrivateMessage({
|
||
|
@required int editId,
|
||
|
@required String content,
|
||
|
@required String auth,
|
||
|
}) {
|
||
|
throw UnimplementedError();
|
||
|
}
|
||
|
|
||
|
/// POST /private_message/delete
|
||
|
/// https://dev.lemmy.ml/docs/contributing_websocket_http_api.html#delete-private-message
|
||
|
String deletePrivateMessage({
|
||
|
@required int editId,
|
||
|
@required bool deleted,
|
||
|
@required String auth,
|
||
|
}) {
|
||
|
throw UnimplementedError();
|
||
|
}
|
||
|
|
||
|
/// POST /private_message/mark_as_read
|
||
|
/// https://dev.lemmy.ml/docs/contributing_websocket_http_api.html#mark-private-message-as-read
|
||
|
String markPrivateMessageAsRead({
|
||
|
@required int editId,
|
||
|
@required bool read,
|
||
|
@required String auth,
|
||
|
}) {
|
||
|
throw UnimplementedError();
|
||
|
}
|
||
|
|
||
|
/// POST /user/mark_all_as_read
|
||
|
/// https://dev.lemmy.ml/docs/contributing_websocket_http_api.html#mark-all-as-read
|
||
|
String markAllPrivateMessagesAsRead({
|
||
|
@required String auth,
|
||
|
}) {
|
||
|
throw UnimplementedError();
|
||
|
}
|
||
|
|
||
|
/// POST /user/delete_account
|
||
|
/// https://dev.lemmy.ml/docs/contributing_websocket_http_api.html#delete-account
|
||
|
String deleteAccount({
|
||
|
@required String password,
|
||
|
@required String auth,
|
||
|
}) {
|
||
|
throw UnimplementedError();
|
||
|
}
|
||
|
}
|