mCaptcha/templates/router.ts

101 lines
2.4 KiB
TypeScript
Raw Normal View History

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/>.
*/
/** Removes trailing slashed from URI */
2021-05-01 13:52:44 +00:00
const normalizeUri = (uri: string) => {
2021-05-06 12:46:13 +00:00
uri = uri.trim();
if (uri.length == 0) {
throw new Error('uri is empty');
}
2021-04-09 08:51:43 +00:00
2021-05-06 12:46:13 +00:00
let uriLength = uri.length;
if (uri[uriLength - 1] == '/') {
uri = uri.slice(0, uriLength - 1);
2021-04-09 08:51:43 +00:00
}
2021-05-06 12:46:13 +00:00
return uri;
2021-04-09 08:51:43 +00:00
};
/** URI<-> Fn mapping type */
2021-05-01 13:52:44 +00:00
type routeTuple = {
pattern: RegExp;
2021-05-01 13:52:44 +00:00
fn: () => void;
};
2021-05-06 05:23:05 +00:00
/**
* Router that selectively executes fucntions
2021-05-06 05:23:05 +00:00
* based on window.location.pathname
* */
2021-04-09 08:51:43 +00:00
export class Router {
2021-05-01 13:52:44 +00:00
routes: Array<routeTuple>;
2021-04-09 08:51:43 +00:00
constructor() {
this.routes = [];
}
2021-05-06 05:23:05 +00:00
/**
* registers a route-function pair with Router
* @param {string} uri - route to be registered
* @param {function} fn: - function to be registered when window.locatin.path
* matches uri
* */
2021-05-01 13:52:44 +00:00
register(uri: string, fn: () => void) {
2021-05-06 06:41:06 +00:00
uri = normalizeUri(uri);
let pattern = new RegExp(`^${uri}(.*)`);
let patterString = pattern.toString();
2021-05-06 12:46:13 +00:00
if (
this.routes.find(route => {
if (route.pattern.toString() == patterString) {
2021-05-06 12:46:13 +00:00
return true;
} else {
return false;
2021-05-06 12:46:13 +00:00
}
})
) {
throw new Error('URI exists');
}
2021-04-09 08:51:43 +00:00
2021-05-01 13:52:44 +00:00
const route: routeTuple = {
pattern,
2021-04-09 08:51:43 +00:00
fn,
};
this.routes.push(route);
}
/**
* executes registered function with route
* matches window.pathname.location
* */
2021-04-09 08:51:43 +00:00
route() {
2021-05-06 05:23:05 +00:00
const path = normalizeUri(window.location.pathname);
2021-05-06 12:46:13 +00:00
let fn: () => void | undefined;
2021-04-09 08:51:43 +00:00
this.routes.forEach(route => {
if (path.match(route.pattern)) {
2021-05-06 15:02:44 +00:00
fn = route.fn;
2021-04-09 08:51:43 +00:00
}
});
2021-05-06 12:46:13 +00:00
if (fn === undefined) {
2021-05-06 15:02:44 +00:00
throw new Error("Route isn't registered");
2021-05-06 12:46:13 +00:00
}
return fn();
2021-04-09 08:51:43 +00:00
}
}