mirror of
https://github.com/khoaliber/dockhand.git
synced 2026-03-06 05:39:05 +00:00
Initial commit
This commit is contained in:
42
routes/api/activity/containers/+server.ts
Normal file
42
routes/api/activity/containers/+server.ts
Normal file
@@ -0,0 +1,42 @@
|
||||
import { json } from '@sveltejs/kit';
|
||||
import { getContainerEventContainers } from '$lib/server/db';
|
||||
import { authorize } from '$lib/server/authorize';
|
||||
import type { RequestHandler } from './$types';
|
||||
|
||||
export const GET: RequestHandler = async ({ url, cookies }) => {
|
||||
const auth = await authorize(cookies);
|
||||
|
||||
const envId = url.searchParams.get('environment_id');
|
||||
const envIdNum = envId ? parseInt(envId) : undefined;
|
||||
|
||||
// Permission check for activity viewing
|
||||
if (auth.authEnabled && !await auth.can('activity', 'view', envIdNum)) {
|
||||
return json({ error: 'Permission denied' }, { status: 403 });
|
||||
}
|
||||
|
||||
try {
|
||||
let environmentIds: number[] | undefined;
|
||||
|
||||
if (envIdNum) {
|
||||
// Specific environment requested
|
||||
const containers = await getContainerEventContainers(envIdNum);
|
||||
return json(containers);
|
||||
} else if (auth.isEnterprise && auth.authEnabled && !auth.isAdmin) {
|
||||
// Enterprise with auth enabled and non-admin: filter by accessible environments
|
||||
const accessibleEnvIds = await auth.getAccessibleEnvironmentIds();
|
||||
if (accessibleEnvIds !== null) {
|
||||
if (accessibleEnvIds.length === 0) {
|
||||
// No access to any environment - return empty list
|
||||
return json([]);
|
||||
}
|
||||
environmentIds = accessibleEnvIds;
|
||||
}
|
||||
}
|
||||
|
||||
const containers = await getContainerEventContainers(undefined, environmentIds);
|
||||
return json(containers);
|
||||
} catch (error) {
|
||||
console.error('Error fetching container names:', error);
|
||||
return json({ error: 'Failed to fetch container names' }, { status: 500 });
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user