-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
testing octokit auth #46
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import { Octokit } from "octokit"; | ||
import { createAppAuth } from "@octokit/auth-app"; | ||
|
||
const token = process.env.GITHUB_ACCESS_TOKEN; | ||
const appId = process.env.APP_ID; | ||
const privateKey = process.env.PRIVATE_KEY; | ||
|
||
export function getOctokitInstance(): Octokit { | ||
return new Octokit({ | ||
auth: token, | ||
}); | ||
} | ||
|
||
export function getOctokitWithInstallationId(installationId: number): Octokit { | ||
return new Octokit({ | ||
authStrategy: createAppAuth, | ||
auth: { | ||
appId: appId, | ||
privateKey: privateKey, | ||
installationId: installationId, | ||
}, | ||
}); | ||
Comment on lines
+14
to
+22
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The function |
||
} |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,16 +1,31 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import { Webhooks } from "@octokit/webhooks"; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import { Probot } from "probot"; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import { WebhookAndContext } from "../main"; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
export function listeningForGithubWebhookEvents(app: Probot, events: any[]) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return new Promise((resolve, reject) => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
export function listeningForGithubWebhookEvents( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
app: Probot, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
events: any[], | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
webhook: Webhooks | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
): Promise<WebhookAndContext> { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return new Promise(() => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
try { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
app.log.info(`Listening for ${events} events`); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
app.on(events, async (context) => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
resolve(context); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let context: any; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
app.on(events, (res: any) => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
context = res; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
webhook.on(events, (response: any) => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
app.log.info(response); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const data: WebhookAndContext = { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
context: context, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
webhook: response, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Promise.resolve(data); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} catch (error) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
app.log.error(`Error occurred while listening for ${events} events`); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
reject(error); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Promise.reject(error); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+5
to
+28
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The - return new Promise(() => {
+ return new Promise((resolve, reject) => {
- Promise.resolve(data);
+ resolve(data);
- Promise.reject(error);
+ reject(error); Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,40 +25,52 @@ import { | |
errorFallbackCommentForPROpenEvent, | ||
} from "./constants/Comments"; | ||
import { predictedScoresUpdationScheduler } from "./schedulers/predictedScoreScheduler"; | ||
import { receiveGithubEvents } from "./webhooks/octokit"; | ||
import { Webhooks } from "@octokit/webhooks"; | ||
|
||
const debugFlag: boolean = false; | ||
|
||
export async function main(app: Probot) { | ||
connectMongoDB(app).catch((error: any) => app.log.error(error)); | ||
connectMindsDB(app).catch((error: any) => app.log.error(error)); | ||
handleAppInstallationCreatedEvents(app); | ||
handlePullRequestOpenEvents(app); | ||
handlePullRequestClosedEvents(app); | ||
trainPredictorModel(app); | ||
debug(app); | ||
predictedScoresUpdationScheduler(app); | ||
|
||
receiveGithubEvents().then((webhook: Webhooks) => { | ||
// handleAppInstallationCreatedEvents(app, webhook); | ||
handlePullRequestOpenEvents(app, webhook); | ||
// handlePullRequestClosedEvents(app, webhook); | ||
}); | ||
debug(app); | ||
} | ||
|
||
function handleAppInstallationCreatedEvents(app: Probot) { | ||
function handleAppInstallationCreatedEvents(app: Probot, webhook: Webhooks) { | ||
const events: any[] = [eventConfigs.app_installation.created]; | ||
|
||
listeningForGithubWebhookEvents(app, events) | ||
listeningForGithubWebhookEvents(app, events, webhook) | ||
Comment on lines
+47
to
+50
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The |
||
.then((context: any) => processRepositories(app, context.payload)) | ||
.catch((error: any) => { | ||
app.log.error("Error while processing app installation event"); | ||
app.log.error(error); | ||
}); | ||
} | ||
|
||
function handlePullRequestOpenEvents(app: Probot) { | ||
export type WebhookAndContext = { | ||
context: any; | ||
webhook: any; | ||
}; | ||
|
||
function handlePullRequestOpenEvents(app: Probot, webhook: Webhooks) { | ||
const events: any[] = [eventConfigs.pull_request.opened]; | ||
|
||
listeningForGithubWebhookEvents(app, events) | ||
.then(async (context: any) => { | ||
listeningForGithubWebhookEvents(app, events, webhook) | ||
.then(async (res: WebhookAndContext) => { | ||
const context = res.context; | ||
const webhook = res.webhook; | ||
try { | ||
const files: FileScoreMap[] = await processPullRequestOpenEvent( | ||
app, | ||
context.payload | ||
webhook.payload | ||
); | ||
const comment = await constructComment(app, files); | ||
createCommentOnGithub(app, comment, context); | ||
|
@@ -75,10 +87,10 @@ function handlePullRequestOpenEvents(app: Probot) { | |
}); | ||
} | ||
|
||
function handlePullRequestClosedEvents(app: Probot) { | ||
function handlePullRequestClosedEvents(app: Probot, webhook: Webhooks) { | ||
const events: any[] = [eventConfigs.pull_request.closed]; | ||
|
||
listeningForGithubWebhookEvents(app, events) | ||
listeningForGithubWebhookEvents(app, events, webhook) | ||
.then(async (context: any) => { | ||
try { | ||
const areFilesUpdated: boolean = await updateFilesInDb( | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The function
getOctokitInstance
correctly creates an Octokit instance using a personal access token. However, consider adding error handling for cases where thetoken
might be undefined or invalid.