mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-11 07:55:52 +01:00
189 lines
6.3 KiB
TypeScript
189 lines
6.3 KiB
TypeScript
import { MantineTheme } from '@mantine/core';
|
|
import { OptionValues } from '../modules/ModuleTypes';
|
|
|
|
export interface Settings {
|
|
searchUrl: string;
|
|
title?: string;
|
|
logo?: string;
|
|
favicon?: string;
|
|
primaryColor?: MantineTheme['primaryColor'];
|
|
secondaryColor?: MantineTheme['primaryColor'];
|
|
primaryShade?: MantineTheme['primaryShade'];
|
|
background?: string;
|
|
appOpacity?: number;
|
|
widgetPosition?: string;
|
|
appCardWidth?: number;
|
|
}
|
|
|
|
export interface Config {
|
|
name: string;
|
|
services: serviceItem[];
|
|
settings: Settings;
|
|
modules: {
|
|
[key: string]: ConfigModule;
|
|
};
|
|
}
|
|
|
|
interface ConfigModule {
|
|
title: string;
|
|
enabled: boolean;
|
|
options: {
|
|
[key: string]: OptionValues;
|
|
};
|
|
}
|
|
|
|
export const StatusCodes = [
|
|
{ value: '200', label: '200 - OK', group: 'Sucessful responses' },
|
|
{ value: '204', label: '204 - No Content', group: 'Sucessful responses' },
|
|
{ value: '301', label: '301 - Moved Permanently', group: 'Redirection responses' },
|
|
{ value: '302', label: '302 - Found / Moved Temporarily', group: 'Redirection responses' },
|
|
{ value: '304', label: '304 - Not Modified', group: 'Redirection responses' },
|
|
{ value: '307', label: '307 - Temporary Redirect', group: 'Redirection responses' },
|
|
{ value: '308', label: '308 - Permanent Redirect', group: 'Redirection responses' },
|
|
{ value: '400', label: '400 - Bad Request', group: 'Client error responses' },
|
|
{ value: '401', label: '401 - Unauthorized', group: 'Client error responses' },
|
|
{ value: '403', label: '403 - Forbidden', group: 'Client error responses' },
|
|
{ value: '404', label: '404 - Not Found', group: 'Client error responses' },
|
|
{ value: '405', label: '405 - Method Not Allowed', group: 'Client error responses' },
|
|
{ value: '408', label: '408 - Request Timeout', group: 'Client error responses' },
|
|
{ value: '410', label: '410 - Gone', group: 'Client error responses' },
|
|
{ value: '429', label: '429 - Too Many Requests', group: 'Client error responses' },
|
|
{ value: '500', label: '500 - Internal Server Error', group: 'Server error responses' },
|
|
{ value: '502', label: '502 - Bad Gateway', group: 'Server error responses' },
|
|
{ value: '503', label: '503 - Service Unavailable', group: 'Server error responses' },
|
|
{ value: '054', label: '504 - Gateway Timeout Error', group: 'Server error responses' },
|
|
];
|
|
|
|
export const Targets = [
|
|
{ value: '_blank', label: 'New Tab' },
|
|
{ value: '_top', label: 'Same Window' },
|
|
];
|
|
|
|
export const ServiceTypeList = [
|
|
'Other',
|
|
'Dash.',
|
|
'Deluge',
|
|
'Emby',
|
|
'Lidarr',
|
|
'Plex',
|
|
'qBittorrent',
|
|
'Radarr',
|
|
'Readarr',
|
|
'Sonarr',
|
|
'Transmission',
|
|
'Overseerr',
|
|
'Jellyseerr',
|
|
];
|
|
export type ServiceType =
|
|
| 'Other'
|
|
| 'Dash.'
|
|
| 'Deluge'
|
|
| 'Emby'
|
|
| 'Lidarr'
|
|
| 'Plex'
|
|
| 'qBittorrent'
|
|
| 'Radarr'
|
|
| 'Readarr'
|
|
| 'Sonarr'
|
|
| 'Overseerr'
|
|
| 'Jellyseerr'
|
|
| 'Transmission';
|
|
|
|
export function tryMatchPort(name: string | undefined, form?: any) {
|
|
if (!name) {
|
|
return undefined;
|
|
}
|
|
// Match name with portmap key
|
|
const port = portmap.find((p) => p.name === name.toLowerCase());
|
|
if (form && port) {
|
|
form.setFieldValue('url', `http://localhost:${port.value}`);
|
|
}
|
|
return port;
|
|
}
|
|
|
|
export const portmap = [
|
|
{ name: 'qbittorrent', value: '8080' },
|
|
{ name: 'sonarr', value: '8989' },
|
|
{ name: 'radarr', value: '7878' },
|
|
{ name: 'lidarr', value: '8686' },
|
|
{ name: 'readarr', value: '8787' },
|
|
{ name: 'deluge', value: '8112' },
|
|
{ name: 'transmission', value: '9091' },
|
|
{ name: 'plex', value: '32400' },
|
|
{ name: 'emby', value: '8096' },
|
|
{ name: 'overseerr', value: '5055' },
|
|
{ name: 'dash.', value: '3001' },
|
|
];
|
|
|
|
export const MatchingImages: {
|
|
image: string;
|
|
type: ServiceType;
|
|
}[] = [
|
|
//Official images
|
|
{ image: 'mauricenino/dashdot', type: 'Dash.' },
|
|
{ image: 'emby/embyserver', type: 'Emby' },
|
|
{ image: 'plexinc/pms-docker', type: 'Plex' },
|
|
//Lidarr images
|
|
{ image: 'hotio/lidarr', type: 'Lidarr' },
|
|
{ image: 'ghcr.io/hotio/lidarr', type: 'Lidarr' },
|
|
{ image: 'cr.hotio.dev/hotio/lidarr', type: 'Lidarr' },
|
|
// Plex
|
|
{ image: 'hotio/plex', type: 'Plex' },
|
|
{ image: 'ghcr.io/hotio/plex', type: 'Plex' },
|
|
{ image: 'cr.hotio.dev/hotio/plex', type: 'Plex' },
|
|
// qbittorrent
|
|
{ image: 'hotio/qbittorrent', type: 'qBittorrent' },
|
|
{ image: 'ghcr.io/hotio/qbittorrent', type: 'qBittorrent' },
|
|
{ image: 'cr.hotio.dev/hotio/qbittorrent', type: 'qBittorrent' },
|
|
// Radarr
|
|
{ image: 'hotio/radarr', type: 'Radarr' },
|
|
{ image: 'ghcr.io/hotio/radarr', type: 'Radarr' },
|
|
{ image: 'cr.hotio.dev/hotio/radarr', type: 'Radarr' },
|
|
// Readarr
|
|
{ image: 'hotio/readarr', type: 'Readarr' },
|
|
{ image: 'ghcr.io/hotio/readarr', type: 'Readarr' },
|
|
{ image: 'cr.hotio.dev/hotio/readarr', type: 'Readarr' },
|
|
// Sonarr
|
|
{ image: 'hotio/sonarr', type: 'Sonarr' },
|
|
{ image: 'ghcr.io/hotio/sonarr', type: 'Sonarr' },
|
|
{ image: 'cr.hotio.dev/hotio/sonarr', type: 'Sonarr' },
|
|
//LinuxServer images
|
|
{ image: 'lscr.io/linuxserver/deluge', type: 'Deluge' },
|
|
{ image: 'lscr.io/linuxserver/emby', type: 'Emby' },
|
|
{ image: 'lscr.io/linuxserver/lidarr', type: 'Lidarr' },
|
|
{ image: 'lscr.io/linuxserver/plex', type: 'Plex' },
|
|
{ image: 'lscr.io/linuxserver/qbittorrent', type: 'qBittorrent' },
|
|
{ image: 'lscr.io/linuxserver/radarr', type: 'Radarr' },
|
|
{ image: 'lscr.io/linuxserver/readarr', type: 'Readarr' },
|
|
{ image: 'lscr.io/linuxserver/sonarr', type: 'Sonarr' },
|
|
{ image: 'lscr.io/linuxserver/transmission', type: 'Transmission' },
|
|
// LinuxServer but on Docker Hub
|
|
{ image: 'linuxserver/deluge', type: 'Deluge' },
|
|
{ image: 'linuxserver/emby', type: 'Emby' },
|
|
{ image: 'linuxserver/lidarr', type: 'Lidarr' },
|
|
{ image: 'linuxserver/plex', type: 'Plex' },
|
|
{ image: 'linuxserver/qbittorrent', type: 'qBittorrent' },
|
|
{ image: 'linuxserver/radarr', type: 'Radarr' },
|
|
{ image: 'linuxserver/readarr', type: 'Readarr' },
|
|
{ image: 'linuxserver/sonarr', type: 'Sonarr' },
|
|
{ image: 'linuxserver/transmission', type: 'Transmission' },
|
|
//High usage
|
|
{ image: 'markusmcnugen/qbittorrentvpn', type: 'qBittorrent' },
|
|
{ image: 'haugene/transmission-openvpn', type: 'Transmission' },
|
|
];
|
|
|
|
export interface serviceItem {
|
|
id: string;
|
|
name: string;
|
|
type: ServiceType;
|
|
url: string;
|
|
icon: string;
|
|
category?: string;
|
|
apiKey?: string;
|
|
password?: string;
|
|
username?: string;
|
|
openedUrl?: string;
|
|
newTab?: boolean;
|
|
status?: string[];
|
|
}
|