Compare commits

..

1 commit

Author SHA1 Message Date
9460d13d45
Merge a865aa5532 into 6678ded2f9 2024-08-20 19:14:32 +00:00
2 changed files with 5 additions and 24 deletions

View file

@ -14,20 +14,6 @@ export async function getGuild(
return guild;
}
export async function getGuildChannels(guildId: string, env) {
const discordApiGuildChannelsResponse = await fetch(
`https://discord.com/api/v10/guilds/${guildId}/channels`,
{
headers: {
Authorization: `Bot ${env.DISCORD_BOT_TOKEN}`,
"Cache-Control": "max-age=300",
},
}
);
return await discordApiGuildChannelsResponse.json();
}
export async function getUserGuilds(user): Promise<Guild[]> {
const discordApiGuildsResponse = await fetch(
"https://discord.com/api/v10/users/@me/guilds",

View file

@ -1,11 +1,7 @@
import type { APIContext, APIRoute } from "astro";
import { getGuildChannels } from "~/lib/guilds";
import type { APIRoute } from "astro";
import { filterUserGuilds, getUserGuilds } from "~/lib/guilds";
interface APIParams {
id: string;
}
export const GET: APIRoute = async ({ params, locals }) => {
export const GET: APIRoute = async ({ locals }) => {
const user = locals.user;
if (!user) {
return new Response(null, {
@ -13,7 +9,6 @@ export const GET: APIRoute = async ({ params, locals }) => {
});
}
const channels = await getGuildChannels(params.id!, locals.runtime.env);
return Response.json(channels);
console.log(user);
return Response.json([]);
};