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