2017-06-08 00:10:44 +05:30
|
|
|
/* eslint camelcase: off */
|
2016-07-27 23:57:21 +05:30
|
|
|
import request from 'services/request';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
validate(oauthData) {
|
|
|
|
return request.get(
|
2016-07-28 01:15:50 +05:30
|
|
|
'/api/oauth2/v1/validate',
|
2016-07-27 23:57:21 +05:30
|
|
|
getOAuthRequest(oauthData)
|
|
|
|
).catch(handleOauthParamsValidation);
|
|
|
|
},
|
|
|
|
|
|
|
|
complete(oauthData, params = {}) {
|
|
|
|
const query = request.buildQuery(getOAuthRequest(oauthData));
|
|
|
|
|
|
|
|
return request.post(
|
2016-07-28 01:15:50 +05:30
|
|
|
`/api/oauth2/v1/complete?${query}`,
|
2016-07-27 23:57:21 +05:30
|
|
|
typeof params.accept === 'undefined' ? {} : {accept: params.accept}
|
|
|
|
).catch((resp = {}) => {
|
|
|
|
if (resp.statusCode === 401 && resp.error === 'access_denied') {
|
|
|
|
// user declined permissions
|
|
|
|
return {
|
|
|
|
success: false,
|
|
|
|
redirectUri: resp.redirectUri
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
if (resp.status === 401 && resp.name === 'Unauthorized') {
|
|
|
|
const error = new Error('Unauthorized');
|
|
|
|
error.unauthorized = true;
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (resp.statusCode === 401 && resp.error === 'accept_required') {
|
|
|
|
const error = new Error('Permissions accept required');
|
|
|
|
error.acceptRequired = true;
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
|
|
|
|
return handleOauthParamsValidation(resp);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
2016-08-23 10:00:06 +05:30
|
|
|
/**
|
|
|
|
* @param {object} oauthData
|
|
|
|
* @param {string} oauthData.clientId
|
|
|
|
* @param {string} oauthData.redirectUrl
|
|
|
|
* @param {string} oauthData.responseType
|
|
|
|
* @param {string} oauthData.description
|
|
|
|
* @param {string} oauthData.scope
|
|
|
|
* @param {string} oauthData.state
|
|
|
|
*
|
|
|
|
* @return {object}
|
|
|
|
*/
|
2016-07-27 23:57:21 +05:30
|
|
|
function getOAuthRequest(oauthData) {
|
|
|
|
return {
|
|
|
|
client_id: oauthData.clientId,
|
|
|
|
redirect_uri: oauthData.redirectUrl,
|
|
|
|
response_type: oauthData.responseType,
|
2016-08-23 10:00:06 +05:30
|
|
|
description: oauthData.description,
|
2016-07-27 23:57:21 +05:30
|
|
|
scope: oauthData.scope,
|
2016-11-19 20:11:15 +05:30
|
|
|
prompt: oauthData.prompt,
|
|
|
|
login_hint: oauthData.loginHint,
|
2016-07-27 23:57:21 +05:30
|
|
|
state: oauthData.state
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleOauthParamsValidation(resp = {}) {
|
|
|
|
if (resp.statusCode === 400 && resp.error === 'invalid_request') {
|
2016-08-07 20:20:00 +05:30
|
|
|
resp.userMessage = `Invalid request (${resp.parameter} required).`;
|
2016-07-27 23:57:21 +05:30
|
|
|
} else if (resp.statusCode === 400 && resp.error === 'unsupported_response_type') {
|
2016-08-07 20:20:00 +05:30
|
|
|
resp.userMessage = `Invalid response type '${resp.parameter}'.`;
|
2016-07-27 23:57:21 +05:30
|
|
|
} else if (resp.statusCode === 400 && resp.error === 'invalid_scope') {
|
2016-08-07 20:20:00 +05:30
|
|
|
resp.userMessage = `Invalid scope '${resp.parameter}'.`;
|
2016-07-27 23:57:21 +05:30
|
|
|
} else if (resp.statusCode === 401 && resp.error === 'invalid_client') {
|
2016-08-07 20:20:00 +05:30
|
|
|
resp.userMessage = 'Can not find application you are trying to authorize.';
|
2016-07-27 23:57:21 +05:30
|
|
|
}
|
|
|
|
|
2016-08-07 20:20:00 +05:30
|
|
|
return Promise.reject(resp);
|
2016-07-27 23:57:21 +05:30
|
|
|
}
|