mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 08:31:43 +03:00
bdab32d30a
refs https://github.com/TryGhost/Team/issues/728 - Passing only the necessary API endpoint function makes it easier to reason about what dependencies the UpdateCheckService has to deal with - The instance initialization had to be moved insided the module's exports to resolve "models" module initialization failure
51 lines
1.4 KiB
JavaScript
51 lines
1.4 KiB
JavaScript
const _ = require('lodash');
|
|
|
|
const api = require('./api').v2;
|
|
const GhostMailer = require('./services/mail').GhostMailer;
|
|
const config = require('../shared/config');
|
|
const urlUtils = require('./../shared/url-utils');
|
|
|
|
const i18n = require('../shared/i18n');
|
|
const logging = require('../shared/logging');
|
|
const request = require('./lib/request');
|
|
const ghostVersion = require('./lib/ghost-version');
|
|
const UpdateCheckService = require('./update-check-service');
|
|
|
|
const ghostMailer = new GhostMailer();
|
|
let updateChecker;
|
|
|
|
module.exports = () => {
|
|
const allowedCheckEnvironments = ['development', 'production'];
|
|
|
|
// CASE: The check will not happen if your NODE_ENV is not in the allowed defined environments.
|
|
if (_.indexOf(allowedCheckEnvironments, process.env.NODE_ENV) === -1) {
|
|
return;
|
|
}
|
|
|
|
if (updateChecker === undefined) {
|
|
updateChecker = new UpdateCheckService({
|
|
api: {
|
|
settings: {
|
|
read: api.settings.read,
|
|
edit: api.settings.edit
|
|
},
|
|
posts: {
|
|
browse: api.posts.browse
|
|
},
|
|
users: {
|
|
browse: api.users.browse
|
|
}
|
|
},
|
|
config,
|
|
i18n,
|
|
logging,
|
|
urlUtils,
|
|
request,
|
|
ghostVersion,
|
|
ghostMailer
|
|
});
|
|
}
|
|
|
|
updateChecker.check();
|
|
};
|