codecombat/server/levels/Level.coffee
Sébastien Moratinos 729cd300b7 server reorganize files and folder by features
- move and rename files
- use associative arrays which store handlers for 'dynamically'
  load module from de db route
- store models_path in test/server/common,
  a global model variable has the same name that the filename of the model
2014-01-23 01:01:40 +01:00

24 lines
766 B
CoffeeScript

mongoose = require('mongoose')
plugins = require('../plugins/plugins')
jsonschema = require('./level_schema')
LevelSchema = new mongoose.Schema({
description: String
}, {strict: false})
LevelSchema.plugin(plugins.NamedPlugin)
LevelSchema.plugin(plugins.PermissionsPlugin)
LevelSchema.plugin(plugins.VersionedPlugin)
LevelSchema.plugin(plugins.SearchablePlugin, {searchable: ['name', 'description']})
LevelSchema.pre 'init', (next) ->
return next() unless jsonschema.properties?
for prop, sch of jsonschema.properties
@set(prop, _.cloneDeep(sch.default)) if sch.default?
next()
LevelSchema.post 'init', (doc) ->
if _.isString(doc.get('nextLevel'))
doc.set('nextLevel', undefined)
module.exports = Level = mongoose.model('level', LevelSchema)