mirror of
https://github.com/overleaf/overleaf.git
synced 2025-01-15 12:51:17 +00:00
5fc6d7dcb3
Improve GCP logging for web GitOrigin-RevId: b304c87a3fe46c29189f665eb3daf22c23d6eb8f
261 lines
7.5 KiB
JavaScript
261 lines
7.5 KiB
JavaScript
/* eslint-disable
|
|
node/handle-callback-err,
|
|
max-len,
|
|
no-unused-vars,
|
|
*/
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
// Fix any style issues and re-enable lint.
|
|
/*
|
|
* decaffeinate suggestions:
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
* DS207: Consider shorter variations of null checks
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
*/
|
|
let LaunchpadController
|
|
const OError = require('@overleaf/o-error')
|
|
const Settings = require('@overleaf/settings')
|
|
const Path = require('path')
|
|
const Url = require('url')
|
|
const logger = require('@overleaf/logger')
|
|
const metrics = require('@overleaf/metrics')
|
|
const UserRegistrationHandler = require('../../../../app/src/Features/User/UserRegistrationHandler')
|
|
const EmailHandler = require('../../../../app/src/Features/Email/EmailHandler')
|
|
const _ = require('underscore')
|
|
const UserGetter = require('../../../../app/src/Features/User/UserGetter')
|
|
const { User } = require('../../../../app/src/models/User')
|
|
const AuthenticationController = require('../../../../app/src/Features/Authentication/AuthenticationController')
|
|
const SessionManager = require('../../../../app/src/Features/Authentication/SessionManager')
|
|
|
|
module.exports = LaunchpadController = {
|
|
_getAuthMethod() {
|
|
if (Settings.ldap) {
|
|
return 'ldap'
|
|
} else if (Settings.saml) {
|
|
return 'saml'
|
|
} else {
|
|
return 'local'
|
|
}
|
|
},
|
|
|
|
launchpadPage(req, res, next) {
|
|
// TODO: check if we're using external auth?
|
|
// * how does all this work with ldap and saml?
|
|
const sessionUser = SessionManager.getSessionUser(req.session)
|
|
const authMethod = LaunchpadController._getAuthMethod()
|
|
return LaunchpadController._atLeastOneAdminExists(function (
|
|
err,
|
|
adminUserExists
|
|
) {
|
|
if (err != null) {
|
|
return next(err)
|
|
}
|
|
if (!sessionUser) {
|
|
if (!adminUserExists) {
|
|
return res.render(Path.resolve(__dirname, '../views/launchpad'), {
|
|
adminUserExists,
|
|
authMethod,
|
|
})
|
|
} else {
|
|
AuthenticationController.setRedirectInSession(req)
|
|
return res.redirect('/login')
|
|
}
|
|
} else {
|
|
return UserGetter.getUser(
|
|
sessionUser._id,
|
|
{ isAdmin: 1 },
|
|
function (err, user) {
|
|
if (err != null) {
|
|
return next(err)
|
|
}
|
|
if (user && user.isAdmin) {
|
|
return res.render(Path.resolve(__dirname, '../views/launchpad'), {
|
|
wsUrl: Settings.wsUrl,
|
|
adminUserExists,
|
|
authMethod,
|
|
})
|
|
} else {
|
|
return res.redirect('/restricted')
|
|
}
|
|
}
|
|
)
|
|
}
|
|
})
|
|
},
|
|
|
|
_atLeastOneAdminExists(callback) {
|
|
if (callback == null) {
|
|
callback = function () {}
|
|
}
|
|
return UserGetter.getUser(
|
|
{ isAdmin: true },
|
|
{ _id: 1, isAdmin: 1 },
|
|
function (err, user) {
|
|
if (err != null) {
|
|
return callback(err)
|
|
}
|
|
return callback(null, user != null)
|
|
}
|
|
)
|
|
},
|
|
|
|
sendTestEmail(req, res, next) {
|
|
const { email } = req.body
|
|
if (!email) {
|
|
logger.log({}, 'no email address supplied')
|
|
return res.status(400).json({
|
|
message: 'no email address supplied',
|
|
})
|
|
}
|
|
logger.log({ email }, 'sending test email')
|
|
const emailOptions = { to: email }
|
|
return EmailHandler.sendEmail('testEmail', emailOptions, function (err) {
|
|
if (err != null) {
|
|
OError.tag(err, 'error sending test email', {
|
|
email,
|
|
})
|
|
return next(err)
|
|
}
|
|
logger.log({ email }, 'sent test email')
|
|
res.json({ message: res.locals.translate('email_sent') })
|
|
})
|
|
},
|
|
|
|
registerExternalAuthAdmin(authMethod) {
|
|
return function (req, res, next) {
|
|
if (LaunchpadController._getAuthMethod() !== authMethod) {
|
|
logger.log(
|
|
{ authMethod },
|
|
'trying to register external admin, but that auth service is not enabled, disallow'
|
|
)
|
|
return res.sendStatus(403)
|
|
}
|
|
const { email } = req.body
|
|
if (!email) {
|
|
logger.log({ authMethod }, 'no email supplied, disallow')
|
|
return res.sendStatus(400)
|
|
}
|
|
|
|
logger.log({ email }, 'attempted register first admin user')
|
|
return LaunchpadController._atLeastOneAdminExists(function (err, exists) {
|
|
if (err != null) {
|
|
return next(err)
|
|
}
|
|
|
|
if (exists) {
|
|
logger.log(
|
|
{ email },
|
|
'already have at least one admin user, disallow'
|
|
)
|
|
return res.sendStatus(403)
|
|
}
|
|
|
|
const body = {
|
|
email,
|
|
password: 'password_here',
|
|
first_name: email,
|
|
last_name: '',
|
|
}
|
|
logger.log(
|
|
{ body, authMethod },
|
|
'creating admin account for specified external-auth user'
|
|
)
|
|
|
|
return UserRegistrationHandler.registerNewUser(
|
|
body,
|
|
function (err, user) {
|
|
if (err != null) {
|
|
OError.tag(err, 'error with registerNewUser', {
|
|
email,
|
|
authMethod,
|
|
})
|
|
return next(err)
|
|
}
|
|
|
|
return User.updateOne(
|
|
{ _id: user._id },
|
|
{
|
|
$set: { isAdmin: true },
|
|
emails: [{ email }],
|
|
},
|
|
function (err) {
|
|
if (err != null) {
|
|
OError.tag(err, 'error setting user to admin', {
|
|
user_id: user._id,
|
|
})
|
|
return next(err)
|
|
}
|
|
|
|
AuthenticationController.setRedirectInSession(req, '/launchpad')
|
|
logger.log(
|
|
{ email, user_id: user._id, authMethod },
|
|
'created first admin account'
|
|
)
|
|
|
|
return res.json({ redir: '/launchpad', email })
|
|
}
|
|
)
|
|
}
|
|
)
|
|
})
|
|
}
|
|
},
|
|
|
|
registerAdmin(req, res, next) {
|
|
const { email } = req.body
|
|
const { password } = req.body
|
|
if (!email || !password) {
|
|
logger.log({}, 'must supply both email and password, disallow')
|
|
return res.sendStatus(400)
|
|
}
|
|
|
|
logger.log({ email }, 'attempted register first admin user')
|
|
return LaunchpadController._atLeastOneAdminExists(function (err, exists) {
|
|
if (err != null) {
|
|
return next(err)
|
|
}
|
|
|
|
if (exists) {
|
|
logger.log(
|
|
{ email: req.body.email },
|
|
'already have at least one admin user, disallow'
|
|
)
|
|
return res.sendStatus(403)
|
|
}
|
|
|
|
const body = { email, password }
|
|
return UserRegistrationHandler.registerNewUser(
|
|
body,
|
|
function (err, user) {
|
|
if (err != null) {
|
|
return next(err)
|
|
}
|
|
|
|
logger.log({ user_id: user._id }, 'making user an admin')
|
|
User.updateOne(
|
|
{ _id: user._id },
|
|
{
|
|
$set: {
|
|
isAdmin: true,
|
|
emails: [{ email }],
|
|
},
|
|
},
|
|
function (err) {
|
|
if (err != null) {
|
|
OError.tag(err, 'error setting user to admin', {
|
|
user_id: user._id,
|
|
})
|
|
return next(err)
|
|
}
|
|
|
|
logger.log(
|
|
{ email, user_id: user._id },
|
|
'created first admin account'
|
|
)
|
|
res.json({ redir: '/launchpad' })
|
|
}
|
|
)
|
|
}
|
|
)
|
|
})
|
|
},
|
|
}
|