@mastra/factory 0.2.2 → 0.3.0-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +54 -0
- package/dist/auth.d.ts.map +1 -1
- package/dist/auth.js +54 -6
- package/dist/auth.js.map +1 -1
- package/dist/factory.d.ts +10 -0
- package/dist/factory.d.ts.map +1 -1
- package/dist/factory.js +35 -4
- package/dist/factory.js.map +1 -1
- package/dist/index.d.ts +11 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -1
- package/dist/integrations/base.d.ts +25 -0
- package/dist/integrations/base.d.ts.map +1 -1
- package/dist/integrations/github/integration.js +1 -1
- package/dist/integrations/github/routes.d.ts.map +1 -1
- package/dist/integrations/github/routes.js +23 -8
- package/dist/integrations/github/routes.js.map +1 -1
- package/dist/integrations/github/sandbox-release.d.ts +38 -0
- package/dist/integrations/github/sandbox-release.d.ts.map +1 -0
- package/dist/integrations/github/sandbox-release.js +74 -0
- package/dist/integrations/github/sandbox-release.js.map +1 -0
- package/dist/integrations/github/sandbox.d.ts +10 -0
- package/dist/integrations/github/sandbox.d.ts.map +1 -1
- package/dist/integrations/github/sandbox.js +18 -1
- package/dist/integrations/github/sandbox.js.map +1 -1
- package/dist/integrations/platform/github/event-worker.js +1 -1
- package/dist/integrations/platform/github/event-worker.js.map +1 -1
- package/dist/integrations/platform/github/integration.d.ts +4 -1
- package/dist/integrations/platform/github/integration.d.ts.map +1 -1
- package/dist/integrations/platform/github/integration.js +52 -17
- package/dist/integrations/platform/github/integration.js.map +1 -1
- package/dist/routes/surface.d.ts +3 -1
- package/dist/routes/surface.d.ts.map +1 -1
- package/dist/routes/surface.js +2 -1
- package/dist/routes/surface.js.map +1 -1
- package/dist/rules/dispatcher.d.ts +2 -0
- package/dist/rules/dispatcher.d.ts.map +1 -1
- package/dist/rules/dispatcher.js +43 -12
- package/dist/rules/dispatcher.js.map +1 -1
- package/dist/rules/start-coordinator.js +1 -1
- package/dist/rules/transition-service.d.ts +17 -0
- package/dist/rules/transition-service.d.ts.map +1 -1
- package/dist/rules/transition-service.js +29 -1
- package/dist/rules/transition-service.js.map +1 -1
- package/dist/sandbox/fleet.d.ts +12 -1
- package/dist/sandbox/fleet.d.ts.map +1 -1
- package/dist/sandbox/fleet.js +35 -1
- package/dist/sandbox/fleet.js.map +1 -1
- package/dist/spa-static.js +2 -1
- package/dist/spa-static.js.map +1 -1
- package/dist/state-signing.d.ts +8 -1
- package/dist/state-signing.d.ts.map +1 -1
- package/dist/state-signing.js +5 -2
- package/dist/state-signing.js.map +1 -1
- package/dist/storage/domains/channel-identity/base.d.ts +96 -0
- package/dist/storage/domains/channel-identity/base.d.ts.map +1 -0
- package/dist/storage/domains/channel-identity/base.js +149 -0
- package/dist/storage/domains/channel-identity/base.js.map +1 -0
- package/dist/storage/domains/source-control/base.d.ts +51 -0
- package/dist/storage/domains/source-control/base.d.ts.map +1 -1
- package/dist/storage/domains/source-control/base.js +91 -0
- package/dist/storage/domains/source-control/base.js.map +1 -1
- package/dist/storage/domains/source-control/inmemory.d.ts +13 -1
- package/dist/storage/domains/source-control/inmemory.d.ts.map +1 -1
- package/dist/storage/domains/source-control/inmemory.js +35 -0
- package/dist/storage/domains/source-control/inmemory.js.map +1 -1
- package/dist/workspace.d.ts.map +1 -1
- package/dist/workspace.js +19 -3
- package/dist/workspace.js.map +1 -1
- package/package.json +5 -5
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { createGithubSubscriptionTools, parseCreatedPullRequest, subscribeCurrentSessionToPullRequest } from "../../github/session-subscriptions.js";
|
|
2
|
+
import { runGithubIssueTriage } from "../../github/issue-triage.js";
|
|
2
3
|
import { buildGithubRoutes } from "../../github/routes.js";
|
|
3
4
|
import { attachGithubReconciler, attachGithubRules } from "../../github/rules.js";
|
|
4
5
|
import { PlatformApiClient, PlatformApiError, logPlatformInfo, logPlatformWarn, platformApiClientConfigFromEnv } from "../api-client.js";
|
|
@@ -58,6 +59,7 @@ var PlatformGithubIntegration = class {
|
|
|
58
59
|
#installationReposCache = /* @__PURE__ */ new Map();
|
|
59
60
|
/** `orgId:repositoryId` → cached repository access (TTL-bounded). */
|
|
60
61
|
#repositoryAccessCache = /* @__PURE__ */ new Map();
|
|
62
|
+
#runIssueTriage;
|
|
61
63
|
intake = {
|
|
62
64
|
resolveIntakeDispatch: (input) => this.#resolveIntakeDispatch(input),
|
|
63
65
|
listSources: async ({ orgId, userId }) => {
|
|
@@ -214,21 +216,49 @@ var PlatformGithubIntegration = class {
|
|
|
214
216
|
const installationId = parsePositiveInteger(installation.externalId);
|
|
215
217
|
if (installationId === null) throw new Error("GitHub installation id is invalid.");
|
|
216
218
|
const repositoryName = splitRepository(repository.slug).repo;
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
219
|
+
try {
|
|
220
|
+
const access = {
|
|
221
|
+
cloneUrl,
|
|
222
|
+
authorization: {
|
|
223
|
+
scheme: "bearer",
|
|
224
|
+
token: (await this.#client.request("POST", `${API_PREFIX}/github-app/installations/${installationId}/token`, {
|
|
225
|
+
repositories: [repositoryName],
|
|
226
|
+
permissions: REPOSITORY_TOKEN_PERMISSIONS
|
|
227
|
+
})).token
|
|
228
|
+
}
|
|
229
|
+
};
|
|
230
|
+
setBounded(this.#repositoryAccessCache, cacheKey, {
|
|
231
|
+
access,
|
|
232
|
+
expiresAt: Date.now() + REPOSITORY_ACCESS_CACHE_TTL_MS
|
|
233
|
+
});
|
|
234
|
+
return access;
|
|
235
|
+
} catch (err) {
|
|
236
|
+
if (!isNotFound(err) || !installation.accountName) throw err;
|
|
237
|
+
const newInstallation = (await this.storage.installations.list({ orgId })).find((inst) => inst.accountName === installation.accountName && inst.id !== installation.id);
|
|
238
|
+
if (!newInstallation) throw err;
|
|
239
|
+
const newInstallationId = parsePositiveInteger(newInstallation.externalId);
|
|
240
|
+
if (newInstallationId === null) throw err;
|
|
241
|
+
await this.storage.repositories.migrateInstallation({
|
|
242
|
+
orgId,
|
|
243
|
+
id: repositoryId,
|
|
244
|
+
newInstallationId: newInstallation.id
|
|
245
|
+
});
|
|
246
|
+
const access = {
|
|
247
|
+
cloneUrl,
|
|
248
|
+
authorization: {
|
|
249
|
+
scheme: "bearer",
|
|
250
|
+
token: (await this.#client.request("POST", `${API_PREFIX}/github-app/installations/${newInstallationId}/token`, {
|
|
251
|
+
repositories: [repositoryName],
|
|
252
|
+
permissions: REPOSITORY_TOKEN_PERMISSIONS
|
|
253
|
+
})).token
|
|
254
|
+
}
|
|
255
|
+
};
|
|
256
|
+
setBounded(this.#repositoryAccessCache, cacheKey, {
|
|
257
|
+
access,
|
|
258
|
+
expiresAt: Date.now() + REPOSITORY_ACCESS_CACHE_TTL_MS
|
|
259
|
+
});
|
|
260
|
+
return access;
|
|
261
|
+
}
|
|
232
262
|
},
|
|
233
263
|
listPullRequests: (input) => this.#listPullRequests(input),
|
|
234
264
|
getPullRequest: (input) => this.#getPullRequest(input),
|
|
@@ -258,13 +288,14 @@ var PlatformGithubIntegration = class {
|
|
|
258
288
|
requestReviewers: (input) => this.#requestedReviewers("POST", input),
|
|
259
289
|
removeRequestedReviewers: (input) => this.#requestedReviewers("DELETE", input)
|
|
260
290
|
};
|
|
261
|
-
constructor() {
|
|
291
|
+
constructor(options = {}) {
|
|
262
292
|
const config = platformApiClientConfigFromEnv();
|
|
263
293
|
this.#client = new PlatformApiClient(config);
|
|
264
294
|
this.#endpointHost = new URL(config.baseUrl).host;
|
|
265
295
|
this.#pollingEnabled = process.env.MASTRA_PLATFORM_GITHUB_POLLING_ENABLED?.trim().toLowerCase() !== "false";
|
|
266
296
|
this.#pollingIntervalMs = optionalPositiveIntegerEnv("MASTRA_PLATFORM_GITHUB_POLLING_INTERVAL_MS");
|
|
267
297
|
this.#reconcileEnabled = process.env.MASTRA_PLATFORM_GITHUB_RECONCILE_ENABLED?.trim().toLowerCase() !== "false";
|
|
298
|
+
this.#runIssueTriage = options.runIssueTriage;
|
|
268
299
|
}
|
|
269
300
|
get storage() {
|
|
270
301
|
if (!this.#storage) throw new Error("PlatformGithubIntegration source-control storage has not been initialized.");
|
|
@@ -320,7 +351,11 @@ var PlatformGithubIntegration = class {
|
|
|
320
351
|
controller: ctx.controller,
|
|
321
352
|
projects: ctx.storage.projects,
|
|
322
353
|
emitAudit: ctx.hooks?.emitAudit,
|
|
323
|
-
ingestFactoryEvent
|
|
354
|
+
ingestFactoryEvent,
|
|
355
|
+
runIssueTriage: this.#runIssueTriage ?? (ctx.controller ? (input) => runGithubIssueTriage({
|
|
356
|
+
controller: ctx.controller,
|
|
357
|
+
input
|
|
358
|
+
}) : void 0)
|
|
324
359
|
}).filter((route) => route.path !== "/web/github/status" && route.path !== "/web/github/webhook" && !route.path.startsWith("/auth/github/"))
|
|
325
360
|
];
|
|
326
361
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"integration.js","names":["#client","#endpointHost","#pollingEnabled","#pollingIntervalMs","#reconcileEnabled","#installationReposCache","#repositoryAccessCache","#resolveIntakeDispatch","#listIssues","#listPullRequests","#getIssue","#createIssueComment","#updateIntakeIssue","#storage","#getPullRequest","#createPullRequest","#updatePullRequest","#mergePullRequest","#listComments","#createComment","#updateComment","#deleteComment","#listReviews","#getReview","#createReview","#updateReview","#submitReview","#dismissReview","#deletePendingReview","#listReviewComments","#createReviewComment","#updateReviewComment","#deleteReviewComment","#requestedReviewers","#integrationStorage","#statusRoute","#connectRoute","#connectUserRoute","#syncInstallations","#fetchUserConnection"],"sources":["../../../../src/integrations/platform/github/integration.ts"],"sourcesContent":["import type { RequestContext } from '@mastra/core/request-context';\nimport type { ApiRoute } from '@mastra/core/server';\nimport { registerApiRoute } from '@mastra/core/server';\nimport type { Context } from 'hono';\n\nimport type { IntegrationConnection } from '../../../capabilities/connection.js';\nimport type {\n CreateIntakeCommentInput,\n Intake,\n IntakeIssue,\n IntakeIssueDetail,\n UpdateIntakeIssueInput,\n} from '../../../capabilities/intake.js';\nimport type {\n CreatePullRequestCommentInput,\n CreatePullRequestInput,\n CreateReviewCommentInput,\n CreateReviewInput,\n DeletePullRequestCommentInput,\n DismissReviewInput,\n ListPullRequestCommentsInput,\n ListPullRequestsInput,\n ListReviewCommentsInput,\n ListReviewsInput,\n MergePullRequestInput,\n PullRequest,\n PullRequestComment,\n PullRequestRef,\n RepositoryAccess,\n Review,\n ReviewComment,\n ReviewRef,\n SubmitReviewInput,\n UpdatePullRequestCommentInput,\n UpdatePullRequestInput,\n UpdateReviewInput,\n UpdateReviewersInput,\n VersionControl,\n} from '../../../capabilities/version-control.js';\nimport type { IntegrationStorageHandle } from '../../../storage/domains/integrations/base.js';\nimport type {\n SourceControlInstallation,\n SourceControlStorageHandle,\n} from '../../../storage/domains/source-control/base.js';\nimport type { FactoryIntegration, IntegrationContext, IntegrationTools } from '../../base.js';\nimport type { GithubIntegration, GithubRepositoryPermission, RepoSummary } from '../../github/integration.js';\nimport { buildGithubRoutes } from '../../github/routes.js';\nimport { attachGithubReconciler, attachGithubRules } from '../../github/rules.js';\nimport type { ReconcilePullRequestState } from '../../github/rules.js';\nimport {\n createGithubSubscriptionTools,\n parseCreatedPullRequest,\n subscribeCurrentSessionToPullRequest,\n} from '../../github/session-subscriptions.js';\nimport type { GithubSubscriptionStorage } from '../../github/subscriptions.js';\nimport {\n logPlatformInfo,\n logPlatformWarn,\n PlatformApiClient,\n PlatformApiError,\n platformApiClientConfigFromEnv,\n} from '../api-client.js';\nimport { PlatformGithubEventWorker } from './event-worker.js';\nimport type { PlatformGithubEventStorage } from './event-worker.js';\n\ntype GithubActor = { login: string; avatarUrl: string | null; htmlUrl: string | null } | null;\n\ntype PlatformGithubInstallation = {\n installationId: number;\n accountLogin: string;\n accountType: string;\n suspendedAt: string | null;\n usable: boolean;\n};\n\ntype PlatformGithubUserConnection = {\n connected: boolean;\n githubUsername: string | null;\n reason?: 'token-invalid' | 'no-accessible-installation' | 'missing-permissions' | 'verification-unavailable' | null;\n};\n\ntype GithubIssue = {\n number: number;\n state: 'open' | 'closed';\n title: string;\n body: string | null;\n htmlUrl: string;\n labels: string[];\n assignees: string[];\n commentCount: number;\n user: GithubActor;\n createdAt: string;\n updatedAt: string;\n};\n\ntype GithubComment = {\n id: number;\n body: string;\n htmlUrl: string;\n user: GithubActor;\n createdAt: string;\n updatedAt: string;\n};\n\ntype GithubPullRequest = {\n number: number;\n title: string;\n body: string | null;\n state: 'open' | 'closed';\n htmlUrl: string;\n merged: boolean;\n mergeable: boolean | null;\n draft: boolean;\n head: { ref: string; sha: string };\n base: { ref: string; repo: { id: number; fullName: string } };\n user: GithubActor;\n createdAt: string;\n updatedAt: string;\n};\n\ntype GithubReview = {\n id: number;\n htmlUrl: string | null;\n body: string | null;\n state: 'PENDING' | 'COMMENTED' | 'APPROVED' | 'CHANGES_REQUESTED' | 'DISMISSED';\n commitId: string | null;\n submittedAt: string | null;\n user: GithubActor;\n};\n\ntype GithubReviewComment = GithubComment & {\n path: string;\n line: number | null;\n side: 'LEFT' | 'RIGHT' | null;\n commitId: string;\n replyToId: number | null;\n};\n\nconst PAGE_SIZE = 30;\nconst API_PREFIX = '/v1/server';\n/**\n * How long an installation's repository listing may be reused. The repos\n * route and token minting both call it — often several times within one UI\n * interaction — and each call is a full Platform round trip.\n */\nconst INSTALLATION_REPOS_CACHE_TTL_MS = 30_000;\n/**\n * How long a minted repository-scoped token may be reused. GitHub\n * installation tokens live ~60 minutes; 5 minutes keeps a wide validity\n * margin while collapsing the per-session-materialization mint round trip.\n */\nconst REPOSITORY_ACCESS_CACHE_TTL_MS = 5 * 60_000;\n/**\n * Upper bound for both TTL caches. Entries expire lazily on re-access, so\n * without a hard cap keys that stop being queried would accumulate for the\n * integration's (long) lifetime. Insertion-order eviction — matches the\n * bounded verification cache in `@mastra/auth-studio`.\n */\nconst MAX_CACHE_ENTRIES = 1000;\n\nfunction setBounded<K, V>(cache: Map<K, V>, key: K, value: V): void {\n cache.delete(key);\n cache.set(key, value);\n if (cache.size > MAX_CACHE_ENTRIES) {\n const oldest = cache.keys().next().value;\n if (oldest !== undefined) cache.delete(oldest);\n }\n}\n\nconst REPOSITORY_TOKEN_PERMISSIONS = {\n contents: 'write',\n issues: 'write',\n pull_requests: 'write',\n} as const;\n\nfunction loose(c: unknown): Context {\n return c as Context;\n}\n\nfunction routeBaseUrl(ctx: IntegrationContext, requestUrl: string): string {\n return (ctx.baseUrl || new URL(requestUrl).origin).replace(/\\/+$/, '');\n}\n\nexport class PlatformGithubIntegration implements FactoryIntegration {\n readonly id = 'github';\n readonly #client: PlatformApiClient;\n readonly #endpointHost: string;\n readonly #pollingEnabled: boolean;\n readonly #pollingIntervalMs: number | undefined;\n readonly #reconcileEnabled: boolean;\n #storage: SourceControlStorageHandle | undefined;\n #integrationStorage: GithubSubscriptionStorage | undefined;\n /** installationId → cached repository listing (TTL-bounded). */\n readonly #installationReposCache = new Map<number, { repos: RepoSummary[]; expiresAt: number }>();\n /** `orgId:repositoryId` → cached repository access (TTL-bounded). */\n readonly #repositoryAccessCache = new Map<string, { access: RepositoryAccess; expiresAt: number }>();\n\n readonly intake: Intake = {\n resolveIntakeDispatch: input => this.#resolveIntakeDispatch(input),\n listSources: async ({ orgId, userId }) => {\n const installations = await this.#client.request<{\n installations: Array<{\n installationId: number;\n accountLogin: string;\n accountType: string;\n suspendedAt: string | null;\n usable: boolean;\n }>;\n }>('GET', `${API_PREFIX}/github-app/installations`);\n const usable = installations.installations.filter(\n installation => installation.usable && !installation.suspendedAt,\n );\n const repositories = await Promise.all(\n usable.map(async installation => {\n const storedInstallation = await this.versionControl.registerInstallation({\n orgId,\n userId,\n installation: {\n externalId: String(installation.installationId),\n accountName: installation.accountLogin,\n accountType: installation.accountType,\n },\n });\n const result = await this.#client.request<{\n repositories: Array<{\n id: number;\n fullName: string;\n private: boolean;\n defaultBranch: string;\n htmlUrl: string;\n }>;\n }>('GET', `${API_PREFIX}/github-app/installations/${installation.installationId}/repositories`);\n await this.versionControl.registerRepositories({\n orgId,\n installationId: storedInstallation.id,\n repositories: result.repositories.map(repository => ({\n externalId: String(repository.id),\n slug: repository.fullName,\n defaultBranch: repository.defaultBranch,\n metadata: { private: repository.private, url: repository.htmlUrl },\n })),\n });\n return result.repositories.map(repository => ({ repository, installation }));\n }),\n );\n return repositories.flat().map(({ repository, installation }) => ({\n id: repository.fullName,\n name: repository.fullName,\n type: 'repository',\n metadata: {\n installationId: installation.installationId,\n accountLogin: installation.accountLogin,\n accountType: installation.accountType,\n repositoryId: repository.id,\n defaultBranch: repository.defaultBranch,\n private: repository.private,\n url: repository.htmlUrl,\n },\n }));\n },\n listItems: async ({ sourceIds, cursor }) => {\n const page = parsePositiveCursor(cursor);\n const pages = await Promise.all(\n sourceIds.map(async sourceId => {\n const connection = { type: 'app-installation' as const, installationId: 1 };\n const [issues, pullRequests] = await Promise.all([\n this.#listIssues(connection, sourceId, page),\n this.#listPullRequests({ connection, sourceId, includeDrafts: false, cursor: String(page) }),\n ]);\n return {\n items: [\n ...issues.issues.map(issue => ({\n source: { type: 'issue', externalId: `${sourceId}:${issue.id}`, url: issue.url },\n sourceId,\n title: issue.title,\n status: issue.state ?? undefined,\n labels: issue.labels,\n assignee: issue.assignee,\n createdAt: issue.createdAt,\n updatedAt: issue.updatedAt,\n metadata: { repository: sourceId, number: Number(issue.id), author: issue.author },\n })),\n ...pullRequests.pullRequests.map(pullRequest => ({\n source: { type: 'pull-request', externalId: `${sourceId}:${pullRequest.id}`, url: pullRequest.url },\n sourceId,\n title: pullRequest.title,\n status: pullRequest.state,\n createdAt: pullRequest.createdAt,\n updatedAt: pullRequest.updatedAt,\n metadata: {\n repository: sourceId,\n number: Number(pullRequest.id),\n author: pullRequest.author,\n baseBranch: pullRequest.baseBranch,\n headBranch: pullRequest.headBranch,\n },\n })),\n ],\n hasNextPage: issues.nextCursor !== null || pullRequests.nextCursor !== null,\n };\n }),\n );\n return {\n items: pages.flatMap(result => result.items),\n nextCursor: pages.some(result => result.hasNextPage) ? String(page + 1) : null,\n };\n },\n listIssues: async input => {\n requireGithubConnection(input.connection);\n const sourceId = requireSingleSource(input.sourceIds, 'GitHub Intake requires exactly one repository source.');\n return this.#listIssues(input.connection, sourceId, parsePositiveCursor(input.cursor), input.labels);\n },\n getIssue: input => this.#getIssue(input.connection, input.sourceId, input.issueId),\n createComment: input => this.#createIssueComment(input),\n updateIssue: input => this.#updateIntakeIssue(input),\n };\n\n readonly versionControl: VersionControl = {\n initialize: ({ storage }) => {\n this.#storage = storage;\n },\n registerInstallation: ({ orgId, userId, installation }) =>\n this.storage.installations.upsert({\n orgId,\n connectedByUserId: userId,\n externalId: installation.externalId,\n accountName: installation.accountName,\n accountType: installation.accountType,\n providerMetadata: installation.metadata,\n }),\n registerRepositories: ({ orgId, installationId, repositories }) =>\n Promise.all(\n repositories.map(repository =>\n this.storage.repositories.upsert({\n orgId,\n input: {\n installationId,\n externalId: repository.externalId,\n slug: repository.slug,\n defaultBranch: repository.defaultBranch,\n providerMetadata: repository.metadata,\n },\n }),\n ),\n ),\n getRepositoryAccess: async ({ orgId, repositoryId }) => {\n // Every session materialization requests access; reuse a recent grant\n // instead of re-minting through the Platform each time. The TTL keeps\n // a wide margin under GitHub's ~60min installation-token lifetime.\n const cacheKey = `${orgId}:${repositoryId}`;\n const cached = this.#repositoryAccessCache.get(cacheKey);\n if (cached && cached.expiresAt > Date.now()) return cached.access;\n this.#repositoryAccessCache.delete(cacheKey);\n\n const repository = await this.storage.repositories.get({ orgId, id: repositoryId });\n if (!repository) throw new Error('Version-control repository not found.');\n const cloneUrl = `https://github.com/${repository.slug}.git`;\n const installation = await this.storage.installations.get({ orgId, id: repository.installationId });\n if (!installation) throw new Error('Version-control installation not found.');\n const installationId = parsePositiveInteger(installation.externalId);\n if (installationId === null) throw new Error('GitHub installation id is invalid.');\n const repositoryName = splitRepository(repository.slug).repo;\n const token = await this.#client.request<{ token: string }>(\n 'POST',\n `${API_PREFIX}/github-app/installations/${installationId}/token`,\n { repositories: [repositoryName], permissions: REPOSITORY_TOKEN_PERMISSIONS },\n );\n const access: RepositoryAccess = {\n cloneUrl,\n authorization: { scheme: 'bearer', token: token.token },\n };\n setBounded(this.#repositoryAccessCache, cacheKey, {\n access,\n expiresAt: Date.now() + REPOSITORY_ACCESS_CACHE_TTL_MS,\n });\n return access;\n },\n listPullRequests: input => this.#listPullRequests(input),\n getPullRequest: input => this.#getPullRequest(input),\n createPullRequest: input => this.#createPullRequest(input),\n updatePullRequest: input => this.#updatePullRequest(input),\n closePullRequest: input => this.#updatePullRequest({ ...input, state: 'closed' }),\n mergePullRequest: input => this.#mergePullRequest(input),\n listComments: input => this.#listComments(input),\n createComment: input => this.#createComment(input),\n updateComment: input => this.#updateComment(input),\n deleteComment: input => this.#deleteComment(input),\n listReviews: input => this.#listReviews(input),\n getReview: input => this.#getReview(input),\n createReview: input => this.#createReview(input),\n updateReview: input => this.#updateReview(input),\n submitReview: input => this.#submitReview(input),\n dismissReview: input => this.#dismissReview(input),\n deletePendingReview: input => this.#deletePendingReview(input),\n listReviewComments: input => this.#listReviewComments(input),\n createReviewComment: input => this.#createReviewComment(input),\n updateReviewComment: input => this.#updateReviewComment(input),\n deleteReviewComment: input => this.#deleteReviewComment(input),\n listRequestedReviewers: input => this.#requestedReviewers('GET', input),\n requestReviewers: input => this.#requestedReviewers('POST', input),\n removeRequestedReviewers: input => this.#requestedReviewers('DELETE', input),\n };\n\n constructor() {\n const config = platformApiClientConfigFromEnv();\n this.#client = new PlatformApiClient(config);\n this.#endpointHost = new URL(config.baseUrl).host;\n this.#pollingEnabled = process.env.MASTRA_PLATFORM_GITHUB_POLLING_ENABLED?.trim().toLowerCase() !== 'false';\n this.#pollingIntervalMs = optionalPositiveIntegerEnv('MASTRA_PLATFORM_GITHUB_POLLING_INTERVAL_MS');\n this.#reconcileEnabled = process.env.MASTRA_PLATFORM_GITHUB_RECONCILE_ENABLED?.trim().toLowerCase() !== 'false';\n }\n\n get storage(): SourceControlStorageHandle {\n if (!this.#storage) throw new Error('PlatformGithubIntegration source-control storage has not been initialized.');\n return this.#storage;\n }\n\n get sourceControlStorage(): SourceControlStorageHandle {\n return this.storage;\n }\n\n get integrationStorage(): GithubSubscriptionStorage {\n if (!this.#integrationStorage) {\n throw new Error('PlatformGithubIntegration generic storage has not been initialized.');\n }\n return this.#integrationStorage;\n }\n\n /** Resolve a stored GitHub locator without scanning installations or repositories. */\n async #resolveIntakeDispatch({\n orgId,\n externalSource,\n }: {\n orgId: string;\n externalSource: { type: string; externalId: string };\n }): Promise<{ connection: IntegrationConnection; sourceId: string; issueId: string } | null> {\n const target = parseGithubExternalTarget(externalSource.externalId);\n if (!target) return null;\n const repository = target.repository.includes('/')\n ? target.repository\n : (await this.storage.repositories.findByExternalId({ orgId, externalId: target.repository }))?.slug;\n if (!repository) return null;\n return {\n connection: { type: 'app-installation', installationId: 1 },\n sourceId: repository,\n issueId: target.issueId,\n };\n }\n\n initialize({ storage }: { storage: IntegrationStorageHandle }): void {\n this.#integrationStorage = storage as unknown as GithubSubscriptionStorage;\n logPlatformInfo('Platform GitHub integration initialized', {\n endpointHost: this.#endpointHost,\n pollingEnabled: this.#pollingEnabled,\n pollingIntervalMs: this.#pollingIntervalMs,\n reconcileEnabled: this.#reconcileEnabled,\n });\n }\n\n routes(ctx: IntegrationContext): ApiRoute[] {\n const ingestFactoryEvent = attachGithubRules(this, ctx);\n return [\n this.#statusRoute(ctx),\n this.#connectRoute(ctx),\n this.#connectUserRoute(ctx),\n ...buildGithubRoutes({\n auth: ctx.auth,\n fleet: ctx.fleet,\n storage: ctx.factoryStorage,\n github: this as unknown as GithubIntegration,\n stateSigner: ctx.stateSigner,\n baseUrl: ctx.baseUrl,\n controller: ctx.controller,\n projects: ctx.storage.projects,\n emitAudit: ctx.hooks?.emitAudit,\n ingestFactoryEvent,\n }).filter(\n route =>\n route.path !== '/web/github/status' &&\n route.path !== '/web/github/webhook' &&\n !route.path.startsWith('/auth/github/'),\n ),\n ];\n }\n\n #statusRoute(ctx: IntegrationContext): ApiRoute {\n return registerApiRoute('/web/github/status', {\n method: 'GET',\n requiresAuth: false,\n handler: async c => {\n await ctx.auth.ensureUser(loose(c));\n const tenant = ctx.auth.tenant(loose(c));\n if (!tenant) return c.json({ error: 'unauthorized', reason: 'auth_required' }, 401);\n if (!tenant.orgId) {\n return c.json({\n enabled: true,\n sandboxEnabled: ctx.fleet.enabled,\n organizationRequired: true,\n connected: false,\n installations: [],\n userConnected: false,\n userGithubUsername: null,\n reason: 'organization_required',\n diagnostics: this.diagnostics(),\n });\n }\n\n const [installations, userConnection] = await Promise.all([\n this.#syncInstallations(tenant.orgId, tenant.userId),\n this.#fetchUserConnection(tenant.userId),\n ]);\n return c.json({\n enabled: true,\n sandboxEnabled: ctx.fleet.enabled,\n connected: installations.length > 0,\n installations: installations.map(installation => ({\n installationId: Number(installation.externalId),\n accountLogin: installation.accountName,\n accountType: installation.accountType,\n })),\n userConnected: userConnection.connected,\n userGithubUsername: userConnection.githubUsername,\n reason: installations.length > 0 ? 'ready' : 'not_connected',\n diagnostics: this.diagnostics(),\n });\n },\n });\n }\n\n #connectRoute(ctx: IntegrationContext): ApiRoute {\n return registerApiRoute('/auth/github/connect', {\n method: 'GET',\n requiresAuth: false,\n handler: async c => {\n await ctx.auth.ensureUser(loose(c));\n const tenant = ctx.auth.tenant(loose(c));\n if (!tenant?.orgId) return c.json({ error: 'unauthorized' }, 401);\n\n const redirectTo = c.req.query('redirectTo') || c.req.query('return_to') || '/';\n const originator = routeBaseUrl(ctx, c.req.url);\n logPlatformInfo('Starting Platform GitHub connect flow', {\n orgId: tenant.orgId,\n redirectTo,\n originator,\n });\n const query = new URLSearchParams({\n action: 'install',\n redirectTo,\n originator,\n });\n const { url } = await this.#client.request<{ url: string }>(\n 'GET',\n `${API_PREFIX}/github-app/install-url?${query}`,\n );\n return c.redirect(url);\n },\n });\n }\n\n #connectUserRoute(ctx: IntegrationContext): ApiRoute {\n return registerApiRoute('/auth/github/connect-user', {\n method: 'GET',\n requiresAuth: false,\n handler: async c => {\n await ctx.auth.ensureUser(loose(c));\n const tenant = ctx.auth.tenant(loose(c));\n if (!tenant?.orgId) return c.json({ error: 'unauthorized' }, 401);\n\n const redirectTo = c.req.query('redirectTo') || c.req.query('return_to') || '/';\n const originator = routeBaseUrl(ctx, c.req.url);\n logPlatformInfo('Starting Platform GitHub user authorization flow', {\n orgId: tenant.orgId,\n redirectTo,\n originator,\n });\n const query = new URLSearchParams({\n userId: tenant.userId,\n redirectTo,\n originator,\n });\n const { url } = await this.#client.request<{ url: string }>(\n 'GET',\n `${API_PREFIX}/github-app/authenticate?${query}`,\n );\n return c.redirect(url);\n },\n });\n }\n\n /**\n * Personal GitHub connection status for the acting user. Returns\n * not-connected when the platform predates the user-connection endpoint.\n */\n async #fetchUserConnection(userId: string): Promise<PlatformGithubUserConnection> {\n try {\n const connection = await this.#client.request<PlatformGithubUserConnection>(\n 'GET',\n `${API_PREFIX}/github-app/user-connection?${new URLSearchParams({ userId })}`,\n );\n if (!connection.connected && connection.reason) {\n logPlatformWarn('Platform GitHub user connection verification failed', {\n userId,\n reason: connection.reason,\n });\n }\n return connection;\n } catch {\n return { connected: false, githubUsername: null };\n }\n }\n\n async #syncInstallations(orgId: string, userId: string): Promise<SourceControlInstallation[]> {\n const result = await this.#client.request<{ installations: PlatformGithubInstallation[] }>(\n 'GET',\n `${API_PREFIX}/github-app/installations`,\n );\n const usableInstallations = result.installations.filter(\n installation => installation.usable && !installation.suspendedAt,\n );\n return Promise.all(\n usableInstallations.map(installation =>\n this.versionControl.registerInstallation({\n orgId,\n userId,\n installation: {\n externalId: String(installation.installationId),\n accountName: installation.accountLogin,\n accountType: installation.accountType,\n },\n }),\n ),\n );\n }\n\n workers(ctx: IntegrationContext): PlatformGithubEventWorker[] {\n if (!this.#pollingEnabled && !this.#reconcileEnabled) return [];\n if (!ctx.controller) {\n throw new Error('Platform GitHub event polling requires the mounted Mastra Code controller.');\n }\n return [\n new PlatformGithubEventWorker({\n client: this.#client,\n controller: ctx.controller,\n github: this,\n storage: ctx.storage.generic as unknown as PlatformGithubEventStorage,\n ingestFactoryEvent: attachGithubRules(this, ctx),\n reconcileFactoryState: this.#reconcileEnabled\n ? attachGithubReconciler(this, ctx, input => this.fetchPullRequestState(input))\n : undefined,\n pollEventsEnabled: this.#pollingEnabled,\n intervalMs: this.#pollingIntervalMs,\n }),\n ];\n }\n\n /**\n * Reads live PR state through the Platform GitHub proxy for the merge\n * reconciler. Returns undefined when the PR cannot be resolved (missing,\n * proxy error) so a sweep never fabricates a merge.\n */\n async fetchPullRequestState(input: {\n installationId: number;\n repository: string;\n number: number;\n }): Promise<ReconcilePullRequestState | undefined> {\n let repository: { owner: string; repo: string };\n try {\n repository = splitRepository(input.repository);\n } catch {\n return undefined;\n }\n try {\n const result = await this.#client.request<{\n title?: string;\n html_url?: string;\n state?: string;\n merged?: boolean;\n created_at?: string;\n merged_by?: { login?: string } | null;\n head?: { ref?: string };\n base?: { ref?: string };\n }>(\n 'GET',\n `${API_PREFIX}/github/repos/${encodeURIComponent(repository.owner)}/${encodeURIComponent(repository.repo)}/pulls/${input.number}`,\n );\n return {\n title: result.title ?? `PR ${input.number}`,\n url: result.html_url ?? `https://github.com/${input.repository}/pull/${input.number}`,\n state: result.state === 'closed' ? 'closed' : 'open',\n merged: result.merged === true,\n headBranch: result.head?.ref ?? '',\n baseBranch: result.base?.ref ?? '',\n ...(result.created_at ? { createdAt: result.created_at } : {}),\n ...(result.merged_by?.login ? { mergedBy: result.merged_by.login } : {}),\n };\n } catch {\n return undefined;\n }\n }\n\n sessionTools({ requestContext }: { requestContext: RequestContext }): IntegrationTools {\n return createGithubSubscriptionTools(requestContext, this as unknown as GithubIntegration);\n }\n\n async postToolObserver({\n toolContext,\n requestContext,\n }: Parameters<NonNullable<FactoryIntegration['postToolObserver']>>[0]): Promise<void> {\n const pullRequestUrl = parseCreatedPullRequest(toolContext);\n if (!pullRequestUrl || !requestContext) return;\n await subscribeCurrentSessionToPullRequest(\n requestContext,\n pullRequestUrl,\n 'auto-gh-pr-create',\n this as unknown as GithubIntegration,\n );\n }\n\n diagnostics(): Record<string, unknown> {\n return {\n mode: 'platform',\n endpointHost: this.#endpointHost,\n polling: {\n enabled: this.#pollingEnabled,\n ...(this.#pollingIntervalMs === undefined ? {} : { intervalMs: this.#pollingIntervalMs }),\n },\n reconcile: { enabled: this.#reconcileEnabled },\n };\n }\n\n async getRepositoryCollaboratorPermission(\n _installationId: number,\n repoFullName: string,\n username: string,\n signal?: AbortSignal,\n ): Promise<GithubRepositoryPermission | undefined> {\n let repository: { owner: string; repo: string };\n try {\n repository = splitRepository(repoFullName);\n } catch {\n return undefined;\n }\n try {\n const result = await this.#client.request<{ permission: GithubRepositoryPermission }>(\n 'GET',\n `${API_PREFIX}/github/repos/${encodeURIComponent(repository.owner)}/${encodeURIComponent(repository.repo)}/collaborators/${encodeURIComponent(username)}/permission`,\n undefined,\n { signal },\n );\n return result.permission;\n } catch {\n return undefined;\n }\n }\n\n async listInstallationRepos(installationId: number): Promise<RepoSummary[]> {\n // Hot in two places — the repos route and token minting (which re-lists\n // only to validate the 1–10 repo rule). A short TTL collapses repeat\n // Platform round trips within one UI interaction.\n const cached = this.#installationReposCache.get(installationId);\n if (cached && cached.expiresAt > Date.now()) return cached.repos;\n this.#installationReposCache.delete(installationId);\n\n const result = await this.#client.request<{\n repositories: Array<{\n id: number;\n owner: string;\n name: string;\n fullName: string;\n private: boolean;\n defaultBranch: string;\n }>;\n }>('GET', `${API_PREFIX}/github-app/installations/${installationId}/repositories`);\n const repos = result.repositories.map(repository => ({ ...repository, installationId }));\n setBounded(this.#installationReposCache, installationId, {\n repos,\n expiresAt: Date.now() + INSTALLATION_REPOS_CACHE_TTL_MS,\n });\n return repos;\n }\n\n async mintInstallationToken(installationId: number): Promise<string> {\n const repositories = await this.listInstallationRepos(installationId);\n if (repositories.length === 0 || repositories.length > 10) {\n throw new Error('Platform GitHub token minting requires between one and ten installation repositories.');\n }\n const result = await this.#client.request<{ token: string }>(\n 'POST',\n `${API_PREFIX}/github-app/installations/${installationId}/token`,\n { repositories: repositories.map(repository => repository.name), permissions: REPOSITORY_TOKEN_PERMISSIONS },\n );\n return result.token;\n }\n\n async addIssueLabels(\n _installationId: number,\n sourceId: string,\n issueNumber: number,\n labels: string[],\n ): Promise<string[]> {\n const result = await this.#client.request<{ labels: string[] }>(\n 'POST',\n repositoryPath(sourceId, `issues/${issueNumber}/labels`),\n { labels },\n );\n return result.labels;\n }\n\n getInstallationOctokit(_installationId: number): ReturnType<GithubIntegration['getInstallationOctokit']> {\n return {\n pulls: {\n get: async ({ owner, repo, pull_number }: { owner: string; repo: string; pull_number: number }) => {\n const data = await this.#client.request<GithubPullRequest>(\n 'GET',\n repositoryPath(`${owner}/${repo}`, `pulls/${pull_number}`),\n );\n return { data: { base: { repo: { id: data.base.repo.id } } } };\n },\n },\n } as unknown as ReturnType<GithubIntegration['getInstallationOctokit']>;\n }\n\n async #listIssues(connection: IntegrationConnection, sourceId: string, page: number, labels?: string[]) {\n requireGithubConnection(connection);\n const path = repositoryPath(sourceId, 'issues');\n const query = new URLSearchParams({ state: 'open', page: String(page), per_page: String(PAGE_SIZE) });\n const normalizedLabels = normalizeLabels(labels);\n if (normalizedLabels.length > 0) query.set('label', normalizedLabels.join(','));\n const result = await this.#client.request<{ issues: GithubIssue[] }>('GET', `${path}?${query}`);\n return {\n issues: result.issues.map(issue => parseIntakeIssue(sourceId, issue)),\n nextCursor: result.issues.length === PAGE_SIZE ? String(page + 1) : null,\n };\n }\n\n async #getIssue(connection: IntegrationConnection, sourceId: string | undefined, issueId: string) {\n requireGithubConnection(connection);\n const repository = requireSource(sourceId, 'GitHub Intake requires a repository source.');\n const issueNumber = requirePositiveId(issueId, 'issue');\n try {\n const [issue, comments] = await Promise.all([\n this.#client.request<GithubIssue>('GET', repositoryPath(repository, `issues/${issueNumber}`)),\n this.#client.request<{ comments: GithubComment[] }>(\n 'GET',\n `${repositoryPath(repository, `issues/${issueNumber}/comments`)}?per_page=100`,\n ),\n ]);\n return parseIntakeIssueDetail(repository, issue, comments.comments);\n } catch (error) {\n if (isNotFound(error)) return null;\n throw error;\n }\n }\n\n async #updateIntakeIssue(input: UpdateIntakeIssueInput): Promise<IntakeIssue | null> {\n requireGithubConnection(input.connection);\n const repository = requireSource(input.sourceId, 'GitHub Intake requires a repository source.');\n const issueNumber = requirePositiveId(input.issueId, 'issue');\n if (input.state.kind === 'byName') {\n logPlatformWarn(`Platform GitHub: updateIssue byName is not supported (name=${input.state.name}); ignoring.`);\n return null;\n }\n const targetState: 'open' | 'closed' =\n input.state.stateType === 'unstarted' || input.state.stateType === 'started' ? 'open' : 'closed';\n const stateReason: 'completed' | 'not_planned' | null =\n targetState === 'closed' ? (input.state.stateType === 'canceled' ? 'not_planned' : 'completed') : null;\n // Reject PR targets: probe the pulls endpoint. A 200 means the number is a\n // pull request, not an issue. Factory does not close PRs via updateIssue —\n // PR merges/closes go through the version-control pipeline.\n try {\n await this.#client.request<GithubPullRequest>('GET', repositoryPath(repository, `pulls/${issueNumber}`));\n logPlatformWarn(`Platform GitHub: updateIssue rejected — target ${repository}#${issueNumber} is a pull request.`);\n return null;\n } catch (error) {\n if (!isNotFound(error)) throw error;\n // 404 on pulls means it's an issue (or nothing) — fall through to PATCH.\n }\n try {\n const issue = await this.#client.request<GithubIssue>(\n 'PATCH',\n repositoryPath(repository, `issues/${issueNumber}`),\n {\n state: targetState,\n ...(stateReason ? { state_reason: stateReason } : {}),\n },\n { actingUserId: input.actingUserId },\n );\n return parseIntakeIssue(repository, issue);\n } catch (error) {\n if (isNotFound(error)) return null;\n throw error;\n }\n }\n\n async #createIssueComment(input: CreateIntakeCommentInput) {\n requireGithubConnection(input.connection);\n const repository = requireSource(input.sourceId, 'GitHub Intake requires a repository source.');\n const issueNumber = requirePositiveId(input.issueId, 'issue');\n try {\n const comment = await this.#client.request<GithubComment>(\n 'POST',\n repositoryPath(repository, `issues/${issueNumber}/comments`),\n { body: input.body },\n { actingUserId: input.actingUserId },\n );\n return { id: String(comment.id), url: comment.htmlUrl };\n } catch (error) {\n if (isNotFound(error)) return null;\n throw error;\n }\n }\n\n async #listPullRequests(input: ListPullRequestsInput) {\n requireGithubConnection(input.connection);\n const page = parsePositiveCursor(input.cursor);\n const query = new URLSearchParams({\n state: input.state ?? 'open',\n page: String(page),\n per_page: String(PAGE_SIZE),\n });\n const result = await this.#client.request<{ pullRequests: GithubPullRequest[] }>(\n 'GET',\n `${repositoryPath(input.sourceId, 'pulls')}?${query}`,\n );\n return {\n pullRequests: result.pullRequests\n .filter(pullRequest => input.includeDrafts !== false || !pullRequest.draft)\n .map(parsePullRequest),\n nextCursor: result.pullRequests.length === PAGE_SIZE ? String(page + 1) : null,\n };\n }\n\n async #getPullRequest(input: PullRequestRef) {\n try {\n return parsePullRequest(\n await this.#client.request<GithubPullRequest>('GET', pullRequestPath(input, input.pullRequestId)),\n );\n } catch (error) {\n if (isNotFound(error)) return null;\n throw error;\n }\n }\n\n async #createPullRequest(input: CreatePullRequestInput) {\n requireGithubConnection(input.connection);\n const result = await this.#client.request<GithubPullRequest>(\n 'POST',\n repositoryPath(input.sourceId, 'pulls'),\n {\n head: input.headBranch,\n base: input.baseBranch,\n title: input.title,\n body: input.body,\n draft: input.draft,\n },\n { actingUserId: input.actingUserId },\n );\n return parsePullRequest(result);\n }\n\n async #updatePullRequest(input: UpdatePullRequestInput) {\n const result = await this.#client.request<GithubPullRequest>(\n 'PATCH',\n pullRequestPath(input, input.pullRequestId),\n {\n title: input.title,\n body: input.body === null ? '' : input.body,\n base: input.baseBranch,\n state: input.state,\n },\n { actingUserId: input.actingUserId },\n );\n return parsePullRequest(result);\n }\n\n #mergePullRequest(input: MergePullRequestInput) {\n return this.#client.request<{ merged: boolean; message: string; sha: string | null }>(\n 'PUT',\n `${pullRequestPath(input, input.pullRequestId)}/merge`,\n { commitTitle: input.commitTitle, commitMessage: input.commitMessage, method: input.method },\n { actingUserId: input.actingUserId },\n );\n }\n\n async #listComments(input: ListPullRequestCommentsInput) {\n const page = parsePositiveCursor(input.cursor);\n const result = await this.#client.request<{ comments: GithubComment[] }>(\n 'GET',\n `${repositoryPath(input.sourceId, `issues/${requirePositiveId(input.pullRequestId, 'pull request')}/comments`)}?page=${page}&per_page=${PAGE_SIZE}`,\n );\n return {\n comments: result.comments.map(parseComment),\n nextCursor: result.comments.length === PAGE_SIZE ? String(page + 1) : null,\n };\n }\n\n async #createComment(input: CreatePullRequestCommentInput) {\n const comment = await this.#client.request<GithubComment>(\n 'POST',\n repositoryPath(input.sourceId, `issues/${requirePositiveId(input.pullRequestId, 'pull request')}/comments`),\n { body: input.body },\n { actingUserId: input.actingUserId },\n );\n return parseComment(comment);\n }\n\n async #updateComment(input: UpdatePullRequestCommentInput) {\n requireGithubConnection(input.connection);\n const comment = await this.#client.request<GithubComment>(\n 'PATCH',\n repositoryPath(input.sourceId, `issues/comments/${requirePositiveId(input.commentId, 'comment')}`),\n { body: input.body },\n { actingUserId: input.actingUserId },\n );\n return parseComment(comment);\n }\n\n async #deleteComment(input: DeletePullRequestCommentInput) {\n requireGithubConnection(input.connection);\n await this.#client.request<void>(\n 'DELETE',\n repositoryPath(input.sourceId, `issues/comments/${requirePositiveId(input.commentId, 'comment')}`),\n undefined,\n { actingUserId: input.actingUserId },\n );\n }\n\n async #listReviews(input: ListReviewsInput) {\n const page = parsePositiveCursor(input.cursor);\n const result = await this.#client.request<{ reviews: GithubReview[] }>(\n 'GET',\n `${pullRequestPath(input, input.pullRequestId)}/reviews?page=${page}&per_page=${PAGE_SIZE}`,\n );\n return {\n reviews: result.reviews.map(parseReview),\n nextCursor: result.reviews.length === PAGE_SIZE ? String(page + 1) : null,\n };\n }\n\n async #getReview(input: ReviewRef) {\n try {\n return parseReview(\n await this.#client.request<GithubReview>(\n 'GET',\n `${pullRequestPath(input, input.pullRequestId)}/reviews/${requirePositiveId(input.reviewId, 'review')}`,\n ),\n );\n } catch (error) {\n if (isNotFound(error)) return null;\n throw error;\n }\n }\n\n async #createReview(input: CreateReviewInput) {\n const review = await this.#client.request<GithubReview>(\n 'POST',\n `${pullRequestPath(input, input.pullRequestId)}/reviews`,\n { body: input.body, commitId: input.commitId, event: input.event ? reviewEvent(input.event) : undefined },\n { actingUserId: input.actingUserId },\n );\n return parseReview(review);\n }\n\n async #updateReview(input: UpdateReviewInput) {\n const review = await this.#client.request<GithubReview>(\n 'PUT',\n `${pullRequestPath(input, input.pullRequestId)}/reviews/${requirePositiveId(input.reviewId, 'review')}`,\n { body: input.body },\n { actingUserId: input.actingUserId },\n );\n return parseReview(review);\n }\n\n async #submitReview(input: SubmitReviewInput) {\n const review = await this.#client.request<GithubReview>(\n 'POST',\n `${pullRequestPath(input, input.pullRequestId)}/reviews/${requirePositiveId(input.reviewId, 'review')}/events`,\n { body: input.body, event: reviewEvent(input.event) },\n { actingUserId: input.actingUserId },\n );\n return parseReview(review);\n }\n\n async #dismissReview(input: DismissReviewInput) {\n const review = await this.#client.request<GithubReview>(\n 'PUT',\n `${pullRequestPath(input, input.pullRequestId)}/reviews/${requirePositiveId(input.reviewId, 'review')}/dismissals`,\n { message: input.message },\n { actingUserId: input.actingUserId },\n );\n return parseReview(review);\n }\n\n async #deletePendingReview(input: ReviewRef) {\n await this.#client.request<void>(\n 'DELETE',\n `${pullRequestPath(input, input.pullRequestId)}/reviews/${requirePositiveId(input.reviewId, 'review')}`,\n undefined,\n { actingUserId: input.actingUserId },\n );\n }\n\n async #listReviewComments(input: ListReviewCommentsInput) {\n const page = parsePositiveCursor(input.cursor);\n const result = await this.#client.request<{ comments: GithubReviewComment[] }>(\n 'GET',\n `${pullRequestPath(input, input.pullRequestId)}/comments?page=${page}&per_page=${PAGE_SIZE}`,\n );\n return {\n comments: result.comments.map(parseReviewComment),\n nextCursor: result.comments.length === PAGE_SIZE ? String(page + 1) : null,\n };\n }\n\n async #createReviewComment(input: CreateReviewCommentInput) {\n let body: Record<string, unknown>;\n if (input.replyToId !== undefined) {\n body = { body: input.body, replyToId: requirePositiveId(input.replyToId, 'review comment') };\n } else {\n if (!input.commitId || !input.path || input.line === undefined || !input.side) {\n throw new Error('A review comment requires commitId, path, line, and side unless it is a reply.');\n }\n body = {\n body: input.body,\n commitId: input.commitId,\n path: input.path,\n line: input.line,\n side: input.side.toUpperCase(),\n startLine: input.startLine,\n startSide: input.startSide?.toUpperCase(),\n };\n }\n return parseReviewComment(\n await this.#client.request<GithubReviewComment>(\n 'POST',\n `${pullRequestPath(input, input.pullRequestId)}/comments`,\n body,\n { actingUserId: input.actingUserId },\n ),\n );\n }\n\n async #updateReviewComment(input: UpdatePullRequestCommentInput) {\n requireGithubConnection(input.connection);\n return parseReviewComment(\n await this.#client.request<GithubReviewComment>(\n 'PATCH',\n repositoryPath(input.sourceId, `pulls/comments/${requirePositiveId(input.commentId, 'review comment')}`),\n { body: input.body },\n { actingUserId: input.actingUserId },\n ),\n );\n }\n\n async #deleteReviewComment(input: DeletePullRequestCommentInput) {\n requireGithubConnection(input.connection);\n await this.#client.request<void>(\n 'DELETE',\n repositoryPath(input.sourceId, `pulls/comments/${requirePositiveId(input.commentId, 'review comment')}`),\n undefined,\n { actingUserId: input.actingUserId },\n );\n }\n\n #requestedReviewers(method: 'GET' | 'POST' | 'DELETE', input: UpdateReviewersInput) {\n requireGithubConnection(input.connection);\n return this.#client.request<{ users: string[]; teams: string[] }>(\n method,\n `${pullRequestPath(input, input.pullRequestId)}/requested-reviewers`,\n method === 'GET' ? undefined : { users: input.users, teams: input.teams },\n method === 'GET' ? undefined : { actingUserId: input.actingUserId },\n );\n }\n}\n\nfunction repositoryPath(sourceId: string, suffix: string): string {\n const { owner, repo } = splitRepository(sourceId);\n return `${API_PREFIX}/github/repos/${encodeURIComponent(owner)}/${encodeURIComponent(repo)}/${suffix}`;\n}\n\nfunction pullRequestPath(\n input: { connection: IntegrationConnection; sourceId: string },\n pullRequestId: string,\n): string {\n requireGithubConnection(input.connection);\n return repositoryPath(input.sourceId, `pulls/${requirePositiveId(pullRequestId, 'pull request')}`);\n}\n\nfunction splitRepository(sourceId: string): { owner: string; repo: string } {\n const slash = sourceId.indexOf('/');\n if (slash <= 0 || slash === sourceId.length - 1) {\n throw new Error('GitHub capabilities require an owner/repository source.');\n }\n return { owner: sourceId.slice(0, slash), repo: sourceId.slice(slash + 1) };\n}\n\nfunction parseIntakeIssue(sourceId: string, issue: GithubIssue): IntakeIssue {\n return {\n id: String(issue.number),\n identifier: `#${issue.number}`,\n title: issue.title,\n url: issue.htmlUrl,\n author: issue.user?.login ?? null,\n state: issue.state,\n stateType: issue.state,\n priority: null,\n assignee: issue.assignees[0] ?? null,\n source: sourceId,\n labels: issue.labels,\n commentCount: issue.commentCount,\n createdAt: issue.createdAt,\n updatedAt: issue.updatedAt,\n };\n}\n\nfunction parseIntakeIssueDetail(sourceId: string, issue: GithubIssue, comments: GithubComment[]): IntakeIssueDetail {\n return {\n ...parseIntakeIssue(sourceId, issue),\n description: issue.body?.trim() ? issue.body : null,\n comments: comments.map(comment => ({\n author: comment.user?.login ?? null,\n body: comment.body,\n createdAt: comment.createdAt,\n })),\n };\n}\n\nfunction parsePullRequest(pullRequest: GithubPullRequest): PullRequest {\n return {\n id: String(pullRequest.number),\n title: pullRequest.title,\n url: pullRequest.htmlUrl,\n author: pullRequest.user?.login ?? null,\n body: pullRequest.body?.trim() ? pullRequest.body : null,\n state: pullRequest.state,\n draft: pullRequest.draft,\n merged: pullRequest.merged,\n mergeable: pullRequest.mergeable,\n baseBranch: pullRequest.base.ref,\n headBranch: pullRequest.head.ref,\n headSha: pullRequest.head.sha,\n createdAt: pullRequest.createdAt,\n updatedAt: pullRequest.updatedAt,\n };\n}\n\nfunction parseComment(comment: GithubComment): PullRequestComment {\n return {\n id: String(comment.id),\n url: comment.htmlUrl,\n author: comment.user?.login ?? null,\n body: comment.body,\n createdAt: comment.createdAt,\n updatedAt: comment.updatedAt,\n };\n}\n\nfunction parseReview(review: GithubReview): Review {\n const states: Record<GithubReview['state'], Review['state']> = {\n PENDING: 'pending',\n COMMENTED: 'commented',\n APPROVED: 'approved',\n CHANGES_REQUESTED: 'changes-requested',\n DISMISSED: 'dismissed',\n };\n return {\n id: String(review.id),\n url: review.htmlUrl,\n author: review.user?.login ?? null,\n body: review.body?.trim() ? review.body : null,\n state: states[review.state],\n commitId: review.commitId,\n submittedAt: review.submittedAt,\n };\n}\n\nfunction parseReviewComment(comment: GithubReviewComment): ReviewComment {\n return {\n ...parseComment(comment),\n path: comment.path,\n line: comment.line,\n side: comment.side?.toLowerCase() as 'left' | 'right' | null,\n commitId: comment.commitId,\n replyToId: comment.replyToId === null ? null : String(comment.replyToId),\n };\n}\n\nfunction requireGithubConnection(connection: IntegrationConnection): void {\n if (connection.type !== 'app-installation' && connection.type !== 'oauth') {\n throw new Error('GitHub capabilities require a GitHub connection.');\n }\n}\n\nfunction requireSingleSource(sourceIds: string[], message: string): string {\n if (sourceIds.length !== 1) throw new Error(message);\n return sourceIds[0]!;\n}\n\nfunction requireSource(sourceId: string | undefined, message: string): string {\n if (!sourceId) throw new Error(message);\n return sourceId;\n}\n\nfunction normalizeLabels(labels: string[] | undefined): string[] {\n return [...new Set((labels ?? []).map(label => label.trim()).filter(Boolean))];\n}\n\nfunction parsePositiveCursor(cursor: string | undefined): number {\n if (cursor === undefined) return 1;\n const parsed = parsePositiveInteger(cursor);\n if (parsed === null) throw new Error('GitHub cursor must be a positive page number.');\n return parsed;\n}\n\nfunction parsePositiveInteger(value: string): number | null {\n if (!/^\\d+$/.test(value)) return null;\n const parsed = Number(value);\n return Number.isSafeInteger(parsed) && parsed > 0 ? parsed : null;\n}\n\nfunction parseGithubExternalTarget(externalId: string): { repository: string; issueId: string } | null {\n const match =\n externalId.match(/^(.+\\/.+):(\\d+)$/) ??\n externalId.match(/^github:(\\d+):(?:issue|pull-request):(\\d+)$/) ??\n externalId.match(/^(\\d+):(\\d+)$/);\n if (!match?.[1] || !match[2] || parsePositiveInteger(match[2]) === null) return null;\n return { repository: match[1], issueId: match[2] };\n}\n\nfunction optionalPositiveIntegerEnv(name: 'MASTRA_PLATFORM_GITHUB_POLLING_INTERVAL_MS'): number | undefined {\n const value = process.env[name]?.trim();\n if (!value) return undefined;\n const parsed = parsePositiveInteger(value);\n if (parsed === null) throw new Error(`${name} must be a positive integer.`);\n return parsed;\n}\n\nfunction requirePositiveId(value: string, resource: string): number {\n const parsed = parsePositiveInteger(value);\n if (parsed === null) throw new Error(`GitHub ${resource} id must be a positive integer.`);\n return parsed;\n}\n\nfunction reviewEvent(event: 'approve' | 'request-changes' | 'comment') {\n if (event === 'approve') return 'APPROVE' as const;\n if (event === 'request-changes') return 'REQUEST_CHANGES' as const;\n return 'COMMENT' as const;\n}\n\nfunction isNotFound(error: unknown): boolean {\n return error instanceof PlatformApiError && error.status === 404;\n}\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"integration.js","names":["#client","#endpointHost","#pollingEnabled","#pollingIntervalMs","#reconcileEnabled","#installationReposCache","#repositoryAccessCache","#runIssueTriage","#resolveIntakeDispatch","#listIssues","#listPullRequests","#getIssue","#createIssueComment","#updateIntakeIssue","#storage","#getPullRequest","#createPullRequest","#updatePullRequest","#mergePullRequest","#listComments","#createComment","#updateComment","#deleteComment","#listReviews","#getReview","#createReview","#updateReview","#submitReview","#dismissReview","#deletePendingReview","#listReviewComments","#createReviewComment","#updateReviewComment","#deleteReviewComment","#requestedReviewers","#integrationStorage","#statusRoute","#connectRoute","#connectUserRoute","#syncInstallations","#fetchUserConnection"],"sources":["../../../../src/integrations/platform/github/integration.ts"],"sourcesContent":["import type { RequestContext } from '@mastra/core/request-context';\nimport type { ApiRoute } from '@mastra/core/server';\nimport { registerApiRoute } from '@mastra/core/server';\nimport type { Context } from 'hono';\n\nimport type { IntegrationConnection } from '../../../capabilities/connection.js';\nimport type {\n CreateIntakeCommentInput,\n Intake,\n IntakeIssue,\n IntakeIssueDetail,\n UpdateIntakeIssueInput,\n} from '../../../capabilities/intake.js';\nimport type {\n CreatePullRequestCommentInput,\n CreatePullRequestInput,\n CreateReviewCommentInput,\n CreateReviewInput,\n DeletePullRequestCommentInput,\n DismissReviewInput,\n ListPullRequestCommentsInput,\n ListPullRequestsInput,\n ListReviewCommentsInput,\n ListReviewsInput,\n MergePullRequestInput,\n PullRequest,\n PullRequestComment,\n PullRequestRef,\n RepositoryAccess,\n Review,\n ReviewComment,\n ReviewRef,\n SubmitReviewInput,\n UpdatePullRequestCommentInput,\n UpdatePullRequestInput,\n UpdateReviewInput,\n UpdateReviewersInput,\n VersionControl,\n} from '../../../capabilities/version-control.js';\nimport type { IntegrationStorageHandle } from '../../../storage/domains/integrations/base.js';\nimport type {\n SourceControlInstallation,\n SourceControlStorageHandle,\n} from '../../../storage/domains/source-control/base.js';\nimport type { FactoryIntegration, IntegrationContext, IntegrationTools } from '../../base.js';\nimport type { GithubIntegration, GithubRepositoryPermission, RepoSummary } from '../../github/integration.js';\nimport type { GithubIssueTriageInput, GithubIssueTriageResult } from '../../github/issue-triage.js';\nimport { runGithubIssueTriage } from '../../github/issue-triage.js';\nimport { buildGithubRoutes } from '../../github/routes.js';\nimport { attachGithubReconciler, attachGithubRules } from '../../github/rules.js';\nimport type { ReconcilePullRequestState } from '../../github/rules.js';\nimport {\n createGithubSubscriptionTools,\n parseCreatedPullRequest,\n subscribeCurrentSessionToPullRequest,\n} from '../../github/session-subscriptions.js';\nimport type { GithubSubscriptionStorage } from '../../github/subscriptions.js';\nimport {\n logPlatformInfo,\n logPlatformWarn,\n PlatformApiClient,\n PlatformApiError,\n platformApiClientConfigFromEnv,\n} from '../api-client.js';\nimport { PlatformGithubEventWorker } from './event-worker.js';\nimport type { PlatformGithubEventStorage } from './event-worker.js';\n\ntype GithubActor = { login: string; avatarUrl: string | null; htmlUrl: string | null } | null;\n\ntype PlatformGithubInstallation = {\n installationId: number;\n accountLogin: string;\n accountType: string;\n suspendedAt: string | null;\n usable: boolean;\n};\n\ntype PlatformGithubUserConnection = {\n connected: boolean;\n githubUsername: string | null;\n reason?: 'token-invalid' | 'no-accessible-installation' | 'missing-permissions' | 'verification-unavailable' | null;\n};\n\ntype GithubIssue = {\n number: number;\n state: 'open' | 'closed';\n title: string;\n body: string | null;\n htmlUrl: string;\n labels: string[];\n assignees: string[];\n commentCount: number;\n user: GithubActor;\n createdAt: string;\n updatedAt: string;\n};\n\ntype GithubComment = {\n id: number;\n body: string;\n htmlUrl: string;\n user: GithubActor;\n createdAt: string;\n updatedAt: string;\n};\n\ntype GithubPullRequest = {\n number: number;\n title: string;\n body: string | null;\n state: 'open' | 'closed';\n htmlUrl: string;\n merged: boolean;\n mergeable: boolean | null;\n draft: boolean;\n head: { ref: string; sha: string };\n base: { ref: string; repo: { id: number; fullName: string } };\n user: GithubActor;\n createdAt: string;\n updatedAt: string;\n};\n\ntype GithubReview = {\n id: number;\n htmlUrl: string | null;\n body: string | null;\n state: 'PENDING' | 'COMMENTED' | 'APPROVED' | 'CHANGES_REQUESTED' | 'DISMISSED';\n commitId: string | null;\n submittedAt: string | null;\n user: GithubActor;\n};\n\ntype GithubReviewComment = GithubComment & {\n path: string;\n line: number | null;\n side: 'LEFT' | 'RIGHT' | null;\n commitId: string;\n replyToId: number | null;\n};\n\nconst PAGE_SIZE = 30;\nconst API_PREFIX = '/v1/server';\n/**\n * How long an installation's repository listing may be reused. The repos\n * route and token minting both call it — often several times within one UI\n * interaction — and each call is a full Platform round trip.\n */\nconst INSTALLATION_REPOS_CACHE_TTL_MS = 30_000;\n/**\n * How long a minted repository-scoped token may be reused. GitHub\n * installation tokens live ~60 minutes; 5 minutes keeps a wide validity\n * margin while collapsing the per-session-materialization mint round trip.\n */\nconst REPOSITORY_ACCESS_CACHE_TTL_MS = 5 * 60_000;\n/**\n * Upper bound for both TTL caches. Entries expire lazily on re-access, so\n * without a hard cap keys that stop being queried would accumulate for the\n * integration's (long) lifetime. Insertion-order eviction — matches the\n * bounded verification cache in `@mastra/auth-studio`.\n */\nconst MAX_CACHE_ENTRIES = 1000;\n\nfunction setBounded<K, V>(cache: Map<K, V>, key: K, value: V): void {\n cache.delete(key);\n cache.set(key, value);\n if (cache.size > MAX_CACHE_ENTRIES) {\n const oldest = cache.keys().next().value;\n if (oldest !== undefined) cache.delete(oldest);\n }\n}\n\nconst REPOSITORY_TOKEN_PERMISSIONS = {\n contents: 'write',\n issues: 'write',\n pull_requests: 'write',\n} as const;\n\nfunction loose(c: unknown): Context {\n return c as Context;\n}\n\nfunction routeBaseUrl(ctx: IntegrationContext, requestUrl: string): string {\n return (ctx.baseUrl || new URL(requestUrl).origin).replace(/\\/+$/, '');\n}\n\nexport class PlatformGithubIntegration implements FactoryIntegration {\n readonly id = 'github';\n readonly #client: PlatformApiClient;\n readonly #endpointHost: string;\n readonly #pollingEnabled: boolean;\n readonly #pollingIntervalMs: number | undefined;\n readonly #reconcileEnabled: boolean;\n #storage: SourceControlStorageHandle | undefined;\n #integrationStorage: GithubSubscriptionStorage | undefined;\n /** installationId → cached repository listing (TTL-bounded). */\n readonly #installationReposCache = new Map<number, { repos: RepoSummary[]; expiresAt: number }>();\n /** `orgId:repositoryId` → cached repository access (TTL-bounded). */\n readonly #repositoryAccessCache = new Map<string, { access: RepositoryAccess; expiresAt: number }>();\n readonly #runIssueTriage?: (input: GithubIssueTriageInput) => Promise<GithubIssueTriageResult>;\n\n readonly intake: Intake = {\n resolveIntakeDispatch: input => this.#resolveIntakeDispatch(input),\n listSources: async ({ orgId, userId }) => {\n const installations = await this.#client.request<{\n installations: Array<{\n installationId: number;\n accountLogin: string;\n accountType: string;\n suspendedAt: string | null;\n usable: boolean;\n }>;\n }>('GET', `${API_PREFIX}/github-app/installations`);\n const usable = installations.installations.filter(\n installation => installation.usable && !installation.suspendedAt,\n );\n const repositories = await Promise.all(\n usable.map(async installation => {\n const storedInstallation = await this.versionControl.registerInstallation({\n orgId,\n userId,\n installation: {\n externalId: String(installation.installationId),\n accountName: installation.accountLogin,\n accountType: installation.accountType,\n },\n });\n const result = await this.#client.request<{\n repositories: Array<{\n id: number;\n fullName: string;\n private: boolean;\n defaultBranch: string;\n htmlUrl: string;\n }>;\n }>('GET', `${API_PREFIX}/github-app/installations/${installation.installationId}/repositories`);\n await this.versionControl.registerRepositories({\n orgId,\n installationId: storedInstallation.id,\n repositories: result.repositories.map(repository => ({\n externalId: String(repository.id),\n slug: repository.fullName,\n defaultBranch: repository.defaultBranch,\n metadata: { private: repository.private, url: repository.htmlUrl },\n })),\n });\n return result.repositories.map(repository => ({ repository, installation }));\n }),\n );\n return repositories.flat().map(({ repository, installation }) => ({\n id: repository.fullName,\n name: repository.fullName,\n type: 'repository',\n metadata: {\n installationId: installation.installationId,\n accountLogin: installation.accountLogin,\n accountType: installation.accountType,\n repositoryId: repository.id,\n defaultBranch: repository.defaultBranch,\n private: repository.private,\n url: repository.htmlUrl,\n },\n }));\n },\n listItems: async ({ sourceIds, cursor }) => {\n const page = parsePositiveCursor(cursor);\n const pages = await Promise.all(\n sourceIds.map(async sourceId => {\n const connection = { type: 'app-installation' as const, installationId: 1 };\n const [issues, pullRequests] = await Promise.all([\n this.#listIssues(connection, sourceId, page),\n this.#listPullRequests({ connection, sourceId, includeDrafts: false, cursor: String(page) }),\n ]);\n return {\n items: [\n ...issues.issues.map(issue => ({\n source: { type: 'issue', externalId: `${sourceId}:${issue.id}`, url: issue.url },\n sourceId,\n title: issue.title,\n status: issue.state ?? undefined,\n labels: issue.labels,\n assignee: issue.assignee,\n createdAt: issue.createdAt,\n updatedAt: issue.updatedAt,\n metadata: { repository: sourceId, number: Number(issue.id), author: issue.author },\n })),\n ...pullRequests.pullRequests.map(pullRequest => ({\n source: { type: 'pull-request', externalId: `${sourceId}:${pullRequest.id}`, url: pullRequest.url },\n sourceId,\n title: pullRequest.title,\n status: pullRequest.state,\n createdAt: pullRequest.createdAt,\n updatedAt: pullRequest.updatedAt,\n metadata: {\n repository: sourceId,\n number: Number(pullRequest.id),\n author: pullRequest.author,\n baseBranch: pullRequest.baseBranch,\n headBranch: pullRequest.headBranch,\n },\n })),\n ],\n hasNextPage: issues.nextCursor !== null || pullRequests.nextCursor !== null,\n };\n }),\n );\n return {\n items: pages.flatMap(result => result.items),\n nextCursor: pages.some(result => result.hasNextPage) ? String(page + 1) : null,\n };\n },\n listIssues: async input => {\n requireGithubConnection(input.connection);\n const sourceId = requireSingleSource(input.sourceIds, 'GitHub Intake requires exactly one repository source.');\n return this.#listIssues(input.connection, sourceId, parsePositiveCursor(input.cursor), input.labels);\n },\n getIssue: input => this.#getIssue(input.connection, input.sourceId, input.issueId),\n createComment: input => this.#createIssueComment(input),\n updateIssue: input => this.#updateIntakeIssue(input),\n };\n\n readonly versionControl: VersionControl = {\n initialize: ({ storage }) => {\n this.#storage = storage;\n },\n registerInstallation: ({ orgId, userId, installation }) =>\n this.storage.installations.upsert({\n orgId,\n connectedByUserId: userId,\n externalId: installation.externalId,\n accountName: installation.accountName,\n accountType: installation.accountType,\n providerMetadata: installation.metadata,\n }),\n registerRepositories: ({ orgId, installationId, repositories }) =>\n Promise.all(\n repositories.map(repository =>\n this.storage.repositories.upsert({\n orgId,\n input: {\n installationId,\n externalId: repository.externalId,\n slug: repository.slug,\n defaultBranch: repository.defaultBranch,\n providerMetadata: repository.metadata,\n },\n }),\n ),\n ),\n getRepositoryAccess: async ({ orgId, repositoryId }) => {\n // Every session materialization requests access; reuse a recent grant\n // instead of re-minting through the Platform each time. The TTL keeps\n // a wide margin under GitHub's ~60min installation-token lifetime.\n const cacheKey = `${orgId}:${repositoryId}`;\n const cached = this.#repositoryAccessCache.get(cacheKey);\n if (cached && cached.expiresAt > Date.now()) return cached.access;\n this.#repositoryAccessCache.delete(cacheKey);\n\n const repository = await this.storage.repositories.get({ orgId, id: repositoryId });\n if (!repository) throw new Error('Version-control repository not found.');\n const cloneUrl = `https://github.com/${repository.slug}.git`;\n const installation = await this.storage.installations.get({ orgId, id: repository.installationId });\n if (!installation) throw new Error('Version-control installation not found.');\n const installationId = parsePositiveInteger(installation.externalId);\n if (installationId === null) throw new Error('GitHub installation id is invalid.');\n const repositoryName = splitRepository(repository.slug).repo;\n\n try {\n const token = await this.#client.request<{ token: string }>(\n 'POST',\n `${API_PREFIX}/github-app/installations/${installationId}/token`,\n { repositories: [repositoryName], permissions: REPOSITORY_TOKEN_PERMISSIONS },\n );\n const access: RepositoryAccess = {\n cloneUrl,\n authorization: { scheme: 'bearer', token: token.token },\n };\n setBounded(this.#repositoryAccessCache, cacheKey, {\n access,\n expiresAt: Date.now() + REPOSITORY_ACCESS_CACHE_TTL_MS,\n });\n return access;\n } catch (err) {\n // Recover from stale installation: when a GitHub App is uninstalled and reinstalled,\n // GitHub assigns a new installation ID. Platform creates a new installation row,\n // and Factory's intake.listSources creates a new local installation row with the\n // new externalId. Try to find the new installation by accountName.\n if (!isNotFound(err) || !installation.accountName) throw err;\n const installations = await this.storage.installations.list({ orgId });\n const newInstallation = installations.find(\n inst => inst.accountName === installation.accountName && inst.id !== installation.id,\n );\n if (!newInstallation) throw err;\n const newInstallationId = parsePositiveInteger(newInstallation.externalId);\n if (newInstallationId === null) throw err;\n\n // Persist the migration so we don't hit the 404 path on every call.\n // This updates the repository's installation_id to the new installation.\n await this.storage.repositories.migrateInstallation({\n orgId,\n id: repositoryId,\n newInstallationId: newInstallation.id,\n });\n\n const token = await this.#client.request<{ token: string }>(\n 'POST',\n `${API_PREFIX}/github-app/installations/${newInstallationId}/token`,\n { repositories: [repositoryName], permissions: REPOSITORY_TOKEN_PERMISSIONS },\n );\n const access: RepositoryAccess = {\n cloneUrl,\n authorization: { scheme: 'bearer', token: token.token },\n };\n setBounded(this.#repositoryAccessCache, cacheKey, {\n access,\n expiresAt: Date.now() + REPOSITORY_ACCESS_CACHE_TTL_MS,\n });\n return access;\n }\n },\n listPullRequests: input => this.#listPullRequests(input),\n getPullRequest: input => this.#getPullRequest(input),\n createPullRequest: input => this.#createPullRequest(input),\n updatePullRequest: input => this.#updatePullRequest(input),\n closePullRequest: input => this.#updatePullRequest({ ...input, state: 'closed' }),\n mergePullRequest: input => this.#mergePullRequest(input),\n listComments: input => this.#listComments(input),\n createComment: input => this.#createComment(input),\n updateComment: input => this.#updateComment(input),\n deleteComment: input => this.#deleteComment(input),\n listReviews: input => this.#listReviews(input),\n getReview: input => this.#getReview(input),\n createReview: input => this.#createReview(input),\n updateReview: input => this.#updateReview(input),\n submitReview: input => this.#submitReview(input),\n dismissReview: input => this.#dismissReview(input),\n deletePendingReview: input => this.#deletePendingReview(input),\n listReviewComments: input => this.#listReviewComments(input),\n createReviewComment: input => this.#createReviewComment(input),\n updateReviewComment: input => this.#updateReviewComment(input),\n deleteReviewComment: input => this.#deleteReviewComment(input),\n listRequestedReviewers: input => this.#requestedReviewers('GET', input),\n requestReviewers: input => this.#requestedReviewers('POST', input),\n removeRequestedReviewers: input => this.#requestedReviewers('DELETE', input),\n };\n\n constructor(\n options: {\n runIssueTriage?: (input: GithubIssueTriageInput) => Promise<GithubIssueTriageResult>;\n } = {},\n ) {\n const config = platformApiClientConfigFromEnv();\n this.#client = new PlatformApiClient(config);\n this.#endpointHost = new URL(config.baseUrl).host;\n this.#pollingEnabled = process.env.MASTRA_PLATFORM_GITHUB_POLLING_ENABLED?.trim().toLowerCase() !== 'false';\n this.#pollingIntervalMs = optionalPositiveIntegerEnv('MASTRA_PLATFORM_GITHUB_POLLING_INTERVAL_MS');\n this.#reconcileEnabled = process.env.MASTRA_PLATFORM_GITHUB_RECONCILE_ENABLED?.trim().toLowerCase() !== 'false';\n this.#runIssueTriage = options.runIssueTriage;\n }\n\n get storage(): SourceControlStorageHandle {\n if (!this.#storage) throw new Error('PlatformGithubIntegration source-control storage has not been initialized.');\n return this.#storage;\n }\n\n get sourceControlStorage(): SourceControlStorageHandle {\n return this.storage;\n }\n\n get integrationStorage(): GithubSubscriptionStorage {\n if (!this.#integrationStorage) {\n throw new Error('PlatformGithubIntegration generic storage has not been initialized.');\n }\n return this.#integrationStorage;\n }\n\n /** Resolve a stored GitHub locator without scanning installations or repositories. */\n async #resolveIntakeDispatch({\n orgId,\n externalSource,\n }: {\n orgId: string;\n externalSource: { type: string; externalId: string };\n }): Promise<{ connection: IntegrationConnection; sourceId: string; issueId: string } | null> {\n const target = parseGithubExternalTarget(externalSource.externalId);\n if (!target) return null;\n const repository = target.repository.includes('/')\n ? target.repository\n : (await this.storage.repositories.findByExternalId({ orgId, externalId: target.repository }))?.slug;\n if (!repository) return null;\n return {\n connection: { type: 'app-installation', installationId: 1 },\n sourceId: repository,\n issueId: target.issueId,\n };\n }\n\n initialize({ storage }: { storage: IntegrationStorageHandle }): void {\n this.#integrationStorage = storage as unknown as GithubSubscriptionStorage;\n logPlatformInfo('Platform GitHub integration initialized', {\n endpointHost: this.#endpointHost,\n pollingEnabled: this.#pollingEnabled,\n pollingIntervalMs: this.#pollingIntervalMs,\n reconcileEnabled: this.#reconcileEnabled,\n });\n }\n\n routes(ctx: IntegrationContext): ApiRoute[] {\n const ingestFactoryEvent = attachGithubRules(this, ctx);\n return [\n this.#statusRoute(ctx),\n this.#connectRoute(ctx),\n this.#connectUserRoute(ctx),\n ...buildGithubRoutes({\n auth: ctx.auth,\n fleet: ctx.fleet,\n storage: ctx.factoryStorage,\n github: this as unknown as GithubIntegration,\n stateSigner: ctx.stateSigner,\n baseUrl: ctx.baseUrl,\n controller: ctx.controller,\n projects: ctx.storage.projects,\n emitAudit: ctx.hooks?.emitAudit,\n ingestFactoryEvent,\n runIssueTriage:\n this.#runIssueTriage ??\n (ctx.controller ? input => runGithubIssueTriage({ controller: ctx.controller!, input }) : undefined),\n }).filter(\n route =>\n route.path !== '/web/github/status' &&\n route.path !== '/web/github/webhook' &&\n !route.path.startsWith('/auth/github/'),\n ),\n ];\n }\n\n #statusRoute(ctx: IntegrationContext): ApiRoute {\n return registerApiRoute('/web/github/status', {\n method: 'GET',\n requiresAuth: false,\n handler: async c => {\n await ctx.auth.ensureUser(loose(c));\n const tenant = ctx.auth.tenant(loose(c));\n if (!tenant) return c.json({ error: 'unauthorized', reason: 'auth_required' }, 401);\n if (!tenant.orgId) {\n return c.json({\n enabled: true,\n sandboxEnabled: ctx.fleet.enabled,\n organizationRequired: true,\n connected: false,\n installations: [],\n userConnected: false,\n userGithubUsername: null,\n reason: 'organization_required',\n diagnostics: this.diagnostics(),\n });\n }\n\n const [installations, userConnection] = await Promise.all([\n this.#syncInstallations(tenant.orgId, tenant.userId),\n this.#fetchUserConnection(tenant.userId),\n ]);\n return c.json({\n enabled: true,\n sandboxEnabled: ctx.fleet.enabled,\n connected: installations.length > 0,\n installations: installations.map(installation => ({\n installationId: Number(installation.externalId),\n accountLogin: installation.accountName,\n accountType: installation.accountType,\n })),\n userConnected: userConnection.connected,\n userGithubUsername: userConnection.githubUsername,\n reason: installations.length > 0 ? 'ready' : 'not_connected',\n diagnostics: this.diagnostics(),\n });\n },\n });\n }\n\n #connectRoute(ctx: IntegrationContext): ApiRoute {\n return registerApiRoute('/auth/github/connect', {\n method: 'GET',\n requiresAuth: false,\n handler: async c => {\n await ctx.auth.ensureUser(loose(c));\n const tenant = ctx.auth.tenant(loose(c));\n if (!tenant?.orgId) return c.json({ error: 'unauthorized' }, 401);\n\n const redirectTo = c.req.query('redirectTo') || c.req.query('return_to') || '/';\n const originator = routeBaseUrl(ctx, c.req.url);\n logPlatformInfo('Starting Platform GitHub connect flow', {\n orgId: tenant.orgId,\n redirectTo,\n originator,\n });\n const query = new URLSearchParams({\n action: 'install',\n redirectTo,\n originator,\n });\n const { url } = await this.#client.request<{ url: string }>(\n 'GET',\n `${API_PREFIX}/github-app/install-url?${query}`,\n );\n return c.redirect(url);\n },\n });\n }\n\n #connectUserRoute(ctx: IntegrationContext): ApiRoute {\n return registerApiRoute('/auth/github/connect-user', {\n method: 'GET',\n requiresAuth: false,\n handler: async c => {\n await ctx.auth.ensureUser(loose(c));\n const tenant = ctx.auth.tenant(loose(c));\n if (!tenant?.orgId) return c.json({ error: 'unauthorized' }, 401);\n\n const redirectTo = c.req.query('redirectTo') || c.req.query('return_to') || '/';\n const originator = routeBaseUrl(ctx, c.req.url);\n logPlatformInfo('Starting Platform GitHub user authorization flow', {\n orgId: tenant.orgId,\n redirectTo,\n originator,\n });\n const query = new URLSearchParams({\n userId: tenant.userId,\n redirectTo,\n originator,\n });\n const { url } = await this.#client.request<{ url: string }>(\n 'GET',\n `${API_PREFIX}/github-app/authenticate?${query}`,\n );\n return c.redirect(url);\n },\n });\n }\n\n /**\n * Personal GitHub connection status for the acting user. Returns\n * not-connected when the platform predates the user-connection endpoint.\n */\n async #fetchUserConnection(userId: string): Promise<PlatformGithubUserConnection> {\n try {\n const connection = await this.#client.request<PlatformGithubUserConnection>(\n 'GET',\n `${API_PREFIX}/github-app/user-connection?${new URLSearchParams({ userId })}`,\n );\n if (!connection.connected && connection.reason) {\n logPlatformWarn('Platform GitHub user connection verification failed', {\n userId,\n reason: connection.reason,\n });\n }\n return connection;\n } catch {\n return { connected: false, githubUsername: null };\n }\n }\n\n async #syncInstallations(orgId: string, userId: string): Promise<SourceControlInstallation[]> {\n const result = await this.#client.request<{ installations: PlatformGithubInstallation[] }>(\n 'GET',\n `${API_PREFIX}/github-app/installations`,\n );\n const usableInstallations = result.installations.filter(\n installation => installation.usable && !installation.suspendedAt,\n );\n return Promise.all(\n usableInstallations.map(installation =>\n this.versionControl.registerInstallation({\n orgId,\n userId,\n installation: {\n externalId: String(installation.installationId),\n accountName: installation.accountLogin,\n accountType: installation.accountType,\n },\n }),\n ),\n );\n }\n\n workers(ctx: IntegrationContext): PlatformGithubEventWorker[] {\n if (!this.#pollingEnabled && !this.#reconcileEnabled) return [];\n if (!ctx.controller) {\n throw new Error('Platform GitHub event polling requires the mounted Mastra Code controller.');\n }\n return [\n new PlatformGithubEventWorker({\n client: this.#client,\n controller: ctx.controller,\n github: this,\n storage: ctx.storage.generic as unknown as PlatformGithubEventStorage,\n ingestFactoryEvent: attachGithubRules(this, ctx),\n reconcileFactoryState: this.#reconcileEnabled\n ? attachGithubReconciler(this, ctx, input => this.fetchPullRequestState(input))\n : undefined,\n pollEventsEnabled: this.#pollingEnabled,\n intervalMs: this.#pollingIntervalMs,\n }),\n ];\n }\n\n /**\n * Reads live PR state through the Platform GitHub proxy for the merge\n * reconciler. Returns undefined when the PR cannot be resolved (missing,\n * proxy error) so a sweep never fabricates a merge.\n */\n async fetchPullRequestState(input: {\n installationId: number;\n repository: string;\n number: number;\n }): Promise<ReconcilePullRequestState | undefined> {\n let repository: { owner: string; repo: string };\n try {\n repository = splitRepository(input.repository);\n } catch {\n return undefined;\n }\n try {\n const result = await this.#client.request<{\n title?: string;\n html_url?: string;\n state?: string;\n merged?: boolean;\n created_at?: string;\n merged_by?: { login?: string } | null;\n head?: { ref?: string };\n base?: { ref?: string };\n }>(\n 'GET',\n `${API_PREFIX}/github/repos/${encodeURIComponent(repository.owner)}/${encodeURIComponent(repository.repo)}/pulls/${input.number}`,\n );\n return {\n title: result.title ?? `PR ${input.number}`,\n url: result.html_url ?? `https://github.com/${input.repository}/pull/${input.number}`,\n state: result.state === 'closed' ? 'closed' : 'open',\n merged: result.merged === true,\n headBranch: result.head?.ref ?? '',\n baseBranch: result.base?.ref ?? '',\n ...(result.created_at ? { createdAt: result.created_at } : {}),\n ...(result.merged_by?.login ? { mergedBy: result.merged_by.login } : {}),\n };\n } catch {\n return undefined;\n }\n }\n\n sessionTools({ requestContext }: { requestContext: RequestContext }): IntegrationTools {\n return createGithubSubscriptionTools(requestContext, this as unknown as GithubIntegration);\n }\n\n async postToolObserver({\n toolContext,\n requestContext,\n }: Parameters<NonNullable<FactoryIntegration['postToolObserver']>>[0]): Promise<void> {\n const pullRequestUrl = parseCreatedPullRequest(toolContext);\n if (!pullRequestUrl || !requestContext) return;\n await subscribeCurrentSessionToPullRequest(\n requestContext,\n pullRequestUrl,\n 'auto-gh-pr-create',\n this as unknown as GithubIntegration,\n );\n }\n\n diagnostics(): Record<string, unknown> {\n return {\n mode: 'platform',\n endpointHost: this.#endpointHost,\n polling: {\n enabled: this.#pollingEnabled,\n ...(this.#pollingIntervalMs === undefined ? {} : { intervalMs: this.#pollingIntervalMs }),\n },\n reconcile: { enabled: this.#reconcileEnabled },\n };\n }\n\n async getRepositoryCollaboratorPermission(\n _installationId: number,\n repoFullName: string,\n username: string,\n signal?: AbortSignal,\n ): Promise<GithubRepositoryPermission | undefined> {\n let repository: { owner: string; repo: string };\n try {\n repository = splitRepository(repoFullName);\n } catch {\n return undefined;\n }\n try {\n const result = await this.#client.request<{ permission: GithubRepositoryPermission }>(\n 'GET',\n `${API_PREFIX}/github/repos/${encodeURIComponent(repository.owner)}/${encodeURIComponent(repository.repo)}/collaborators/${encodeURIComponent(username)}/permission`,\n undefined,\n { signal },\n );\n return result.permission;\n } catch {\n return undefined;\n }\n }\n\n async listInstallationRepos(installationId: number): Promise<RepoSummary[]> {\n // Hot in two places — the repos route and token minting (which re-lists\n // only to validate the 1–10 repo rule). A short TTL collapses repeat\n // Platform round trips within one UI interaction.\n const cached = this.#installationReposCache.get(installationId);\n if (cached && cached.expiresAt > Date.now()) return cached.repos;\n this.#installationReposCache.delete(installationId);\n\n const result = await this.#client.request<{\n repositories: Array<{\n id: number;\n owner: string;\n name: string;\n fullName: string;\n private: boolean;\n defaultBranch: string;\n }>;\n }>('GET', `${API_PREFIX}/github-app/installations/${installationId}/repositories`);\n const repos = result.repositories.map(repository => ({ ...repository, installationId }));\n setBounded(this.#installationReposCache, installationId, {\n repos,\n expiresAt: Date.now() + INSTALLATION_REPOS_CACHE_TTL_MS,\n });\n return repos;\n }\n\n async mintInstallationToken(installationId: number): Promise<string> {\n const repositories = await this.listInstallationRepos(installationId);\n if (repositories.length === 0 || repositories.length > 10) {\n throw new Error('Platform GitHub token minting requires between one and ten installation repositories.');\n }\n const result = await this.#client.request<{ token: string }>(\n 'POST',\n `${API_PREFIX}/github-app/installations/${installationId}/token`,\n { repositories: repositories.map(repository => repository.name), permissions: REPOSITORY_TOKEN_PERMISSIONS },\n );\n return result.token;\n }\n\n async addIssueLabels(\n _installationId: number,\n sourceId: string,\n issueNumber: number,\n labels: string[],\n ): Promise<string[]> {\n const result = await this.#client.request<{ labels: string[] }>(\n 'POST',\n repositoryPath(sourceId, `issues/${issueNumber}/labels`),\n { labels },\n );\n return result.labels;\n }\n\n getInstallationOctokit(_installationId: number): ReturnType<GithubIntegration['getInstallationOctokit']> {\n return {\n pulls: {\n get: async ({ owner, repo, pull_number }: { owner: string; repo: string; pull_number: number }) => {\n const data = await this.#client.request<GithubPullRequest>(\n 'GET',\n repositoryPath(`${owner}/${repo}`, `pulls/${pull_number}`),\n );\n return { data: { base: { repo: { id: data.base.repo.id } } } };\n },\n },\n } as unknown as ReturnType<GithubIntegration['getInstallationOctokit']>;\n }\n\n async #listIssues(connection: IntegrationConnection, sourceId: string, page: number, labels?: string[]) {\n requireGithubConnection(connection);\n const path = repositoryPath(sourceId, 'issues');\n const query = new URLSearchParams({ state: 'open', page: String(page), per_page: String(PAGE_SIZE) });\n const normalizedLabels = normalizeLabels(labels);\n if (normalizedLabels.length > 0) query.set('label', normalizedLabels.join(','));\n const result = await this.#client.request<{ issues: GithubIssue[] }>('GET', `${path}?${query}`);\n return {\n issues: result.issues.map(issue => parseIntakeIssue(sourceId, issue)),\n nextCursor: result.issues.length === PAGE_SIZE ? String(page + 1) : null,\n };\n }\n\n async #getIssue(connection: IntegrationConnection, sourceId: string | undefined, issueId: string) {\n requireGithubConnection(connection);\n const repository = requireSource(sourceId, 'GitHub Intake requires a repository source.');\n const issueNumber = requirePositiveId(issueId, 'issue');\n try {\n const [issue, comments] = await Promise.all([\n this.#client.request<GithubIssue>('GET', repositoryPath(repository, `issues/${issueNumber}`)),\n this.#client.request<{ comments: GithubComment[] }>(\n 'GET',\n `${repositoryPath(repository, `issues/${issueNumber}/comments`)}?per_page=100`,\n ),\n ]);\n return parseIntakeIssueDetail(repository, issue, comments.comments);\n } catch (error) {\n if (isNotFound(error)) return null;\n throw error;\n }\n }\n\n async #updateIntakeIssue(input: UpdateIntakeIssueInput): Promise<IntakeIssue | null> {\n requireGithubConnection(input.connection);\n const repository = requireSource(input.sourceId, 'GitHub Intake requires a repository source.');\n const issueNumber = requirePositiveId(input.issueId, 'issue');\n if (input.state.kind === 'byName') {\n logPlatformWarn(`Platform GitHub: updateIssue byName is not supported (name=${input.state.name}); ignoring.`);\n return null;\n }\n const targetState: 'open' | 'closed' =\n input.state.stateType === 'unstarted' || input.state.stateType === 'started' ? 'open' : 'closed';\n const stateReason: 'completed' | 'not_planned' | null =\n targetState === 'closed' ? (input.state.stateType === 'canceled' ? 'not_planned' : 'completed') : null;\n // Reject PR targets: probe the pulls endpoint. A 200 means the number is a\n // pull request, not an issue. Factory does not close PRs via updateIssue —\n // PR merges/closes go through the version-control pipeline.\n try {\n await this.#client.request<GithubPullRequest>('GET', repositoryPath(repository, `pulls/${issueNumber}`));\n logPlatformWarn(`Platform GitHub: updateIssue rejected — target ${repository}#${issueNumber} is a pull request.`);\n return null;\n } catch (error) {\n if (!isNotFound(error)) throw error;\n // 404 on pulls means it's an issue (or nothing) — fall through to PATCH.\n }\n try {\n const issue = await this.#client.request<GithubIssue>(\n 'PATCH',\n repositoryPath(repository, `issues/${issueNumber}`),\n {\n state: targetState,\n ...(stateReason ? { state_reason: stateReason } : {}),\n },\n { actingUserId: input.actingUserId },\n );\n return parseIntakeIssue(repository, issue);\n } catch (error) {\n if (isNotFound(error)) return null;\n throw error;\n }\n }\n\n async #createIssueComment(input: CreateIntakeCommentInput) {\n requireGithubConnection(input.connection);\n const repository = requireSource(input.sourceId, 'GitHub Intake requires a repository source.');\n const issueNumber = requirePositiveId(input.issueId, 'issue');\n try {\n const comment = await this.#client.request<GithubComment>(\n 'POST',\n repositoryPath(repository, `issues/${issueNumber}/comments`),\n { body: input.body },\n { actingUserId: input.actingUserId },\n );\n return { id: String(comment.id), url: comment.htmlUrl };\n } catch (error) {\n if (isNotFound(error)) return null;\n throw error;\n }\n }\n\n async #listPullRequests(input: ListPullRequestsInput) {\n requireGithubConnection(input.connection);\n const page = parsePositiveCursor(input.cursor);\n const query = new URLSearchParams({\n state: input.state ?? 'open',\n page: String(page),\n per_page: String(PAGE_SIZE),\n });\n const result = await this.#client.request<{ pullRequests: GithubPullRequest[] }>(\n 'GET',\n `${repositoryPath(input.sourceId, 'pulls')}?${query}`,\n );\n return {\n pullRequests: result.pullRequests\n .filter(pullRequest => input.includeDrafts !== false || !pullRequest.draft)\n .map(parsePullRequest),\n nextCursor: result.pullRequests.length === PAGE_SIZE ? String(page + 1) : null,\n };\n }\n\n async #getPullRequest(input: PullRequestRef) {\n try {\n return parsePullRequest(\n await this.#client.request<GithubPullRequest>('GET', pullRequestPath(input, input.pullRequestId)),\n );\n } catch (error) {\n if (isNotFound(error)) return null;\n throw error;\n }\n }\n\n async #createPullRequest(input: CreatePullRequestInput) {\n requireGithubConnection(input.connection);\n const result = await this.#client.request<GithubPullRequest>(\n 'POST',\n repositoryPath(input.sourceId, 'pulls'),\n {\n head: input.headBranch,\n base: input.baseBranch,\n title: input.title,\n body: input.body,\n draft: input.draft,\n },\n { actingUserId: input.actingUserId },\n );\n return parsePullRequest(result);\n }\n\n async #updatePullRequest(input: UpdatePullRequestInput) {\n const result = await this.#client.request<GithubPullRequest>(\n 'PATCH',\n pullRequestPath(input, input.pullRequestId),\n {\n title: input.title,\n body: input.body === null ? '' : input.body,\n base: input.baseBranch,\n state: input.state,\n },\n { actingUserId: input.actingUserId },\n );\n return parsePullRequest(result);\n }\n\n #mergePullRequest(input: MergePullRequestInput) {\n return this.#client.request<{ merged: boolean; message: string; sha: string | null }>(\n 'PUT',\n `${pullRequestPath(input, input.pullRequestId)}/merge`,\n { commitTitle: input.commitTitle, commitMessage: input.commitMessage, method: input.method },\n { actingUserId: input.actingUserId },\n );\n }\n\n async #listComments(input: ListPullRequestCommentsInput) {\n const page = parsePositiveCursor(input.cursor);\n const result = await this.#client.request<{ comments: GithubComment[] }>(\n 'GET',\n `${repositoryPath(input.sourceId, `issues/${requirePositiveId(input.pullRequestId, 'pull request')}/comments`)}?page=${page}&per_page=${PAGE_SIZE}`,\n );\n return {\n comments: result.comments.map(parseComment),\n nextCursor: result.comments.length === PAGE_SIZE ? String(page + 1) : null,\n };\n }\n\n async #createComment(input: CreatePullRequestCommentInput) {\n const comment = await this.#client.request<GithubComment>(\n 'POST',\n repositoryPath(input.sourceId, `issues/${requirePositiveId(input.pullRequestId, 'pull request')}/comments`),\n { body: input.body },\n { actingUserId: input.actingUserId },\n );\n return parseComment(comment);\n }\n\n async #updateComment(input: UpdatePullRequestCommentInput) {\n requireGithubConnection(input.connection);\n const comment = await this.#client.request<GithubComment>(\n 'PATCH',\n repositoryPath(input.sourceId, `issues/comments/${requirePositiveId(input.commentId, 'comment')}`),\n { body: input.body },\n { actingUserId: input.actingUserId },\n );\n return parseComment(comment);\n }\n\n async #deleteComment(input: DeletePullRequestCommentInput) {\n requireGithubConnection(input.connection);\n await this.#client.request<void>(\n 'DELETE',\n repositoryPath(input.sourceId, `issues/comments/${requirePositiveId(input.commentId, 'comment')}`),\n undefined,\n { actingUserId: input.actingUserId },\n );\n }\n\n async #listReviews(input: ListReviewsInput) {\n const page = parsePositiveCursor(input.cursor);\n const result = await this.#client.request<{ reviews: GithubReview[] }>(\n 'GET',\n `${pullRequestPath(input, input.pullRequestId)}/reviews?page=${page}&per_page=${PAGE_SIZE}`,\n );\n return {\n reviews: result.reviews.map(parseReview),\n nextCursor: result.reviews.length === PAGE_SIZE ? String(page + 1) : null,\n };\n }\n\n async #getReview(input: ReviewRef) {\n try {\n return parseReview(\n await this.#client.request<GithubReview>(\n 'GET',\n `${pullRequestPath(input, input.pullRequestId)}/reviews/${requirePositiveId(input.reviewId, 'review')}`,\n ),\n );\n } catch (error) {\n if (isNotFound(error)) return null;\n throw error;\n }\n }\n\n async #createReview(input: CreateReviewInput) {\n const review = await this.#client.request<GithubReview>(\n 'POST',\n `${pullRequestPath(input, input.pullRequestId)}/reviews`,\n { body: input.body, commitId: input.commitId, event: input.event ? reviewEvent(input.event) : undefined },\n { actingUserId: input.actingUserId },\n );\n return parseReview(review);\n }\n\n async #updateReview(input: UpdateReviewInput) {\n const review = await this.#client.request<GithubReview>(\n 'PUT',\n `${pullRequestPath(input, input.pullRequestId)}/reviews/${requirePositiveId(input.reviewId, 'review')}`,\n { body: input.body },\n { actingUserId: input.actingUserId },\n );\n return parseReview(review);\n }\n\n async #submitReview(input: SubmitReviewInput) {\n const review = await this.#client.request<GithubReview>(\n 'POST',\n `${pullRequestPath(input, input.pullRequestId)}/reviews/${requirePositiveId(input.reviewId, 'review')}/events`,\n { body: input.body, event: reviewEvent(input.event) },\n { actingUserId: input.actingUserId },\n );\n return parseReview(review);\n }\n\n async #dismissReview(input: DismissReviewInput) {\n const review = await this.#client.request<GithubReview>(\n 'PUT',\n `${pullRequestPath(input, input.pullRequestId)}/reviews/${requirePositiveId(input.reviewId, 'review')}/dismissals`,\n { message: input.message },\n { actingUserId: input.actingUserId },\n );\n return parseReview(review);\n }\n\n async #deletePendingReview(input: ReviewRef) {\n await this.#client.request<void>(\n 'DELETE',\n `${pullRequestPath(input, input.pullRequestId)}/reviews/${requirePositiveId(input.reviewId, 'review')}`,\n undefined,\n { actingUserId: input.actingUserId },\n );\n }\n\n async #listReviewComments(input: ListReviewCommentsInput) {\n const page = parsePositiveCursor(input.cursor);\n const result = await this.#client.request<{ comments: GithubReviewComment[] }>(\n 'GET',\n `${pullRequestPath(input, input.pullRequestId)}/comments?page=${page}&per_page=${PAGE_SIZE}`,\n );\n return {\n comments: result.comments.map(parseReviewComment),\n nextCursor: result.comments.length === PAGE_SIZE ? String(page + 1) : null,\n };\n }\n\n async #createReviewComment(input: CreateReviewCommentInput) {\n let body: Record<string, unknown>;\n if (input.replyToId !== undefined) {\n body = { body: input.body, replyToId: requirePositiveId(input.replyToId, 'review comment') };\n } else {\n if (!input.commitId || !input.path || input.line === undefined || !input.side) {\n throw new Error('A review comment requires commitId, path, line, and side unless it is a reply.');\n }\n body = {\n body: input.body,\n commitId: input.commitId,\n path: input.path,\n line: input.line,\n side: input.side.toUpperCase(),\n startLine: input.startLine,\n startSide: input.startSide?.toUpperCase(),\n };\n }\n return parseReviewComment(\n await this.#client.request<GithubReviewComment>(\n 'POST',\n `${pullRequestPath(input, input.pullRequestId)}/comments`,\n body,\n { actingUserId: input.actingUserId },\n ),\n );\n }\n\n async #updateReviewComment(input: UpdatePullRequestCommentInput) {\n requireGithubConnection(input.connection);\n return parseReviewComment(\n await this.#client.request<GithubReviewComment>(\n 'PATCH',\n repositoryPath(input.sourceId, `pulls/comments/${requirePositiveId(input.commentId, 'review comment')}`),\n { body: input.body },\n { actingUserId: input.actingUserId },\n ),\n );\n }\n\n async #deleteReviewComment(input: DeletePullRequestCommentInput) {\n requireGithubConnection(input.connection);\n await this.#client.request<void>(\n 'DELETE',\n repositoryPath(input.sourceId, `pulls/comments/${requirePositiveId(input.commentId, 'review comment')}`),\n undefined,\n { actingUserId: input.actingUserId },\n );\n }\n\n #requestedReviewers(method: 'GET' | 'POST' | 'DELETE', input: UpdateReviewersInput) {\n requireGithubConnection(input.connection);\n return this.#client.request<{ users: string[]; teams: string[] }>(\n method,\n `${pullRequestPath(input, input.pullRequestId)}/requested-reviewers`,\n method === 'GET' ? undefined : { users: input.users, teams: input.teams },\n method === 'GET' ? undefined : { actingUserId: input.actingUserId },\n );\n }\n}\n\nfunction repositoryPath(sourceId: string, suffix: string): string {\n const { owner, repo } = splitRepository(sourceId);\n return `${API_PREFIX}/github/repos/${encodeURIComponent(owner)}/${encodeURIComponent(repo)}/${suffix}`;\n}\n\nfunction pullRequestPath(\n input: { connection: IntegrationConnection; sourceId: string },\n pullRequestId: string,\n): string {\n requireGithubConnection(input.connection);\n return repositoryPath(input.sourceId, `pulls/${requirePositiveId(pullRequestId, 'pull request')}`);\n}\n\nfunction splitRepository(sourceId: string): { owner: string; repo: string } {\n const slash = sourceId.indexOf('/');\n if (slash <= 0 || slash === sourceId.length - 1) {\n throw new Error('GitHub capabilities require an owner/repository source.');\n }\n return { owner: sourceId.slice(0, slash), repo: sourceId.slice(slash + 1) };\n}\n\nfunction parseIntakeIssue(sourceId: string, issue: GithubIssue): IntakeIssue {\n return {\n id: String(issue.number),\n identifier: `#${issue.number}`,\n title: issue.title,\n url: issue.htmlUrl,\n author: issue.user?.login ?? null,\n state: issue.state,\n stateType: issue.state,\n priority: null,\n assignee: issue.assignees[0] ?? null,\n source: sourceId,\n labels: issue.labels,\n commentCount: issue.commentCount,\n createdAt: issue.createdAt,\n updatedAt: issue.updatedAt,\n };\n}\n\nfunction parseIntakeIssueDetail(sourceId: string, issue: GithubIssue, comments: GithubComment[]): IntakeIssueDetail {\n return {\n ...parseIntakeIssue(sourceId, issue),\n description: issue.body?.trim() ? issue.body : null,\n comments: comments.map(comment => ({\n author: comment.user?.login ?? null,\n body: comment.body,\n createdAt: comment.createdAt,\n })),\n };\n}\n\nfunction parsePullRequest(pullRequest: GithubPullRequest): PullRequest {\n return {\n id: String(pullRequest.number),\n title: pullRequest.title,\n url: pullRequest.htmlUrl,\n author: pullRequest.user?.login ?? null,\n body: pullRequest.body?.trim() ? pullRequest.body : null,\n state: pullRequest.state,\n draft: pullRequest.draft,\n merged: pullRequest.merged,\n mergeable: pullRequest.mergeable,\n baseBranch: pullRequest.base.ref,\n headBranch: pullRequest.head.ref,\n headSha: pullRequest.head.sha,\n createdAt: pullRequest.createdAt,\n updatedAt: pullRequest.updatedAt,\n };\n}\n\nfunction parseComment(comment: GithubComment): PullRequestComment {\n return {\n id: String(comment.id),\n url: comment.htmlUrl,\n author: comment.user?.login ?? null,\n body: comment.body,\n createdAt: comment.createdAt,\n updatedAt: comment.updatedAt,\n };\n}\n\nfunction parseReview(review: GithubReview): Review {\n const states: Record<GithubReview['state'], Review['state']> = {\n PENDING: 'pending',\n COMMENTED: 'commented',\n APPROVED: 'approved',\n CHANGES_REQUESTED: 'changes-requested',\n DISMISSED: 'dismissed',\n };\n return {\n id: String(review.id),\n url: review.htmlUrl,\n author: review.user?.login ?? null,\n body: review.body?.trim() ? review.body : null,\n state: states[review.state],\n commitId: review.commitId,\n submittedAt: review.submittedAt,\n };\n}\n\nfunction parseReviewComment(comment: GithubReviewComment): ReviewComment {\n return {\n ...parseComment(comment),\n path: comment.path,\n line: comment.line,\n side: comment.side?.toLowerCase() as 'left' | 'right' | null,\n commitId: comment.commitId,\n replyToId: comment.replyToId === null ? null : String(comment.replyToId),\n };\n}\n\nfunction requireGithubConnection(connection: IntegrationConnection): void {\n if (connection.type !== 'app-installation' && connection.type !== 'oauth') {\n throw new Error('GitHub capabilities require a GitHub connection.');\n }\n}\n\nfunction requireSingleSource(sourceIds: string[], message: string): string {\n if (sourceIds.length !== 1) throw new Error(message);\n return sourceIds[0]!;\n}\n\nfunction requireSource(sourceId: string | undefined, message: string): string {\n if (!sourceId) throw new Error(message);\n return sourceId;\n}\n\nfunction normalizeLabels(labels: string[] | undefined): string[] {\n return [...new Set((labels ?? []).map(label => label.trim()).filter(Boolean))];\n}\n\nfunction parsePositiveCursor(cursor: string | undefined): number {\n if (cursor === undefined) return 1;\n const parsed = parsePositiveInteger(cursor);\n if (parsed === null) throw new Error('GitHub cursor must be a positive page number.');\n return parsed;\n}\n\nfunction parsePositiveInteger(value: string): number | null {\n if (!/^\\d+$/.test(value)) return null;\n const parsed = Number(value);\n return Number.isSafeInteger(parsed) && parsed > 0 ? parsed : null;\n}\n\nfunction parseGithubExternalTarget(externalId: string): { repository: string; issueId: string } | null {\n const match =\n externalId.match(/^(.+\\/.+):(\\d+)$/) ??\n externalId.match(/^github:(\\d+):(?:issue|pull-request):(\\d+)$/) ??\n externalId.match(/^(\\d+):(\\d+)$/);\n if (!match?.[1] || !match[2] || parsePositiveInteger(match[2]) === null) return null;\n return { repository: match[1], issueId: match[2] };\n}\n\nfunction optionalPositiveIntegerEnv(name: 'MASTRA_PLATFORM_GITHUB_POLLING_INTERVAL_MS'): number | undefined {\n const value = process.env[name]?.trim();\n if (!value) return undefined;\n const parsed = parsePositiveInteger(value);\n if (parsed === null) throw new Error(`${name} must be a positive integer.`);\n return parsed;\n}\n\nfunction requirePositiveId(value: string, resource: string): number {\n const parsed = parsePositiveInteger(value);\n if (parsed === null) throw new Error(`GitHub ${resource} id must be a positive integer.`);\n return parsed;\n}\n\nfunction reviewEvent(event: 'approve' | 'request-changes' | 'comment') {\n if (event === 'approve') return 'APPROVE' as const;\n if (event === 'request-changes') return 'REQUEST_CHANGES' as const;\n return 'COMMENT' as const;\n}\n\nfunction isNotFound(error: unknown): boolean {\n return error instanceof PlatformApiError && error.status === 404;\n}\n"],"mappings":"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"}
|
package/dist/routes/surface.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ import type { FactoryRules } from '../rules/types.js';
|
|
|
10
10
|
import type { SandboxFleet } from '../sandbox/fleet.js';
|
|
11
11
|
import type { StateSigner } from '../state-signing.js';
|
|
12
12
|
import type { AuditEmitter } from '../storage/domains/audit/domain.js';
|
|
13
|
+
import type { ChannelIdentityStorage } from '../storage/domains/channel-identity/base.js';
|
|
13
14
|
import type { ModelCredentialsStorage } from '../storage/domains/credentials/base.js';
|
|
14
15
|
import type { CustomProvidersStorage } from '../storage/domains/custom-providers/base.js';
|
|
15
16
|
import type { IntakeStorage } from '../storage/domains/intake/base.js';
|
|
@@ -52,6 +53,7 @@ export interface FactoryApiRoutesDeps {
|
|
|
52
53
|
projects: FactoryProjectsStorage;
|
|
53
54
|
queueHealth: QueueHealthStorage;
|
|
54
55
|
workItems: WorkItemsStorage;
|
|
56
|
+
channelIdentity: ChannelIdentityStorage;
|
|
55
57
|
};
|
|
56
58
|
integrations?: IntegrationRegistration[];
|
|
57
59
|
intakeReady: boolean;
|
|
@@ -76,7 +78,7 @@ export declare function buildIntegrationContext(deps: Pick<FactoryApiRoutesDeps,
|
|
|
76
78
|
emitAudit?: AuditEmitter['emit'];
|
|
77
79
|
rules: FactoryRules;
|
|
78
80
|
factoryReady: boolean;
|
|
79
|
-
domains: Pick<FactoryApiRoutesDeps['domains'], 'projects' | 'intake' | 'workItems'>;
|
|
81
|
+
domains: Pick<FactoryApiRoutesDeps['domains'], 'projects' | 'intake' | 'workItems' | 'channelIdentity'>;
|
|
80
82
|
}, integrationId: string): IntegrationContext;
|
|
81
83
|
/**
|
|
82
84
|
* Assemble the custom `/web/*` API routes as Mastra `server.apiRoutes`:
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"surface.d.ts","sourceRoot":"","sources":["../../src/routes/surface.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AACjE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAC/D,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAC;AACrE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AAEpD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAE3D,OAAO,KAAK,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAItF,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,wBAAwB,CAAC;AAE7E,OAAO,EAAE,wBAAwB,EAAE,MAAM,gCAAgC,CAAC;AAC1E,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACtD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AACvD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAC;AACvE,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,wCAAwC,CAAC;AACtF,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,6CAA6C,CAAC;AAC1F,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,mCAAmC,CAAC;AACvE,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,yCAAyC,CAAC;AAClF,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,4CAA4C,CAAC;AACxF,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,wCAAwC,CAAC;AAChF,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,qCAAqC,CAAC;AAClF,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,yCAAyC,CAAC;AAClF,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,2CAA2C,CAAC;AACtF,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,uCAAuC,CAAC;AAM9E,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAK5C,MAAM,WAAW,uBAAuB;IACtC,WAAW,EAAE,kBAAkB,CAAC;IAChC,KAAK,EAAE,OAAO,CAAC;IACf,WAAW,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,CAAC;CAClC;AAED,MAAM,WAAW,oBAAoB;IACnC,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,eAAe,CAAC,eAAe,CAAC,CAAC;IAC7C,qEAAqE;IACrE,IAAI,EAAE,SAAS,CAAC;IAChB,WAAW,EAAE,WAAW,CAAC;IACzB,KAAK,EAAE,YAAY,CAAC;IACpB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,YAAY,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,WAAW,CAAC;IAC1B,2EAA2E;IAC3E,KAAK,EAAE,YAAY,CAAC;IACpB,4EAA4E;IAC5E,cAAc,CAAC,EAAE,cAAc,CAAC;IAChC,kBAAkB,EAAE,kBAAkB,CAAC;IACvC,oBAAoB,EAAE,oBAAoB,CAAC;IAC3C,mFAAmF;IACnF,OAAO,EAAE;QACP,MAAM,EAAE,aAAa,CAAC;QACtB,gBAAgB,EAAE,uBAAuB,CAAC;QAC1C,cAAc,EAAE,qBAAqB,CAAC;QACtC,eAAe,EAAE,sBAAsB,CAAC;QACxC,UAAU,EAAE,iBAAiB,CAAC;QAC9B,QAAQ,EAAE,sBAAsB,CAAC;QACjC,WAAW,EAAE,kBAAkB,CAAC;QAChC,SAAS,EAAE,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"surface.d.ts","sourceRoot":"","sources":["../../src/routes/surface.ts"],"names":[],"mappings":"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"}
|
package/dist/routes/surface.js
CHANGED
|
@@ -112,7 +112,8 @@ function buildIntegrationContext(deps, integrationId) {
|
|
|
112
112
|
generic: deps.integrationStorage.forIntegration(integrationId),
|
|
113
113
|
sourceControl: deps.sourceControlStorage.forIntegration(integrationId),
|
|
114
114
|
projects: deps.domains.projects,
|
|
115
|
-
intake: deps.domains.intake
|
|
115
|
+
intake: deps.domains.intake,
|
|
116
|
+
channelIdentity: deps.domains.channelIdentity
|
|
116
117
|
},
|
|
117
118
|
...deps.factoryReady ? { rules: {
|
|
118
119
|
config: deps.rules,
|