This update required changing the configuration and test directory structure. Some tests needed to be amended as well to compensate for new Cypress APIs.
50 lines
1.1 KiB
JavaScript
50 lines
1.1 KiB
JavaScript
// from https://github.com/pedroetb/node-oauth2-server-example
|
|
|
|
let Http = require("http")
|
|
let path = require("path")
|
|
let express = require("express")
|
|
let bodyParser = require("body-parser")
|
|
let oauthserver = require("oauth2-server")
|
|
let cors = require("cors")
|
|
|
|
let app = express()
|
|
|
|
app.use(cors())
|
|
|
|
app.use(bodyParser.urlencoded({ extended: true }))
|
|
|
|
app.use(bodyParser.json())
|
|
|
|
app.oauth = oauthserver({
|
|
model: require("./model.js"),
|
|
grants: ["password", "client_credentials", "implicit"],
|
|
debug: true
|
|
})
|
|
|
|
app.all("/oauth/token", app.oauth.grant())
|
|
|
|
app.get("/swagger.yaml", function (req, res) {
|
|
res.sendFile(path.join(__dirname, "swagger.yaml"))
|
|
})
|
|
|
|
app.get("*", app.oauth.authorise(), function (req, res) {
|
|
res.send("Secret secrets are no fun, secret secrets hurt someone.")
|
|
})
|
|
|
|
app.use(app.oauth.errorHandler())
|
|
|
|
function startServer() {
|
|
let httpServer = Http.createServer(app)
|
|
httpServer.listen("3231")
|
|
|
|
return function stopServer() {
|
|
httpServer.close()
|
|
}
|
|
}
|
|
|
|
module.exports = startServer
|
|
|
|
if (require.main === module) {
|
|
// for debugging
|
|
startServer()
|
|
} |