1
0
mirror of https://gitlab.com/comunic/comunicapiv2 synced 2024-11-26 07:19:23 +00:00
comunicapiv2/src/controllers/Routes.ts

234 lines
9.1 KiB
TypeScript
Raw Normal View History

2019-11-21 17:06:50 +00:00
import { WelcomeController } from "./WelcomeController";
2019-11-22 07:50:15 +00:00
import { RequestHandler } from "../entities/RequestHandler";
import { AccountController } from "./AccountController";
import { UserController } from "./UserController";
2019-11-23 17:41:13 +00:00
import { ConversationsController } from "./ConversationsController";
2019-11-30 08:28:50 +00:00
import { SearchController } from "./SearchController";
2019-12-13 16:49:58 +00:00
import { GroupsController } from "./GroupsController";
import { NotificationsController } from "./NotificationsController";
2019-12-28 12:07:26 +00:00
import { VirtualDirectoryController } from "./VirtualDirectoryController";
2019-12-28 15:52:52 +00:00
import { WebAppControllers } from "./WebAppController";
2019-12-28 15:58:06 +00:00
import { CallsController } from "./CallsController";
import { FriendsController } from "./FriendsController";
2020-01-03 07:39:59 +00:00
import { MoviesController } from "./MoviesController";
2020-01-03 09:17:34 +00:00
import { PostsController } from "./PostsController";
2019-11-21 17:06:50 +00:00
/**
* Controllers routes
*
* @author Pierre Hubert
*/
export enum RouteType {
POST, // Default
GET
}
export interface Route {
type ?: RouteType,
path: string,
2019-11-23 12:24:24 +00:00
cb: (req : RequestHandler) => Promise<void> | void,
2019-11-23 12:47:06 +00:00
needLogin ?: boolean, // Default = true
2019-11-21 17:06:50 +00:00
}
export const Routes : Route[] = [
// Welcome controller
2019-11-23 12:47:06 +00:00
{type: RouteType.GET, path: "/", cb: WelcomeController.HomeMessage, needLogin: false},
2019-11-21 17:06:50 +00:00
2019-11-22 07:50:15 +00:00
// Account controller
2019-12-30 12:44:54 +00:00
{path: "/account/create", cb: (h) => AccountController.Create(h), needLogin: false},
2019-11-23 14:23:48 +00:00
{path: "/account/login", cb: (h) => AccountController.LoginUser(h), needLogin: false},
{path: "/user/connectUSER", cb: (h) => AccountController.LoginUser(h), needLogin: false}, // Legacy
2019-11-23 13:03:14 +00:00
2019-11-23 14:23:48 +00:00
{path: "/account/logout", cb: (h) => AccountController.LogoutUser(h)},
{path: "/user/disconnectUSER", cb: (h) => AccountController.LogoutUser(h)}, // Legacy
2019-11-23 12:48:16 +00:00
2019-11-23 14:23:48 +00:00
{path: "/account/id", cb: (h) => AccountController.CurrentUserID(h)},
{path: "/user/getCurrentUserID", cb: (h) => AccountController.CurrentUserID(h)}, // Legacy
{path: "/account/exists_email", cb: (h) => AccountController.ExistsMail(h), needLogin: false},
{path: "/account/has_security_questions", cb: (h) => AccountController.HasSecurityQuestions(h), needLogin: false},
2019-12-30 07:16:10 +00:00
{path: "/account/get_security_questions", cb: (h) => AccountController.GetSecurityQuestions(h), needLogin: false},
2019-12-30 07:36:55 +00:00
{path: "/account/check_security_answers", cb: (h) => AccountController.CheckSecurityAnswers(h), needLogin: false},
2019-12-30 11:11:33 +00:00
{path: "/account/check_password_reset_token", cb: (h) => AccountController.CheckPasswordResetToken(h), needLogin: false},
2019-12-30 12:20:24 +00:00
{path: "/account/reset_user_passwd", cb: (h) => AccountController.ResetUserPassword(h), needLogin: false},
{path: "/account/export_data", cb: (h) => AccountController.ExportData(h)},
{path: "/account/delete", cb: (h) => AccountController.DeleteAccount(h)},
// User controller
2019-11-23 14:23:48 +00:00
{path: "/user/getInfo", cb: (h) => UserController.GetSingle(h), needLogin: false},
{path: "/user/getInfos", cb: (h) => UserController.GetSingle(h), needLogin: false}, // Legacy
2019-11-23 14:23:48 +00:00
{path: "/user/getInfoMultiple", cb: (h) => UserController.GetMultiple(h), needLogin: false},
{path: "/user/getInfosMultiple", cb: (h) => UserController.GetMultiple(h), needLogin: false}, // Legacy
2019-11-23 17:41:13 +00:00
{path: "/user/getAdvancedUserInfo", cb: (h) => UserController.GetAdvancedInfo(h), needLogin: false},
{path: "/user/getAdvancedUserInfos", cb: (h) => UserController.GetAdvancedInfo(h), needLogin: false}, // Legacy
2019-11-23 17:41:13 +00:00
// Friends controller
{path: "/friends/getList", cb: (h) => FriendsController.GetList(h)},
{path: "/friends/get_user_list", cb: (h) => FriendsController.GetOtherUserList(h), needLogin: false},
{path: "/friends/get_single_infos", cb: (h) => FriendsController.GetSingleFrienshipInfo(h)},
2019-12-31 09:33:38 +00:00
{path: "/friends/getStatus", cb: (h) => FriendsController.GetStatus(h)},
2019-12-31 09:47:55 +00:00
{path: "/friends/sendRequest", cb: (h) => FriendsController.SendRequest(h)},
2020-01-01 10:52:34 +00:00
{path: "/friends/removeRequest", cb: (h) => FriendsController.CancelRequest(h)},
2020-01-01 11:07:26 +00:00
{path: "/friends/respondRequest", cb: (h) => FriendsController.RespondRequest(h)},
2020-01-01 11:17:24 +00:00
{path: "/friends/remove", cb: (h) => FriendsController.RemoveFriend(h)},
{path: "/friends/setFollowing", cb: (h) => FriendsController.SetFollowing(h)},
{path: "/friends/set_can_post_texts", cb: (h) => FriendsController.SetCanPostTexts(h)},
2019-11-23 17:41:13 +00:00
// Conversations controller
2019-11-30 09:11:51 +00:00
{path: "/conversations/create", cb: (h) => ConversationsController.CreateConversation(h)},
2019-11-23 17:41:13 +00:00
{path: "/conversations/getList", cb: (h) => ConversationsController.GetList(h)},
{path: "/conversations/getInfoOne", cb: (h) => ConversationsController.GetInfoSingle(h)},
{path: "/conversations/getInfosOne", cb: (h) => ConversationsController.GetInfoSingle(h)}, // Legacy
2019-11-30 08:28:50 +00:00
{path: "/conversations/updateSettings", cb: (h) => ConversationsController.UpdateSettings(h)},
2019-11-30 08:28:50 +00:00
2019-12-07 11:00:28 +00:00
{path: "/conversations/getPrivate", cb: (h) => ConversationsController.FindPrivate(h)},
2019-11-30 14:17:47 +00:00
{path: "/conversations/refresh", cb: (h) => ConversationsController.RefreshList(h)},
{path: "/conversations/refresh_single", cb: (h) => ConversationsController.RefreshSingleConversation(h)},
2019-11-30 16:13:36 +00:00
{path: "/conversations/sendMessage", cb: (h) => ConversationsController.SendMessage(h)},
2019-12-07 16:08:53 +00:00
{path: "/conversations/get_older_messages", cb: (h) => ConversationsController.GetOlderMessages(h)},
{path: "/conversations/get_number_unread", cb: (h) => ConversationsController.CountUnreadForUser(h)},
{path: "/conversations/get_list_unread", cb: (h) => ConversationsController.GetListUnread(h)},
{path: "/conversations/delete", cb: (h) => ConversationsController.DeleteConversation(h)},
{path: "/conversations/updateMessage", cb: (h) => ConversationsController.UpdateMessage(h)},
{path: "/conversations/deleteMessage", cb: (h) => ConversationsController.DeleteMessage(h)},
2019-11-30 14:17:47 +00:00
2019-11-30 08:28:50 +00:00
// Search controller
{path: "/search/user", cb: (h) => SearchController.SearchUser(h)},
{path: "/user/search", cb: (h) => SearchController.SearchUser(h)}, // Legacy
2019-12-13 16:49:58 +00:00
// Groups controller
2019-12-24 17:47:55 +00:00
{path: "/groups/create", cb: (h) => GroupsController.Create(h)},
2019-12-13 16:49:58 +00:00
{path: "/groups/get_my_list", cb: (h) => GroupsController.GetListUser(h)},
2019-12-13 17:30:08 +00:00
{path: "/groups/get_info", cb: (h) => GroupsController.GetInfoSingle(h)},
{path: "/groups/get_multiple_info", cb: (h) => GroupsController.GetInfoMultiple(h)},
2019-12-24 18:10:45 +00:00
{path: "/groups/get_advanced_info", cb: (h) => GroupsController.GetAdvancedInfo(h), needLogin: false},
2019-12-25 14:43:43 +00:00
{path: "/groups/get_settings", cb: (h) => GroupsController.GetSettings(h)},
2019-12-26 12:49:17 +00:00
{path: "/groups/set_settings", cb: (h) => GroupsController.SetSettings(h)},
{path: "/groups/checkVirtualDirectory", cb: (h) => GroupsController.CheckVirtualDirectory(h)},
2019-12-26 13:14:42 +00:00
{path: "/groups/upload_logo", cb: (h) => GroupsController.UploadLogo(h)},
{path: "/groups/delete_logo", cb: (h) => GroupsController.DeleteLogo(h)},
2019-12-26 13:26:46 +00:00
{path: "/groups/get_members", cb: (h) => GroupsController.GetMembers(h)},
2019-12-26 16:55:29 +00:00
{path: "/groups/invite", cb: (h) => GroupsController.InviteUser(h)},
2019-12-26 17:16:44 +00:00
{path: "/groups/respond_invitation", cb: (h) => GroupsController.RespondInvitation(h)},
2019-12-27 08:57:28 +00:00
{path: "/groups/send_request", cb: (h) => GroupsController.SendRequest(h)},
2019-12-27 09:02:05 +00:00
{path: "/groups/cancel_request", cb: (h) => GroupsController.CancelRequest(h)},
2019-12-27 09:28:43 +00:00
{path: "/groups/delete_member", cb: (h) => GroupsController.DeleteMember(h)},
{path: "/groups/update_membership_level", cb: (h) => GroupsController.UpdateMembership(h)},
2019-12-27 10:04:49 +00:00
{path: "/groups/respond_request", cb: (h) => GroupsController.RespondRequest(h)},
{path: "/groups/get_membership", cb: (h) => GroupsController.GetMembership(h)},
{path: "/groups/cancel_invitation", cb: (h) => GroupsController.CancelInvitation(h)},
2019-12-27 17:31:31 +00:00
{path: "/groups/remove_membership", cb: (h) => GroupsController.RemoveMembership(h)},
2019-12-27 17:38:14 +00:00
{path: "/groups/set_following", cb: (h) => GroupsController.SetFollowing(h)},
2019-12-27 17:49:40 +00:00
{path: "/groups/delete", cb: (h) => GroupsController.DeleteGroup(h)},
2020-01-03 09:17:34 +00:00
// Posts controller
{path: "/posts/get_user", cb: (h) => PostsController.GetListUser(h), needLogin: false},
2020-01-04 09:27:54 +00:00
{path: "/posts/get_group", cb: (h) => PostsController.GetListGroup(h), needLogin: false},
2020-01-04 10:30:33 +00:00
{path: "/posts/get_latest", cb: (h) => PostsController.GetLatest(h)},
{path: "/posts/get_single", cb: (h) => PostsController.GetSingle(h), needLogin: false},
{path: "/posts/create", cb: (h) => PostsController.CreatePost(h)},
{path: "/posts/set_visibility_level", cb: (h) => PostsController.SetVisibilityLevel(h)},
2020-03-20 17:41:32 +00:00
{path: "/posts/update_content", cb: (h) => PostsController.UpdateContent(h)},
2020-03-20 17:47:28 +00:00
{path: "/posts/delete", cb: (h) => PostsController.DeletePost(h)},
{path: "/posts/getAvailableTargets", cb: (h) => PostsController.GetTargets(h)},
2020-01-03 09:17:34 +00:00
// Notifications controller
{path: "/notifications/count_unread", cb: (h) => NotificationsController.CountUnread(h)},
2019-12-27 18:05:29 +00:00
{path: "/notifications/count_all_news", cb: (h) => NotificationsController.CountAllNews(h)},
{path: "/notifications/get_list_unread", cb: (h) => NotificationsController.GetListUnread(h)},
2019-12-28 12:07:26 +00:00
2020-01-03 07:39:59 +00:00
// Movies controller
{path: "/movies/get_list", cb: (h) => MoviesController.GetList(h)},
2019-12-28 12:07:26 +00:00
// Virtual directory controller
2019-12-28 13:34:42 +00:00
{path: "/user/findbyfolder", cb: (h) => VirtualDirectoryController.FindUser(h)},
2019-12-28 12:07:26 +00:00
{path: "/virtualDirectory/find", cb: (h) => VirtualDirectoryController.Find(h)},
2019-12-28 15:52:52 +00:00
// Web app controller
{path: "/webApp/getMemberships", cb: (h) => WebAppControllers.GetMemberships(h)},
2019-12-28 15:58:06 +00:00
// Calls controller
{path: "/calls/config", cb: (h) => CallsController.GetConfig(h)},
2019-12-28 15:52:52 +00:00
2019-11-21 17:06:50 +00:00
]