feat(hubspot): Implement generate auth url for OAuth

This commit is contained in:
Faruk AYDIN
2023-09-08 18:07:00 +02:00
parent aae88fe1ad
commit b12f39916f
3 changed files with 53 additions and 6 deletions

View File

@@ -0,0 +1,21 @@
import { IField, IGlobalVariable } from '@automatisch/types';
import { URLSearchParams } from 'url';
const scopes = ['crm.objects.contacts.read', 'crm.objects.contacts.write'];
export default async function generateAuthUrl($: IGlobalVariable) {
const oauthRedirectUrlField = $.app.auth.fields.find(
(field: IField) => field.key == 'oAuthRedirectUrl'
);
const callbackUrl = oauthRedirectUrlField.value as string;
const searchParams = new URLSearchParams({
client_id: $.auth.data.clientId as string,
redirect_uri: callbackUrl,
scope: scopes.join(' '),
});
const url = `https://app.hubspot.com/oauth/authorize?${searchParams.toString()}`;
await $.auth.set({ url });
}