-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauthentication.js
67 lines (62 loc) · 2.25 KB
/
authentication.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
const debug = require('debug')('pt:authentication');
const _ = require('lodash');
const jwt = require('jsonwebtoken');
const testAuth = (z, bundle) => {
debug(`testAuth`);
// This method can return any truthy value to indicate the credentials are valid.
// Raise an error to show
var jwt_data = jwt.decode(bundle.authData.sessionKey);
return z.request({
url: `https://api.pagertree.com/user/${jwt_data.id}`,
}).then((response) => {
if (response.status === 401) {
throw new Error('The Session Key you supplied is invalid');
}
return z.JSON.parse(response.content);
});
};
const getSessionKey = (z, bundle) => {
debug(`getSessionKey username %O`, bundle.authData.username);
const promise = z.request({
method: 'POST',
url: 'https://api.pagertree.com/public/login',
body: {
username: bundle.authData.username,
password: bundle.authData.password,
}
});
return promise.then((response) => {
if(response.status === 200){
const json = z.JSON.parse(response.content);
return {
sessionKey: json.token
};
} else if(response.status === 400){
throw new Error(_.get(response.json, "errors.0.message"));
} else if (response.status === 422) {
throw new Error('The username/password you supplied is invalid');
} else if (response.status === 429) {
throw new Error(_.get(response.json, "errors.0.message"));
} else {
throw new Error(`Unknown error occured`, respone);
}
});
};
module.exports = {
type: 'session',
// Define any auth fields your app requires here. The user will be prompted to enter this info when
// they connect their account.
fields: [
{key: 'username', label: 'Username', required: true, type: 'string'},
{key: 'password', label: 'Password', required: true, type: 'password'}
],
// The test method allows Zapier to verify that the credentials a user provides are valid. We'll execute this
// method whenver a user connects their account for the first time.
test: testAuth,
// The method that will exchange the fields provided by the user for session credentials.
sessionConfig: {
perform: getSessionKey
},
// assuming "username" is a key returned from the test
connectionLabel: '{{email}}'
};