mirror of
https://github.com/AeThex-Corporation/AeThex-OS.git
synced 2026-04-21 07:27:20 +00:00
- ModuleManager: Central tracking for installed marketplace modules - DataAnalyzerWidget: Real-time CPU/RAM/Battery/Storage widget (unlocked by Data Analyzer module) - BottomNavBar: Navigation bar for Projects/Chat/Marketplace/Settings - RootShell: Real root command execution utility - TerminalActivity: Full root shell with neofetch, sysinfo, real Linux commands - Terminal Pro module: Adds aliases (ll, la, h), command history - ArcadeActivity + SnakeGame: Pixel Arcade module unlocks retro games - fade_in/fade_out animations for smooth transitions
46 lines
1.6 KiB
TypeScript
46 lines
1.6 KiB
TypeScript
import { supabase } from "../_supabase.js";
|
|
|
|
export default async (req: Request) => {
|
|
const token = req.headers.get("Authorization")?.replace("Bearer ", "");
|
|
if (!token) {
|
|
return new Response(JSON.stringify({ error: "Unauthorized" }), { status: 401, headers: { "Content-Type": "application/json" } });
|
|
}
|
|
|
|
const { data: userData } = await supabase.auth.getUser(token);
|
|
if (!userData.user) {
|
|
return new Response(JSON.stringify({ error: "Unauthorized" }), { status: 401, headers: { "Content-Type": "application/json" } });
|
|
}
|
|
|
|
try {
|
|
if (req.method === "GET") {
|
|
const { data: sections, error } = await supabase
|
|
.from("staff_handbook_sections")
|
|
.select("*")
|
|
.order("category")
|
|
.order("order_index");
|
|
|
|
if (error) throw error;
|
|
|
|
// Group by category
|
|
const grouped = sections?.reduce((acc, section) => {
|
|
if (!acc[section.category]) {
|
|
acc[section.category] = [];
|
|
}
|
|
acc[section.category].push(section);
|
|
return acc;
|
|
}, {} as Record<string, typeof sections>);
|
|
|
|
const categories = Object.keys(grouped || {});
|
|
|
|
return new Response(JSON.stringify({
|
|
sections: sections || [],
|
|
grouped: grouped || {},
|
|
categories
|
|
}), { headers: { "Content-Type": "application/json" } });
|
|
}
|
|
|
|
return new Response(JSON.stringify({ error: "Method not allowed" }), { status: 405, headers: { "Content-Type": "application/json" } });
|
|
} catch (err: any) {
|
|
return new Response(JSON.stringify({ error: err.message }), { status: 500, headers: { "Content-Type": "application/json" } });
|
|
}
|
|
};
|