PAPI-7: Rewriting API structure to use routers

This commit is contained in:
2021-08-18 13:09:34 +02:00
parent 02939d57a8
commit 242b211d51
5 changed files with 79 additions and 71 deletions
+7 -10
View File
@@ -10,26 +10,23 @@ if (!process.env.PORT) {
process.exit(1);
}
const port: number = parseInt(process.env.PORT as string, 10);
const port: number = parseInt(process.env.PORT, 10);
import {CommonRoutesConfig} from './src/common/common.routes.config';
// DHBW Service
import {GeneralInfoRoutes} from './src/models/dhbw-service/generalInfo.routes.config';
import {generalInfoRouter} from "./src/models/dhbw-service/GeneralInfo.router";
// Twitch Highlight Marker
import {AddHighlightRoutes} from './src/models/twitch-highlight-marker/addHighlight.routes.config';
import {addHighlightRouter} from "./src/models/twitch-highlight-marker/AddHighlight.router";
const app: express.Application = express();
const server: http.Server = http.createServer(app);
const routes: Array<CommonRoutesConfig> = [];
// here we are adding middleware to parse all incoming requests as JSON
app.use(bodyparser.json());
// here we are adding the UserRoutes to our array,
// after sending the Express.js application object to have the routes added to our app!
routes.push(new GeneralInfoRoutes(app));
routes.push(new AddHighlightRoutes(app));
// Add routers
app.use('/dhbw-service/generalInfo', generalInfoRouter);
app.use('/twitch-highlight-marker/addHighlight', addHighlightRouter);
// this is a simple route to make sure everything is working properly
app.get('/', (req: express.Request, res: express.Response) => {
@@ -37,5 +34,5 @@ app.get('/', (req: express.Request, res: express.Response) => {
});
server.listen(port, () => {
console.log('Server listening on Port 3000');
console.log('Server listening on Port ' + port);
});