mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
549ce23ce8
* All projects into monorepo * Update CI * More CI updates * Extracted a bunch of things into packages * Publish - insomnia-plugin-base64@1.0.1 - insomnia-plugin-default-headers@1.0.2 - insomnia-plugin-file@1.0.1 - insomnia-plugin-hash@1.0.1 - insomnia-plugin-now@1.0.1 - insomnia-plugin-request@1.0.1 - insomnia-plugin-response@1.0.1 - insomnia-plugin-uuid@1.0.1 - insomnia-cookies@0.0.2 - insomnia-importers@1.5.2 - insomnia-prettify@0.0.3 - insomnia-url@0.0.2 - insomnia-xpath@0.0.2 * A bunch of small fixes * Improved build script * Fixed * Merge dangling files * Usability refactor * Handle duplicate plugin names
70 lines
1.9 KiB
JavaScript
70 lines
1.9 KiB
JavaScript
// @flow
|
|
import * as c from './constants';
|
|
import {responseToObject} from './misc';
|
|
import {setDefaultProtocol} from 'insomnia-url';
|
|
import * as models from '../../models/index';
|
|
import {sendWithSettings} from '../network';
|
|
import {getBasicAuthHeader} from '../basic-auth/get-header';
|
|
|
|
export default async function (
|
|
requestId: string,
|
|
accessTokenUrl: string,
|
|
credentialsInBody: boolean,
|
|
clientId: string,
|
|
clientSecret: string,
|
|
refreshToken: string,
|
|
scope: string
|
|
): Promise<Object> {
|
|
const params = [
|
|
{name: c.P_GRANT_TYPE, value: c.GRANT_TYPE_REFRESH},
|
|
{name: c.P_REFRESH_TOKEN, value: refreshToken}
|
|
];
|
|
|
|
// Add optional params
|
|
scope && params.push({name: c.P_SCOPE, value: scope});
|
|
|
|
const headers = [
|
|
{name: 'Content-Type', value: 'application/x-www-form-urlencoded'},
|
|
{name: 'Accept', value: 'application/x-www-form-urlencoded, application/json'}
|
|
];
|
|
|
|
if (credentialsInBody) {
|
|
params.push({name: c.P_CLIENT_ID, value: clientId});
|
|
params.push({name: c.P_CLIENT_SECRET, value: clientSecret});
|
|
} else {
|
|
headers.push(getBasicAuthHeader(clientId, clientSecret));
|
|
}
|
|
|
|
const url = setDefaultProtocol(accessTokenUrl);
|
|
|
|
const response = await sendWithSettings(requestId, {
|
|
headers,
|
|
url,
|
|
method: 'POST',
|
|
body: models.request.newBodyFormUrlEncoded(params)
|
|
});
|
|
|
|
const statusCode = response.statusCode || 0;
|
|
if (statusCode < 200 || statusCode >= 300) {
|
|
throw new Error(`[oauth2] Failed to refresh token url=${url} status=${statusCode}`);
|
|
}
|
|
|
|
const bodyBuffer = models.response.getBodyBuffer(response);
|
|
if (!bodyBuffer) {
|
|
throw new Error(`[oauth2] No body returned from ${url}`);
|
|
}
|
|
|
|
const results = responseToObject(bodyBuffer.toString(), [
|
|
c.P_ACCESS_TOKEN,
|
|
c.P_REFRESH_TOKEN,
|
|
c.P_EXPIRES_IN,
|
|
c.P_TOKEN_TYPE,
|
|
c.P_SCOPE,
|
|
c.P_ERROR,
|
|
c.P_ERROR_URI,
|
|
c.P_ERROR_DESCRIPTION
|
|
]);
|
|
|
|
return results;
|
|
}
|