revert 6f637968bdd5dea7f472e5a07517e072ed69715e
All checks were successful
Neutral/pipeline/head This commit looks good
All checks were successful
Neutral/pipeline/head This commit looks good
revert Version 1.0.0 - Basic Web Application
This commit is contained in:
16
routes/internal.js
Normal file
16
routes/internal.js
Normal file
@ -0,0 +1,16 @@
|
||||
var express = require('express');
|
||||
var router = express.Router();
|
||||
var path = require("path")
|
||||
|
||||
router.get("/socketlink", (req,res,next) => {
|
||||
|
||||
if(process.env.DEV == true) {
|
||||
|
||||
res.send("ws://localhost:3001")
|
||||
} else {
|
||||
res.send("ws://neutral.raphix.fr")
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
module.exports = router;
|
23
routes/link.js
Normal file
23
routes/link.js
Normal file
@ -0,0 +1,23 @@
|
||||
var express = require('express');
|
||||
var router = express.Router();
|
||||
var path = require("path")
|
||||
|
||||
module.exports = router;
|
||||
|
||||
|
||||
module.exports.ApplyLinks = class {
|
||||
constructor(links) {
|
||||
// Remove all routes
|
||||
router.stack = []
|
||||
|
||||
for(var link of links) {
|
||||
const url = link.url
|
||||
router.get("/" + link.dest, (req,res,next) => {
|
||||
res.redirect(302, url)
|
||||
})
|
||||
}
|
||||
|
||||
module.exports = router;
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user