mirror of https://github.com/wg-easy/wg-easy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
99 lines
1.8 KiB
99 lines
1.8 KiB
import type { SessionConfig } from 'h3';
|
|
|
|
export type Lang = 'en' | 'fr';
|
|
|
|
export type IpTables = {
|
|
PreUp: string;
|
|
PostUp: string;
|
|
PreDown: string;
|
|
PostDown: string;
|
|
};
|
|
|
|
export type WGInterface = {
|
|
privateKey: string;
|
|
publicKey: string;
|
|
address4: string;
|
|
address6: string;
|
|
};
|
|
|
|
export type WGConfig = {
|
|
mtu: number;
|
|
serverMtu: number;
|
|
persistentKeepalive: number;
|
|
address4Range: string;
|
|
address6Range: string;
|
|
defaultDns: string[];
|
|
allowedIps: string[];
|
|
};
|
|
|
|
export enum ChartType {
|
|
None = 0,
|
|
Line = 1,
|
|
Area = 2,
|
|
Bar = 3,
|
|
}
|
|
|
|
export type TrafficStats = {
|
|
enabled: boolean;
|
|
type: ChartType;
|
|
};
|
|
|
|
export type Prometheus = {
|
|
enabled: boolean;
|
|
password: string | null;
|
|
};
|
|
|
|
export type Feature = {
|
|
enabled: boolean;
|
|
};
|
|
|
|
/**
|
|
* Representing the WireGuard network configuration data structure of a computer interface system.
|
|
*/
|
|
export type System = {
|
|
interface: WGInterface;
|
|
|
|
// maxAge
|
|
sessionTimeout: number;
|
|
lang: Lang;
|
|
|
|
userConfig: WGConfig;
|
|
|
|
wgDevice: string;
|
|
wgHost: string;
|
|
wgPort: number;
|
|
wgConfigPort: number;
|
|
|
|
iptables: IpTables;
|
|
|
|
trafficStats: TrafficStats;
|
|
prometheus: Prometheus;
|
|
|
|
clientExpiration: Feature;
|
|
oneTimeLinks: Feature;
|
|
sortClients: Feature;
|
|
|
|
sessionConfig: SessionConfig;
|
|
};
|
|
|
|
export const Features = [
|
|
'clientExpiration',
|
|
'oneTimeLinks',
|
|
'sortClients',
|
|
] as const;
|
|
|
|
export type Features = (typeof Features)[number];
|
|
|
|
/**
|
|
* Interface for system-related database operations.
|
|
* This interface provides methods for retrieving system configuration data
|
|
* and specific system properties, such as the language setting, from the database.
|
|
*/
|
|
export abstract class SystemRepository {
|
|
/**
|
|
* Retrieves the system configuration data from the database.
|
|
*/
|
|
abstract get(): Promise<System>;
|
|
|
|
abstract updateFeatures(features: Record<string, Feature>): Promise<void>;
|
|
}
|
|
|