From ba657aec4e807c9c717eb1c5d91f15a664f92e9b Mon Sep 17 00:00:00 2001 From: psychobunny Date: Wed, 19 Feb 2014 18:13:56 -0500 Subject: [PATCH] 110% -> upgrade.js converts existing motd's to html widgets for extra bonus points. --- src/upgrade.js | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/src/upgrade.js b/src/upgrade.js index 8ebab4f102..2d6f2545d0 100644 --- a/src/upgrade.js +++ b/src/upgrade.js @@ -19,7 +19,7 @@ var db = require('./database'), Upgrade.check = function(callback) { // IMPORTANT: REMEMBER TO UPDATE VALUE OF latestSchema - var latestSchema = new Date(2014, 1, 14, 21, 50).getTime(); + var latestSchema = new Date(2014, 1, 19, 18, 15).getTime(); db.get('schemaDate', function(err, value) { if (parseInt(value, 10) >= latestSchema) { @@ -685,6 +685,38 @@ Upgrade.upgrade = function(callback) { winston.info('[2014/2/14] Added posts to sorted set - skipped'); next(); } + }, + function(next) { + thisSchemaDate = new Date(2014, 1, 19, 18, 15).getTime(); + + if (schemaDate < thisSchemaDate) { + updatesMade = true; + + if (Meta.config['motd']) { + db.setObjectField('widgets:home.tpl', 'motd', JSON.stringify([ + { + "widget": "html", + "data": { + "html": Meta.config['motd'] + } + } + ]), function(err) { + Meta.configs.remove('motd'); + Meta.configs.remove('motd_class'); + Meta.configs.remove('show_motd'); + + winston.info('[2014/2/19] Updated MOTD to use the HTML widget.'); + next(err); + }); + } else { + winston.info('[2014/2/19] Updating MOTD to use the HTML widget - skipped'); + next(); + } + + } else { + winston.info('[2014/2/19] Updating MOTD to use the HTML widget - skipped'); + next(); + } } // Add new schema updates here // IMPORTANT: REMEMBER TO UPDATE VALUE OF latestSchema IN LINE 17!!!