mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
27 lines
929 B
CoffeeScript
27 lines
929 B
CoffeeScript
Errors = require "./Errors"
|
|
logger = require "logger-sharelatex"
|
|
AuthenticationController = require '../Authentication/AuthenticationController'
|
|
|
|
module.exports = ErrorController =
|
|
notFound: (req, res)->
|
|
res.status(404)
|
|
res.render 'general/404',
|
|
title: "page_not_found"
|
|
|
|
serverError: (req, res)->
|
|
res.status(500)
|
|
res.render 'general/500',
|
|
title: "Server Error"
|
|
|
|
handleError: (error, req, res, next) ->
|
|
user = AuthenticationController.getSessionUser(req)
|
|
if error?.code is 'EBADCSRFTOKEN'
|
|
logger.warn err: error,url:req.url, method:req.method, user:user, "invalid csrf"
|
|
res.sendStatus(403)
|
|
return
|
|
if error instanceof Errors.NotFoundError
|
|
logger.warn {err: error, url: req.url}, "not found error"
|
|
ErrorController.notFound req, res
|
|
else
|
|
logger.error err: error, url:req.url, method:req.method, user:user, "error passed to top level next middlewear"
|
|
ErrorController.serverError req, res
|