re-nav/source/redirect/base.ts

53 lines
1.4 KiB
TypeScript
Raw Normal View History

2022-10-20 20:54:02 +00:00
export const matcherTypes = ['hostname', 'regex'] as const;
2022-11-02 10:10:29 +00:00
export const redirectTypes = ['hostname', 'regex', 'simple'] as const;
2022-10-05 17:08:17 +00:00
export type MatcherType = typeof matcherTypes[number];
export type RedirectType = typeof redirectTypes[number];
2022-10-19 11:31:53 +00:00
export function narrowMatcherType(value: string): value is MatcherType {
return matcherTypes.includes(value as MatcherType);
}
export function narrowRedirectType(value: string): value is RedirectType {
return redirectTypes.includes(value as RedirectType);
}
2022-10-05 17:08:17 +00:00
export type RedirectParameters = {
2022-10-26 12:47:42 +00:00
enabled: boolean;
id: number;
matcherType: MatcherType;
matcherValue: string;
redirectType: RedirectType;
redirectValue: string;
};
export abstract class Redirect {
public static idString(id: number): string {
return `redirect:${id}`;
2022-10-19 19:10:41 +00:00
}
constructor(public parameters: RedirectParameters) {}
2022-10-19 19:10:41 +00:00
public idString(): string {
return Redirect.idString(this.parameters.id);
2022-10-19 19:10:41 +00:00
}
2022-10-12 22:04:51 +00:00
public isMatch(url: URL): boolean {
if (this.parameters.matcherType === 'hostname') {
const hostname = url.hostname.startsWith('www.')
? url.hostname.slice(4)
: url.hostname;
return hostname === this.parameters.matcherValue;
2022-10-12 22:04:51 +00:00
}
2022-10-20 20:54:02 +00:00
if (this.parameters.matcherType === 'regex') {
const regex = new RegExp(this.parameters.matcherValue, 'gi');
return regex.test(url.href);
}
2022-10-12 22:04:51 +00:00
return false;
}
2022-10-05 17:08:17 +00:00
public abstract redirect(url: URL | string): URL | string;
2022-10-05 17:08:17 +00:00
}