mirror of
https://github.com/Kong/insomnia
synced 2024-11-12 17:26:32 +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
47 lines
1.3 KiB
JavaScript
47 lines
1.3 KiB
JavaScript
// @flow
|
|
import * as c from './constants';
|
|
import {buildQueryStringFromParams, joinUrlAndQueryString} from 'insomnia-url';
|
|
import {responseToObject, authorizeUserInWindow} from './misc';
|
|
|
|
export default async function (
|
|
requestId: string,
|
|
authorizationUrl: string,
|
|
clientId: string,
|
|
redirectUri: string = '',
|
|
scope: string = '',
|
|
state: string = ''
|
|
): Promise<Object> {
|
|
const params = [
|
|
{name: c.P_RESPONSE_TYPE, value: c.RESPONSE_TYPE_TOKEN},
|
|
{name: c.P_CLIENT_ID, value: clientId}
|
|
];
|
|
|
|
// Add optional params
|
|
redirectUri && params.push({name: c.P_REDIRECT_URI, value: redirectUri});
|
|
scope && params.push({name: c.P_SCOPE, value: scope});
|
|
state && params.push({name: c.P_STATE, value: state});
|
|
|
|
// Add query params to URL
|
|
const qs = buildQueryStringFromParams(params);
|
|
const finalUrl = joinUrlAndQueryString(authorizationUrl, qs);
|
|
|
|
const redirectedTo = await authorizeUserInWindow(finalUrl, /(access_token=|error=)/);
|
|
const fragment = redirectedTo.split('#')[1];
|
|
|
|
if (fragment) {
|
|
return responseToObject(fragment, [
|
|
c.P_ACCESS_TOKEN,
|
|
c.P_TOKEN_TYPE,
|
|
c.P_EXPIRES_IN,
|
|
c.P_SCOPE,
|
|
c.P_STATE,
|
|
c.P_ERROR,
|
|
c.P_ERROR_DESCRIPTION,
|
|
c.P_ERROR_URI
|
|
]);
|
|
} else {
|
|
// Bad redirect
|
|
return {};
|
|
}
|
|
}
|