mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-12 16:14:25 +03:00
f92c62b59a
refs https://github.com/TryGhost/Team/issues/1734 refs https://github.com/TryGhost/Team/issues/559 refs https://github.com/TryGhost/Ghost/issues/14101 - switches to newer modal patterns ready for later Ember upgrades - migrated Zapier controller to native class syntax - fixed regeneration confirmation text not being visible on Zapier screen
166 lines
4.3 KiB
JavaScript
166 lines
4.3 KiB
JavaScript
import Controller from '@ember/controller';
|
|
import DeleteIntegrationModal from '../../components/settings/integrations/delete-integration-modal';
|
|
import DeleteWebhookModal from '../../components/settings/integrations/delete-webhook-modal';
|
|
import RegenerateKeyModal from '../../components/settings/integrations/regenerate-key-modal';
|
|
import config from 'ghost-admin/config/environment';
|
|
import copyTextToClipboard from 'ghost-admin/utils/copy-text-to-clipboard';
|
|
import {
|
|
IMAGE_EXTENSIONS,
|
|
IMAGE_MIME_TYPES
|
|
} from 'ghost-admin/components/gh-image-uploader';
|
|
import {action} from '@ember/object';
|
|
import {htmlSafe} from '@ember/template';
|
|
import {inject} from 'ghost-admin/decorators/inject';
|
|
import {inject as service} from '@ember/service';
|
|
import {task, timeout} from 'ember-concurrency';
|
|
import {tracked} from '@glimmer/tracking';
|
|
|
|
export default class IntegrationController extends Controller {
|
|
@service ghostPaths;
|
|
@service modals;
|
|
|
|
@inject config;
|
|
|
|
imageExtensions = IMAGE_EXTENSIONS;
|
|
imageMimeTypes = IMAGE_MIME_TYPES;
|
|
|
|
@tracked regeneratedApiKey = null;
|
|
|
|
constructor() {
|
|
super(...arguments);
|
|
if (this.isTesting === undefined) {
|
|
this.isTesting = config.environment === 'test';
|
|
}
|
|
}
|
|
|
|
get integration() {
|
|
return this.model;
|
|
}
|
|
|
|
get apiUrl() {
|
|
let origin = window.location.origin;
|
|
let subdir = this.ghostPaths.subdir;
|
|
let url = this.ghostPaths.url.join(origin, subdir);
|
|
|
|
return url.replace(/\/$/, '');
|
|
}
|
|
|
|
get allWebhooks() {
|
|
return this.store.peekAll('webhook');
|
|
}
|
|
|
|
get filteredWebhooks() {
|
|
return this.allWebhooks.filter((webhook) => {
|
|
let matchesIntegration = webhook.belongsTo('integration').id() === this.integration.id;
|
|
|
|
return matchesIntegration
|
|
&& !webhook.isNew
|
|
&& !webhook.isDeleted;
|
|
});
|
|
}
|
|
|
|
get iconImageStyle() {
|
|
let url = this.integration.iconImage;
|
|
if (url) {
|
|
let styles = [
|
|
`background-image: url(${url})`,
|
|
'background-size: 50%',
|
|
'background-position: 50%',
|
|
'background-repeat: no-repeat'
|
|
];
|
|
return htmlSafe(styles.join('; '));
|
|
}
|
|
|
|
return htmlSafe('');
|
|
}
|
|
|
|
@action
|
|
triggerIconFileDialog(event) {
|
|
event.preventDefault();
|
|
let input = document.querySelector('input[type="file"][name="iconImage"]');
|
|
input.click();
|
|
}
|
|
|
|
@action
|
|
updateProperty(property, event) {
|
|
this.integration.set(property, event.target.value);
|
|
}
|
|
|
|
@action
|
|
validateProperty(property) {
|
|
this.integration.validate({property});
|
|
}
|
|
|
|
@action
|
|
setIconImage([image]) {
|
|
this.integration.set('iconImage', image.url);
|
|
}
|
|
|
|
@action
|
|
save() {
|
|
return this.saveTask.perform();
|
|
}
|
|
|
|
@action
|
|
confirmIntegrationDeletion(event) {
|
|
event?.preventDefault();
|
|
return this.modals.open(DeleteIntegrationModal, {
|
|
integration: this.integration
|
|
});
|
|
}
|
|
|
|
@action
|
|
async confirmRegenerateKey(apiKey, event) {
|
|
event?.preventDefault();
|
|
this.regeneratedApiKey = null;
|
|
this.regeneratedApiKey = await this.modals.open(RegenerateKeyModal, {
|
|
apiKey,
|
|
integration: this.integration
|
|
});
|
|
}
|
|
|
|
@action
|
|
confirmWebhookDeletion(webhook, event) {
|
|
event?.preventDefault();
|
|
return this.modals.open(DeleteWebhookModal, {webhook});
|
|
}
|
|
|
|
@action
|
|
deleteWebhook(event) {
|
|
event?.preventDefault();
|
|
return this.webhookToDelete.destroyRecord();
|
|
}
|
|
|
|
@task
|
|
*saveTask() {
|
|
try {
|
|
return yield this.integration.save();
|
|
} catch (e) {
|
|
if (e === undefined) {
|
|
// validation error
|
|
return false;
|
|
}
|
|
|
|
throw e;
|
|
}
|
|
}
|
|
|
|
@task
|
|
*copyContentKey() {
|
|
copyTextToClipboard(this.integration.contentKey.secret);
|
|
yield timeout(this.isTesting ? 50 : 3000);
|
|
}
|
|
|
|
@task
|
|
*copyAdminKey() {
|
|
copyTextToClipboard(this.integration.adminKey.secret);
|
|
yield timeout(this.isTesting ? 50 : 3000);
|
|
}
|
|
|
|
@task
|
|
*copyApiUrl() {
|
|
copyTextToClipboard(this.apiUrl);
|
|
yield timeout(this.isTesting ? 50 : 3000);
|
|
}
|
|
}
|