mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 23:00:30 +00:00
d506e0b4c1
* Use Insomnia network stack for OAuth 2.0 requests * Fix zombie docs
63 lines
1.7 KiB
JavaScript
63 lines
1.7 KiB
JavaScript
// @flow
|
|
import * as c from './constants';
|
|
import {responseToObject} from './misc';
|
|
import {getBasicAuthHeader, setDefaultProtocol} from '../../common/misc';
|
|
import * as network from '../network';
|
|
import * as models from '../../models/index';
|
|
|
|
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, bodyBuffer} = await network.sendWithSettings(requestId, {
|
|
headers,
|
|
url,
|
|
method: 'POST',
|
|
body: models.request.newBodyFormUrlEncoded(params)
|
|
});
|
|
|
|
if (response.statusCode < 200 || response.statusCode >= 300) {
|
|
throw new Error(`[oauth2] Failed to refresh token url=${url} status=${response.statusCode}`);
|
|
}
|
|
|
|
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;
|
|
}
|