zarro 1.165.4 → 1.165.6

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.
@@ -0,0 +1,2 @@
1
+ export declare const PACKAGE_NAME = "fetch-github-release";
2
+ export declare const PACKAGE_DATA_DIR: string;
@@ -0,0 +1,22 @@
1
+ import { OctokitRelease, OctokitReleaseAssets, RepoInfo } from './types';
2
+ export interface FetchReleaseOptions extends RepoInfo {
3
+ getRelease: (owner: string, repo: string) => Promise<OctokitRelease>;
4
+ getAsset?: (version: string, assets: OctokitReleaseAssets) => OctokitReleaseAssets[number] | undefined;
5
+ accessToken?: string;
6
+ destination?: string;
7
+ shouldExtract?: boolean;
8
+ }
9
+ /**
10
+ * Downloads and extract release for the specified tag from Github to the destination.
11
+ *
12
+ * await fetchLatestRelease({ owner: 'smallstep', repo: 'cli', tag: '1.0.0' })
13
+ */
14
+ export declare function fetchReleaseByTag(options: Omit<FetchReleaseOptions, 'getRelease'> & {
15
+ tag: string;
16
+ }): Promise<string[]>;
17
+ /**
18
+ * Downloads and extract latest release from Github to the destination.
19
+ *
20
+ * await fetchLatestRelease({ owner: 'smallstep', repo: 'cli' })
21
+ */
22
+ export declare function fetchLatestRelease(options: Omit<FetchReleaseOptions, 'getRelease'>): Promise<string[]>;
@@ -0,0 +1,2 @@
1
+ import { OctokitReleaseAssets } from './types';
2
+ export declare function getAssetDefault(version: string, assets: OctokitReleaseAssets): OctokitReleaseAssets[number];
@@ -0,0 +1,2 @@
1
+ export * from "./fetchRelease";
2
+ export * from "./isUpdateAvailable";
@@ -0,0 +1,99 @@
1
+ import { RepoInfo } from "./types";
2
+ interface IsUpdateAvailableOptions extends RepoInfo {
3
+ currentVersion: string;
4
+ accessToken?: string;
5
+ }
6
+ export declare function isUpdateAvailable(options: IsUpdateAvailableOptions): Promise<boolean>;
7
+ export interface FetchLatestReleaseOptions extends RepoInfo {
8
+ accessToken?: string;
9
+ }
10
+ export interface FetchLatestReleaseResult {
11
+ url: string;
12
+ id: number;
13
+ assets: any[];
14
+ name: string | null;
15
+ body?: string | null;
16
+ assets_url: string;
17
+ author: string;
18
+ body_html: string;
19
+ body_text: string;
20
+ created_at: string;
21
+ discussion_url: string;
22
+ draft: boolean;
23
+ html_url: string;
24
+ mentions_count: number;
25
+ }
26
+ export declare function fetchLatestReleaseInfo(opts: ListReleasesOptions): Promise<ReleaseInfo>;
27
+ export interface ListReleasesOptions extends RepoInfo {
28
+ accessToken?: string;
29
+ }
30
+ export interface AuthorInfo {
31
+ login: string;
32
+ id: number;
33
+ node_id: string;
34
+ avatar_url: string;
35
+ gravatar_id: string;
36
+ url: string;
37
+ html_url: string;
38
+ followers_url: string;
39
+ following_url: string;
40
+ gists_url: string;
41
+ starred_url: string;
42
+ subscriptions_url: string;
43
+ organizations_url: string;
44
+ repos_url: string;
45
+ events_url: string;
46
+ received_events_url: string;
47
+ type: string;
48
+ site_admin: boolean;
49
+ }
50
+ export interface ReleaseAsset {
51
+ url: string;
52
+ id: number;
53
+ node_id: string;
54
+ name: string;
55
+ label: string;
56
+ uploader: AuthorInfo;
57
+ content_type: string;
58
+ state: string;
59
+ size: number;
60
+ download_count: number;
61
+ created_at: string;
62
+ updated_at: string;
63
+ browser_download_url: string;
64
+ }
65
+ export interface ReleaseReactions {
66
+ url: string;
67
+ total_count: number;
68
+ "+1": number;
69
+ "-1": number;
70
+ laugh: number;
71
+ hooray: number;
72
+ confused: number;
73
+ heart: number;
74
+ rocket: number;
75
+ eyes: number;
76
+ }
77
+ export interface ReleaseInfo {
78
+ url: string;
79
+ assets_url: string;
80
+ upload_url: string;
81
+ html_url: string;
82
+ author: AuthorInfo;
83
+ node_id: string;
84
+ tag_name: string;
85
+ tag_commitish?: string;
86
+ name: string;
87
+ draft: boolean;
88
+ prerelease: boolean;
89
+ created_at: string;
90
+ published_at: string;
91
+ assets: ReleaseAsset[];
92
+ tarball_url: string;
93
+ zipball_url: string;
94
+ body: string;
95
+ reactions: ReleaseReactions;
96
+ }
97
+ export declare function listReleases(opts: ListReleasesOptions): Promise<ReleaseInfo[]>;
98
+ export declare function newerVersion(latestVersion: string, currentVersion: string): boolean;
99
+ export {};
@@ -0,0 +1,3 @@
1
+ export declare const exists: (filePath: string) => Promise<boolean>;
2
+ export declare const mkdir: (dirname: string) => Promise<void>;
3
+ export declare const ensureDirExist: (filePath: string) => Promise<void>;
@@ -0,0 +1,5 @@
1
+ import os from 'os'
2
+ import path from 'path'
3
+
4
+ export const PACKAGE_NAME = 'fetch-github-release'
5
+ export const PACKAGE_DATA_DIR = path.join(os.homedir(), `.${PACKAGE_NAME}`)
@@ -0,0 +1,159 @@
1
+ import { writeFile, rm } from "yafs";
2
+ import path from 'path'
3
+
4
+ import { Octokit } from '@octokit/rest'
5
+ import decompress from 'decompress'
6
+ const bent = require("bent");
7
+
8
+ import { PACKAGE_DATA_DIR } from './constants'
9
+ import { OctokitRelease, OctokitReleaseAssets, RepoInfo } from './types'
10
+ import { ensureDirExist } from './util'
11
+ import { getAssetDefault } from './getAssetDefault'
12
+
13
+ export interface FetchReleaseOptions extends RepoInfo {
14
+ getRelease: (owner: string, repo: string) => Promise<OctokitRelease>
15
+ getAsset?: (
16
+ version: string,
17
+ assets: OctokitReleaseAssets,
18
+ ) => OctokitReleaseAssets[number] | undefined
19
+ accessToken?: string
20
+ destination?: string
21
+ shouldExtract?: boolean
22
+ }
23
+
24
+ type AsyncFunction<T> = () => Promise<T>;
25
+ type AsyncVoidFunction = AsyncFunction<void>;
26
+ interface Dictionary<T> {
27
+ [key: string]: T;
28
+ }
29
+
30
+ interface BentResponse {
31
+ statusCode: number;
32
+ json: AsyncFunction<any>;
33
+ text: AsyncFunction<string>;
34
+ arrayBuffer: AsyncFunction<Buffer>;
35
+ headers: Dictionary<string>;
36
+ }
37
+
38
+ function determineFilenameFrom(response: BentResponse): string {
39
+ const contentDisposition = response.headers["content-disposition"];
40
+ if (!contentDisposition) {
41
+ // guess? shouldn't get here from GH queries...
42
+ return fallback();
43
+ }
44
+ const parts = contentDisposition.split(";").map(s => s.trim());
45
+ for (const part of parts) {
46
+ let match = part.match(/^filename=(?<filename>.+)/i);
47
+ if (match && match.groups) {
48
+ const filename = match.groups["filename"];
49
+ if (filename) {
50
+ return filename;
51
+ }
52
+ }
53
+ }
54
+ return fallback();
55
+
56
+ function fallback() {
57
+ console.warn(`Unable to determine filename from request, falling back on release.zip`);
58
+ return "release.zip";
59
+ }
60
+ }
61
+
62
+ async function download(url: string, destination: string): Promise<string> {
63
+ const fetch = bent(url);
64
+ try {
65
+ const response = await fetch();
66
+ const data = await response.arrayBuffer();
67
+ const filename = determineFilenameFrom(response);
68
+ await writeFile(path.join(destination, filename), data);
69
+ return determineFilenameFrom(response);
70
+ } catch (e) {
71
+ const err = e as BentResponse;
72
+ if (err.statusCode === undefined) {
73
+ throw err;
74
+ }
75
+ if (err.statusCode === 301 || err.statusCode === 302) {
76
+ const next = err.headers["location"];
77
+ if (!next) {
78
+ throw new Error(`No location provided for http response ${err.statusCode}`);
79
+ }
80
+ return download(next, destination);
81
+ }
82
+ throw err;
83
+ }
84
+ }
85
+
86
+ async function fetchRelease(options: FetchReleaseOptions): Promise<string[]> {
87
+ const {
88
+ owner,
89
+ repo,
90
+ getRelease,
91
+ getAsset = getAssetDefault,
92
+ destination = PACKAGE_DATA_DIR,
93
+ shouldExtract = true,
94
+ } = options
95
+
96
+ if (!owner) {
97
+ throw new Error('Required "owner" option is missing')
98
+ }
99
+
100
+ if (!repo) {
101
+ throw new Error('Required "repo" option is missing')
102
+ }
103
+
104
+ const {
105
+ data: { assets, tag_name: version },
106
+ } = await getRelease(owner, repo)
107
+ const downloadUrl = getAsset(version, assets)?.browser_download_url
108
+
109
+ if (!downloadUrl) {
110
+ throw new Error('Unable to find download URL')
111
+ }
112
+
113
+ await ensureDirExist(destination)
114
+ const filename = await download(downloadUrl, destination)
115
+ const downloadPath = path.join(destination, filename)
116
+
117
+ if (shouldExtract) {
118
+ const files = await decompress(downloadPath, destination)
119
+ await rm(downloadPath)
120
+
121
+ return files.map((file: decompress.File) => path.join(destination, file.path))
122
+ }
123
+
124
+ return [downloadPath]
125
+ }
126
+
127
+ /**
128
+ * Downloads and extract release for the specified tag from Github to the destination.
129
+ *
130
+ * await fetchLatestRelease({ owner: 'smallstep', repo: 'cli', tag: '1.0.0' })
131
+ */
132
+ export async function fetchReleaseByTag(
133
+ options: Omit<FetchReleaseOptions, 'getRelease'> & { tag: string },
134
+ ): Promise<string[]> {
135
+ return fetchRelease({
136
+ ...options,
137
+ getRelease: (owner, repo) =>
138
+ new Octokit({ auth: options.accessToken }).repos.getReleaseByTag({
139
+ owner,
140
+ repo,
141
+ tag: options.tag,
142
+ }),
143
+ })
144
+ }
145
+
146
+ /**
147
+ * Downloads and extract latest release from Github to the destination.
148
+ *
149
+ * await fetchLatestRelease({ owner: 'smallstep', repo: 'cli' })
150
+ */
151
+ export async function fetchLatestRelease(
152
+ options: Omit<FetchReleaseOptions, 'getRelease'>,
153
+ ): Promise<string[]> {
154
+ return fetchRelease({
155
+ ...options,
156
+ getRelease: (owner, repo) =>
157
+ new Octokit({ auth: options.accessToken }).repos.getLatestRelease({ owner, repo }),
158
+ })
159
+ }
@@ -0,0 +1,48 @@
1
+ import { OctokitReleaseAssets } from './types'
2
+
3
+ interface PlatformIdentifier {
4
+ platform: string
5
+ arch: string
6
+ }
7
+
8
+ function getPlatformIdentifier(): PlatformIdentifier {
9
+ switch (process.platform) {
10
+ case 'win32':
11
+ return { platform: 'windows', arch: 'amd64' }
12
+ case 'linux':
13
+ if (process.arch === 'arm64') {
14
+ return { platform: 'linux', arch: 'arm64' }
15
+ }
16
+
17
+ if (process.arch === 'arm') {
18
+ return { platform: 'linux', arch: 'arm' }
19
+ }
20
+
21
+ return { platform: 'linux', arch: 'amd64' }
22
+ case 'darwin':
23
+ return { platform: 'darwin', arch: 'amd64' }
24
+ default:
25
+ throw new Error('Unsupported platform')
26
+ }
27
+ }
28
+
29
+ export function getAssetDefault(
30
+ version: string,
31
+ assets: OctokitReleaseAssets,
32
+ ): OctokitReleaseAssets[number] {
33
+ const { platform, arch } = getPlatformIdentifier()
34
+
35
+ const platformAssets = assets.filter((asset: { name: string }) => asset.name.includes(platform))
36
+
37
+ if (platformAssets.length === 1) {
38
+ return platformAssets[0]
39
+ }
40
+
41
+ const archAsset = platformAssets.find((asset: { name: string }) => asset.name.includes(arch))
42
+
43
+ if (!archAsset) {
44
+ throw new Error(`Unable to find release for platform: ${platform} and arch: ${arch}`)
45
+ }
46
+
47
+ return archAsset
48
+ }
@@ -0,0 +1,2 @@
1
+ export * from "./fetchRelease";
2
+ export * from "./isUpdateAvailable";
@@ -0,0 +1,143 @@
1
+ import { Octokit } from "@octokit/rest"
2
+ import { gt } from "semver"
3
+
4
+ import { RepoInfo } from "./types"
5
+
6
+ interface IsUpdateAvailableOptions extends RepoInfo {
7
+ currentVersion: string
8
+ accessToken?: string
9
+ }
10
+
11
+ export async function isUpdateAvailable(options: IsUpdateAvailableOptions): Promise<boolean> {
12
+ const { repo, owner, currentVersion, accessToken } = options
13
+ const {
14
+ data: { tag_name: latestVersion },
15
+ } = await new Octokit({ auth: accessToken }).repos.getLatestRelease({ owner, repo })
16
+
17
+ return newerVersion(latestVersion, currentVersion)
18
+ }
19
+
20
+ export interface FetchLatestReleaseOptions extends RepoInfo {
21
+ accessToken?: string;
22
+ }
23
+
24
+ export interface FetchLatestReleaseResult {
25
+ url: string;
26
+ id: number;
27
+ assets: any[];
28
+ name: string | null;
29
+ body?: string | null;
30
+ assets_url: string;
31
+ author: string;
32
+ body_html: string;
33
+ body_text: string;
34
+ created_at: string;
35
+ discussion_url: string;
36
+ draft: boolean;
37
+ html_url: string;
38
+ mentions_count: number;
39
+ }
40
+
41
+ export async function fetchLatestReleaseInfo(
42
+ opts: ListReleasesOptions
43
+ ): Promise<ReleaseInfo> {
44
+ const { repo, owner, accessToken } = opts;
45
+ const result = await new Octokit({ auth: accessToken }).repos.getLatestRelease({ owner, repo });
46
+ return result.data as ReleaseInfo;
47
+ }
48
+
49
+ export interface ListReleasesOptions extends RepoInfo {
50
+ accessToken?: string;
51
+ }
52
+
53
+ export interface AuthorInfo {
54
+ login: string;
55
+ id: number;
56
+ node_id: string;
57
+ avatar_url: string;
58
+ gravatar_id: string;
59
+ url: string;
60
+ html_url: string;
61
+ followers_url: string;
62
+ following_url: string;
63
+ gists_url: string;
64
+ starred_url: string;
65
+ subscriptions_url: string;
66
+ organizations_url: string;
67
+ repos_url: string;
68
+ events_url: string;
69
+ received_events_url: string;
70
+ type: string;
71
+ site_admin: boolean;
72
+ }
73
+
74
+ export interface ReleaseAsset {
75
+ url: string;
76
+ id: number;
77
+ node_id: string;
78
+ name: string;
79
+ label: string;
80
+ uploader: AuthorInfo;
81
+ content_type: string;
82
+ state: string;
83
+ size: number;
84
+ download_count: number;
85
+ created_at: string;
86
+ updated_at: string;
87
+ browser_download_url: string;
88
+ }
89
+
90
+ export interface ReleaseReactions {
91
+ url: string;
92
+ total_count: number;
93
+ "+1": number;
94
+ "-1": number;
95
+ laugh: number;
96
+ hooray: number;
97
+ confused: number;
98
+ heart: number;
99
+ rocket: number;
100
+ eyes: number;
101
+ }
102
+
103
+ export interface ReleaseInfo {
104
+ url: string;
105
+ assets_url: string;
106
+ upload_url: string;
107
+ html_url: string;
108
+ author: AuthorInfo;
109
+ node_id: string;
110
+ tag_name: string;
111
+ tag_commitish?: string;
112
+ name: string;
113
+ draft: boolean;
114
+ prerelease: boolean;
115
+ created_at: string;
116
+ published_at: string;
117
+ assets: ReleaseAsset[];
118
+ tarball_url: string;
119
+ zipball_url: string;
120
+ body: string;
121
+ reactions: ReleaseReactions
122
+ }
123
+
124
+ export async function listReleases(opts: ListReleasesOptions): Promise<ReleaseInfo[]> {
125
+ const { repo, owner, accessToken } = opts;
126
+ const result = await new Octokit({ auth: accessToken }).repos.listReleases({ owner, repo });
127
+ return result.data as ReleaseInfo[];
128
+ }
129
+
130
+ export function newerVersion(latestVersion: string, currentVersion: string): boolean {
131
+ if (!latestVersion) {
132
+ return false
133
+ }
134
+
135
+ if (!currentVersion) {
136
+ return true
137
+ }
138
+
139
+ const normalizedLatestVersion = latestVersion.replace(/^v/, "")
140
+ const normalizedCurrentVersion = currentVersion.replace(/^v/, "")
141
+
142
+ return gt(normalizedLatestVersion, normalizedCurrentVersion)
143
+ }
@@ -0,0 +1,17 @@
1
+ import { RestEndpointMethodTypes } from '@octokit/rest'
2
+
3
+ export type OctokitRelease = RestEndpointMethodTypes['repos']['getLatestRelease']['response']
4
+ export type OctokitReleaseAssets = OctokitRelease['data']['assets']
5
+
6
+ export interface Release {
7
+ repository: string
8
+ package: string
9
+ destination: string
10
+ version: string
11
+ extract: boolean
12
+ }
13
+
14
+ export interface RepoInfo {
15
+ owner: string
16
+ repo: string
17
+ }
@@ -0,0 +1,24 @@
1
+ import fs from 'fs'
2
+ import path from 'path'
3
+
4
+ export const exists = async (filePath: string): Promise<boolean> => {
5
+ try {
6
+ await fs.promises.access(filePath)
7
+ return true
8
+ } catch {
9
+ return false
10
+ }
11
+ }
12
+
13
+ export const mkdir = async (dirname: string): Promise<void> => {
14
+ const isExist = await exists(dirname)
15
+
16
+ if (!isExist) {
17
+ await fs.promises.mkdir(dirname, { recursive: true })
18
+ }
19
+ }
20
+
21
+ export const ensureDirExist = async (filePath: string): Promise<void> => {
22
+ const dirname = path.dirname(filePath)
23
+ await mkdir(dirname)
24
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zarro",
3
- "version": "1.165.4",
3
+ "version": "1.165.6",
4
4
  "description": "Some glue to make gulp easier, perhaps even zero- or close-to-zero-conf",
5
5
  "bin": {
6
6
  "zarro": "./index.js"
@@ -94,8 +94,10 @@
94
94
  },
95
95
  "files": [
96
96
  "gulp-tasks/**/*.js",
97
- "gulp-tasks/modules/fetch-github-release/moo/*.js",
98
- "gulp-tasks/modules/fetch-github-release/moo/*.d.ts",
97
+ "gulp-tasks/modules/fetch-github-release/dist-copy/*.js",
98
+ "gulp-tasks/modules/fetch-github-release/dist-copy/*.d.ts",
99
+ "gulp-tasks/modules/fetch-github-release/src/*.ts",
100
+ "gulp-tasks/modules/fetch-github-release/src/*.js",
99
101
  "index-modules/**/*.js",
100
102
  "types.d.ts",
101
103
  "tsconfig.json"