2019-11-09 03:13:35 +08:00
|
|
|
import EmberObject from "@ember/object";
|
2016-07-01 01:55:44 +08:00
|
|
|
import { ajax } from "discourse/lib/ajax";
|
2019-11-08 05:38:28 +08:00
|
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
2016-08-03 22:13:02 +08:00
|
|
|
|
2019-11-09 03:13:35 +08:00
|
|
|
const VersionCheck = EmberObject.extend({
|
2019-11-08 05:38:28 +08:00
|
|
|
@discourseComputed("updated_at")
|
2016-08-03 22:13:02 +08:00
|
|
|
noCheckPerformed(updatedAt) {
|
|
|
|
return updatedAt === null;
|
|
|
|
},
|
|
|
|
|
2019-11-08 05:38:28 +08:00
|
|
|
@discourseComputed("missing_versions_count")
|
2016-08-03 22:13:02 +08:00
|
|
|
upToDate(missingVersionsCount) {
|
|
|
|
return missingVersionsCount === 0 || missingVersionsCount === null;
|
|
|
|
},
|
|
|
|
|
2019-11-08 05:38:28 +08:00
|
|
|
@discourseComputed("missing_versions_count")
|
2016-08-03 22:13:02 +08:00
|
|
|
behindByOneVersion(missingVersionsCount) {
|
|
|
|
return missingVersionsCount === 1;
|
|
|
|
},
|
|
|
|
|
2019-11-08 05:38:28 +08:00
|
|
|
@discourseComputed("installed_sha")
|
2019-10-18 03:08:43 +08:00
|
|
|
gitLink(installedSHA) {
|
|
|
|
if (installedSHA) {
|
|
|
|
return `https://github.com/discourse/discourse/commits/${installedSHA}`;
|
2016-08-03 22:13:02 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2019-11-08 05:38:28 +08:00
|
|
|
@discourseComputed("installed_sha")
|
2016-08-03 22:13:02 +08:00
|
|
|
shortSha(installedSHA) {
|
2019-09-11 04:38:23 +08:00
|
|
|
if (installedSHA) {
|
|
|
|
return installedSHA.substr(0, 10);
|
|
|
|
}
|
2016-08-03 22:13:02 +08:00
|
|
|
},
|
2013-02-23 04:41:12 +08:00
|
|
|
});
|
2013-02-22 04:03:43 +08:00
|
|
|
|
2015-11-21 09:27:06 +08:00
|
|
|
VersionCheck.reopenClass({
|
2016-08-03 22:13:02 +08:00
|
|
|
find() {
|
|
|
|
return ajax("/admin/version_check").then((json) =>
|
|
|
|
VersionCheck.create(json)
|
|
|
|
);
|
2013-02-23 04:41:12 +08:00
|
|
|
},
|
2013-03-14 20:01:52 +08:00
|
|
|
});
|
2015-11-21 09:27:06 +08:00
|
|
|
|
|
|
|
export default VersionCheck;
|