2021-05-01 09:11:22 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2021 Aravinth Manivannan <realaravinth@batsense.net>
|
|
|
|
*
|
|
|
|
* 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 00:46:03 +00:00
|
|
|
import { Router } from "./router";
|
2021-04-09 08:51:43 +00:00
|
|
|
|
2021-10-08 09:54:29 +00:00
|
|
|
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-10 00:46:03 +00:00
|
|
|
import * as addSiteKey from "./panel/sitekey/add/advance/ts";
|
2021-10-08 09:54:29 +00:00
|
|
|
import * as editSitekey from "./panel/sitekey/edit/";
|
|
|
|
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 00:46:03 +00:00
|
|
|
import { MODE } from "./logger";
|
2021-10-08 09:54:29 +00:00
|
|
|
import log from "./logger";
|
2021-05-03 14:54:03 +00:00
|
|
|
|
2021-10-08 09:54:29 +00:00
|
|
|
import VIEWS from "./views/v1/routes";
|
2021-05-03 14:54:03 +00:00
|
|
|
|
2021-05-07 12:25:42 +00:00
|
|
|
log.setMode(MODE.production);
|
|
|
|
|
2021-04-09 08:51:43 +00:00
|
|
|
const router = new Router();
|
|
|
|
|
2021-05-01 05:58:39 +00:00
|
|
|
router.register(VIEWS.panelHome, panel.index);
|
2021-07-20 12:44:23 +00:00
|
|
|
router.register(VIEWS.settings, settings);
|
2021-07-21 15:14:22 +00:00
|
|
|
router.register(VIEWS.deleteAccount, deleteAccount.index);
|
|
|
|
router.register(VIEWS.updateSecret, updateSecret.index);
|
2021-05-01 05:58:39 +00:00
|
|
|
router.register(VIEWS.registerUser, register.index);
|
|
|
|
router.register(VIEWS.loginUser, login.index);
|
2021-07-16 15:46:49 +00:00
|
|
|
router.register(VIEWS.notifications, notidications.index);
|
2021-07-15 12:37:12 +00:00
|
|
|
router.register(VIEWS.listSitekey, listSitekeys.index);
|
2021-05-01 09:11:22 +00:00
|
|
|
router.register(VIEWS.addSiteKey, addSiteKey.index);
|
2021-10-08 09:54:29 +00:00
|
|
|
router.register(VIEWS.editSitekey("[A-Z),a-z,0-9]+"), editSitekey.index);
|
|
|
|
router.register(VIEWS.deleteSitekey("[A-Z),a-z,0-9]+"), deleteSitekey.index);
|
2021-04-09 08:51:43 +00:00
|
|
|
|
2021-05-09 11:09:52 +00:00
|
|
|
try {
|
|
|
|
router.route();
|
|
|
|
} catch (e) {
|
|
|
|
console.log(e);
|
|
|
|
}
|