mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-04 14:46:42 +00:00
Feat: gitea mirror (#262)
* Update component props and add GitLab link - Made `ref` prop optional in TauriLink component - Added GitLab mirror URL to GitHubProvenanceCard - Included a link to the GitLab mirror in the card layout - Adjusted layout for StoreExtDetail component for better responsiveness - Imported Tooltip component for potential future use * chore: add parse-github-url dependency and update GitHub parsing logic - Added `parse-github-url` package as a dependency in `package.json`. - Updated `parseGitHubRepoFromUri` function to utilize `parse-github-url` for improved URI parsing. - Introduced `getGitHubRepoMetadata` function to fetch repository metadata using Octokit. - Updated validation data structure to include optional `repoId`. - Enhanced tests to cover new functionality and error handling for invalid URIs. * fix typo * refactor: update validation data structure and improve function documentation - Removed optional `repoId` from `ExtensionPublishValidationData` and adjusted related function to reflect this change. - Added a note in the `validateJsrPackageAsKunkunExtension` function documentation to clarify frontend/backend verification logic. - Updated `ExtPublishMetadata` to rename `repoId` to `repoNodeId` for clarity. * refactor: remove GitLab mirror link from GitHubProvenanceCard - Removed the GitLab mirror URL and its associated link from the GitHubProvenanceCard component. - Commented out the layout for the GitLab mirror instead of deleting it, preserving the structure for potential future use. * refactor: simplify GitHub repository URI parsing - Removed dependency on `parse-github-url` and implemented a regex-based approach for parsing GitHub repository URIs in the `parseGitHubRepoFromUri` function. - Enhanced error handling for invalid URIs while maintaining the function's output structure. * feat: add Gitea mirror link to GitHubProvenanceCard - Introduced a new link to the Gitea mirror repository in the GitHubProvenanceCard component. - Updated the layout to reflect the new mirror link while removing the commented-out GitLab mirror section. * refactor: enhance Globe component's location handling - Updated the Globe component to conditionally render markers based on the provided locations prop. - Simplified the destructuring of props for better readability. - Retained default marker locations for cases where no locations are provided. * pnpm lock
This commit is contained in:
parent
7759e615dd
commit
9fe51f6260
@ -1,9 +1,15 @@
|
|||||||
import { expect, test } from "bun:test"
|
import { expect, test } from "bun:test"
|
||||||
import { parseGitHubRepoFromUri } from "../github"
|
import { getGitHubRepoMetadata, parseGitHubRepoFromUri } from "../github"
|
||||||
|
|
||||||
test("parse github repo from uri", () => {
|
test("parse github repo from uri", () => {
|
||||||
expect(parseGitHubRepoFromUri("https://github.com/huakunshen/kunkun-ext-ossinsight")).toEqual({
|
expect(parseGitHubRepoFromUri("https://github.com/kunkunsh/kunkun-ext-ossinsight")).toEqual({
|
||||||
owner: "huakunshen",
|
owner: "kunkunsh",
|
||||||
repo: "kunkun-ext-ossinsight"
|
repo: "kunkun-ext-ossinsight"
|
||||||
})
|
})
|
||||||
|
expect(() => parseGitHubRepoFromUri("invalid-uri")).toThrow("Invalid GitHub repository URI")
|
||||||
|
})
|
||||||
|
|
||||||
|
test("get github repo metadata", async () => {
|
||||||
|
const metadata = await getGitHubRepoMetadata("kunkunsh", "kunkun-ext-ossinsight")
|
||||||
|
expect(metadata).toBeDefined()
|
||||||
})
|
})
|
||||||
|
@ -33,6 +33,12 @@ export function authenticatedUserIsMemberOfGitHubOrg(
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parse a GitHub repository URI into owner and repo
|
||||||
|
* If not a valid GitHub repository URI, throw an error
|
||||||
|
* @param uri
|
||||||
|
* @returns owner and repo
|
||||||
|
*/
|
||||||
export function parseGitHubRepoFromUri(uri: string): {
|
export function parseGitHubRepoFromUri(uri: string): {
|
||||||
owner: string
|
owner: string
|
||||||
repo: string
|
repo: string
|
||||||
@ -46,3 +52,15 @@ export function parseGitHubRepoFromUri(uri: string): {
|
|||||||
const [, owner, repo] = match
|
const [, owner, repo] = match
|
||||||
return { owner, repo }
|
return { owner, repo }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get GitHub repository metadata
|
||||||
|
* @param owner
|
||||||
|
* @param repo
|
||||||
|
* @param githubToken - Optional GitHub token to prevent rate limiting
|
||||||
|
* @returns repository metadata
|
||||||
|
*/
|
||||||
|
export function getGitHubRepoMetadata(owner: string, repo: string, githubToken?: string) {
|
||||||
|
const octokit = new Octokit({ auth: githubToken })
|
||||||
|
return octokit.rest.repos.get({ owner, repo }).then((res) => res.data)
|
||||||
|
}
|
||||||
|
@ -7,7 +7,11 @@ import {
|
|||||||
} from "@huakunshen/jsr-client/hey-api-client"
|
} from "@huakunshen/jsr-client/hey-api-client"
|
||||||
import { ExtPackageJson, License } from "@kksh/api/models"
|
import { ExtPackageJson, License } from "@kksh/api/models"
|
||||||
import * as v from "valibot"
|
import * as v from "valibot"
|
||||||
import { authenticatedUserIsMemberOfGitHubOrg, userIsPublicMemberOfGitHubOrg } from "../github"
|
import {
|
||||||
|
authenticatedUserIsMemberOfGitHubOrg,
|
||||||
|
getGitHubRepoMetadata,
|
||||||
|
userIsPublicMemberOfGitHubOrg
|
||||||
|
} from "../github"
|
||||||
import type { ExtensionPublishValidationData } from "../models"
|
import type { ExtensionPublishValidationData } from "../models"
|
||||||
import type { NpmPkgMetadata } from "../npm/models"
|
import type { NpmPkgMetadata } from "../npm/models"
|
||||||
import { getInfoFromRekorLog } from "../sigstore"
|
import { getInfoFromRekorLog } from "../sigstore"
|
||||||
@ -205,6 +209,7 @@ export function jsrPackageExists(scope: string, name: string, version?: string):
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Validate a Jsr package as a Kunkun extension
|
* Validate a Jsr package as a Kunkun extension
|
||||||
|
* !This function will also run in frontend, so if there is any verification logic that must be run in backend, do not add it here
|
||||||
* - check if jsr pkg is linked to a github repo
|
* - check if jsr pkg is linked to a github repo
|
||||||
* - check if jsr pkg is signed with github action
|
* - check if jsr pkg is signed with github action
|
||||||
* - check if user's github username is the same as repo's owner name
|
* - check if user's github username is the same as repo's owner name
|
||||||
@ -368,6 +373,7 @@ export async function validateJsrPackageAsKunkunExtension(payload: {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
const rekorInfo = await getInfoFromRekorLog(rekorLogId)
|
const rekorInfo = await getInfoFromRekorLog(rekorLogId)
|
||||||
|
|
||||||
return {
|
return {
|
||||||
data: {
|
data: {
|
||||||
pkgJson: parseResult.output,
|
pkgJson: parseResult.output,
|
||||||
|
@ -2,6 +2,7 @@ import { ExtPackageJson, License } from "@kksh/api/models"
|
|||||||
import * as v from "valibot"
|
import * as v from "valibot"
|
||||||
import {
|
import {
|
||||||
authenticatedUserIsMemberOfGitHubOrg,
|
authenticatedUserIsMemberOfGitHubOrg,
|
||||||
|
getGitHubRepoMetadata,
|
||||||
parseGitHubRepoFromUri,
|
parseGitHubRepoFromUri,
|
||||||
userIsPublicMemberOfGitHubOrg
|
userIsPublicMemberOfGitHubOrg
|
||||||
} from "../github"
|
} from "../github"
|
||||||
@ -237,6 +238,7 @@ export async function validateNpmPackageAsKunkunExtension(payload: {
|
|||||||
provenance.summary.sourceRepositoryDigest,
|
provenance.summary.sourceRepositoryDigest,
|
||||||
parseResult.output.readme ?? "README.md"
|
parseResult.output.readme ?? "README.md"
|
||||||
)
|
)
|
||||||
|
|
||||||
return {
|
return {
|
||||||
data: {
|
data: {
|
||||||
pkgJson: parseResult.output,
|
pkgJson: parseResult.output,
|
||||||
|
@ -20,7 +20,10 @@ export const ExtPublishMetadata = v.object({
|
|||||||
repo: v.string("GitHub repo of the extension"),
|
repo: v.string("GitHub repo of the extension"),
|
||||||
owner: v.string("GitHub owner of the extension"),
|
owner: v.string("GitHub owner of the extension"),
|
||||||
commit: v.string("Commit hash of the extension"),
|
commit: v.string("Commit hash of the extension"),
|
||||||
workflowPath: v.string("Workflow path of the extension")
|
workflowPath: v.string("Workflow path of the extension"),
|
||||||
|
repoNodeId: v.optional(
|
||||||
|
v.string("GitHub repo node ID of the extension (a string, not the number id)")
|
||||||
|
)
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
|
@ -12,8 +12,7 @@
|
|||||||
|
|
||||||
// let className = ""
|
// let className = ""
|
||||||
// export { className as class }
|
// export { className as class }
|
||||||
let { locations = [], class: className }: { class?: string; locations?: [number, number][] } =
|
let { locations, class: className }: { class?: string; locations?: [number, number][] } = $props()
|
||||||
$props()
|
|
||||||
let pointerInteracting: number | null = null
|
let pointerInteracting: number | null = null
|
||||||
let pointerInteractionMovement = 0
|
let pointerInteractionMovement = 0
|
||||||
let canvas: HTMLCanvasElement
|
let canvas: HTMLCanvasElement
|
||||||
@ -54,24 +53,25 @@
|
|||||||
baseColor: [0.3, 0.3, 0.3],
|
baseColor: [0.3, 0.3, 0.3],
|
||||||
markerColor: [251 / 255, 100 / 255, 21 / 255],
|
markerColor: [251 / 255, 100 / 255, 21 / 255],
|
||||||
glowColor: [1, 1, 1],
|
glowColor: [1, 1, 1],
|
||||||
markers: locations.map((location) => {
|
markers: locations
|
||||||
return {
|
? locations.map((location) => {
|
||||||
location: location,
|
return {
|
||||||
size: 0.03
|
location: location,
|
||||||
}
|
size: 0.03
|
||||||
}),
|
}
|
||||||
// [
|
})
|
||||||
// { location: [14.5995, 120.9842], size: 0.03 },
|
: [
|
||||||
// { location: [19.076, 72.8777], size: 0.03 },
|
{ location: [14.5995, 120.9842], size: 0.03 },
|
||||||
// { location: [23.8103, 90.4125], size: 0.05 },
|
{ location: [19.076, 72.8777], size: 0.03 },
|
||||||
// { location: [30.0444, 31.2357], size: 0.07 },
|
{ location: [23.8103, 90.4125], size: 0.05 },
|
||||||
// { location: [39.9042, 116.4074], size: 0.08 },
|
{ location: [30.0444, 31.2357], size: 0.07 },
|
||||||
// { location: [-23.5505, -46.6333], size: 0.05 },
|
{ location: [39.9042, 116.4074], size: 0.08 },
|
||||||
// { location: [19.4326, -99.1332], size: 0.04 },
|
{ location: [-23.5505, -46.6333], size: 0.05 },
|
||||||
// { location: [40.7128, -74.006], size: 0.1 },
|
{ location: [19.4326, -99.1332], size: 0.04 },
|
||||||
// { location: [34.6937, 135.5022], size: 0.05 },
|
{ location: [40.7128, -74.006], size: 0.1 },
|
||||||
// { location: [41.0082, 28.9784], size: 0.06 }
|
{ location: [34.6937, 135.5022], size: 0.05 },
|
||||||
// ],
|
{ location: [41.0082, 28.9784], size: 0.06 }
|
||||||
|
],
|
||||||
// onRender: (state) => {
|
// onRender: (state) => {
|
||||||
// if (!pointerInteracting) {
|
// if (!pointerInteracting) {
|
||||||
// // Called on every animation frame.
|
// // Called on every animation frame.
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
style?: HTMLAttributes<HTMLAnchorElement>["style"]
|
style?: HTMLAttributes<HTMLAnchorElement>["style"]
|
||||||
class?: HTMLAttributes<HTMLAnchorElement>["class"]
|
class?: HTMLAttributes<HTMLAnchorElement>["class"]
|
||||||
children: Snippet
|
children: Snippet
|
||||||
ref: HTMLAnchorElement | HTMLButtonElement | null
|
ref?: HTMLAnchorElement | HTMLButtonElement | null
|
||||||
} = $props()
|
} = $props()
|
||||||
|
|
||||||
// @ts-expect-error window.__TAURI_INTERNALS__ is not defined in the browser
|
// @ts-expect-error window.__TAURI_INTERNALS__ is not defined in the browser
|
||||||
|
@ -19,6 +19,7 @@
|
|||||||
} = $props()
|
} = $props()
|
||||||
const workflowRunId = githubActionInvocationId.split("/").at(-3)
|
const workflowRunId = githubActionInvocationId.split("/").at(-3)
|
||||||
const workflowRunUrl = `https://github.com/${repoOwner}/${repoName}/actions/runs/${workflowRunId}/workflow`
|
const workflowRunUrl = `https://github.com/${repoOwner}/${repoName}/actions/runs/${workflowRunId}/workflow`
|
||||||
|
const giteaMirrorUrl = `https://gitea.kunkun.sh/kunkun-extensions-mirror/${repoOwner}-${repoName}`
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Card.Root>
|
<Card.Root>
|
||||||
@ -60,6 +61,12 @@
|
|||||||
class="underline">Transparentcy log entry</a
|
class="underline">Transparentcy log entry</a
|
||||||
>
|
>
|
||||||
</p>
|
</p>
|
||||||
|
<p class="flex flex-col text-sm sm:flex-row">
|
||||||
|
<strong class="mt-2 inline-block w-28 md:mt-0">Mirror</strong>
|
||||||
|
<a href={giteaMirrorUrl} target="_blank" rel="noreferrer" class="underline">
|
||||||
|
Mirror Repo
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</Card.Content>
|
</Card.Content>
|
||||||
</Card.Root>
|
</Card.Root>
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
import { ExtPackageJson, IconEnum, KunkunExtManifest } from "@kksh/api/models"
|
import { ExtPackageJson, IconEnum, KunkunExtManifest } from "@kksh/api/models"
|
||||||
import { ExtPublishMetadata, ExtPublishSourceTypeEnum } from "@kksh/supabase/models"
|
import { ExtPublishMetadata, ExtPublishSourceTypeEnum } from "@kksh/supabase/models"
|
||||||
import { type Tables } from "@kksh/supabase/types"
|
import { type Tables } from "@kksh/supabase/types"
|
||||||
import { Badge, Button, ScrollArea, Separator } from "@kksh/svelte5"
|
import { Badge, Button, ScrollArea, Separator, Tooltip } from "@kksh/svelte5"
|
||||||
import { Constants, IconMultiplexer } from "@kksh/ui"
|
import { Constants, IconMultiplexer } from "@kksh/ui"
|
||||||
import { cn } from "@kksh/ui/utils"
|
import { cn } from "@kksh/ui/utils"
|
||||||
import { CircleCheckBigIcon, MoveRightIcon, Trash2Icon } from "lucide-svelte"
|
import { CircleCheckBigIcon, MoveRightIcon, Trash2Icon } from "lucide-svelte"
|
||||||
@ -186,7 +186,7 @@
|
|||||||
<Button onclick={onInstallSelected}>Install</Button>
|
<Button onclick={onInstallSelected}>Install</Button>
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
<div class="mt-2 flex gap-2">
|
<div class="mt-2 flex flex-col gap-2 md:flex-row">
|
||||||
{#if metadata && metadata.sourceType === ExtPublishSourceTypeEnum.jsr}
|
{#if metadata && metadata.sourceType === ExtPublishSourceTypeEnum.jsr}
|
||||||
<a href={metadata.source} target="_blank">
|
<a href={metadata.source} target="_blank">
|
||||||
<Icon class="h-10 w-10" icon="vscode-icons:file-type-jsr" />
|
<Icon class="h-10 w-10" icon="vscode-icons:file-type-jsr" />
|
||||||
@ -201,7 +201,7 @@
|
|||||||
href={`https://github.com/${metadata.git.owner}/${metadata.git.repo}/tree/${metadata.git.commit}`}
|
href={`https://github.com/${metadata.git.owner}/${metadata.git.repo}/tree/${metadata.git.commit}`}
|
||||||
target="_blank"
|
target="_blank"
|
||||||
>
|
>
|
||||||
<Badge class="h-8 space-x-2" variant="secondary">
|
<Badge class="min-h-8 space-x-2" variant="secondary">
|
||||||
<Icon class="h-6 w-6" icon="mdi:github" />
|
<Icon class="h-6 w-6" icon="mdi:github" />
|
||||||
<span>{metadata.git.owner}/{metadata.git.repo}</span>
|
<span>{metadata.git.owner}/{metadata.git.repo}</span>
|
||||||
</Badge>
|
</Badge>
|
||||||
|
12
pnpm-lock.yaml
generated
12
pnpm-lock.yaml
generated
@ -338,7 +338,7 @@ importers:
|
|||||||
version: 8.25.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.6.3)
|
version: 8.25.0(eslint@9.21.0(jiti@2.4.0))(typescript@5.6.3)
|
||||||
autoprefixer:
|
autoprefixer:
|
||||||
specifier: ^10.4.20
|
specifier: ^10.4.20
|
||||||
version: 10.4.20(postcss@8.5.3)
|
version: 10.4.20(postcss@8.4.49)
|
||||||
bits-ui:
|
bits-ui:
|
||||||
specifier: 1.0.0-next.86
|
specifier: 1.0.0-next.86
|
||||||
version: 1.0.0-next.86(svelte@5.20.5)
|
version: 1.0.0-next.86(svelte@5.20.5)
|
||||||
@ -18883,16 +18883,6 @@ snapshots:
|
|||||||
postcss: 8.5.1
|
postcss: 8.5.1
|
||||||
postcss-value-parser: 4.2.0
|
postcss-value-parser: 4.2.0
|
||||||
|
|
||||||
autoprefixer@10.4.20(postcss@8.5.3):
|
|
||||||
dependencies:
|
|
||||||
browserslist: 4.24.2
|
|
||||||
caniuse-lite: 1.0.30001676
|
|
||||||
fraction.js: 4.3.7
|
|
||||||
normalize-range: 0.1.2
|
|
||||||
picocolors: 1.1.1
|
|
||||||
postcss: 8.5.3
|
|
||||||
postcss-value-parser: 4.2.0
|
|
||||||
|
|
||||||
available-typed-arrays@1.0.7:
|
available-typed-arrays@1.0.7:
|
||||||
dependencies:
|
dependencies:
|
||||||
possible-typed-array-names: 1.0.0
|
possible-typed-array-names: 1.0.0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user