setup-node/node_modules/@octokit/rest/plugins/authentication/index.js

22 lines
484 B
JavaScript
Raw Normal View History

2019-08-06 03:18:52 +08:00
module.exports = authenticationPlugin
const beforeRequest = require('./before-request')
const requestError = require('./request-error')
const validate = require('./validate')
function authenticationPlugin (octokit, options) {
if (!options.auth) {
return
}
validate(options.auth)
const state = {
octokit,
auth: options.auth
}
octokit.hook.before('request', beforeRequest.bind(null, state))
octokit.hook.error('request', requestError.bind(null, state))
}