Skip to content
This repository was archived by the owner on Sep 1, 2022. It is now read-only.

Commit 46f8602

Browse files
committed
feat(authentication): handle providers
Method to retrieve the connect provider URL Method to authenticate the user Closes #3
1 parent 18ff985 commit 46f8602

File tree

4 files changed

+104
-0
lines changed

4 files changed

+104
-0
lines changed

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@
5959
"@types/qs": "^6.5.1",
6060
"@types/sinon": "^4.3.1",
6161
"ava": "^1.0.0-beta.4",
62+
"browser-env": "^3.2.5",
6263
"codecov": "^3.0.0",
6364
"cz-conventional-changelog": "^2.1.0",
6465
"gh-pages": "^1.0.0",

src/lib/sdk.spec.ts

+70
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import anyTest, { TestInterface } from 'ava';
2+
import browserEnv from 'browser-env';
23
import * as sinon from 'sinon';
34
import Strapi from './sdk';
45

@@ -27,6 +28,8 @@ test('Create an instance', t => {
2728
'login',
2829
'forgotPassword',
2930
'resetPassword',
31+
'getProviderAuthenticationUrl',
32+
'authenticateProvider',
3033
'getEntries',
3134
'getEntry',
3235
'createEntry',
@@ -203,6 +206,73 @@ test('Reset password', async t => {
203206
);
204207
});
205208

209+
test('Provider authentication url', t => {
210+
t.is(
211+
t.context.strapi.getProviderAuthenticationUrl('facebook'),
212+
'http://strapi-host/connect/facebook'
213+
);
214+
});
215+
216+
test('Provider authentication on Node.js', async t => {
217+
t.context.axiosRequest.resolves({
218+
data: {
219+
jwt: 'foo',
220+
user: {}
221+
}
222+
});
223+
const authentication = await t.context.strapi.authenticateProvider(
224+
'facebook',
225+
{
226+
code: 'XXX'
227+
}
228+
);
229+
230+
t.true(
231+
t.context.axiosRequest.calledWithExactly({
232+
method: 'get',
233+
params: {
234+
code: 'XXX'
235+
},
236+
url: '/auth/facebook/callback'
237+
})
238+
);
239+
t.deepEqual(authentication, {
240+
jwt: 'foo',
241+
user: {}
242+
});
243+
});
244+
245+
test.serial('Provider authentication on browser', async t => {
246+
const globalAny: any = global;
247+
browserEnv(['window'], {
248+
url: 'http://localhost?access_token=XXX'
249+
});
250+
t.context.axiosRequest.resolves({
251+
data: {
252+
jwt: 'foo',
253+
user: {}
254+
}
255+
});
256+
const authentication = await t.context.strapi.authenticateProvider(
257+
'github'
258+
);
259+
260+
t.true(
261+
t.context.axiosRequest.calledWithExactly({
262+
method: 'get',
263+
params: {
264+
access_token: 'XXX'
265+
},
266+
url: '/auth/github/callback'
267+
})
268+
);
269+
t.deepEqual(authentication, {
270+
jwt: 'foo',
271+
user: {}
272+
});
273+
delete globalAny.window;
274+
});
275+
206276
test('Get entries', async t => {
207277
await t.context.strapi.getEntries('user', {
208278
_sort: 'email:asc'

src/lib/sdk.ts

+32
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ export interface Authentication {
66
jwt: string;
77
}
88

9+
export type Provider = 'facebook' | 'google' | 'github' | 'twitter';
10+
11+
export interface Token {
12+
access_token?: string;
13+
code?: string;
14+
oauth_token?: string;
15+
}
16+
917
export default class Strapi {
1018
public axios: AxiosInstance;
1119

@@ -136,6 +144,30 @@ export default class Strapi {
136144
});
137145
}
138146

147+
public getProviderAuthenticationUrl(provider: Provider): string {
148+
return `${this.axios.defaults.baseURL}/connect/${provider}`;
149+
}
150+
151+
public async authenticateProvider(
152+
provider: Provider,
153+
params?: Token
154+
): Promise<Authentication> {
155+
this.clearToken();
156+
// Handling browser query
157+
if (typeof window !== 'undefined') {
158+
params = qs.parse(window.location.search, { ignoreQueryPrefix: true });
159+
}
160+
const authentication: Authentication = await this.request(
161+
'get',
162+
`/auth/${provider}/callback`,
163+
{
164+
params
165+
}
166+
);
167+
this.setToken(authentication.jwt);
168+
return authentication;
169+
}
170+
139171
/**
140172
* List entries
141173
* @param contentType

src/types/browser-env.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
declare module 'browser-env';

0 commit comments

Comments
 (0)