@forwardimpact/libutil 0.1.60
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.
- package/LICENSE +201 -0
- package/bin/fit-download-bundle.js +24 -0
- package/downloader.js +108 -0
- package/extractor.js +330 -0
- package/finder.js +148 -0
- package/http.js +21 -0
- package/index.js +154 -0
- package/package.json +24 -0
- package/processor.js +125 -0
- package/retry.js +126 -0
- package/test/downloader.test.js +223 -0
- package/test/extractor.test.js +338 -0
- package/test/finder.test.js +285 -0
- package/test/fixtures/sample.tar.gz +0 -0
- package/test/fixtures/sample.zip +0 -0
- package/test/http.test.js +93 -0
- package/test/libutil.test.js +38 -0
- package/test/logger.test.js +322 -0
- package/test/processor.test.js +140 -0
- package/test/retry.test.js +194 -0
- package/test/tokenizer.test.js +123 -0
- package/test/wait.test.js +89 -0
- package/tokenizer.js +89 -0
- package/wait.js +28 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to the Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright 2026 Dick Olsson
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
import { createScriptConfig } from "@forwardimpact/libconfig";
|
|
4
|
+
import { createStorage } from "@forwardimpact/libstorage";
|
|
5
|
+
import { createBundleDownloader, execLine } from "@forwardimpact/libutil";
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Downloads generated code bundle from remote storage.
|
|
9
|
+
* Used in containerized deployments to fetch pre-generated code.
|
|
10
|
+
* @returns {Promise<void>}
|
|
11
|
+
*/
|
|
12
|
+
async function main() {
|
|
13
|
+
await createScriptConfig("download-bundle");
|
|
14
|
+
const downloader = await createBundleDownloader(createStorage);
|
|
15
|
+
await downloader.download();
|
|
16
|
+
|
|
17
|
+
// If additional arguments provided, execute them after download
|
|
18
|
+
execLine();
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
main().catch((error) => {
|
|
22
|
+
console.error("Bundle download failed:", error);
|
|
23
|
+
process.exit(1);
|
|
24
|
+
});
|
package/downloader.js
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* BundleDownloader utility for retrieving and extracting bundle.tar.gz from remote storage.
|
|
3
|
+
* Used to download generated code bundles in containerized deployments.
|
|
4
|
+
*/
|
|
5
|
+
export class BundleDownloader {
|
|
6
|
+
#storageFactory;
|
|
7
|
+
#finder;
|
|
8
|
+
#logger;
|
|
9
|
+
#extractor;
|
|
10
|
+
#process;
|
|
11
|
+
#local;
|
|
12
|
+
#remote;
|
|
13
|
+
#initialized;
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Creates a new download instance with dependency injection
|
|
17
|
+
* @param {Function} createStorageFn - Storage creation function
|
|
18
|
+
* @param {object} finder - Finder instance for symlink management
|
|
19
|
+
* @param {object} logger - Logger instance
|
|
20
|
+
* @param {object} extractor - TarExtractor instance for archive extraction
|
|
21
|
+
* @param {object} process - Process environment access (for testing)
|
|
22
|
+
*/
|
|
23
|
+
constructor(
|
|
24
|
+
createStorageFn,
|
|
25
|
+
finder,
|
|
26
|
+
logger,
|
|
27
|
+
extractor,
|
|
28
|
+
process = global.process,
|
|
29
|
+
) {
|
|
30
|
+
if (!createStorageFn) throw new Error("createStorageFn is required");
|
|
31
|
+
if (!finder) throw new Error("finder is required");
|
|
32
|
+
if (!logger) throw new Error("logger is required");
|
|
33
|
+
if (!extractor) throw new Error("extractor is required");
|
|
34
|
+
if (!process) throw new Error("process is required");
|
|
35
|
+
|
|
36
|
+
this.#storageFactory = createStorageFn;
|
|
37
|
+
this.#finder = finder;
|
|
38
|
+
this.#logger = logger;
|
|
39
|
+
this.#extractor = extractor;
|
|
40
|
+
this.#process = process;
|
|
41
|
+
this.#local = null;
|
|
42
|
+
this.#remote = null;
|
|
43
|
+
this.#initialized = false;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Initialize storage instances for download operations
|
|
48
|
+
* @returns {Promise<void>}
|
|
49
|
+
*/
|
|
50
|
+
async initialize() {
|
|
51
|
+
// Initialize storage instances for the "generated" prefix
|
|
52
|
+
this.#local = this.#storageFactory("generated", "local", this.#process);
|
|
53
|
+
this.#remote = this.#storageFactory("generated", "s3", this.#process);
|
|
54
|
+
|
|
55
|
+
// Ensure directory and create symlinks for packages
|
|
56
|
+
await this.#local.ensureBucket();
|
|
57
|
+
const generatedPath = this.#local.path();
|
|
58
|
+
await this.#finder.createPackageSymlinks(generatedPath);
|
|
59
|
+
|
|
60
|
+
this.#initialized = true;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* Download bundle.tar.gz from remote storage and extract to local storage
|
|
65
|
+
* Only downloads if STORAGE_TYPE is "s3"
|
|
66
|
+
* Automatically initializes storage instances if not already initialized
|
|
67
|
+
* @returns {Promise<void>}
|
|
68
|
+
*/
|
|
69
|
+
async download() {
|
|
70
|
+
// Auto-initialize if not already initialized
|
|
71
|
+
if (!this.#initialized) await this.initialize();
|
|
72
|
+
|
|
73
|
+
const storageType = this.#process.env.STORAGE_TYPE || "local";
|
|
74
|
+
|
|
75
|
+
if (storageType === "local") {
|
|
76
|
+
this.#logger.debug(
|
|
77
|
+
"BundleDownloader",
|
|
78
|
+
"Download skipped, using local storage",
|
|
79
|
+
);
|
|
80
|
+
return;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
const key = "bundle.tar.gz";
|
|
84
|
+
|
|
85
|
+
// Check if bundle exists in remote storage
|
|
86
|
+
const exists = await this.#remote.exists(key);
|
|
87
|
+
if (!exists) throw new Error(`Bundle not found`);
|
|
88
|
+
|
|
89
|
+
const data = await this.#remote.get(key);
|
|
90
|
+
await this.#local.put(key, data);
|
|
91
|
+
await this.#extractBundle(key);
|
|
92
|
+
await this.#local.delete(key);
|
|
93
|
+
|
|
94
|
+
this.#logger.debug("BundleDownloader", "Download completed", { key });
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* Extract bundle.tar.gz to local storage using TarExtractor
|
|
99
|
+
* @param {string} key - Bundle file key in local storage
|
|
100
|
+
* @returns {Promise<void>}
|
|
101
|
+
* @private
|
|
102
|
+
*/
|
|
103
|
+
async #extractBundle(key) {
|
|
104
|
+
const path = this.#local.path(key);
|
|
105
|
+
const dir = this.#local.path();
|
|
106
|
+
await this.#extractor.extract(path, dir);
|
|
107
|
+
}
|
|
108
|
+
}
|
package/extractor.js
ADDED
|
@@ -0,0 +1,330 @@
|
|
|
1
|
+
import { createReadStream } from "node:fs";
|
|
2
|
+
import { createGunzip, createInflateRaw } from "node:zlib";
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Base extractor class with shared functionality
|
|
6
|
+
* @private
|
|
7
|
+
*/
|
|
8
|
+
class BaseExtractor {
|
|
9
|
+
#fs;
|
|
10
|
+
#path;
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Creates a new extractor with dependency injection
|
|
14
|
+
* @param {object} fs - File system module (fs/promises)
|
|
15
|
+
* @param {object} path - Path module
|
|
16
|
+
*/
|
|
17
|
+
constructor(fs, path) {
|
|
18
|
+
if (!fs) throw new Error("fs dependency is required");
|
|
19
|
+
if (!path) throw new Error("path dependency is required");
|
|
20
|
+
|
|
21
|
+
this.#fs = fs;
|
|
22
|
+
this.#path = path;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* Check if file should be skipped (macOS resource forks, PAX headers)
|
|
27
|
+
* @param {string} name - File name
|
|
28
|
+
* @returns {boolean} True if file should be skipped
|
|
29
|
+
* @private
|
|
30
|
+
*/
|
|
31
|
+
_shouldSkipFile(name) {
|
|
32
|
+
return name.includes("/._") || name.startsWith("._");
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Create directory with proper mode
|
|
37
|
+
* @param {string} dirPath - Directory path
|
|
38
|
+
* @param {number} [mode] - Directory mode (permissions)
|
|
39
|
+
* @returns {Promise<void>}
|
|
40
|
+
* @private
|
|
41
|
+
*/
|
|
42
|
+
async _createDirectory(dirPath, mode) {
|
|
43
|
+
await this.#fs.mkdir(dirPath, { recursive: true, mode });
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Write file with proper mode
|
|
48
|
+
* @param {string} filePath - File path
|
|
49
|
+
* @param {Buffer} content - File content
|
|
50
|
+
* @param {number} [mode] - File mode (permissions)
|
|
51
|
+
* @returns {Promise<void>}
|
|
52
|
+
* @private
|
|
53
|
+
*/
|
|
54
|
+
async _writeFile(filePath, content, mode) {
|
|
55
|
+
await this.#fs.mkdir(this.#path.dirname(filePath), { recursive: true });
|
|
56
|
+
await this.#fs.writeFile(filePath, content, { mode });
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* Join paths safely
|
|
61
|
+
* @param {...string} paths - Path segments to join
|
|
62
|
+
* @returns {string} Joined path
|
|
63
|
+
* @private
|
|
64
|
+
*/
|
|
65
|
+
_joinPath(...paths) {
|
|
66
|
+
return this.#path.join(...paths);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
/**
|
|
70
|
+
* Read 16-bit little-endian unsigned integer from buffer
|
|
71
|
+
* @param {Buffer} buffer - Source buffer
|
|
72
|
+
* @param {number} offset - Offset position
|
|
73
|
+
* @returns {number} Unsigned 16-bit integer
|
|
74
|
+
* @private
|
|
75
|
+
*/
|
|
76
|
+
_readUInt16LE(buffer, offset) {
|
|
77
|
+
return buffer.readUInt16LE(offset);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* Read 32-bit little-endian unsigned integer from buffer
|
|
82
|
+
* @param {Buffer} buffer - Source buffer
|
|
83
|
+
* @param {number} offset - Offset position
|
|
84
|
+
* @returns {number} Unsigned 32-bit integer
|
|
85
|
+
* @private
|
|
86
|
+
*/
|
|
87
|
+
_readUInt32LE(buffer, offset) {
|
|
88
|
+
return buffer.readUInt32LE(offset);
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
/**
|
|
92
|
+
* Read null-terminated string from buffer
|
|
93
|
+
* @param {Buffer} buffer - Source buffer
|
|
94
|
+
* @param {number} start - Start position
|
|
95
|
+
* @param {number} length - Maximum length to read
|
|
96
|
+
* @returns {string} Extracted string
|
|
97
|
+
* @private
|
|
98
|
+
*/
|
|
99
|
+
_readString(buffer, start, length) {
|
|
100
|
+
const slice = buffer.slice(start, start + length);
|
|
101
|
+
const nullIndex = slice.indexOf(0);
|
|
102
|
+
return slice
|
|
103
|
+
.slice(0, nullIndex > -1 ? nullIndex : length)
|
|
104
|
+
.toString("utf-8");
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
/**
|
|
109
|
+
* Simple TAR file extractor for .tar.gz files
|
|
110
|
+
* Implements native Node.js TAR format parsing without external dependencies
|
|
111
|
+
*/
|
|
112
|
+
export class TarExtractor extends BaseExtractor {
|
|
113
|
+
/**
|
|
114
|
+
* Extract a .tar.gz file to specified directory
|
|
115
|
+
* @param {string} tarGzPath - Path to the .tar.gz file
|
|
116
|
+
* @param {string} outputDir - Directory to extract files to
|
|
117
|
+
* @returns {Promise<void>}
|
|
118
|
+
*/
|
|
119
|
+
async extract(tarGzPath, outputDir) {
|
|
120
|
+
// Decompress and collect chunks
|
|
121
|
+
const chunks = [];
|
|
122
|
+
const input = createReadStream(tarGzPath).pipe(createGunzip());
|
|
123
|
+
for await (const chunk of input) chunks.push(chunk);
|
|
124
|
+
|
|
125
|
+
// Parse TAR format
|
|
126
|
+
const buffer = Buffer.concat(chunks);
|
|
127
|
+
for (let offset = 0; offset < buffer.length; ) {
|
|
128
|
+
const header = buffer.slice(offset, offset + 512);
|
|
129
|
+
|
|
130
|
+
// Check for end of archive (zero block)
|
|
131
|
+
if (header.every((byte) => byte === 0)) break;
|
|
132
|
+
|
|
133
|
+
// Parse header fields
|
|
134
|
+
const name = this._readString(header, 0, 100);
|
|
135
|
+
const mode = parseInt(this._readString(header, 100, 8), 8);
|
|
136
|
+
const size = parseInt(this._readString(header, 124, 12), 8);
|
|
137
|
+
const typeFlag = header[156];
|
|
138
|
+
|
|
139
|
+
offset += 512;
|
|
140
|
+
|
|
141
|
+
if (size > 0) {
|
|
142
|
+
const blockSize = Math.ceil(size / 512) * 512;
|
|
143
|
+
|
|
144
|
+
// Skip unwanted files (PAX headers, macOS resource forks)
|
|
145
|
+
if (this._shouldSkipFile(name) || typeFlag === 120 || typeFlag === 88) {
|
|
146
|
+
offset += blockSize;
|
|
147
|
+
continue;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
const content = buffer.slice(offset, offset + size);
|
|
151
|
+
|
|
152
|
+
if (typeFlag === 53) {
|
|
153
|
+
// Directory
|
|
154
|
+
await this._createDirectory(this._joinPath(outputDir, name), mode);
|
|
155
|
+
} else {
|
|
156
|
+
// Regular file
|
|
157
|
+
await this._writeFile(this._joinPath(outputDir, name), content, mode);
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
offset += blockSize;
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
/**
|
|
167
|
+
* Simple ZIP file extractor for .zip files
|
|
168
|
+
* Implements native Node.js ZIP format parsing without external dependencies
|
|
169
|
+
*/
|
|
170
|
+
export class ZipExtractor extends BaseExtractor {
|
|
171
|
+
/**
|
|
172
|
+
* Extract a .zip file to specified directory
|
|
173
|
+
* @param {string} zipPath - Path to the .zip file
|
|
174
|
+
* @param {string} outputDir - Directory to extract files to
|
|
175
|
+
* @returns {Promise<void>}
|
|
176
|
+
*/
|
|
177
|
+
async extract(zipPath, outputDir) {
|
|
178
|
+
// Read entire ZIP file into buffer
|
|
179
|
+
const chunks = [];
|
|
180
|
+
const input = createReadStream(zipPath);
|
|
181
|
+
for await (const chunk of input) chunks.push(chunk);
|
|
182
|
+
const buffer = Buffer.concat(chunks);
|
|
183
|
+
|
|
184
|
+
// Find End of Central Directory Record (EOCD)
|
|
185
|
+
const eocdOffset = this.#findEOCD(buffer);
|
|
186
|
+
if (eocdOffset === -1) {
|
|
187
|
+
throw new Error("Invalid ZIP file: End of Central Directory not found");
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
// Parse EOCD to get central directory location
|
|
191
|
+
const centralDirOffset = this._readUInt32LE(buffer, eocdOffset + 16);
|
|
192
|
+
const entryCount = this._readUInt16LE(buffer, eocdOffset + 10);
|
|
193
|
+
|
|
194
|
+
// Parse central directory entries
|
|
195
|
+
let offset = centralDirOffset;
|
|
196
|
+
for (let i = 0; i < entryCount; i++) {
|
|
197
|
+
// Verify central directory file header signature (0x02014b50)
|
|
198
|
+
if (this._readUInt32LE(buffer, offset) !== 0x02014b50) {
|
|
199
|
+
throw new Error("Invalid central directory file header");
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
// Parse central directory header fields
|
|
203
|
+
const compressionMethod = this._readUInt16LE(buffer, offset + 10);
|
|
204
|
+
const compressedSize = this._readUInt32LE(buffer, offset + 20);
|
|
205
|
+
const fileNameLength = this._readUInt16LE(buffer, offset + 28);
|
|
206
|
+
const extraFieldLength = this._readUInt16LE(buffer, offset + 30);
|
|
207
|
+
const fileCommentLength = this._readUInt16LE(buffer, offset + 32);
|
|
208
|
+
const externalAttrs = this._readUInt32LE(buffer, offset + 38);
|
|
209
|
+
const localHeaderOffset = this._readUInt32LE(buffer, offset + 42);
|
|
210
|
+
|
|
211
|
+
// Extract file name
|
|
212
|
+
const fileName = buffer
|
|
213
|
+
.slice(offset + 46, offset + 46 + fileNameLength)
|
|
214
|
+
.toString("utf-8");
|
|
215
|
+
|
|
216
|
+
// Skip to next entry
|
|
217
|
+
offset += 46 + fileNameLength + extraFieldLength + fileCommentLength;
|
|
218
|
+
|
|
219
|
+
// Skip unwanted files
|
|
220
|
+
if (this._shouldSkipFile(fileName)) continue;
|
|
221
|
+
|
|
222
|
+
// Check if it's a directory (trailing slash or directory bit set)
|
|
223
|
+
const isDirectory =
|
|
224
|
+
fileName.endsWith("/") || (externalAttrs & 0x10) === 0x10;
|
|
225
|
+
|
|
226
|
+
if (isDirectory) {
|
|
227
|
+
// Extract Unix permissions from external attributes (high 16 bits)
|
|
228
|
+
const mode = (externalAttrs >>> 16) & 0o777;
|
|
229
|
+
await this._createDirectory(
|
|
230
|
+
this._joinPath(outputDir, fileName),
|
|
231
|
+
mode || 0o755,
|
|
232
|
+
);
|
|
233
|
+
} else {
|
|
234
|
+
// Extract file content from local file header
|
|
235
|
+
const content = await this.#extractFileContent(
|
|
236
|
+
buffer,
|
|
237
|
+
localHeaderOffset,
|
|
238
|
+
compressionMethod,
|
|
239
|
+
compressedSize,
|
|
240
|
+
);
|
|
241
|
+
|
|
242
|
+
// Extract Unix permissions from external attributes (high 16 bits)
|
|
243
|
+
const mode = (externalAttrs >>> 16) & 0o777;
|
|
244
|
+
await this._writeFile(
|
|
245
|
+
this._joinPath(outputDir, fileName),
|
|
246
|
+
content,
|
|
247
|
+
mode || 0o644,
|
|
248
|
+
);
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
/**
|
|
254
|
+
* Find End of Central Directory Record
|
|
255
|
+
* @param {Buffer} buffer - ZIP file buffer
|
|
256
|
+
* @returns {number} Offset of EOCD or -1 if not found
|
|
257
|
+
* @private
|
|
258
|
+
*/
|
|
259
|
+
#findEOCD(buffer) {
|
|
260
|
+
// EOCD signature is 0x06054b50
|
|
261
|
+
// Search from end of file backwards (EOCD is at the end)
|
|
262
|
+
const signature = 0x06054b50;
|
|
263
|
+
for (let i = buffer.length - 22; i >= 0; i--) {
|
|
264
|
+
if (this._readUInt32LE(buffer, i) === signature) {
|
|
265
|
+
return i;
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
return -1;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
/**
|
|
272
|
+
* Extract file content from local file header
|
|
273
|
+
* @param {Buffer} buffer - ZIP file buffer
|
|
274
|
+
* @param {number} offset - Local file header offset
|
|
275
|
+
* @param {number} compressionMethod - Compression method (0=store, 8=deflate)
|
|
276
|
+
* @param {number} compressedSize - Compressed size
|
|
277
|
+
* @returns {Promise<Buffer>} File content
|
|
278
|
+
* @private
|
|
279
|
+
*/
|
|
280
|
+
async #extractFileContent(buffer, offset, compressionMethod, compressedSize) {
|
|
281
|
+
// Verify local file header signature (0x04034b50)
|
|
282
|
+
if (this._readUInt32LE(buffer, offset) !== 0x04034b50) {
|
|
283
|
+
throw new Error("Invalid local file header");
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
// Get file name and extra field lengths from local header
|
|
287
|
+
const fileNameLength = this._readUInt16LE(buffer, offset + 26);
|
|
288
|
+
const extraFieldLength = this._readUInt16LE(buffer, offset + 28);
|
|
289
|
+
|
|
290
|
+
// Calculate data offset (skip header, file name, and extra field)
|
|
291
|
+
const dataOffset = offset + 30 + fileNameLength + extraFieldLength;
|
|
292
|
+
|
|
293
|
+
// Extract compressed data
|
|
294
|
+
const compressedData = buffer.slice(
|
|
295
|
+
dataOffset,
|
|
296
|
+
dataOffset + compressedSize,
|
|
297
|
+
);
|
|
298
|
+
|
|
299
|
+
// Decompress based on compression method
|
|
300
|
+
if (compressionMethod === 0) {
|
|
301
|
+
// Stored (no compression)
|
|
302
|
+
return compressedData;
|
|
303
|
+
} else if (compressionMethod === 8) {
|
|
304
|
+
// DEFLATE compression
|
|
305
|
+
return await this.#inflateData(compressedData);
|
|
306
|
+
} else {
|
|
307
|
+
throw new Error(`Unsupported compression method: ${compressionMethod}`);
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
/**
|
|
312
|
+
* Inflate compressed data using DEFLATE
|
|
313
|
+
* @param {Buffer} compressedData - Compressed data
|
|
314
|
+
* @returns {Promise<Buffer>} Decompressed data
|
|
315
|
+
* @private
|
|
316
|
+
*/
|
|
317
|
+
async #inflateData(compressedData) {
|
|
318
|
+
const chunks = [];
|
|
319
|
+
const inflate = createInflateRaw();
|
|
320
|
+
|
|
321
|
+
inflate.write(compressedData);
|
|
322
|
+
inflate.end();
|
|
323
|
+
|
|
324
|
+
for await (const chunk of inflate) {
|
|
325
|
+
chunks.push(chunk);
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
return Buffer.concat(chunks);
|
|
329
|
+
}
|
|
330
|
+
}
|