Skip to content

Commit

Permalink
feat(estimatedSchedule): add /schedule endpoint controller
Browse files Browse the repository at this point in the history
  • Loading branch information
ghoshRitesh12 committed Dec 17, 2023
1 parent dfed9d9 commit caec8b6
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions src/controllers/estimatedSchedule.controller.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
import createHttpError from "http-errors";
import { type RequestHandler } from "express";
import { scrapeEstimatedSchedule } from "../parsers/index.js";
import { type EstimatedScheduleQueryParams } from "../models/controllers/index.js";

// /anime/schedule?date=${date}
const getEstimatedSchedule: RequestHandler<
unknown,
Awaited<ReturnType<typeof scrapeEstimatedSchedule>>,
unknown,
EstimatedScheduleQueryParams
> = async (req, res, next) => {
try {
const dateQuery = req.query.date
? decodeURIComponent(req.query.date as string)
: null;

if (dateQuery === null) {
throw createHttpError.BadRequest("Date payload required");
}
if (!/^\d{4}-\d{2}-\d{2}$/.test(dateQuery)) {
throw createHttpError.BadRequest(
"Invalid date payload format. Months and days must have 2 digits"
);
}

const data = await scrapeEstimatedSchedule(dateQuery);

res.status(200).json(data);
} catch (err: any) {
console.error(err);
next(err);
}
};

export default getEstimatedSchedule;

0 comments on commit caec8b6

Please sign in to comment.