mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-04 14:46:42 +00:00

* 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
67 lines
1.9 KiB
TypeScript
67 lines
1.9 KiB
TypeScript
/**
|
|
* TODO: move this module to another folder
|
|
*/
|
|
import { Octokit } from "@octokit/rest"
|
|
|
|
/**
|
|
* Check if a user is a public member of a GitHub organization
|
|
* @param orgName - The name of the GitHub organization
|
|
* @param username - The username of the user
|
|
* @returns A promise that resolves to a boolean indicating if the user is a public member of the organization
|
|
*/
|
|
export function userIsPublicMemberOfGitHubOrg(orgName: string, username: string): Promise<boolean> {
|
|
const octokit = new Octokit()
|
|
return octokit.orgs
|
|
.checkPublicMembershipForUser({ org: orgName, username })
|
|
.then(() => true)
|
|
.catch(() => false)
|
|
}
|
|
|
|
/**
|
|
* Only works if user grants read:org scope with the org when login
|
|
* @param orgName
|
|
* @param username
|
|
* @param githubToken
|
|
*/
|
|
export function authenticatedUserIsMemberOfGitHubOrg(
|
|
orgName: string,
|
|
githubToken: string
|
|
): Promise<boolean> {
|
|
const octokit = new Octokit({ auth: githubToken })
|
|
return octokit.orgs.listForAuthenticatedUser().then((res) => {
|
|
return res.data.some((org) => org.login === orgName)
|
|
})
|
|
}
|
|
|
|
/**
|
|
* 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): {
|
|
owner: string
|
|
repo: string
|
|
} {
|
|
// check regex
|
|
const regex = /https?:\/\/github\.com\/([^\/]+)\/([^\/]+)/
|
|
const match = uri.match(regex)
|
|
if (!match) {
|
|
throw new Error("Invalid GitHub repository URI")
|
|
}
|
|
const [, owner, repo] = match
|
|
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)
|
|
}
|