mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-12 16:14:25 +03:00
9bdb25d184
refs https://github.com/TryGhost/Team/issues/2110 - dynamically defined properties on the config service did not have autotracking set up properly if they were accessed in any way before the property was defined, this caused problems in a number of areas because we have both "unauthed" and "authed" sets of config and when not logged in we had parts of the app checking for authed config properties that don't exist until after sign-in and subsequent config re-fetch - renamed `config` service to `configManager` and updated to only contain methods for fetching config data - added a `config` instance initializer that sets up a `TrackedObject` instance with some custom properties/methods and registers it on `config:main` - uses application instance initializer rather than a standard initializer because standard initializers are only called once when setting up the test suite so we'd end up with config leaking across tests - added an `@inject` decorator that when used takes the property name and injects whatever is registered at `${propertyName}:main`, this allows us to use dependency injection for any object rather than just services or controllers - using `application.inject()` in the initializer was initially used but that only works for objects that extend from `EmberObject`, the injections weren't available in native-class glimmer components so this decorator keeps the injection syntax consistent - swapped all `@service config` uses to `@inject config`
54 lines
1.7 KiB
JavaScript
54 lines
1.7 KiB
JavaScript
import Controller from '@ember/controller';
|
|
import {inject} from 'ghost-admin/decorators/inject';
|
|
import {inject as service} from '@ember/service';
|
|
import {task} from 'ember-concurrency';
|
|
|
|
export default class IntegrationsController extends Controller {
|
|
@service settings;
|
|
@service store;
|
|
|
|
@inject config;
|
|
|
|
_allIntegrations = this.store.peekAll('integration');
|
|
|
|
get zapierDisabled() {
|
|
return this.config.hostSettings?.limits?.customIntegrations?.disabled;
|
|
}
|
|
|
|
// filter over the live query so that the list is automatically updated
|
|
// as integrations are added/removed
|
|
get integrations() {
|
|
return this._allIntegrations.reject((integration) => {
|
|
return integration.isNew || integration.type !== 'custom';
|
|
});
|
|
}
|
|
|
|
// use ember-concurrency so that we can use the derived state to show
|
|
// a spinner only in the integrations list and avoid delaying the whole
|
|
// screen display
|
|
@task
|
|
*fetchIntegrations() {
|
|
return yield this.store.findAll('integration');
|
|
}
|
|
|
|
// used by individual integration routes' `model` hooks
|
|
integrationModelHook(prop, value, route, transition) {
|
|
let preloadedIntegration = this.store.peekAll('integration').findBy(prop, value);
|
|
|
|
if (preloadedIntegration) {
|
|
return preloadedIntegration;
|
|
}
|
|
|
|
return this.fetchIntegrations.perform().then((integrations) => {
|
|
let integration = integrations.findBy(prop, value);
|
|
|
|
if (!integration) {
|
|
let path = transition.intent.url.replace(/^\//, '');
|
|
return route.replaceWith('error404', {path, status: 404});
|
|
}
|
|
|
|
return integration;
|
|
});
|
|
}
|
|
}
|