mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-14 16:51:15 +10:00
14 lines
442 B
TypeScript
14 lines
442 B
TypeScript
import libraryManager from "~/server/internal/library";
|
|
|
|
export default defineEventHandler(async (h3) => {
|
|
const user = await h3.context.session.getAdminUser(h3);
|
|
if (!user) throw createError({ statusCode: 403 });
|
|
|
|
const query = getQuery(h3);
|
|
const search = query.q?.toString();
|
|
if (!search)
|
|
throw createError({ statusCode: 400, statusMessage: "Invalid search" });
|
|
|
|
return await h3.context.metadataHandler.search(search);
|
|
});
|