Compare commits
No commits in common. "d85c126c276a91996178ccf8b8e7a566d33dac69" and "aef2f9562a0c585cd567175118996a1725edf28b" have entirely different histories.
d85c126c27
...
aef2f9562a
@ -3,15 +3,11 @@ import * as dotenvSafe from "dotenv-safe";
|
|||||||
import { createExpressServer } from "routing-controllers";
|
import { createExpressServer } from "routing-controllers";
|
||||||
import consola from "consola";
|
import consola from "consola";
|
||||||
import loaders from "./loaders/index";
|
import loaders from "./loaders/index";
|
||||||
import authchecker from "./authchecker";
|
|
||||||
import { ErrorHandler } from './middlewares/ErrorHandler';
|
|
||||||
|
|
||||||
dotenvSafe.config();
|
dotenvSafe.config();
|
||||||
const PORT = process.env.APP_PORT || 4010;
|
const PORT = process.env.APP_PORT || 4010;
|
||||||
|
|
||||||
const app = createExpressServer({
|
const app = createExpressServer({
|
||||||
authorizationChecker: authchecker,
|
|
||||||
middlewares: [ErrorHandler],
|
|
||||||
development: process.env.NODE_ENV === "production",
|
development: process.env.NODE_ENV === "production",
|
||||||
cors: true,
|
cors: true,
|
||||||
routePrefix: "/api",
|
routePrefix: "/api",
|
||||||
|
@ -1,51 +0,0 @@
|
|||||||
import * as jwt from "jsonwebtoken";
|
|
||||||
import { Action, HttpError } from "routing-controllers";
|
|
||||||
// -----------
|
|
||||||
const sampletoken = jwt.sign({
|
|
||||||
"permissions": {
|
|
||||||
"TRACKS": ["read", "update", "delete", "add"]
|
|
||||||
// "TRACKS": []
|
|
||||||
}
|
|
||||||
}, process.env.JWT_SECRET || "secretjwtsecret")
|
|
||||||
console.log(`sampletoken: ${sampletoken}`);
|
|
||||||
// -----------
|
|
||||||
const authchecker = async (action: Action, permissions: string | string[]) => {
|
|
||||||
let required_permissions = undefined
|
|
||||||
if (typeof permissions === "string") {
|
|
||||||
required_permissions = [permissions]
|
|
||||||
} else {
|
|
||||||
required_permissions = permissions
|
|
||||||
}
|
|
||||||
// const token = action.request.headers["authorization"];
|
|
||||||
const provided_token = action.request.query["auth"];
|
|
||||||
let jwtPayload = undefined
|
|
||||||
try {
|
|
||||||
jwtPayload = <any>jwt.verify(provided_token, process.env.JWT_SECRET || "secretjwtsecret");
|
|
||||||
} catch (error) {
|
|
||||||
throw new HttpError(401, "jwt_illegal")
|
|
||||||
}
|
|
||||||
if (jwtPayload.permissions) {
|
|
||||||
action.response.local = {}
|
|
||||||
action.response.local.jwtPayload = jwtPayload.permissions
|
|
||||||
required_permissions.forEach(r => {
|
|
||||||
const permission_key = r.split(":")[0]
|
|
||||||
const actual_accesslevel_for_permission = jwtPayload.permissions[permission_key]
|
|
||||||
const permission_access_level = r.split(":")[1]
|
|
||||||
if (actual_accesslevel_for_permission.includes(permission_access_level)) {
|
|
||||||
return true;
|
|
||||||
} else {
|
|
||||||
throw new HttpError(403, "no")
|
|
||||||
}
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
throw new HttpError(403, "no")
|
|
||||||
}
|
|
||||||
//
|
|
||||||
try {
|
|
||||||
jwt.verify(provided_token, process.env.JWT_SECRET || "secretjwtsecret");
|
|
||||||
return true
|
|
||||||
} catch (error) {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
export default authchecker
|
|
@ -1,4 +1,4 @@
|
|||||||
import { JsonController, Param, Body, Get, Post, Put, Delete, NotFoundError, OnUndefined, NotAcceptableError, Authorized } from 'routing-controllers';
|
import { JsonController, Param, Body, Get, Post, Put, Delete, NotFoundError, OnUndefined, NotAcceptableError } from 'routing-controllers';
|
||||||
import { getConnectionManager, Repository } from 'typeorm';
|
import { getConnectionManager, Repository } from 'typeorm';
|
||||||
import { EntityFromBody } from 'typeorm-routing-controllers-extensions';
|
import { EntityFromBody } from 'typeorm-routing-controllers-extensions';
|
||||||
import { OpenAPI, ResponseSchema } from 'routing-controllers-openapi';
|
import { OpenAPI, ResponseSchema } from 'routing-controllers-openapi';
|
||||||
@ -22,7 +22,6 @@ export class TrackNotFoundError extends NotFoundError {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@JsonController('/tracks')
|
@JsonController('/tracks')
|
||||||
@Authorized("TRACKS:read")
|
|
||||||
export class TrackController {
|
export class TrackController {
|
||||||
private trackRepository: Repository<Track>;
|
private trackRepository: Repository<Track>;
|
||||||
|
|
||||||
|
@ -1,20 +0,0 @@
|
|||||||
import {
|
|
||||||
Middleware,
|
|
||||||
ExpressErrorMiddlewareInterface
|
|
||||||
} from "routing-controllers";
|
|
||||||
|
|
||||||
@Middleware({ type: "after" })
|
|
||||||
export class ErrorHandler implements ExpressErrorMiddlewareInterface {
|
|
||||||
public error(
|
|
||||||
error: any,
|
|
||||||
request: any,
|
|
||||||
response: any,
|
|
||||||
next: (err: any) => any
|
|
||||||
) {
|
|
||||||
if (response.headersSent) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
response.json(error);
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user