forked from ubiquity-os/ubiquity-os-kernel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: manifest is now read and cached from the target repo
- Loading branch information
1 parent
af78d17
commit 76af3a0
Showing
8 changed files
with
83 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
import { GithubPlugin, isGithubPlugin, PluginConfiguration } from "../types/plugin-configuration"; | ||
import { EmitterWebhookEventName } from "@octokit/webhooks"; | ||
import { GitHubContext } from "../github-context"; | ||
import { Manifest } from "../../types/manifest"; | ||
|
||
const _manifestCache: Record<string, Manifest> = {}; | ||
|
||
export function getPluginsForEvent(plugins: PluginConfiguration["plugins"], event: EmitterWebhookEventName) { | ||
return plugins.filter((plugin) => { | ||
return plugin.uses?.[0].runsOn?.includes(event); | ||
}); | ||
} | ||
|
||
export function getManifest(context: GitHubContext, plugin: string | GithubPlugin) { | ||
return isGithubPlugin(plugin) ? fetchActionManifest(context, plugin) : fetchWorkerManifest(plugin); | ||
} | ||
|
||
async function fetchActionManifest(context: GitHubContext<"issue_comment.created">, { owner, repo }: GithubPlugin): Promise<Manifest | null> { | ||
const manifestKey = `${owner}:${repo}`; | ||
if (_manifestCache[manifestKey]) { | ||
return _manifestCache[manifestKey]; | ||
} | ||
try { | ||
const { data } = await context.octokit.repos.getContent({ | ||
owner, | ||
repo, | ||
path: "manifest.json", | ||
}); | ||
if ("content" in data) { | ||
const content = Buffer.from(data.content, "base64").toString(); | ||
const manifest = JSON.parse(content) as Manifest; | ||
_manifestCache[manifestKey] = manifest; | ||
return manifest; | ||
} | ||
} catch (e) { | ||
console.warn(`Could not find a manifest for ${owner}/${repo}: ${e}`); | ||
} | ||
return null; | ||
} | ||
|
||
async function fetchWorkerManifest(url: string): Promise<Manifest | null> { | ||
if (_manifestCache[url]) { | ||
return _manifestCache[url]; | ||
} | ||
const manifestUrl = `${url}/manifest.json`; | ||
try { | ||
const result = await fetch(manifestUrl); | ||
const manifest = (await result.json()) as Manifest; | ||
_manifestCache[url] = manifest; | ||
return manifest; | ||
} catch (e) { | ||
console.warn(`Could not find a manifest for ${manifestUrl}: ${e}`); | ||
} | ||
return null; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters