Update to move gitlab api path to sub path and fix its find user method for PR #121
This commit is contained in:
30
app.js
30
app.js
@@ -16,7 +16,6 @@ var formidable = require('formidable');
|
||||
var morgan = require('morgan');
|
||||
var passportSocketIo = require("passport.socketio");
|
||||
var helmet = require('helmet');
|
||||
var request = require('request');
|
||||
|
||||
//core
|
||||
var config = require("./lib/config.js");
|
||||
@@ -83,9 +82,6 @@ var sessionStore = new SequelizeStore({
|
||||
//compression
|
||||
app.use(compression());
|
||||
|
||||
//cookies
|
||||
app.use(cookieParser());
|
||||
|
||||
// use hsts to tell https users stick to this
|
||||
app.use(helmet.hsts({
|
||||
maxAge: 31536000 * 1000, // 365 days
|
||||
@@ -310,8 +306,7 @@ if (config.gitlab) {
|
||||
res.redirect(config.serverurl);
|
||||
});
|
||||
//gitlab callback actions
|
||||
// TODO: Maybe in the future
|
||||
//app.get('/auth/gitlab/callback/:noteId/:action', response.gitlabActions);
|
||||
app.get('/auth/gitlab/callback/:noteId/:action', response.gitlabActions);
|
||||
}
|
||||
//dropbox auth
|
||||
if (config.dropbox) {
|
||||
@@ -442,29 +437,6 @@ app.post('/uploadimage', function (req, res) {
|
||||
}
|
||||
});
|
||||
});
|
||||
//get gitlab parameters
|
||||
app.get('/gitlab', function (req, res) {
|
||||
var ret = { baseURL: config.gitlab.baseURL };
|
||||
models.User.findById(req.cookies.userid)
|
||||
.then(function(user) {
|
||||
ret.accesstoken = user.accessToken;
|
||||
ret.profileid = user.profileid;
|
||||
request(
|
||||
config.gitlab.baseURL + '/api/v3/projects?access_token=' + user.accessToken,
|
||||
function(error, httpResponse, body) {
|
||||
if (!error && httpResponse.statusCode == 200) {
|
||||
ret.projects = JSON.parse(body);
|
||||
return res.send(ret);
|
||||
} else {
|
||||
return res.send(ret);
|
||||
}
|
||||
}
|
||||
);
|
||||
}).catch(function(err) {
|
||||
logger.error('user search failed: ' + err);
|
||||
return response.errorInternalError(res);
|
||||
});
|
||||
});
|
||||
//get new note
|
||||
app.get("/new", response.newNote);
|
||||
//get publish note
|
||||
|
||||
Reference in New Issue
Block a user