2014-01-03 13:32:13 -05:00
|
|
|
# TODO: not updated since rename from level_instance, or since we redid how all models are done; probably busted
|
|
|
|
|
2014-06-30 22:16:26 -04:00
|
|
|
mongoose = require 'mongoose'
|
|
|
|
plugins = require '../../plugins/plugins'
|
2014-05-13 16:46:56 -04:00
|
|
|
AchievablePlugin = require '../../plugins/achievements'
|
2014-06-30 22:16:26 -04:00
|
|
|
jsonschema = require '../../../app/schemas/models/level_session'
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
LevelSessionSchema = new mongoose.Schema({
|
|
|
|
created:
|
|
|
|
type: Date
|
|
|
|
'default': Date.now
|
|
|
|
}, {strict: false})
|
|
|
|
LevelSessionSchema.plugin(plugins.PermissionsPlugin)
|
2014-05-13 16:46:56 -04:00
|
|
|
LevelSessionSchema.plugin(AchievablePlugin)
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
LevelSessionSchema.pre 'init', (next) ->
|
|
|
|
# TODO: refactor this into a set of common plugins for all models?
|
|
|
|
return next() unless jsonschema.properties?
|
|
|
|
for prop, sch of jsonschema.properties
|
|
|
|
@set(prop, _.cloneDeep(sch.default)) if sch.default?
|
|
|
|
next()
|
|
|
|
|
|
|
|
LevelSessionSchema.pre 'save', (next) ->
|
|
|
|
@set('changed', new Date())
|
|
|
|
next()
|
|
|
|
|
2014-06-30 22:16:26 -04:00
|
|
|
module.exports = LevelSession = mongoose.model('level.session', LevelSessionSchema)
|