Created
January 20, 2020 21:50
-
-
Save hisashiyamaguchi/e19cf460c3ac9119c341927d4401f1b2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* global configuration */ | |
/** | |
* @title Fraud Prevention | |
* @overview Send the user's IP address, user agent, email address and username in MD5 to MaxMind's MinFraud API. | |
* | |
* This rule will send the user's IP address, user agent, email address (in MD5) and username (in MD5) to MaxMind's MinFraud API. This API will return information about this current transaction like the location, a risk score, ... | |
* | |
* > Note: You will need to sign up here to get a license key https://www.maxmind.com/ | |
* | |
*/ | |
// eslint-disable-next-line no-unused-vars | |
async function userRiskScore(user, context, cb) { | |
// For Logging Events | |
const log = global.getLogger | |
? global.getLogger('Get Risk Score', cb) | |
: { | |
callback: cb, | |
error: console.error, | |
info: console.log, | |
debug: console.log | |
}; | |
const { callback } = log; | |
// Skip if not user facing app type | |
if (context.clientMetadata.userApp !== 'true') { | |
log.info(`Skipping risk check as not enabled for app ${context.clientName}`); | |
return callback(null, user, context); | |
} | |
const MINFRAUD_API = `https://${configuration.MINFRAUD_ACCOUNT_ID}:${configuration.MINFRAUD_LICENSE_KEY}@minfraud.maxmind.com/minfraud/v2.0/score`; | |
// Set to false to trigger high risk | |
// Will set IP to Russian IP and change user agent. | |
const fakeData = false; | |
const ipAddress = fakeData ? '87.242.77.197' : context.request.ip; | |
const userAgent = fakeData ? 'naughty-fraud-agent' : context.request.userAgent; | |
const data = { | |
device: { | |
ip_address: ipAddress, | |
user_agent: userAgent | |
}, | |
account: { | |
user_id: user.user_id | |
}, | |
email: { | |
address: user.email || '' | |
}, | |
billing: { | |
first_name: user.given_name || '', | |
last_name: user.last_name || '' | |
} | |
}; | |
try { | |
const request = require('request-promise'); | |
const result = await request.post(MINFRAUD_API, { | |
body: data, | |
json: true, | |
timeout: 3000 | |
}); | |
const userInfo = `${user.email || user.username} (${user.user_id})`; | |
log.info(`Fraud response for user ${userInfo}: ${JSON.stringify(result, null, 2)}`); | |
user.risk = { | |
score: result.risk_score, | |
ip_address: result.ip_address, | |
device: result.device, | |
email: result.email | |
}; | |
// Append to tokens | |
context.idToken['https://travel0.net/risk'] = user.risk; | |
context.accessToken['https://travel0.net/risk'] = user.risk; | |
} catch (err) { | |
// If the service is down, the request failed, or the result is OK just continue. | |
log.error(`Error while attempting fraud check: ${err.message}`); | |
} | |
return callback(null, user, context); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment