feat(xero): add xero integration

This commit is contained in:
Rıdvan Akca
2023-11-08 14:46:44 +03:00
parent 373d29eeab
commit 9200e1011b
13 changed files with 242 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
import { IField, IGlobalVariable } from '@automatisch/types';
import { URLSearchParams } from 'url';
import authScope from '../common/auth-scope';
export default async function generateAuthUrl($: IGlobalVariable) {
const oauthRedirectUrlField = $.app.auth.fields.find(
(field: IField) => field.key == 'oAuthRedirectUrl'
);
const redirectUri = oauthRedirectUrlField.value as string;
const searchParams = new URLSearchParams({
response_type: 'code',
client_id: $.auth.data.clientId as string,
scope: authScope.join(' '),
redirect_uri: redirectUri,
});
const url = `https://login.xero.com/identity/connect/authorize?${searchParams.toString()}`;
await $.auth.set({
url,
});
}