@fgv/ts-res 5.0.0-16 → 5.0.0-17

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.
Files changed (32) hide show
  1. package/dist/ts-res.d.ts +461 -0
  2. package/lib/index.d.ts +2 -1
  3. package/lib/index.js +3 -1
  4. package/lib/packlets/zip-archive/convert.d.ts +52 -0
  5. package/lib/packlets/zip-archive/convert.js +104 -0
  6. package/lib/packlets/zip-archive/index.d.ts +23 -0
  7. package/lib/packlets/zip-archive/index.js +95 -0
  8. package/lib/packlets/zip-archive/json.d.ts +64 -0
  9. package/lib/packlets/zip-archive/json.js +24 -0
  10. package/lib/packlets/zip-archive/types.d.ts +98 -0
  11. package/lib/packlets/zip-archive/types.js +39 -0
  12. package/lib/packlets/zip-archive/zipArchiveCreator.d.ts +35 -0
  13. package/lib/packlets/zip-archive/zipArchiveCreator.js +194 -0
  14. package/lib/packlets/zip-archive/zipArchiveFormat.d.ts +70 -0
  15. package/lib/packlets/zip-archive/zipArchiveFormat.js +184 -0
  16. package/lib/packlets/zip-archive/zipArchiveLoader.d.ts +70 -0
  17. package/lib/packlets/zip-archive/zipArchiveLoader.js +289 -0
  18. package/lib/test/unit/zip-archive/convert.test.d.ts +2 -0
  19. package/lib/test/unit/zip-archive/json.test.d.ts +2 -0
  20. package/lib/test/unit/zip-archive/zipArchiveCreator.test.d.ts +2 -0
  21. package/lib/test/unit/zip-archive/zipArchiveFormat.test.d.ts +2 -0
  22. package/lib/test/unit/zip-archive/zipArchiveIdempotency.test.d.ts +2 -0
  23. package/lib/test/unit/zip-archive/zipArchiveLoader.test.d.ts +2 -0
  24. package/package.json +8 -7
  25. package/src/index.ts +3 -1
  26. package/src/packlets/zip-archive/convert.ts +121 -0
  27. package/src/packlets/zip-archive/index.ts +76 -0
  28. package/src/packlets/zip-archive/json.ts +91 -0
  29. package/src/packlets/zip-archive/types.ts +140 -0
  30. package/src/packlets/zip-archive/zipArchiveCreator.ts +229 -0
  31. package/src/packlets/zip-archive/zipArchiveFormat.ts +158 -0
  32. package/src/packlets/zip-archive/zipArchiveLoader.ts +374 -0
