export class GitHubUtils { // https://github.com///tree/ // The url when users visit a repo/branch on github.com private static readonly RepoUriPattern = /https:\/\/github.com\/([^/]*)\/([^/]*)\/tree\/([^?]*)/; // github:////?ref= // Custom scheme for github content private static readonly ContentUriPattern = /github:\/\/([^/]*)\/([^/]*)\/([^?]*)\?ref=(.*)/; public static toRepoFullName(owner: string, repo: string): string { return `${owner}/${repo}`; } public static fromRepoUri(repoUri: string): undefined | { owner: string; repo: string; branch: string } { const matches = repoUri.match(GitHubUtils.RepoUriPattern); if (matches && matches.length > 3) { return { owner: matches[1], repo: matches[2], branch: matches[3] }; } return undefined; } public static fromContentUri( contentUri: string ): undefined | { owner: string; repo: string; branch: string; path: string } { const matches = contentUri.match(GitHubUtils.ContentUriPattern); if (matches && matches.length > 4) { return { owner: matches[1], repo: matches[2], branch: matches[4], path: matches[3] }; } return undefined; } public static toContentUri(owner: string, repo: string, branch: string, path: string): string { return `github://${owner}/${repo}/${path}?ref=${branch}`; } }