feat(disqus): add disqus integration
This commit is contained in:
15
packages/backend/src/apps/disqus/common/add-auth-header.js
Normal file
15
packages/backend/src/apps/disqus/common/add-auth-header.js
Normal file
@@ -0,0 +1,15 @@
|
||||
import { URLSearchParams } from 'url';
|
||||
|
||||
const addAuthHeader = ($, requestConfig) => {
|
||||
const params = new URLSearchParams({
|
||||
access_token: $.auth.data.accessToken,
|
||||
api_key: $.auth.data.apiKey,
|
||||
api_secret: $.auth.data.apiSecret,
|
||||
});
|
||||
|
||||
requestConfig.params = params;
|
||||
|
||||
return requestConfig;
|
||||
};
|
||||
|
||||
export default addAuthHeader;
|
3
packages/backend/src/apps/disqus/common/auth-scope.js
Normal file
3
packages/backend/src/apps/disqus/common/auth-scope.js
Normal file
@@ -0,0 +1,3 @@
|
||||
const authScope = ['read', 'write', 'admin', 'email'];
|
||||
|
||||
export default authScope;
|
10
packages/backend/src/apps/disqus/common/get-current-user.js
Normal file
10
packages/backend/src/apps/disqus/common/get-current-user.js
Normal file
@@ -0,0 +1,10 @@
|
||||
const getCurrentUser = async ($) => {
|
||||
try {
|
||||
const { data: currentUser } = await $.http.get('/3.0/users/details.json');
|
||||
return currentUser;
|
||||
} catch (error) {
|
||||
throw new Error('You are not authenticated.');
|
||||
}
|
||||
};
|
||||
|
||||
export default getCurrentUser;
|
Reference in New Issue
Block a user