Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 12:22:54 +01:00
64 Zeilen
1,8 KiB
JavaScript
64 Zeilen
1,8 KiB
JavaScript
import { ajax } from 'discourse/lib/ajax';
|
|
import { default as discourseComputed } from 'discourse-common/utils/decorators';
|
|
import EmberObject from "@ember/object";
|
|
import { A } from "@ember/array";
|
|
|
|
const CustomWizardApi = EmberObject.extend({
|
|
@discourseComputed('name')
|
|
redirectUri(name) {
|
|
let nameParam = name.toString().dasherize();
|
|
const baseUrl = location.protocol+'//'+location.hostname+(location.port ? ':'+location.port: '');
|
|
return baseUrl + `/admin/wizards/apis/${nameParam}/redirect`;
|
|
}
|
|
});
|
|
|
|
CustomWizardApi.reopenClass({
|
|
create(params = {}) {
|
|
const api = this._super.apply(this);
|
|
const authorization = params.authorization || {};
|
|
const endpoints = params.endpoints;
|
|
|
|
api.setProperties({
|
|
name: params.name,
|
|
title: params.title,
|
|
originalTitle: params.title,
|
|
authType: authorization.auth_type,
|
|
authUrl: authorization.auth_url,
|
|
tokenUrl: authorization.token_url,
|
|
clientId: authorization.client_id,
|
|
clientSecret: authorization.client_secret,
|
|
username: authorization.username,
|
|
password: authorization.password,
|
|
authParams: A(authorization.auth_params),
|
|
authorized: authorization.authorized,
|
|
accessToken: authorization.access_token,
|
|
refreshToken: authorization.refresh_token,
|
|
code: authorization.code,
|
|
tokenExpiresAt: authorization.token_expires_at,
|
|
tokenRefreshAt: authorization.token_refresh_at,
|
|
endpoints: A(endpoints),
|
|
isNew: params.isNew,
|
|
log: params.log
|
|
});
|
|
|
|
return api;
|
|
},
|
|
|
|
find(name) {
|
|
return ajax(`/admin/wizards/apis/${name}`, {
|
|
type: 'GET'
|
|
}).then(result => {
|
|
return CustomWizardApi.create(result);
|
|
});
|
|
},
|
|
|
|
list() {
|
|
return ajax("/admin/wizards/apis", {
|
|
type: 'GET'
|
|
}).then(result => {
|
|
return result;
|
|
});
|
|
}
|
|
});
|
|
|
|
export default CustomWizardApi;
|