2018-06-15 10:03:24 -05:00
|
|
|
import { ajax } from "discourse/lib/ajax";
|
|
|
|
import computed from "ember-addons/ember-computed-decorators";
|
2016-08-03 09:13:02 -05:00
|
|
|
|
2015-11-20 19:27:06 -06:00
|
|
|
const VersionCheck = Discourse.Model.extend({
|
2018-06-15 10:03:24 -05:00
|
|
|
@computed("updated_at")
|
2016-08-03 09:13:02 -05:00
|
|
|
noCheckPerformed(updatedAt) {
|
|
|
|
return updatedAt === null;
|
|
|
|
},
|
|
|
|
|
2018-06-15 10:03:24 -05:00
|
|
|
@computed("missing_versions_count")
|
2016-08-03 09:13:02 -05:00
|
|
|
upToDate(missingVersionsCount) {
|
|
|
|
return missingVersionsCount === 0 || missingVersionsCount === null;
|
|
|
|
},
|
|
|
|
|
2018-06-15 10:03:24 -05:00
|
|
|
@computed("missing_versions_count")
|
2016-08-03 09:13:02 -05:00
|
|
|
behindByOneVersion(missingVersionsCount) {
|
|
|
|
return missingVersionsCount === 1;
|
|
|
|
},
|
|
|
|
|
2018-06-15 10:03:24 -05:00
|
|
|
@computed("git_branch", "installed_sha")
|
2016-08-03 09:13:02 -05:00
|
|
|
gitLink(gitBranch, installedSHA) {
|
|
|
|
if (gitBranch) {
|
|
|
|
return `https://github.com/discourse/discourse/compare/${installedSHA}...${gitBranch}`;
|
|
|
|
} else {
|
|
|
|
return `https://github.com/discourse/discourse/tree/${installedSHA}`;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-06-15 10:03:24 -05:00
|
|
|
@computed("installed_sha")
|
2016-08-03 09:13:02 -05:00
|
|
|
shortSha(installedSHA) {
|
|
|
|
return installedSHA.substr(0, 10);
|
|
|
|
}
|
2013-02-22 14:41:12 -06:00
|
|
|
});
|
2013-02-21 14:03:43 -06:00
|
|
|
|
2015-11-20 19:27:06 -06:00
|
|
|
VersionCheck.reopenClass({
|
2016-08-03 09:13:02 -05:00
|
|
|
find() {
|
2018-06-15 10:03:24 -05:00
|
|
|
return ajax("/admin/version_check").then(json => VersionCheck.create(json));
|
2013-02-22 14:41:12 -06:00
|
|
|
}
|
2013-03-14 07:01:52 -05:00
|
|
|
});
|
2015-11-20 19:27:06 -06:00
|
|
|
|
|
|
|
export default VersionCheck;
|