2014-01-03 13:32:13 -05:00
|
|
|
async = require 'async'
|
|
|
|
mongoose = require('mongoose')
|
|
|
|
Grid = require 'gridfs-stream'
|
2014-01-22 17:57:41 -05:00
|
|
|
errors = require './errors'
|
2014-03-28 14:02:23 -04:00
|
|
|
log = require 'winston'
|
|
|
|
|
2014-02-15 17:09:30 -05:00
|
|
|
PROJECT = {original:1, name:1, version:1, description: 1, slug:1, kind: 1}
|
2014-04-01 16:20:15 -04:00
|
|
|
FETCH_LIMIT = 200
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
module.exports = class Handler
|
|
|
|
# subclasses should override these properties
|
|
|
|
modelClass: null
|
|
|
|
editableProperties: []
|
|
|
|
postEditableProperties: []
|
|
|
|
jsonSchema: {}
|
|
|
|
waterfallFunctions: []
|
|
|
|
|
|
|
|
# subclasses should override these methods
|
|
|
|
hasAccess: (req) -> true
|
|
|
|
hasAccessToDocument: (req, document, method=null) ->
|
2014-02-24 23:27:38 -05:00
|
|
|
return true if req.user?.isAdmin()
|
2014-01-03 13:32:13 -05:00
|
|
|
if @modelClass.schema.uses_coco_permissions
|
|
|
|
return document.hasPermissionsForMethod(req.user, method or req.method)
|
|
|
|
return true
|
|
|
|
|
|
|
|
formatEntity: (req, document) -> document?.toObject()
|
|
|
|
getEditableProperties: (req, document) ->
|
|
|
|
props = @editableProperties.slice()
|
|
|
|
isBrandNew = req.method is 'POST' and not req.body.original
|
|
|
|
if isBrandNew
|
|
|
|
props = props.concat @postEditableProperties
|
|
|
|
|
|
|
|
if @modelClass.schema.uses_coco_permissions
|
|
|
|
# can only edit permissions if this is a brand new property,
|
|
|
|
# or you are an owner of the old one
|
|
|
|
isOwner = document.getAccessForUserObjectId(req.user._id) is 'owner'
|
2014-02-24 23:27:38 -05:00
|
|
|
if isBrandNew or isOwner or req.user?.isAdmin()
|
2014-01-03 13:32:13 -05:00
|
|
|
props.push 'permissions'
|
|
|
|
|
|
|
|
if @modelClass.schema.uses_coco_versions
|
|
|
|
props.push 'commitMessage'
|
|
|
|
|
|
|
|
props
|
|
|
|
|
|
|
|
# sending functions
|
2014-01-14 17:13:47 -05:00
|
|
|
sendUnauthorizedError: (res) -> errors.forbidden(res) #TODO: rename sendUnauthorizedError to sendForbiddenError
|
|
|
|
sendNotFoundError: (res) -> errors.notFound(res)
|
|
|
|
sendMethodNotAllowed: (res) -> errors.badMethod(res)
|
|
|
|
sendBadInputError: (res, message) -> errors.badInput(res, message)
|
2014-03-31 16:56:13 -04:00
|
|
|
sendDatabaseError: (res, err) ->
|
|
|
|
log.error "Database error, #{err}"
|
|
|
|
errors.serverError(res, 'Database error, ' + err)
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
sendError: (res, code, message) ->
|
2014-01-14 17:13:47 -05:00
|
|
|
errors.custom(res, code, message)
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
sendSuccess: (res, message) ->
|
|
|
|
res.send(message)
|
|
|
|
res.end()
|
|
|
|
|
|
|
|
# generic handlers
|
|
|
|
get: (req, res) ->
|
|
|
|
# by default, ordinary users never get unfettered access to the database
|
2014-02-24 23:27:38 -05:00
|
|
|
return @sendUnauthorizedError(res) unless req.user?.isAdmin()
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
# admins can send any sort of query down the wire, though
|
|
|
|
conditions = JSON.parse(req.query.conditions || '[]')
|
|
|
|
query = @modelClass.find()
|
|
|
|
|
|
|
|
try
|
|
|
|
for condition in conditions
|
|
|
|
name = condition[0]
|
|
|
|
f = query[name]
|
|
|
|
args = condition[1..]
|
|
|
|
query = query[name](args...)
|
|
|
|
catch e
|
|
|
|
return @sendError(res, 422, 'Badly formed conditions.')
|
|
|
|
|
|
|
|
query.exec (err, documents) =>
|
|
|
|
return @sendDatabaseError(res, err) if err
|
|
|
|
documents = (@formatEntity(req, doc) for doc in documents)
|
|
|
|
@sendSuccess(res, documents)
|
|
|
|
|
|
|
|
getById: (req, res, id) ->
|
|
|
|
return @sendUnauthorizedError(res) unless @hasAccess(req)
|
|
|
|
|
|
|
|
@getDocumentForIdOrSlug id, (err, document) =>
|
|
|
|
return @sendDatabaseError(res, err) if err
|
|
|
|
return @sendNotFoundError(res) unless document?
|
|
|
|
return @sendUnauthorizedError(res) unless @hasAccessToDocument(req, document)
|
|
|
|
@sendSuccess(res, @formatEntity(req, document))
|
|
|
|
|
|
|
|
getByRelationship: (req, res, args...) ->
|
|
|
|
# this handler should be overwritten by subclasses
|
|
|
|
return @sendNotFoundError(res)
|
|
|
|
|
|
|
|
search: (req, res) ->
|
|
|
|
unless @modelClass.schema.uses_coco_search
|
|
|
|
return @sendNotFoundError(res)
|
|
|
|
|
|
|
|
term = req.query.term
|
|
|
|
matchedObjects = []
|
|
|
|
filters = [{filter: {index: true}}]
|
2014-02-24 23:27:38 -05:00
|
|
|
if @modelClass.schema.uses_coco_permissions and req.user
|
2014-01-03 13:32:13 -05:00
|
|
|
filters.push {filter: {index: req.user.get('id')}}
|
2014-03-28 14:02:23 -04:00
|
|
|
projection = null
|
|
|
|
if req.query.project is 'true'
|
|
|
|
projection = PROJECT
|
|
|
|
else if req.query.project
|
|
|
|
if @modelClass.className is 'User'
|
|
|
|
projection = PROJECTION
|
|
|
|
log.warn "Whoa, we haven't yet thought about public properties for User projection yet."
|
|
|
|
else
|
|
|
|
projection = {}
|
2014-03-31 18:48:22 -04:00
|
|
|
projection[field] = 1 for field in req.query.project.split(',')
|
2014-01-03 13:32:13 -05:00
|
|
|
for filter in filters
|
|
|
|
callback = (err, results) =>
|
|
|
|
return @sendDatabaseError(res, err) if err
|
|
|
|
for r in results.results ? results
|
|
|
|
obj = r.obj ? r
|
|
|
|
continue if obj in matchedObjects # TODO: probably need a better equality check
|
|
|
|
matchedObjects.push obj
|
|
|
|
filters.pop() # doesn't matter which one
|
|
|
|
unless filters.length
|
|
|
|
res.send matchedObjects
|
|
|
|
res.end()
|
|
|
|
if term
|
2014-03-28 14:02:23 -04:00
|
|
|
filter.project = projection
|
2014-01-03 13:32:13 -05:00
|
|
|
@modelClass.textSearch term, filter, callback
|
|
|
|
else
|
2014-01-06 20:11:57 -05:00
|
|
|
args = [filter.filter]
|
2014-03-28 14:02:23 -04:00
|
|
|
args.push projection if projection
|
2014-02-17 12:22:12 -05:00
|
|
|
@modelClass.find(args...).limit(FETCH_LIMIT).exec callback
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
versions: (req, res, id) ->
|
|
|
|
# TODO: a flexible system for doing GAE-like cursors for these sort of paginating queries
|
2014-02-17 12:22:12 -05:00
|
|
|
# Keeping it simple for now and just allowing access to the first FETCH_LIMIT results.
|
2014-01-03 13:32:13 -05:00
|
|
|
query = {'original': mongoose.Types.ObjectId(id)}
|
|
|
|
sort = {'created': -1}
|
2014-03-28 16:51:52 -04:00
|
|
|
selectString = 'slug name version commitMessage created permissions'
|
|
|
|
aggregate = $match: query
|
|
|
|
@modelClass.aggregate(aggregate).project(selectString).limit(FETCH_LIMIT).sort(sort).exec (err, results) =>
|
2014-03-10 23:22:25 -04:00
|
|
|
return @sendDatabaseError(res, err) if err
|
2014-01-03 13:32:13 -05:00
|
|
|
for doc in results
|
|
|
|
return @sendUnauthorizedError(res) unless @hasAccessToDocument(req, doc)
|
|
|
|
res.send(results)
|
|
|
|
res.end()
|
|
|
|
|
|
|
|
files: (req, res, id) ->
|
|
|
|
module = req.path[4..].split('/')[0]
|
|
|
|
query = {'metadata.path': "db/#{module}/#{id}"}
|
|
|
|
Grid.gfs.collection('media').find query, (err, cursor) ->
|
|
|
|
return @sendDatabaseError(res, err) if err
|
|
|
|
results = cursor.toArray (err, results) ->
|
|
|
|
return @sendDatabaseError(res, err) if err
|
|
|
|
res.send(results)
|
|
|
|
res.end()
|
|
|
|
|
|
|
|
getLatestVersion: (req, res, original, version) ->
|
|
|
|
# can get latest overall version, latest of a major version, or a specific version
|
|
|
|
query = { 'original': mongoose.Types.ObjectId(original) }
|
|
|
|
if version?
|
|
|
|
version = version.split('.')
|
|
|
|
majorVersion = parseInt(version[0])
|
|
|
|
minorVersion = parseInt(version[1])
|
|
|
|
query['version.major'] = majorVersion unless _.isNaN(majorVersion)
|
|
|
|
query['version.minor'] = minorVersion unless _.isNaN(minorVersion)
|
|
|
|
sort = { 'version.major': -1, 'version.minor': -1 }
|
2014-02-15 17:09:30 -05:00
|
|
|
args = [query]
|
|
|
|
args.push PROJECT if req.query.project
|
|
|
|
@modelClass.findOne(args...).sort(sort).exec (err, doc) =>
|
2014-01-03 13:32:13 -05:00
|
|
|
return @sendNotFoundError(res) unless doc?
|
|
|
|
return @sendUnauthorizedError(res) unless @hasAccessToDocument(req, doc)
|
|
|
|
res.send(doc)
|
|
|
|
res.end()
|
|
|
|
|
|
|
|
patch: ->
|
|
|
|
@put(arguments...)
|
|
|
|
|
|
|
|
put: (req, res, id) ->
|
|
|
|
return @postNewVersion(req, res) if @modelClass.schema.uses_coco_versions
|
|
|
|
return @sendBadInputError(res, 'No input.') if _.isEmpty(req.body)
|
|
|
|
return @sendUnauthorizedError(res) unless @hasAccess(req)
|
|
|
|
@getDocumentForIdOrSlug req.body._id or id, (err, document) =>
|
|
|
|
return @sendBadInputError(res, 'Bad id.') if err and err.name is 'CastError'
|
|
|
|
return @sendDatabaseError(res, err) if err
|
|
|
|
return @sendNotFoundError(res) unless document?
|
|
|
|
return @sendUnauthorizedError(res) unless @hasAccessToDocument(req, document)
|
|
|
|
@doWaterfallChecks req, document, (err, document) =>
|
|
|
|
return @sendError(res, err.code, err.res) if err
|
|
|
|
@saveChangesToDocument req, document, (err) =>
|
|
|
|
return @sendBadInputError(res, err.errors) if err?.valid is false
|
|
|
|
return @sendDatabaseError(res, err) if err
|
|
|
|
@sendSuccess(res, @formatEntity(req, document))
|
|
|
|
|
|
|
|
post: (req, res) ->
|
|
|
|
if @modelClass.schema.uses_coco_versions
|
|
|
|
if req.body.original
|
|
|
|
return @postNewVersion(req, res)
|
|
|
|
else
|
|
|
|
return @postFirstVersion(req, res)
|
|
|
|
|
|
|
|
return @sendBadInputError(res, 'No input.') if _.isEmpty(req.body)
|
|
|
|
return @sendBadInputError(res, 'id should not be included.') if req.body._id
|
|
|
|
return @sendUnauthorizedError(res) unless @hasAccess(req)
|
|
|
|
validation = @validateDocumentInput(req.body)
|
|
|
|
return @sendBadInputError(res, validation.errors) unless validation.valid
|
|
|
|
document = @makeNewInstance(req)
|
|
|
|
@saveChangesToDocument req, document, (err) =>
|
|
|
|
return @sendDatabaseError(res, err) if err
|
|
|
|
@sendSuccess(res, @formatEntity(req, document))
|
|
|
|
|
2014-01-08 14:27:13 -05:00
|
|
|
###
|
|
|
|
TODO: think about pulling some common stuff out of postFirstVersion/postNewVersion
|
|
|
|
into a postVersion if we can figure out the breakpoints?
|
|
|
|
..... actually, probably better would be to do the returns with throws instead
|
|
|
|
and have a handler which turns them into status codes and messages
|
|
|
|
###
|
2014-01-03 13:32:13 -05:00
|
|
|
postFirstVersion: (req, res) ->
|
|
|
|
return @sendBadInputError(res, 'No input.') if _.isEmpty(req.body)
|
|
|
|
return @sendBadInputError(res, 'id should not be included.') if req.body._id
|
|
|
|
return @sendUnauthorizedError(res) unless @hasAccess(req)
|
|
|
|
validation = @validateDocumentInput(req.body)
|
|
|
|
return @sendBadInputError(res, validation.errors) unless validation.valid
|
|
|
|
document = @makeNewInstance(req)
|
|
|
|
document.set('original', document._id)
|
|
|
|
document.set('creator', req.user._id)
|
|
|
|
@saveChangesToDocument req, document, (err) =>
|
|
|
|
return @sendBadInputError(res, err.response) if err?.response
|
|
|
|
return @sendDatabaseError(res, err) if err
|
|
|
|
@sendSuccess(res, @formatEntity(req, document))
|
|
|
|
|
|
|
|
postNewVersion: (req, res) ->
|
|
|
|
"""
|
|
|
|
To the client, posting new versions look like this:
|
|
|
|
|
|
|
|
POST /db/modelname
|
|
|
|
|
|
|
|
With the input being just the altered structure of the old version,
|
|
|
|
leaving the _id property intact even.
|
|
|
|
No version object means it's a new major version.
|
|
|
|
A version object with a major value means a new minor version.
|
|
|
|
All other properties in version are ignored.
|
|
|
|
"""
|
|
|
|
return @sendBadInputError(res, 'This entity is not versioned') unless @modelClass.schema.uses_coco_versions
|
|
|
|
return @sendBadInputError(res, 'No input.') if _.isEmpty(req.body)
|
|
|
|
return @sendUnauthorizedError(res) unless @hasAccess(req)
|
|
|
|
validation = @validateDocumentInput(req.body)
|
|
|
|
return @sendBadInputError(res, validation.errors) unless validation.valid
|
|
|
|
@getDocumentForIdOrSlug req.body._id, (err, parentDocument) =>
|
|
|
|
return @sendBadInputError(res, 'Bad id.') if err and err.name is 'CastError'
|
|
|
|
return @sendDatabaseError(res, err) if err
|
|
|
|
return @sendNotFoundError(res) unless parentDocument?
|
|
|
|
return @sendUnauthorizedError(res) unless @hasAccessToDocument(req, parentDocument)
|
2014-04-01 15:13:11 -04:00
|
|
|
editableProperties = @getEditableProperties req, parentDocument
|
2014-01-03 13:32:13 -05:00
|
|
|
updatedObject = parentDocument.toObject()
|
2014-04-01 15:13:11 -04:00
|
|
|
for prop in editableProperties
|
|
|
|
if (val = req.body[prop])?
|
|
|
|
updatedObject[prop] = val
|
|
|
|
else if updatedObject[prop]?
|
|
|
|
delete updatedObject[prop]
|
2014-01-03 13:32:13 -05:00
|
|
|
delete updatedObject._id
|
|
|
|
major = req.body.version?.major
|
|
|
|
|
|
|
|
done = (err, newDocument) =>
|
|
|
|
return @sendDatabaseError(res, err) if err
|
|
|
|
newDocument.set('creator', req.user._id)
|
|
|
|
newDocument.save (err) =>
|
|
|
|
return @sendDatabaseError(res, err) if err
|
|
|
|
@sendSuccess(res, @formatEntity(req, newDocument))
|
|
|
|
|
|
|
|
if major?
|
|
|
|
parentDocument.makeNewMinorVersion(updatedObject, major, done)
|
|
|
|
|
|
|
|
else
|
|
|
|
parentDocument.makeNewMajorVersion(updatedObject, done)
|
|
|
|
|
|
|
|
makeNewInstance: (req) ->
|
|
|
|
new @modelClass({})
|
|
|
|
|
|
|
|
validateDocumentInput: (input) ->
|
|
|
|
tv4 = require('tv4').tv4
|
|
|
|
res = tv4.validateMultiple(input, @jsonSchema)
|
|
|
|
res
|
2014-03-03 19:19:35 -05:00
|
|
|
|
2014-02-17 18:19:19 -05:00
|
|
|
@isID: (id) -> _.isString(id) and id.length is 24 and id.match(/[a-z0-9]/gi)?.length is 24
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
getDocumentForIdOrSlug: (idOrSlug, done) ->
|
|
|
|
idOrSlug = idOrSlug+''
|
2014-02-17 18:19:19 -05:00
|
|
|
if Handler.isID(idOrSlug)
|
2014-01-03 13:32:13 -05:00
|
|
|
@modelClass.findById(idOrSlug).exec (err, document) ->
|
|
|
|
done(err, document)
|
2014-01-20 12:13:18 -05:00
|
|
|
else
|
2014-01-08 14:27:13 -05:00
|
|
|
@modelClass.findOne {slug: idOrSlug}, (err, document) ->
|
2014-01-03 13:32:13 -05:00
|
|
|
done(err, document)
|
|
|
|
|
|
|
|
|
|
|
|
doWaterfallChecks: (req, document, done) ->
|
|
|
|
return done(null, document) unless @waterfallFunctions.length
|
|
|
|
|
|
|
|
# waterfall doesn't let you pass an initial argument
|
|
|
|
# so wrap the first waterfall function to pass in the document
|
|
|
|
funcs = (f for f in @waterfallFunctions)
|
|
|
|
firstFunc = funcs[0]
|
|
|
|
wrapped = (func, r, doc) -> (callback) -> func(r, doc, callback)
|
|
|
|
funcs[0] = wrapped(firstFunc, req, document)
|
|
|
|
async.waterfall funcs, (err, rrr, document) ->
|
|
|
|
done(err, document)
|
|
|
|
|
|
|
|
saveChangesToDocument: (req, document, done) ->
|
2014-04-01 15:13:11 -04:00
|
|
|
for prop in @getEditableProperties req, document
|
|
|
|
if (val = req.body[prop])?
|
|
|
|
document.set prop, val
|
2014-04-02 02:16:50 -04:00
|
|
|
# Hold on, gotta think about that one
|
|
|
|
#else if document.get(prop)? and req.method isnt 'PATCH'
|
|
|
|
# document.set prop, 'undefined'
|
2014-01-03 13:32:13 -05:00
|
|
|
obj = document.toObject()
|
|
|
|
|
|
|
|
# Hack to get saving of Users to work. Probably should replace these props with strings
|
|
|
|
# so that validation doesn't get hung up on Date objects in the documents.
|
|
|
|
delete obj.dateCreated
|
|
|
|
|
|
|
|
validation = @validateDocumentInput(obj)
|
|
|
|
return done(validation) unless validation.valid
|
|
|
|
|
|
|
|
document.save (err) -> done(err)
|