Ghost-Admin/app/services/config.js

57 lines
1.7 KiB
JavaScript

import Ember from 'ember';
import Service from '@ember/service';
import {assign} from '@ember/polyfills';
import {computed} from '@ember/object';
import {inject as injectService} from '@ember/service';
// ember-cli-shims doesn't export _ProxyMixin
const {_ProxyMixin} = Ember;
export default Service.extend(_ProxyMixin, {
ajax: injectService(),
ghostPaths: injectService(),
content: {},
fetch() {
let configUrl = this.get('ghostPaths.url').api('configuration');
return this.get('ajax').request(configUrl).then((publicConfig) => {
// normalize blogUrl to non-trailing-slash
let [{blogUrl}] = publicConfig.configuration;
publicConfig.configuration[0].blogUrl = blogUrl.replace(/\/$/, '');
this.set('content', publicConfig.configuration[0]);
});
},
fetchPrivate() {
let privateConfigUrl = this.get('ghostPaths.url').api('configuration', 'private');
return this.get('ajax').request(privateConfigUrl).then((privateConfig) => {
assign(this.get('content'), privateConfig.configuration[0]);
});
},
availableTimezones: computed(function () {
let timezonesUrl = this.get('ghostPaths.url').api('configuration', 'timezones');
return this.get('ajax').request(timezonesUrl).then((configTimezones) => {
let [timezonesObj] = configTimezones.configuration;
timezonesObj = timezonesObj.timezones;
return timezonesObj;
});
}),
blogDomain: computed('blogUrl', function () {
let blogUrl = this.get('blogUrl');
let blogDomain = blogUrl
.replace(/^https?:\/\//, '')
.replace(/\/?$/, '');
return blogDomain;
})
});