2014-06-30 22:16:26 -04:00
|
|
|
mongoose = require 'mongoose'
|
|
|
|
plugins = require '../plugins/plugins'
|
|
|
|
jsonschema = require '../../app/schemas/models/level'
|
2015-03-21 21:49:32 -04:00
|
|
|
config = require '../../server_config'
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
LevelSchema = new mongoose.Schema({
|
|
|
|
description: String
|
2015-03-21 21:49:32 -04:00
|
|
|
}, {strict: false, read:config.mongo.readpref})
|
2014-01-03 13:32:13 -05:00
|
|
|
|
2015-01-27 13:02:47 -05:00
|
|
|
LevelSchema.index(
|
|
|
|
{
|
|
|
|
index: 1
|
|
|
|
_fts: 'text'
|
|
|
|
_ftsx: 1
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'search index'
|
|
|
|
sparse: true
|
|
|
|
weights: {description: 1, name: 1}
|
|
|
|
default_language: 'english'
|
|
|
|
'language_override': 'searchLanguage'
|
|
|
|
'textIndexVersion': 2
|
|
|
|
})
|
2015-11-03 12:32:59 -05:00
|
|
|
|
2015-01-27 13:02:47 -05:00
|
|
|
LevelSchema.index(
|
|
|
|
{
|
|
|
|
original: 1
|
|
|
|
'version.major': -1
|
|
|
|
'version.minor': -1
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'version index'
|
|
|
|
unique: true
|
|
|
|
})
|
|
|
|
LevelSchema.index({slug: 1}, {name: 'slug index', sparse: true, unique: true})
|
2015-11-03 12:32:59 -05:00
|
|
|
LevelSchema.index({index: 1}, {name: 'index index', sparse: true}) # because we can't use the text search index with no term
|
2015-01-27 13:02:47 -05:00
|
|
|
|
2014-01-03 13:32:13 -05:00
|
|
|
LevelSchema.plugin(plugins.NamedPlugin)
|
|
|
|
LevelSchema.plugin(plugins.PermissionsPlugin)
|
|
|
|
LevelSchema.plugin(plugins.VersionedPlugin)
|
|
|
|
LevelSchema.plugin(plugins.SearchablePlugin, {searchable: ['name', 'description']})
|
2014-04-08 22:26:19 -04:00
|
|
|
LevelSchema.plugin(plugins.PatchablePlugin)
|
2014-10-17 12:12:06 -04:00
|
|
|
LevelSchema.plugin(plugins.TranslationCoveragePlugin)
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
LevelSchema.post 'init', (doc) ->
|
|
|
|
if _.isString(doc.get('nextLevel'))
|
|
|
|
doc.set('nextLevel', undefined)
|
2016-08-24 18:46:35 -04:00
|
|
|
|
|
|
|
LevelSchema.statics.postEditableProperties = ['name']
|
|
|
|
|
|
|
|
LevelSchema.statics.editableProperties = [
|
|
|
|
'description'
|
|
|
|
'documentation'
|
|
|
|
'background'
|
|
|
|
'nextLevel'
|
|
|
|
'scripts'
|
|
|
|
'thangs'
|
|
|
|
'systems'
|
|
|
|
'victory'
|
|
|
|
'name'
|
|
|
|
'i18n'
|
|
|
|
'icon'
|
|
|
|
'goals'
|
|
|
|
'type'
|
|
|
|
'showsGuide'
|
|
|
|
'banner'
|
|
|
|
'employerDescription'
|
|
|
|
'terrain'
|
|
|
|
'i18nCoverage'
|
|
|
|
'loadingTip'
|
|
|
|
'requiresSubscription'
|
|
|
|
'adventurer'
|
|
|
|
'practice'
|
|
|
|
'shareable'
|
|
|
|
'adminOnly'
|
|
|
|
'disableSpaces'
|
|
|
|
'hidesSubmitUntilRun'
|
|
|
|
'hidesPlayButton'
|
|
|
|
'hidesRunShortcut'
|
|
|
|
'hidesHUD'
|
|
|
|
'hidesSay'
|
|
|
|
'hidesCodeToolbar'
|
|
|
|
'hidesRealTimePlayback'
|
|
|
|
'backspaceThrottle'
|
|
|
|
'lockDefaultCode'
|
|
|
|
'moveRightLoopSnippet'
|
|
|
|
'realTimeSpeedFactor'
|
|
|
|
'autocompleteFontSizePx'
|
|
|
|
'requiredCode'
|
|
|
|
'suspectCode'
|
|
|
|
'requiredGear'
|
|
|
|
'restrictedGear'
|
|
|
|
'allowedHeroes'
|
|
|
|
'tasks'
|
|
|
|
'helpVideos'
|
|
|
|
'campaign'
|
|
|
|
'campaignIndex'
|
|
|
|
'replayable'
|
|
|
|
'buildTime'
|
|
|
|
'scoreTypes'
|
|
|
|
'concepts'
|
|
|
|
'picoCTFProblem'
|
|
|
|
'practiceThresholdMinutes',
|
|
|
|
'primerLanguage'
|
|
|
|
'studentPlayInstructions'
|
|
|
|
]
|
|
|
|
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
module.exports = Level = mongoose.model('level', LevelSchema)
|