feat: Convert all app files to JS

This commit is contained in:
Faruk AYDIN
2024-01-05 17:44:21 +01:00
parent b95478b635
commit 43dba351c3
1030 changed files with 5114 additions and 6436 deletions

View File

@@ -1,17 +1,16 @@
import { IField, IGlobalVariable } from '@automatisch/types';
import { URLSearchParams } from 'url';
import authScope from '../common/auth-scope';
import authScope from '../common/auth-scope.js';
export default async function generateAuthUrl($: IGlobalVariable) {
export default async function generateAuthUrl($) {
const oauthRedirectUrlField = $.app.auth.fields.find(
(field: IField) => field.key == 'oAuthRedirectUrl'
(field) => field.key == 'oAuthRedirectUrl'
);
const redirectUri = oauthRedirectUrlField.value as string;
const redirectUri = oauthRedirectUrlField.value;
const searchParams = new URLSearchParams({
response_type: 'code',
redirect_uri: redirectUri,
client_id: $.auth.data.clientId as string,
client_id: $.auth.data.clientId,
scope: authScope.join(' '),
});

View File

@@ -1,13 +1,13 @@
import generateAuthUrl from './generate-auth-url';
import verifyCredentials from './verify-credentials';
import isStillVerified from './is-still-verified';
import generateAuthUrl from './generate-auth-url.js';
import verifyCredentials from './verify-credentials.js';
import isStillVerified from './is-still-verified.js';
export default {
fields: [
{
key: 'oAuthRedirectUrl',
label: 'OAuth Redirect URL',
type: 'string' as const,
type: 'string',
required: true,
readOnly: true,
value: '{WEB_APP_URL}/app/zendesk/connections/add',
@@ -18,7 +18,7 @@ export default {
{
key: 'instanceUrl',
label: 'Zendesk Subdomain Url',
type: 'string' as const,
type: 'string',
required: true,
readOnly: false,
value: null,
@@ -28,7 +28,7 @@ export default {
{
key: 'clientId',
label: 'Client ID',
type: 'string' as const,
type: 'string',
required: true,
readOnly: false,
value: null,
@@ -39,7 +39,7 @@ export default {
{
key: 'clientSecret',
label: 'Client Secret',
type: 'string' as const,
type: 'string',
required: true,
readOnly: false,
value: null,

View File

@@ -0,0 +1,8 @@
import getCurrentUser from '../common/get-current-user.js';
const isStillVerified = async ($) => {
await getCurrentUser($);
return true;
};
export default isStillVerified;

View File

@@ -1,9 +0,0 @@
import { IGlobalVariable } from '@automatisch/types';
import getCurrentUser from '../common/get-current-user';
const isStillVerified = async ($: IGlobalVariable) => {
await getCurrentUser($);
return true;
};
export default isStillVerified;

View File

@@ -1,13 +1,12 @@
import { IGlobalVariable, IJSONValue, IField } from '@automatisch/types';
import getCurrentUser from '../common/get-current-user';
import scopes from '../common/auth-scope';
import getCurrentUser from '../common/get-current-user.js';
import scopes from '../common/auth-scope.js';
const verifyCredentials = async ($: IGlobalVariable) => {
const verifyCredentials = async ($) => {
await getAccessToken($);
const user = await getCurrentUser($);
const subdomain = extractSubdomain($.auth.data.instanceUrl);
const name = user.name as string;
const name = user.name;
const screenName = [name, subdomain].filter(Boolean).join(' @ ');
await $.auth.set({
@@ -18,19 +17,19 @@ const verifyCredentials = async ($: IGlobalVariable) => {
});
};
const getAccessToken = async ($: IGlobalVariable) => {
const getAccessToken = async ($) => {
const oauthRedirectUrlField = $.app.auth.fields.find(
(field: IField) => field.key == 'oAuthRedirectUrl'
(field) => field.key == 'oAuthRedirectUrl'
);
const redirectUri = oauthRedirectUrlField.value as string;
const redirectUri = oauthRedirectUrlField.value;
const response = await $.http.post(`/oauth/tokens`, {
redirect_uri: redirectUri,
code: $.auth.data.code,
grant_type: 'authorization_code',
scope: scopes.join(' '),
client_id: $.auth.data.clientId as string,
client_secret: $.auth.data.clientSecret as string,
client_id: $.auth.data.clientId,
client_secret: $.auth.data.clientSecret,
});
const data = response.data;
@@ -45,8 +44,8 @@ const getAccessToken = async ($: IGlobalVariable) => {
});
};
function extractSubdomain(url: IJSONValue) {
const match = (url as string).match(/https:\/\/(.*?)\.zendesk\.com/);
function extractSubdomain(url) {
const match = url.match(/https:\/\/(.*?)\.zendesk\.com/);
if (match && match[1]) {
return match[1];
}