2017-07-27 11:07:05 +00:00
|
|
|
// Generated by CoffeeScript 1.12.7
|
2016-01-11 19:58:35 +00:00
|
|
|
|
|
|
|
/*
|
2017-06-14 21:20:15 +00:00
|
|
|
Copyright 2016-2017 Resin.io
|
2016-01-11 19:58:35 +00:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
2017-05-11 16:16:27 +00:00
|
|
|
var isRoot, notifier, packageJSON, resinUpdateInterval, updateNotifier;
|
2016-01-11 19:58:35 +00:00
|
|
|
|
2017-03-22 09:46:06 +00:00
|
|
|
updateNotifier = require('update-notifier');
|
2015-08-18 12:53:06 +00:00
|
|
|
|
2017-03-22 09:46:06 +00:00
|
|
|
isRoot = require('is-root');
|
2015-08-18 12:53:06 +00:00
|
|
|
|
2017-03-22 09:46:06 +00:00
|
|
|
packageJSON = require('../../package.json');
|
2015-08-20 20:54:22 +00:00
|
|
|
|
2017-05-11 16:16:27 +00:00
|
|
|
resinUpdateInterval = 1000 * 60 * 60 * 24 * 1;
|
|
|
|
|
2017-03-22 09:46:06 +00:00
|
|
|
if (!isRoot()) {
|
|
|
|
notifier = updateNotifier({
|
|
|
|
pkg: packageJSON,
|
2017-05-11 16:16:27 +00:00
|
|
|
updateCheckInterval: resinUpdateInterval
|
2017-03-22 09:46:06 +00:00
|
|
|
});
|
|
|
|
}
|
2015-08-18 12:53:06 +00:00
|
|
|
|
2017-03-22 09:46:06 +00:00
|
|
|
exports.hasAvailableUpdate = function() {
|
|
|
|
return notifier != null;
|
|
|
|
};
|
2015-08-18 12:53:06 +00:00
|
|
|
|
2017-03-22 09:46:06 +00:00
|
|
|
exports.notify = function() {
|
|
|
|
if (!exports.hasAvailableUpdate()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
notifier.notify({
|
|
|
|
defer: false
|
|
|
|
});
|
|
|
|
if (notifier.update != null) {
|
|
|
|
return console.log('Notice that you might need administrator privileges depending on your setup\n');
|
|
|
|
}
|
|
|
|
};
|