@ -1,12 +1,17 @@
'use strict' ;
'use strict' ;
var db = require ( '../../database' ) ;
var meta = require ( '../../meta' ) ;
var meta = require ( '../../meta' ) ;
module . exports = {
module . exports = {
name : 'Generate customHTML block from old customJS setting' ,
name : 'Generate customHTML block from old customJS setting' ,
timestamp : Date . UTC ( 2017 , 9 , 12 ) ,
timestamp : Date . UTC ( 2017 , 9 , 12 ) ,
method : function ( callback ) {
method : function ( callback ) {
var newHTML = meta . config . customJS ;
db . getObjectField ( 'config' , 'customJS' , function ( err , newHTML ) {
if ( err ) {
return callback ( err ) ;
}
var newJS = [ ] ;
var newJS = [ ] ;
// Forgive me for parsing HTML with regex...
// Forgive me for parsing HTML with regex...
@ -28,10 +33,13 @@ module.exports = {
// Combine newJS array
// Combine newJS array
newJS = newJS . join ( '\n\n' ) ;
newJS = newJS . join ( '\n\n' ) ;
console . log ( 'wut' , newJS , 'and' , newHTML ) ;
// Write both values to config
// Write both values to config
meta . configs . setMultiple ( {
meta . configs . setMultiple ( {
customHTML : newHTML ,
customHTML : newHTML ,
customJS : newJS ,
customJS : newJS ,
} , callback ) ;
} , callback ) ;
} ) ;
} ,
} ,
} ;
} ;