2018-06-15 23:03:24 +08:00
|
|
|
import { ajax } from "discourse/lib/ajax";
|
|
|
|
import computed from "ember-addons/ember-computed-decorators";
|
2016-08-03 22:13:02 +08:00
|
|
|
|
2015-11-21 09:27:06 +08:00
|
|
|
const VersionCheck = Discourse.Model.extend({
|
2018-06-15 23:03:24 +08:00
|
|
|
@computed("updated_at")
|
2016-08-03 22:13:02 +08:00
|
|
|
noCheckPerformed(updatedAt) {
|
|
|
|
return updatedAt === null;
|
|
|
|
},
|
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
@computed("missing_versions_count")
|
2016-08-03 22:13:02 +08:00
|
|
|
upToDate(missingVersionsCount) {
|
|
|
|
return missingVersionsCount === 0 || missingVersionsCount === null;
|
|
|
|
},
|
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
@computed("missing_versions_count")
|
2016-08-03 22:13:02 +08:00
|
|
|
behindByOneVersion(missingVersionsCount) {
|
|
|
|
return missingVersionsCount === 1;
|
|
|
|
},
|
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
@computed("git_branch", "installed_sha")
|
2016-08-03 22:13:02 +08:00
|
|
|
gitLink(gitBranch, installedSHA) {
|
2019-09-11 04:38:23 +08:00
|
|
|
if (gitBranch && installedSHA) {
|
2016-08-03 22:13:02 +08:00
|
|
|
return `https://github.com/discourse/discourse/compare/${installedSHA}...${gitBranch}`;
|
2019-09-11 04:38:23 +08:00
|
|
|
} else if (installedSHA) {
|
2016-08-03 22:13:02 +08:00
|
|
|
return `https://github.com/discourse/discourse/tree/${installedSHA}`;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
@computed("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() {
|
2018-06-15 23:03:24 +08:00
|
|
|
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;
|