mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-27 17:45:40 -05:00
ae82875c57
When a new version is created, the latest version is updated, then the new one is made. If making a new one fails (most commonly due to a name conflict), the latest version is left in a broken state. Set up the new middleware to revert changes to latest version in this case, and update the level handler to use the middleware. Also added warning logs if models do not have editableProperties or postEditableProperties set.
61 lines
2.4 KiB
CoffeeScript
61 lines
2.4 KiB
CoffeeScript
mongoose = require 'mongoose'
|
|
plugins = require '../plugins/plugins'
|
|
log = require 'winston'
|
|
config = require '../../server_config'
|
|
jsonSchema = require '../../app/schemas/models/campaign.schema.coffee'
|
|
|
|
CampaignSchema = new mongoose.Schema(body: String, {strict: false,read:config.mongo.readpref})
|
|
|
|
CampaignSchema.index({i18nCoverage: 1}, {name: 'translation coverage index', sparse: true})
|
|
CampaignSchema.index({slug: 1}, {name: 'slug index', sparse: true, unique: true})
|
|
CampaignSchema.index({type: 1}, {name: 'type index', sparse: true})
|
|
|
|
CampaignSchema.plugin(plugins.NamedPlugin)
|
|
CampaignSchema.plugin(plugins.TranslationCoveragePlugin)
|
|
CampaignSchema.plugin plugins.PatchablePlugin
|
|
|
|
CampaignSchema.statics.updateAdjacentCampaigns = (savedCampaign) ->
|
|
Campaign = require './Campaign'
|
|
query = {}
|
|
query["adjacentCampaigns.#{savedCampaign.get '_id'}"] = {$exists: true}
|
|
Campaign.find(query).exec (err, campaigns) ->
|
|
return log.error "Couldn't search for adjacent campaigns to update because of #{err}" if err
|
|
for campaign in campaigns
|
|
acs = campaign.get 'adjacentCampaigns'
|
|
ac = acs[savedCampaign.get '_id']
|
|
# Let's make sure that we're adding translations, otherwise let's not update yet.
|
|
# We could possibly remove this; not sure it's worth having.
|
|
[oldI18NCount, newI18NCount] = [0, 0]
|
|
oldI18NCount += _.size(translations) for lang, translations of ac.i18n ? {}
|
|
newI18NCount += _.size(translations) for lang, translations of savedCampaign.get('i18n') ? {}
|
|
continue unless newI18NCount > oldI18NCount
|
|
ac.i18n = savedCampaign.get('i18n')
|
|
# Save without using middleware so that we don't get into a post-save loop.
|
|
Campaign.findByIdAndUpdate campaign._id, {$set: {adjacentCampaigns: acs}}, (err, doc) ->
|
|
return log.error "Couldn't save updated adjacent campaign because of #{err}" if err
|
|
|
|
CampaignSchema.pre 'save', (done) ->
|
|
if not @get('levelsUpdated')
|
|
@set('levelsUpdated', @_id.getTimestamp())
|
|
done()
|
|
|
|
CampaignSchema.post 'save', -> @constructor.updateAdjacentCampaigns @
|
|
|
|
CampaignSchema.statics.jsonSchema = jsonSchema
|
|
CampaignSchema.statics.editableProperties = [
|
|
'name'
|
|
'fullName'
|
|
'description'
|
|
'type'
|
|
'i18n'
|
|
'i18nCoverage'
|
|
'ambientSound'
|
|
'backgroundImage'
|
|
'backgroundColor'
|
|
'backgroundColorTransparent'
|
|
'adjacentCampaigns'
|
|
'levels'
|
|
]
|
|
CampaignSchema.statics.postEditableProperties = []
|
|
|
|
module.exports = mongoose.model('campaign', CampaignSchema)
|