@@ -0,0 +1,374 @@
1
+ /*
2
+ * Copyright (c) 2025 Erik Fortune
3
+ *
4
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
5
+ * of this software and associated documentation files (the "Software"), to deal
6
+ * in the Software without restriction, including without limitation the rights
7
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ * copies of the Software, and to permit persons to whom the Software is
9
+ * furnished to do so, subject to the following conditions:
10
+ *
11
+ * The above copyright notice and this permission notice shall be included in all
12
+ * copies or substantial portions of the Software.
13
+ *
14
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20
+ * SOFTWARE.
21
+ */
22
+
23
+ import { Result, succeed, fail, FileTree } from '@fgv/ts-utils';
24
+ import { ZipFileTree } from '@fgv/ts-extras';
25
+ import type {
26
+ IZipArchiveLoadOptions,
27
+ IZipArchiveLoadResult,
28
+ ZipArchiveProgressCallback,
29
+ IImportedFile,
30
+ IImportedDirectory
31
+ } from './types';
32
+ import { Model as ConfigModel } from '../config';
33
+ import * as Json from './json';
34
+ import { parseZipArchiveManifest, parseZipArchiveConfiguration, isZipFile } from './zipArchiveFormat';
35
+
36
+ /**
37
+ * ZIP archive loader extending ts-extras foundation
38
+ * @public
39
+ */
40
+ export class ZipArchiveLoader {
41
+ /**
42
+ * Load ZIP archive from File object (Browser)
43
+ * @param file - File object from file input
44
+ * @param options - Loading options
45
+ * @param onProgress - Optional progress callback
46
+ * @returns Result containing loaded archive data
47
+ */
48
+ public async loadFromFile(
49
+ file: File,
50
+ options: IZipArchiveLoadOptions = {},
51
+ onProgress?: ZipArchiveProgressCallback
52
+ ): Promise<Result<IZipArchiveLoadResult>> {
53
+ onProgress?.('reading-file', 0, `Reading file: ${file.name}`);
54
+
55
+ if (!isZipFile(file.name)) {
56
+ return fail(`File ${file.name} is not a ZIP file`);
57
+ }
58
+
59
+ try {
60
+ const buffer = await file.arrayBuffer();
61
+ onProgress?.('reading-file', 100, 'File read complete');
62
+
63
+ return await this.loadFromBuffer(buffer, options, onProgress);
64
+ /* c8 ignore next 3 - defense in depth against internal error */
65
+ } catch (error) {
66
+ return fail(`Failed to read file: ${error instanceof Error ? error.message : String(error)}`);
67
+ }
68
+ }
69
+
70
+ /**
71
+ * Load ZIP archive from ArrayBuffer (Universal)
72
+ * @param buffer - ZIP data buffer
73
+ * @param options - Loading options
74
+ * @param onProgress - Optional progress callback
75
+ * @returns Result containing loaded archive data
76
+ */
77
+ public async loadFromBuffer(
78
+ buffer: ArrayBuffer,
79
+ options: IZipArchiveLoadOptions = {},
80
+ onProgress?: ZipArchiveProgressCallback
81
+ ): Promise<Result<IZipArchiveLoadResult>> {
82
+ onProgress?.('parsing-zip', 0, 'Parsing ZIP archive');
83
+
84
+ const zipAccessorsResult = ZipFileTree.ZipFileTreeAccessors.fromBuffer(buffer);
85
+ if (zipAccessorsResult.isFailure()) {
86
+ return fail(`Failed to parse ZIP: ${zipAccessorsResult.message}`);
87
+ }
88
+
89
+ const zipAccessors = zipAccessorsResult.value;
90
+ onProgress?.('parsing-zip', 100, 'ZIP archive parsed');
91
+
92
+ // Load manifest
93
+ onProgress?.('loading-manifest', 0, 'Loading manifest');
94
+ const manifestResult = this._loadManifestFromAccessors(zipAccessors);
95
+ if (manifestResult.isFailure()) {
96
+ return fail(manifestResult.message);
97
+ }
98
+ const manifest = manifestResult.value;
99
+ onProgress?.('loading-manifest', 100, 'Manifest loaded');
100
+
101
+ // Load configuration
102
+ onProgress?.('loading-config', 0, 'Loading configuration');
103
+ const configResult = this._loadConfigurationFromAccessors(zipAccessors, manifest, options);
104
+ if (configResult.isFailure()) {
105
+ return fail(configResult.message);
106
+ }
107
+ const config = configResult.value;
108
+ onProgress?.('loading-config', 100, 'Configuration loaded');
109
+
110
+ // Extract files and directory structure
111
+ onProgress?.('extracting-files', 0, 'Extracting files');
112
+ const filesResult = await this._extractFilesFromAccessors(zipAccessors, onProgress);
113
+ /* c8 ignore next 3 - defense in depth against internal error */
114
+ if (filesResult.isFailure()) {
115
+ return fail(filesResult.message);
116
+ }
117
+
118
+ const { files, directory } = filesResult.value;
119
+ onProgress?.('extracting-files', 100, `Extracted ${files.length} files`);
120
+
121
+ onProgress?.('extracting-files', 100, 'ZIP loading complete');
122
+
123
+ return succeed({
124
+ manifest,
125
+ config,
126
+ files,
127
+ directory
128
+ });
129
+ }
130
+
131
+ /**
132
+ * Load manifest from ZIP using ZipFileTreeAccessors
133
+ * @param zipAccessors - ZIP file tree accessors
134
+ * @returns Result containing parsed manifest
135
+ */
136
+ private _loadManifestFromAccessors(
137
+ zipAccessors: ZipFileTree.ZipFileTreeAccessors
138
+ ): Result<Json.IZipArchiveManifest | undefined> {
139
+ const manifestResult = zipAccessors.getFileContents('manifest.json');
140
+ if (manifestResult.isFailure()) {
141
+ // Manifest is optional - return success with undefined
142
+ return succeed(undefined);
143
+ }
144
+
145
+ const parseResult = parseZipArchiveManifest(manifestResult.value);
146
+ if (parseResult.isFailure()) {
147
+ return fail(`Failed to parse manifest.json: ${parseResult.message}`);
148
+ }
149
+
150
+ return succeed(parseResult.value);
151
+ }
152
+
153
+ /**
154
+ * Load configuration from ZIP using ZipFileTreeAccessors
155
+ * @param zipAccessors - ZIP file tree accessors
156
+ * @param manifest - Parsed manifest (may be undefined)
157
+ * @param options - Loading options
158
+ * @returns Result containing parsed configuration
159
+ */
160
+ private _loadConfigurationFromAccessors(
161
+ zipAccessors: ZipFileTree.ZipFileTreeAccessors,
162
+ manifest: Json.IZipArchiveManifest | undefined,
163
+ options: IZipArchiveLoadOptions
164
+ ): Result<ConfigModel.ISystemConfiguration | undefined> {
165
+ // Check if manifest specifies a config file
166
+ const manifestSpecifiesConfig = manifest?.config !== undefined;
167
+
168
+ if (!manifestSpecifiesConfig) {
169
+ // If no config specified in manifest, config is optional
170
+ return succeed(undefined);
171
+ }
172
+
173
+ // Get the config path from the manifest
174
+ const configPath = manifest!.config!.archivePath;
175
+ const configResult = zipAccessors.getFileContents(configPath);
176
+ if (configResult.isFailure()) {
177
+ return fail(`Manifest specifies config file at '${configPath}' but it was not found in archive`);
178
+ }
179
+
180
+ const parseResult = parseZipArchiveConfiguration(configResult.value);
181
+ if (parseResult.isFailure()) {
182
+ return fail(`Failed to parse config file '${configPath}': ${parseResult.message}`);
183
+ }
184
+
185
+ return succeed(parseResult.value);
186
+ }
187
+
188
+ /**
189
+ * Extract files and directory structure from ZIP
190
+ * @param zipAccessors - ZIP file tree accessors
191
+ * @param onProgress - Optional progress callback
192
+ * @returns Result containing files and directory structure
193
+ */
194
+ private async _extractFilesFromAccessors(
195
+ zipAccessors: ZipFileTree.ZipFileTreeAccessors,
196
+ onProgress?: ZipArchiveProgressCallback
197
+ ): Promise<Result<{ files: IImportedFile[]; directory: IImportedDirectory | undefined }>> {
198
+ try {
199
+ const files: IImportedFile[] = [];
200
+ const directories = new Map<string, IImportedDirectory>();
201
+
202
+ // Get all children from root
203
+ const rootChildrenResult = zipAccessors.getChildren('/');
204
+ /* c8 ignore next 3 - defense in depth against internal error */
205
+ if (rootChildrenResult.isFailure()) {
206
+ return fail(`Failed to read ZIP contents: ${rootChildrenResult.message}`);
207
+ }
208
+
209
+ // Process all items recursively
210
+ await this._processFileTreeItems(
211
+ zipAccessors,
212
+ '/',
213
+ rootChildrenResult.value,
214
+ files,
215
+ directories,
216
+ onProgress
217
+ );
218
+
219
+ // Build directory structure
220
+ const directory = this._buildDirectoryStructure(files, directories);
221
+
222
+ return succeed({ files, directory });
223
+ /* c8 ignore next 3 - defense in depth against internal error */
224
+ } catch (error) {
225
+ return fail(`Failed to extract files: ${error instanceof Error ? error.message : String(error)}`);
226
+ }
227
+ }
228
+
229
+ /**
230
+ * Recursively process file tree items
231
+ * @param zipAccessors - ZIP file tree accessors
232
+ * @param currentPath - Current directory path
233
+ * @param items - Items to process
234
+ * @param files - Files collection
235
+ * @param directories - Directories collection
236
+ * @param onProgress - Optional progress callback
237
+ * @param processed - Processing counter
238
+ */
239
+ private async _processFileTreeItems(
240
+ zipAccessors: ZipFileTree.ZipFileTreeAccessors,
241
+ currentPath: string,
242
+ items: readonly FileTree.FileTreeItem[],
243
+ files: IImportedFile[],
244
+ directories: Map<string, IImportedDirectory>,
245
+ onProgress?: ZipArchiveProgressCallback,
246
+ processed: { count: number } = { count: 0 }
247
+ ): Promise<void> {
248
+ for (const item of items) {
249
+ /* c8 ignore next 1 - defense in depth */
250
+ const itemPath = item.absolutePath.startsWith('/') ? item.absolutePath.substring(1) : item.absolutePath;
251
+
252
+ if (item.type === 'directory') {
253
+ // Track directory
254
+ if (!directories.has(itemPath)) {
255
+ directories.set(itemPath, {
256
+ name: item.name,
257
+ files: [],
258
+ subdirectories: []
259
+ });
260
+ }
261
+
262
+ // Recursively process children
263
+ const childrenResult = zipAccessors.getChildren(item.absolutePath);
264
+ if (childrenResult.isSuccess()) {
265
+ await this._processFileTreeItems(
266
+ zipAccessors,
267
+ item.absolutePath,
268
+ childrenResult.value,
269
+ files,
270
+ directories,
271
+ onProgress,
272
+ processed
273
+ );
274
+ }
275
+ } else if (item.type === 'file') {
276
+ // Get file content
277
+ const contentResult = item.getRawContents();
278
+ const content = contentResult.orDefault('');
279
+
280
+ files.push({
281
+ name: item.name,
282
+ path: itemPath,
283
+ content,
284
+ type: this._getFileType(item.name)
285
+ });
286
+ }
287
+
288
+ processed.count++;
289
+ onProgress?.('extracting-files', 0, `Processing ${itemPath}`);
290
+ }
291
+ }
292
+
293
+ /**
294
+ * Build directory structure from files
295
+ * @param files - Extracted files
296
+ * @param directories - Directories map
297
+ * @returns Root directory structure or null
298
+ */
299
+ private _buildDirectoryStructure(
300
+ files: IImportedFile[],
301
+ directories: Map<string, IImportedDirectory>
302
+ ): IImportedDirectory | undefined {
303
+ /* c8 ignore next 3 - should never happen with fflate */
304
+ if (files.length === 0) {
305
+ return undefined;
306
+ }
307
+
308
+ const rootDir: IImportedDirectory = {
309
+ name: 'root',
310
+ files: [],
311
+ subdirectories: []
312
+ };
313
+
314
+ // Process files to build directory structure
315
+ for (const file of files) {
316
+ const pathParts = file.path.split('/').filter((part: string) => part.length > 0);
317
+
318
+ /* c8 ignore next 1 - defense in depth should never happen */
319
+ if (pathParts.length === 0) continue;
320
+
321
+ // Ensure all parent directories exist
322
+ let currentDir = rootDir;
323
+ for (let i = 0; i < pathParts.length - 1; i++) {
324
+ const dirName = pathParts[i];
325
+ let foundDir = currentDir.subdirectories.find((d) => d.name === dirName);
326
+
327
+ if (!foundDir) {
328
+ foundDir = {
329
+ name: dirName,
330
+ files: [],
331
+ subdirectories: []
332
+ };
333
+ currentDir.subdirectories.push(foundDir);
334
+ }
335
+
336
+ currentDir = foundDir;
337
+ }
338
+
339
+ // Add file to its parent directory
340
+ currentDir.files.push(file);
341
+ }
342
+
343
+ return rootDir;
344
+ }
345
+
346
+ /**
347
+ * Get file MIME type based on extension
348
+ * @param filename - Filename
349
+ * @returns MIME type
350
+ */
351
+ private _getFileType(filename: string): string {
352
+ const ext = filename.toLowerCase().split('.').pop();
353
+ /* c8 ignore next 20 - no need to test every one */
354
+ switch (ext) {
355
+ case 'json':
356
+ return 'application/json';
357
+ case 'yaml':
358
+ case 'yml':
359
+ return 'application/yaml';
360
+ case 'xml':
361
+ return 'application/xml';
362
+ case 'txt':
363
+ return 'text/plain';
364
+ case 'md':
365
+ return 'text/markdown';
366
+ case 'js':
367
+ return 'application/javascript';
368
+ case 'ts':
369
+ return 'application/typescript';
370
+ default:
371
+ return 'application/octet-stream';
372
+ }
373
+ }
374
+ }