mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
62 lines
1.5 KiB
TypeScript
62 lines
1.5 KiB
TypeScript
import { Controller, Get } from '@nestjs/common';
|
|
import { ApiTags } from '@nestjs/swagger';
|
|
import {
|
|
ServerConfigDto,
|
|
ServerFeaturesDto,
|
|
ServerInfoResponseDto,
|
|
ServerMediaTypesResponseDto,
|
|
ServerPingResponse,
|
|
ServerStatsResponseDto,
|
|
ServerThemeDto,
|
|
ServerVersionResponseDto,
|
|
} from 'src/dtos/server-info.dto';
|
|
import { Authenticated } from 'src/middleware/auth.guard';
|
|
import { ServerInfoService } from 'src/services/server-info.service';
|
|
|
|
@ApiTags('Server Info')
|
|
@Controller('server-info')
|
|
export class ServerInfoController {
|
|
constructor(private service: ServerInfoService) {}
|
|
|
|
@Get()
|
|
@Authenticated()
|
|
getServerInfo(): Promise<ServerInfoResponseDto> {
|
|
return this.service.getInfo();
|
|
}
|
|
|
|
@Get('ping')
|
|
pingServer(): ServerPingResponse {
|
|
return this.service.ping();
|
|
}
|
|
|
|
@Get('version')
|
|
getServerVersion(): ServerVersionResponseDto {
|
|
return this.service.getVersion();
|
|
}
|
|
|
|
@Get('features')
|
|
getServerFeatures(): Promise<ServerFeaturesDto> {
|
|
return this.service.getFeatures();
|
|
}
|
|
|
|
@Get('theme')
|
|
getTheme(): Promise<ServerThemeDto> {
|
|
return this.service.getTheme();
|
|
}
|
|
|
|
@Get('config')
|
|
getServerConfig(): Promise<ServerConfigDto> {
|
|
return this.service.getConfig();
|
|
}
|
|
|
|
@Authenticated({ admin: true })
|
|
@Get('statistics')
|
|
getServerStatistics(): Promise<ServerStatsResponseDto> {
|
|
return this.service.getStatistics();
|
|
}
|
|
|
|
@Get('media-types')
|
|
getSupportedMediaTypes(): ServerMediaTypesResponseDto {
|
|
return this.service.getSupportedMediaTypes();
|
|
}
|
|
}
|