2021-05-01 14:41:22 +05:30
|
|
|
/*
|
2022-01-08 22:16:05 +05:30
|
|
|
* Copyright (C) 2022 Aravinth Manivannan <realaravinth@batsense.net>
|
2021-05-01 14:41:22 +05:30
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2021-12-10 06:16:03 +05:30
|
|
|
import { Router } from "./router";
|
2021-04-09 14:21:43 +05:30
|
|
|
|
2021-10-08 15:24:29 +05:30
|
|
|
import * as login from "./auth/login/ts/";
|
|
|
|
import * as register from "./auth/register/ts/";
|
|
|
|
import * as panel from "./panel/ts/index";
|
|
|
|
import settings from "./panel/settings/";
|
|
|
|
import * as deleteAccount from "./panel/settings/account/delete";
|
|
|
|
import * as updateSecret from "./panel/settings/secret/update";
|
2021-12-18 16:39:20 +05:30
|
|
|
import * as addSiteKeyAdvance from "./panel/sitekey/add/advance/ts";
|
|
|
|
import * as addSiteKeyEasy from "./panel/sitekey/add/novice/ts";
|
2021-12-18 21:01:19 +05:30
|
|
|
import * as editSitekeyAdvance from "./panel/sitekey/edit/";
|
|
|
|
import * as editSitekeyEasy from "./panel/sitekey/edit/easy/";
|
2021-10-08 15:24:29 +05:30
|
|
|
import * as deleteSitekey from "./panel/sitekey/delete/";
|
|
|
|
import * as listSitekeys from "./panel/sitekey/list/ts";
|
|
|
|
import * as notidications from "./panel/notifications/ts";
|
2021-12-10 06:16:03 +05:30
|
|
|
import { MODE } from "./logger";
|
2021-10-08 15:24:29 +05:30
|
|
|
import log from "./logger";
|
2021-05-03 20:24:03 +05:30
|
|
|
|
2021-10-08 15:24:29 +05:30
|
|
|
import VIEWS from "./views/v1/routes";
|
2021-05-03 20:24:03 +05:30
|
|
|
|
2021-05-07 17:55:42 +05:30
|
|
|
log.setMode(MODE.production);
|
|
|
|
|
2021-04-09 14:21:43 +05:30
|
|
|
const router = new Router();
|
|
|
|
|
2021-05-01 11:28:39 +05:30
|
|
|
router.register(VIEWS.panelHome, panel.index);
|
2021-07-20 18:14:23 +05:30
|
|
|
router.register(VIEWS.settings, settings);
|
2021-07-21 20:44:22 +05:30
|
|
|
router.register(VIEWS.deleteAccount, deleteAccount.index);
|
|
|
|
router.register(VIEWS.updateSecret, updateSecret.index);
|
2021-05-01 11:28:39 +05:30
|
|
|
router.register(VIEWS.registerUser, register.index);
|
|
|
|
router.register(VIEWS.loginUser, login.index);
|
2021-07-16 21:16:49 +05:30
|
|
|
router.register(VIEWS.notifications, notidications.index);
|
2021-07-15 18:07:12 +05:30
|
|
|
router.register(VIEWS.listSitekey, listSitekeys.index);
|
2021-12-18 16:39:20 +05:30
|
|
|
router.register(VIEWS.addSiteKeyAdvance,addSiteKeyAdvance.index);
|
|
|
|
router.register(VIEWS.addSiteKeyEasy, addSiteKeyEasy.index);
|
2021-12-18 21:01:19 +05:30
|
|
|
router.register(VIEWS.editSitekeyAdvance("[A-Z),a-z,0-9]+"), editSitekeyAdvance.index);
|
|
|
|
router.register(VIEWS.editSitekeyEasy("[A-Z),a-z,0-9]+"), editSitekeyEasy.index);
|
2021-10-08 15:24:29 +05:30
|
|
|
router.register(VIEWS.deleteSitekey("[A-Z),a-z,0-9]+"), deleteSitekey.index);
|
2021-04-09 14:21:43 +05:30
|
|
|
|
2021-05-09 16:39:52 +05:30
|
|
|
try {
|
|
|
|
router.route();
|
|
|
|
} catch (e) {
|
|
|
|
console.log(e);
|
|
|
|
}
|