feat(discord): add auth
This commit is contained in:
12
packages/backend/src/apps/discord/common/add-auth-header.ts
Normal file
12
packages/backend/src/apps/discord/common/add-auth-header.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import { TBeforeRequest } from '@automatisch/types';
|
||||
|
||||
const addAuthHeader: TBeforeRequest = ($, requestConfig) => {
|
||||
const { tokenType, accessToken } = $.auth.data;
|
||||
if (tokenType && accessToken) {
|
||||
requestConfig.headers.Authorization = `${tokenType} ${accessToken}`;
|
||||
}
|
||||
|
||||
return requestConfig;
|
||||
};
|
||||
|
||||
export default addAuthHeader;
|
10
packages/backend/src/apps/discord/common/get-current-user.ts
Normal file
10
packages/backend/src/apps/discord/common/get-current-user.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
import { IGlobalVariable, IJSONObject } from '@automatisch/types';
|
||||
|
||||
const getCurrentUser = async ($: IGlobalVariable): Promise<IJSONObject> => {
|
||||
const response = await $.http.get('/users/@me');
|
||||
const currentUser = response.data;
|
||||
|
||||
return currentUser;
|
||||
};
|
||||
|
||||
export default getCurrentUser;
|
3
packages/backend/src/apps/discord/common/scopes.ts
Normal file
3
packages/backend/src/apps/discord/common/scopes.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
const scopes = ['identify', 'email'];
|
||||
|
||||
export default scopes;
|
Reference in New Issue
Block a user