Run prettier

Signed-off-by: Fred Boniface <fred@fjla.uk>
This commit is contained in:
Fred Boniface 2024-02-05 20:03:11 +00:00
parent 7657085bc3
commit a1fdf22805
3 changed files with 28 additions and 21 deletions

View File

@ -3,7 +3,11 @@ import { NextFunction, Request, Response } from "express";
const utils = require("../utils/auth.utils"); const utils = require("../utils/auth.utils");
const logger = require("../utils/logger.utils"); const logger = require("../utils/logger.utils");
module.exports = async function authCheck(req: Request, res: Response, next: NextFunction) { module.exports = async function authCheck(
req: Request,
res: Response,
next: NextFunction
) {
logger.logger.debug("auth.middleware: Auth check begun"); logger.logger.debug("auth.middleware: Auth check begun");
if (process.env.NODE_ENV === "development") { if (process.env.NODE_ENV === "development") {
req.isAuthed = true; req.isAuthed = true;
@ -11,12 +15,12 @@ module.exports = async function authCheck(req: Request, res: Response, next: Nex
next(); next();
} else { } else {
const id: string | string[] | undefined = req.headers.uuid; const id: string | string[] | undefined = req.headers.uuid;
if (typeof id === 'undefined') { if (typeof id === "undefined") {
req.isAuthed = false; req.isAuthed = false;
logger.logger.info("auth.middleware: Authentication failed"); logger.logger.info("auth.middleware: Authentication failed");
next(); next();
} else if (typeof id === 'string') { } else if (typeof id === "string") {
const authCheck = await utils.isAuthed(id) || false; const authCheck = (await utils.isAuthed(id)) || false;
if (authCheck) { if (authCheck) {
req.isAuthed = true; req.isAuthed = true;
logger.logger.info("auth.middleware: Authentication Successful"); logger.logger.info("auth.middleware: Authentication Successful");
@ -27,14 +31,18 @@ module.exports = async function authCheck(req: Request, res: Response, next: Nex
next(); next();
} }
} else if (Array.isArray(id)) { } else if (Array.isArray(id)) {
const authCheck = await utils.isAuthed(id[0]) || false; const authCheck = (await utils.isAuthed(id[0])) || false;
if (authCheck) { if (authCheck) {
req.isAuthed = true; req.isAuthed = true;
logger.logger.warn("auth.middleware: UUID Passed as Array - Authentication Successful"); logger.logger.warn(
"auth.middleware: UUID Passed as Array - Authentication Successful"
);
next(); next();
} else { } else {
req.isAuthed = false; req.isAuthed = false;
logger.logger.warn("auth.middleware: UUID Passed as Array - Authentication Failed"); logger.logger.warn(
"auth.middleware: UUID Passed as Array - Authentication Failed"
);
next(); next();
} }
} }

View File

@ -80,10 +80,10 @@ export async function findByTrainUid(
if (supported.includes(services[0]?.operator)) { if (supported.includes(services[0]?.operator)) {
pis = await fetchPisCode(services[0]?.stops); pis = await fetchPisCode(services[0]?.stops);
} else { } else {
pis = null pis = null;
} }
// TODO: Format and return data, the function called is not yet complete // TODO: Format and return data, the function called is not yet complete
return formatTimetableDetail(services[0], pis) return formatTimetableDetail(services[0], pis);
} }
// Internal Functions: // Internal Functions:
@ -97,25 +97,25 @@ async function fetchPisCode(
if (stops[stop]["isPublic"]) tiplocList.push(stops[stop]["tiploc"]); if (stops[stop]["isPublic"]) tiplocList.push(stops[stop]["tiploc"]);
} }
// Check if no public stops - then it should use an ECS headcode // Check if no public stops - then it should use an ECS headcode
let pisData: OB_Pis_SimpleObject | null let pisData: OB_Pis_SimpleObject | null;
if (tiplocList.length) { if (tiplocList.length) {
pisData = await findByTiplocArray(tiplocList); pisData = await findByTiplocArray(tiplocList);
} else { } else {
pisData = { pisData = {
toc: "GW", toc: "GW",
skipCount: 0, skipCount: 0,
code: randomEcsPis() code: randomEcsPis(),
} };
} }
return pisData; return pisData;
} }
// Picks a random choice of the ECS PIS Codes // Picks a random choice of the ECS PIS Codes
function randomEcsPis(): string { function randomEcsPis(): string {
const options = ["0015", "9997"] const options = ["0015", "9997"];
const randomValue = Math.floor(Math.random() * 2 ) const randomValue = Math.floor(Math.random() * 2);
return options[randomValue] return options[randomValue];
} }
// Outputs the standard 'shortday' string from a Date. // Outputs the standard 'shortday' string from a Date.
@ -169,9 +169,8 @@ function filterServices(services: SimpleService[]): SimpleService[] {
const stpIndicator = service["stpIndicator"]; const stpIndicator = service["stpIndicator"];
if (stpIndicator === "C") { if (stpIndicator === "C") {
continue; filteredServices.push(service);
} } else if (stpIndicator === "N" && !thisStpIndicators.hasC) {
if (stpIndicator === "N" && !thisStpIndicators.hasC) {
filteredServices.push(service); filteredServices.push(service);
} else if ( } else if (
stpIndicator === "O" && stpIndicator === "O" &&

View File

@ -1,7 +1,7 @@
// src/types/express/index.d.ts // src/types/express/index.d.ts
// to make the file a module and avoid the TypeScript error // to make the file a module and avoid the TypeScript error
export {} export {};
declare global { declare global {
namespace Express { namespace Express {
@ -9,4 +9,4 @@ declare global {
isAuthed: boolean; isAuthed: boolean;
} }
} }
} }