parent
e29c0cb7a1
commit
d85c126c27
@ -3,11 +3,15 @@ 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,4 +1,4 @@
|
|||||||
import { JsonController, Param, Body, Get, Post, Put, Delete, NotFoundError, OnUndefined, NotAcceptableError } from 'routing-controllers';
|
import { JsonController, Param, Body, Get, Post, Put, Delete, NotFoundError, OnUndefined, NotAcceptableError, Authorized } 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,6 +22,7 @@ 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>;
|
||||||
|
|
||||||
@ -34,7 +35,7 @@ export class TrackController {
|
|||||||
|
|
||||||
@Get()
|
@Get()
|
||||||
@ResponseSchema(Track, { isArray: true })
|
@ResponseSchema(Track, { isArray: true })
|
||||||
@OpenAPI({description: "Lists all tracks."})
|
@OpenAPI({ description: "Lists all tracks." })
|
||||||
getAll() {
|
getAll() {
|
||||||
return this.trackRepository.find();
|
return this.trackRepository.find();
|
||||||
}
|
}
|
||||||
@ -42,14 +43,14 @@ export class TrackController {
|
|||||||
@Get('/:id')
|
@Get('/:id')
|
||||||
@ResponseSchema(Track)
|
@ResponseSchema(Track)
|
||||||
@OnUndefined(TrackNotFoundError)
|
@OnUndefined(TrackNotFoundError)
|
||||||
@OpenAPI({description: "Returns a track of a specified id (if it exists)"})
|
@OpenAPI({ description: "Returns a track of a specified id (if it exists)" })
|
||||||
getOne(@Param('id') id: number) {
|
getOne(@Param('id') id: number) {
|
||||||
return this.trackRepository.findOne({ id: id });
|
return this.trackRepository.findOne({ id: id });
|
||||||
}
|
}
|
||||||
|
|
||||||
@Post()
|
@Post()
|
||||||
@ResponseSchema(Track)
|
@ResponseSchema(Track)
|
||||||
@OpenAPI({description: "Create a new track object (id will be generated automagicly)."})
|
@OpenAPI({ description: "Create a new track object (id will be generated automagicly)." })
|
||||||
post(
|
post(
|
||||||
@Body({ validate: true })
|
@Body({ validate: true })
|
||||||
track: CreateTrack
|
track: CreateTrack
|
||||||
@ -59,15 +60,15 @@ export class TrackController {
|
|||||||
|
|
||||||
@Put('/:id')
|
@Put('/:id')
|
||||||
@ResponseSchema(Track)
|
@ResponseSchema(Track)
|
||||||
@OpenAPI({description: "Update a track object (id can't be changed)."})
|
@OpenAPI({ description: "Update a track object (id can't be changed)." })
|
||||||
async put(@Param('id') id: number, @EntityFromBody() track: Track) {
|
async put(@Param('id') id: number, @EntityFromBody() track: Track) {
|
||||||
let oldTrack = await this.trackRepository.findOne({ id: id });
|
let oldTrack = await this.trackRepository.findOne({ id: id });
|
||||||
|
|
||||||
if (!oldTrack) {
|
if (!oldTrack) {
|
||||||
throw new TrackNotFoundError();
|
throw new TrackNotFoundError();
|
||||||
}
|
}
|
||||||
|
|
||||||
if(oldTrack.id != track.id){
|
if (oldTrack.id != track.id) {
|
||||||
throw new NotAcceptableError("The id's don't match!");
|
throw new NotAcceptableError("The id's don't match!");
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -77,7 +78,7 @@ export class TrackController {
|
|||||||
|
|
||||||
@Delete('/:id')
|
@Delete('/:id')
|
||||||
@ResponseSchema(Track)
|
@ResponseSchema(Track)
|
||||||
@OpenAPI({description: "Delete a specified track (if it exists)."})
|
@OpenAPI({ description: "Delete a specified track (if it exists)." })
|
||||||
async remove(@Param('id') id: number) {
|
async remove(@Param('id') id: number) {
|
||||||
let track = await this.trackRepository.findOne({ id: id });
|
let track = await this.trackRepository.findOne({ id: id });
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user