mirror of
https://github.com/github/codeql-action.git
synced 2025-12-27 01:30:10 +08:00
37 lines
951 B
JavaScript
37 lines
951 B
JavaScript
import { getUserAgent } from "universal-user-agent";
|
|
import { request as octokitRequest } from "@octokit/request";
|
|
import { VERSION } from "./version.js";
|
|
import { auth } from "./auth.js";
|
|
import { hook } from "./hook.js";
|
|
import { requiresBasicAuth } from "./requires-basic-auth.js";
|
|
function createOAuthUserAuth({
|
|
clientId,
|
|
clientSecret,
|
|
clientType = "oauth-app",
|
|
request = octokitRequest.defaults({
|
|
headers: {
|
|
"user-agent": `octokit-auth-oauth-app.js/${VERSION} ${getUserAgent()}`
|
|
}
|
|
}),
|
|
onTokenCreated,
|
|
...strategyOptions
|
|
}) {
|
|
const state = Object.assign({
|
|
clientType,
|
|
clientId,
|
|
clientSecret,
|
|
onTokenCreated,
|
|
strategyOptions,
|
|
request
|
|
});
|
|
return Object.assign(auth.bind(null, state), {
|
|
// @ts-expect-error not worth the extra code needed to appease TS
|
|
hook: hook.bind(null, state)
|
|
});
|
|
}
|
|
createOAuthUserAuth.VERSION = VERSION;
|
|
export {
|
|
createOAuthUserAuth,
|
|
requiresBasicAuth
|
|
};
|