mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-17 02:31:18 +01:00
38 lines
1.2 KiB
TypeScript
38 lines
1.2 KiB
TypeScript
import Dockerode from 'dockerode';
|
|
import { Config, MatchingImages, ServiceType, tryMatchPort } from './types';
|
|
|
|
async function MatchIcon(name: string) {
|
|
const res = await fetch(
|
|
`https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/${name
|
|
.replace(/\s+/g, '-')
|
|
.toLowerCase()}.png`
|
|
);
|
|
return res.ok ? res.url : '/imgs/favicon/favicon.png';
|
|
}
|
|
|
|
function tryMatchType(imageName: string): ServiceType {
|
|
// Try to find imageName inside MatchingImages
|
|
|
|
const match = MatchingImages.find(({ image }) => imageName.includes(image));
|
|
if (match) {
|
|
return match.type;
|
|
}
|
|
return 'Other';
|
|
}
|
|
|
|
export function tryMatchService(container: Dockerode.ContainerInfo | undefined) {
|
|
if (container === undefined) return {};
|
|
const name = container.Names[0].substring(1);
|
|
const type = tryMatchType(container.Image);
|
|
const port = tryMatchPort(type.toLowerCase())?.value ?? container.Ports[0]?.PublicPort;
|
|
return {
|
|
name,
|
|
id: container.Id,
|
|
type: tryMatchType(container.Image),
|
|
url: `localhost${port ? `:${port}` : ''}`,
|
|
icon: `https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/${name
|
|
.replace(/\s+/g, '-')
|
|
.toLowerCase()}.png`,
|
|
};
|
|
}
|