e5d097fbae
- @tryghost/adapter-manager@0.2.30 - @tryghost/api-version-compatibility-service@0.1.2 - @tryghost/bootstrap-socket@0.2.19 - @tryghost/config-url-helpers@0.1.7 - @tryghost/constants@1.0.4 - @tryghost/database-info@0.3.4 - @tryghost/email-content-generator@0.1.0 - @tryghost/image-transform@1.0.31 - @tryghost/job-manager@0.8.23 - @tryghost/limit-service@1.1.1 - @tryghost/minifier@0.1.14 - @tryghost/moleculer-service-from-class@0.2.25 - @tryghost/mw-api-version-mismatch@0.1.2 - @tryghost/mw-error-handler@0.2.3 - @tryghost/mw-session-from-token@0.1.31 - @tryghost/mw-update-user-last-seen@0.1.5 - @tryghost/package-json@1.0.20 - @tryghost/pretty-cli@1.2.26 - @tryghost/promise@0.1.17 - @tryghost/release-utils@0.7.14 - @tryghost/security@0.2.17 - @tryghost/session-service@0.1.41 - @tryghost/settings-path-manager@0.1.6 - @tryghost/update-check-service@0.3.3 - @tryghost/version-notifications-data-service@0.1.1 - @tryghost/vhost-middleware@1.0.25 - @tryghost/zip@1.1.24 |
||
---|---|---|
.. | ||
lib | ||
test | ||
.eslintrc.js | ||
LICENSE | ||
package.json | ||
README.md |
Update Check Service
Makes a request to updates.ghost.org to check for release & custom notifications. The service is provided in return for users opting in to anonymous usage data collection.
Install
npm install @tryghost/update-check-service --save
or
yarn add @tryghost/update-check-service
Usage
Check the UpdateCheckService's constructor JSDoc for the list of available parameters. This is how the service is initialized in Ghost:
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('@tryghost/update-check-service');
const updateChecker = new UpdateCheckService({
api: {
settings: {
read: api.settings.read,
edit: api.settings.edit
},
posts: {
browse: api.posts.browse
},
users: {
browse: api.users.browse
},
notifications: {
add: api.notifications.add
}
},
config: {
mail: config.get('mail'),
env: config.get('env'),
databaseType: config.get('database').client,
checkEndpoint: config.get('updateCheck:url'),
isPrivacyDisabled: config.isPrivacyDisabled('useUpdateCheck'),
notificationGroups: config.get('notificationGroups'),
siteUrl: urlUtils.urlFor('home', true),
forceUpdate: config.get('updateCheck:forceUpdate'),
ghostVersion: ghostVersion.original
},
i18n,
logging,
request,
sendEmail: ghostMailer.send
});
// run the update check with
updateChecker.check();
Develop
This is a mono repository, managed with lerna.
Follow the instructions for the top-level repo.
git clone
this repo &cd
into it as usual- Run
yarn
to install top-level dependencies.
Run
yarn dev
Test
yarn lint
run just eslintyarn test
run lint and tests
Copyright & License
Copyright (c) 2013-2022 Ghost Foundation - Released under the MIT license.