feat: Convert all app files to JS
This commit is contained in:
25
packages/backend/src/apps/reddit/auth/generate-auth-url.js
Normal file
25
packages/backend/src/apps/reddit/auth/generate-auth-url.js
Normal file
@@ -0,0 +1,25 @@
|
||||
import { URLSearchParams } from 'url';
|
||||
import authScope from '../common/auth-scope.js';
|
||||
|
||||
export default async function generateAuthUrl($) {
|
||||
const oauthRedirectUrlField = $.app.auth.fields.find(
|
||||
(field) => field.key == 'oAuthRedirectUrl'
|
||||
);
|
||||
const redirectUri = oauthRedirectUrlField.value;
|
||||
const state = Math.random().toString();
|
||||
const searchParams = new URLSearchParams({
|
||||
client_id: $.auth.data.clientId,
|
||||
response_type: 'code',
|
||||
redirect_uri: redirectUri,
|
||||
duration: 'permanent',
|
||||
scope: authScope.join(' '),
|
||||
state,
|
||||
});
|
||||
|
||||
const url = `https://www.reddit.com/api/v1/authorize?${searchParams.toString()}`;
|
||||
|
||||
await $.auth.set({
|
||||
url,
|
||||
originalState: state,
|
||||
});
|
||||
}
|
Reference in New Issue
Block a user