mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
1d06439633
- if we're running a pre-release, we haven't released it on GitHub so Admin shouldn't provide a link to it - instead of pulling in `semver`, I've just gone for the simpler method of looking for the pre-release string identifier
50 lines
1.3 KiB
JavaScript
50 lines
1.3 KiB
JavaScript
import Controller from '@ember/controller';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
export default class WhatsNewController extends Controller {
|
|
@service config;
|
|
@service upgradeStatus;
|
|
@service whatsNew;
|
|
|
|
queryParams = ['entry'];
|
|
|
|
get copyrightYear() {
|
|
const date = new Date();
|
|
return date.getFullYear();
|
|
}
|
|
|
|
get linkToGitHubReleases() {
|
|
// Don't link to GitHub Releases if the version contains the
|
|
// pre-release identifier
|
|
return !this.config.get('version').includes('-pre.');
|
|
}
|
|
|
|
get showSystemInfo() {
|
|
const isPro = !!this.config.get('hostSettings')?.siteId;
|
|
|
|
// Don't show any system info for Pro
|
|
if (isPro) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
get showDatabaseWarning() {
|
|
const isProduction = !!this.config.get('environment').match?.(/production/i);
|
|
const database = this.config.get('database');
|
|
|
|
// Show a warning if we're in production and not using MySQL 8
|
|
if (isProduction && database !== 'mysql8') {
|
|
return true;
|
|
}
|
|
|
|
// Show a warning if we're in development and using MySQL 5
|
|
if (!isProduction && database === 'mysql5') {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}
|