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

119 lines
4.6 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";
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-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
// 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
// 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)},
2019-11-21 17:06:50 +00:00
]