This refactors the data handlers into a more standard/understood model-like architecture, to prepare for a new, more robust config system. It also fixes a problem with creating new Notes and uploading new Photos via the web interface (related to #58). Finally, it speeds up docker builds by sending in less files, which aren't necessary or will be built anyway. This is all in preparation to allow building #13 more robustly.
47 lines
1.2 KiB
TypeScript
47 lines
1.2 KiB
TypeScript
import { Handlers } from 'fresh/server.ts';
|
|
|
|
import { FreshContextState, NewsFeed } from '/lib/types.ts';
|
|
import { concurrentPromises } from '/lib/utils/misc.ts';
|
|
import { FeedModel } from '/lib/models/news.ts';
|
|
import { fetchNewArticles } from '/crons/news.ts';
|
|
|
|
interface Data {}
|
|
|
|
export interface RequestBody {
|
|
feedUrls: 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.feedUrls) {
|
|
if (requestBody.feedUrls.length === 0) {
|
|
return new Response('Not found', { status: 404 });
|
|
}
|
|
|
|
await concurrentPromises(
|
|
requestBody.feedUrls.map((feedUrl) => () => FeedModel.create(context.state.user!.id, feedUrl)),
|
|
5,
|
|
);
|
|
}
|
|
|
|
await fetchNewArticles();
|
|
|
|
const newFeeds = await FeedModel.list(context.state.user.id);
|
|
|
|
const responseBody: ResponseBody = { success: true, newFeeds };
|
|
|
|
return new Response(JSON.stringify(responseBody));
|
|
},
|
|
};
|