codecombat/server/routes/db.coffee

58 lines
2.4 KiB
CoffeeScript
Raw Normal View History

2014-02-04 17:08:20 -05:00
log = require 'winston'
errors = require '../commons/errors'
handlers = require('../commons/mapping').handlers
schemas = require('../commons/mapping').schemas
2014-03-21 19:22:47 -04:00
mongoose = require 'mongoose'
2014-01-03 13:32:13 -05:00
module.exports.setup = (app) ->
2014-03-21 19:22:47 -04:00
# This is hacky and should probably get moved somewhere else, I dunno
app.get '/db/cla.submissions', (req, res) ->
res.setHeader('Content-Type', 'application/json')
collection = mongoose.connection.db.collection 'cla.submissions', (err, collection) ->
return log.error "Couldn't fetch CLA submissions because #{err}" if err
resultCursor = collection.find {}
resultCursor.toArray (err, docs) ->
return log.error "Couldn't fetch distinct CLA submissions because #{err}" if err
unless req.user?.isAdmin()
delete doc.email for doc in docs
2014-03-21 19:22:47 -04:00
res.send docs
res.end
2014-01-03 13:32:13 -05:00
app.all '/db/*', (req, res) ->
res.setHeader('Content-Type', 'application/json')
module = req.path[4..]
parts = module.split('/')
module = parts[0]
return getSchema(req, res, module) if parts[1] is 'schema'
return errors.unauthorized(res, 'Must have an identity to do anything with the db. Do you have cookies enabled?') unless req.user
2014-01-03 13:32:13 -05:00
try
moduleName = module.replace '.', '_'
name = handlers[moduleName]
2014-02-04 17:08:20 -05:00
handler = require('../' + name)
return handler.getLatestVersion(req, res, parts[1], parts[3]) if parts[2] is 'version'
return handler.versions(req, res, parts[1]) if parts[2] is 'versions'
return handler.files(req, res, parts[1]) if parts[2] is 'files'
return handler.search(req, res) if req.route.method is 'get' and parts[1] is 'search'
return handler.getByRelationship(req, res, parts[1..]...) if parts.length > 2
return handler.getById(req, res, parts[1]) if req.route.method is 'get' and parts[1]?
return handler.patch(req, res, parts[1]) if req.route.method is 'patch' and parts[1]?
handler[req.route.method](req, res)
2014-01-03 13:32:13 -05:00
catch error
2014-02-04 17:08:20 -05:00
log.error("Error trying db method #{req.route.method} route #{parts} from #{name}: #{error}")
log.error(error)
errors.notFound(res, "Route #{req.path} not found.")
2014-01-03 13:32:13 -05:00
getSchema = (req, res, moduleName) ->
try
name = schemas[moduleName.replace '.', '_']
schema = require('../' + name)
2014-01-03 13:32:13 -05:00
res.send(schema)
res.end()
catch error
2014-02-04 17:08:20 -05:00
log.error("Error trying to grab schema from #{name}: #{error}")
errors.notFound(res, "Schema #{moduleName} not found.")