mirror of
https://github.com/immich-app/immich
synced 2026-08-22 13:13:05 +00:00
* wip: confirm before existing and disable/enable save button condition * fix: get correct workflow detail * wip: add back workflow summary * wip: add back json editor * wip: step property badge * wip: redesign card flow * wip: redesign card flow * redesign workflow summary * wworkflow summary styling * wip * drag and drop * list redesign * refactor * refactor * remove deadcode * refactor * insert steps * push down when dropped * feat: workflow template * simplify * move template to manifest * feat: hash manifest file * fix: template column * fix: migration * fix: workflow lookup * chore: clean up --------- Co-authored-by: Jason Rasmussen <jason@rasm.me>
64 lines
2 KiB
TypeScript
64 lines
2 KiB
TypeScript
import { Controller, Get, Param, Query } from '@nestjs/common';
|
|
import { ApiTags } from '@nestjs/swagger';
|
|
import { Endpoint, HistoryBuilder } from 'src/decorators';
|
|
import {
|
|
PluginMethodResponseDto,
|
|
PluginMethodSearchDto,
|
|
PluginResponseDto,
|
|
PluginSearchDto,
|
|
PluginTemplateResponseDto,
|
|
} from 'src/dtos/plugin.dto';
|
|
import { Permission } from 'src/enum';
|
|
import { Authenticated } from 'src/middleware/auth.guard';
|
|
import { PluginService } from 'src/services/plugin.service';
|
|
import { UUIDParamDto } from 'src/validation';
|
|
|
|
@ApiTags('Plugins')
|
|
@Controller('plugins')
|
|
export class PluginController {
|
|
constructor(private service: PluginService) {}
|
|
|
|
@Get()
|
|
@Authenticated({ permission: Permission.PluginRead })
|
|
@Endpoint({
|
|
summary: 'List all plugins',
|
|
description: 'Retrieve a list of plugins available to the authenticated user.',
|
|
history: HistoryBuilder.v3(),
|
|
})
|
|
searchPlugins(@Query() dto: PluginSearchDto): Promise<PluginResponseDto[]> {
|
|
return this.service.search(dto);
|
|
}
|
|
|
|
@Get('methods')
|
|
@Authenticated({ permission: Permission.PluginRead })
|
|
@Endpoint({
|
|
summary: 'Retrieve plugin methods',
|
|
description: 'Retrieve a list of plugin methods',
|
|
history: HistoryBuilder.v3(),
|
|
})
|
|
searchPluginMethods(@Query() dto: PluginMethodSearchDto): Promise<PluginMethodResponseDto[]> {
|
|
return this.service.searchMethods(dto);
|
|
}
|
|
|
|
@Get('templates')
|
|
@Authenticated({ permission: Permission.PluginRead })
|
|
@Endpoint({
|
|
summary: 'Retrieve workflow templates',
|
|
description: 'Retrieve workflow templates provided by installed plugins',
|
|
history: HistoryBuilder.v3(),
|
|
})
|
|
searchPluginTemplates(): Promise<PluginTemplateResponseDto[]> {
|
|
return this.service.searchTemplates();
|
|
}
|
|
|
|
@Get(':id')
|
|
@Authenticated({ permission: Permission.PluginRead })
|
|
@Endpoint({
|
|
summary: 'Retrieve a plugin',
|
|
description: 'Retrieve information about a specific plugin by its ID.',
|
|
history: HistoryBuilder.v3(),
|
|
})
|
|
getPlugin(@Param() { id }: UUIDParamDto): Promise<PluginResponseDto> {
|
|
return this.service.get(id);
|
|
}
|
|
}
|