Make it public!

This commit is contained in:
Bruno Bernardino
2024-03-16 08:40:24 +00:00
commit a5cafdddca
114 changed files with 9569 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
import { Handlers } from 'fresh/server.ts';
import { FreshContextState, NewsFeed } from '/lib/types.ts';
import { createNewsFeed, getNewsFeeds } from '/lib/data/news.ts';
import { fetchNewArticles } from '/crons/news.ts';
interface Data {}
export interface RequestBody {
feedUrl: string;
}
export interface ResponseBody {
success: boolean;
newFeeds: NewsFeed[];
}
export const handler: Handlers<Data, FreshContextState> = {
async POST(request, context) {
if (!context.state.user) {
return new Response('Unauthorized', { status: 401 });
}
const requestBody = await request.clone().json() as RequestBody;
if (requestBody.feedUrl) {
const newFeed = await createNewsFeed(context.state.user.id, requestBody.feedUrl);
if (!newFeed) {
return new Response('Not found', { status: 404 });
}
}
await fetchNewArticles();
const newFeeds = await getNewsFeeds(context.state.user.id);
const responseBody: ResponseBody = { success: true, newFeeds };
return new Response(JSON.stringify(responseBody));
},
};