mirror of
https://github.com/tdurieux/anonymous_github.git
synced 2026-02-13 02:42:45 +00:00
96 lines
2.3 KiB
TypeScript
96 lines
2.3 KiB
TypeScript
import * as express from "express";
|
|
import AnonymousError from "../AnonymousError";
|
|
import * as db from "../database/database";
|
|
import UserModel from "../database/users/users.model";
|
|
import User from "../User";
|
|
import * as io from "@pm2/io";
|
|
|
|
export async function getRepo(
|
|
req: express.Request,
|
|
res: express.Response,
|
|
opt?: { nocheck?: boolean }
|
|
) {
|
|
try {
|
|
const repo = await db.getRepository(req.params.repoId);
|
|
if (opt?.nocheck == true) {
|
|
} else {
|
|
// redirect if the repository is expired
|
|
if (
|
|
repo.status == "expired" &&
|
|
repo.options.expirationMode == "redirect" &&
|
|
repo.source.url
|
|
) {
|
|
res.redirect(repo.source.url);
|
|
return null;
|
|
}
|
|
|
|
repo.check();
|
|
}
|
|
return repo;
|
|
} catch (error) {
|
|
handleError(error, res);
|
|
return null;
|
|
}
|
|
}
|
|
|
|
export function isOwnerOrAdmin(authorizedUsers: string[], user: User) {
|
|
if (authorizedUsers.indexOf(user.model.id) == -1 && !user.isAdmin) {
|
|
throw new AnonymousError("not_authorized", {
|
|
httpStatus: 401,
|
|
});
|
|
}
|
|
}
|
|
|
|
function printError(error: any) {
|
|
io.notifyError(error, error.value);
|
|
if (error instanceof AnonymousError) {
|
|
console.log(error);
|
|
console.error(
|
|
"[ERROR]",
|
|
error.toString(),
|
|
error.stack.split("\n")[1].trim()
|
|
);
|
|
} else if (error instanceof Error) {
|
|
console.error(error);
|
|
} else {
|
|
console.error(error);
|
|
}
|
|
}
|
|
|
|
export function handleError(error: any, res: express.Response) {
|
|
printError(error);
|
|
let message = error;
|
|
if (error instanceof Error) {
|
|
message = error.message;
|
|
}
|
|
let status = 500;
|
|
if (error.httpStatus) {
|
|
status = error.httpStatus;
|
|
} else if (message && message.indexOf("not_found") > -1) {
|
|
status = 400;
|
|
} else if (message && message.indexOf("not_connected") > -1) {
|
|
status = 401;
|
|
}
|
|
|
|
res.status(status).send({ error: message });
|
|
return;
|
|
}
|
|
|
|
export async function getUser(req: express.Request) {
|
|
const user = (req.user as any).user;
|
|
if (!user) {
|
|
req.logout((error) => console.error(error));
|
|
throw new AnonymousError("not_connected", {
|
|
httpStatus: 401,
|
|
});
|
|
}
|
|
const model = await UserModel.findById(user._id);
|
|
if (!model) {
|
|
req.logout((error) => console.error(error));
|
|
throw new AnonymousError("not_connected", {
|
|
httpStatus: 401,
|
|
});
|
|
}
|
|
return new User(model);
|
|
}
|