mirror of
https://github.com/github/codeql-action.git
synced 2025-12-27 01:30:10 +08:00
48 lines
1.4 KiB
JavaScript
48 lines
1.4 KiB
JavaScript
import * as OAuthMethods from "@octokit/oauth-methods";
|
|
import { createUnauthenticatedAuth } from "@octokit/auth-unauthenticated";
|
|
import { emitEvent } from "../emit-event.js";
|
|
async function deleteAuthorizationWithState(state, options) {
|
|
const optionsWithDefaults = {
|
|
clientId: state.clientId,
|
|
clientSecret: state.clientSecret,
|
|
request: state.octokit.request,
|
|
...options
|
|
};
|
|
const response = state.clientType === "oauth-app" ? await OAuthMethods.deleteAuthorization({
|
|
clientType: "oauth-app",
|
|
...optionsWithDefaults
|
|
}) : (
|
|
/* v8 ignore next 4 */
|
|
await OAuthMethods.deleteAuthorization({
|
|
clientType: "github-app",
|
|
...optionsWithDefaults
|
|
})
|
|
);
|
|
await emitEvent(state, {
|
|
name: "token",
|
|
action: "deleted",
|
|
token: options.token,
|
|
octokit: new state.Octokit({
|
|
authStrategy: createUnauthenticatedAuth,
|
|
auth: {
|
|
reason: `Handling "token.deleted" event. The access for the token has been revoked.`
|
|
}
|
|
})
|
|
});
|
|
await emitEvent(state, {
|
|
name: "authorization",
|
|
action: "deleted",
|
|
token: options.token,
|
|
octokit: new state.Octokit({
|
|
authStrategy: createUnauthenticatedAuth,
|
|
auth: {
|
|
reason: `Handling "authorization.deleted" event. The access for the app has been revoked.`
|
|
}
|
|
})
|
|
});
|
|
return response;
|
|
}
|
|
export {
|
|
deleteAuthorizationWithState
|
|
};
|