@pixzle/cli 0.0.17 → 0.0.18
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/dist/cli.js +6 -8
- package/dist/cli.js.map +1 -1
- package/dist/commands/restore.js +7 -13
- package/dist/commands/restore.js.map +1 -1
- package/dist/commands/shuffle.js +6 -12
- package/dist/commands/shuffle.js.map +1 -1
- package/dist/index.js +1 -8
- package/dist/index.js.map +1 -1
- package/dist/types.js +1 -2
- package/dist/validators.js +14 -19
- package/dist/validators.js.map +1 -1
- package/package.json +3 -4
package/dist/cli.js
CHANGED
|
@@ -1,17 +1,15 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
const
|
|
6
|
-
const shuffle_1 = require("./commands/shuffle");
|
|
7
|
-
const program = new commander_1.Command();
|
|
2
|
+
import { Command } from "commander";
|
|
3
|
+
import { registerRestoreCommand } from "./commands/restore";
|
|
4
|
+
import { registerShuffleCommand } from "./commands/shuffle";
|
|
5
|
+
const program = new Command();
|
|
8
6
|
program
|
|
9
7
|
.name("pixzle")
|
|
10
8
|
.description("CLI tool for image fragmentation and restoration")
|
|
11
9
|
.version("0.8.1");
|
|
12
10
|
// Register commands
|
|
13
|
-
|
|
14
|
-
|
|
11
|
+
registerShuffleCommand(program);
|
|
12
|
+
registerRestoreCommand(program);
|
|
15
13
|
// Error handling
|
|
16
14
|
program.on("command:*", () => {
|
|
17
15
|
console.error("Invalid command. See --help for available commands.");
|
package/dist/cli.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,sBAAsB,EAAE,MAAM,oBAAoB,CAAC;AAC5D,OAAO,EAAE,sBAAsB,EAAE,MAAM,oBAAoB,CAAC;AAE5D,MAAM,OAAO,GAAG,IAAI,OAAO,EAAE,CAAC;AAE9B,OAAO;KACJ,IAAI,CAAC,QAAQ,CAAC;KACd,WAAW,CAAC,kDAAkD,CAAC;KAC/D,OAAO,CAAC,OAAO,CAAC,CAAC;AAEpB,oBAAoB;AACpB,sBAAsB,CAAC,OAAO,CAAC,CAAC;AAChC,sBAAsB,CAAC,OAAO,CAAC,CAAC;AAEhC,iBAAiB;AACjB,OAAO,CAAC,EAAE,CAAC,WAAW,EAAE,GAAG,EAAE;IAC3B,OAAO,CAAC,KAAK,CAAC,qDAAqD,CAAC,CAAC;IACrE,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClB,CAAC,CAAC,CAAC;AAEH,kBAAkB;AAClB,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;AAE5B,mCAAmC;AACnC,IAAI,OAAO,CAAC,IAAI,CAAC,MAAM,IAAI,CAAC,EAAE,CAAC;IAC7B,OAAO,CAAC,IAAI,EAAE,CAAC;AACjB,CAAC"}
|
package/dist/commands/restore.js
CHANGED
|
@@ -1,16 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.registerRestoreCommand = registerRestoreCommand;
|
|
7
|
-
const node_1 = __importDefault(require("@pixzle/node"));
|
|
8
|
-
const validators_1 = require("../validators");
|
|
1
|
+
import Pixzle from "@pixzle/node";
|
|
2
|
+
import { validateImagePaths, validateManifestPath, validateOutputDirectory, } from "../validators";
|
|
9
3
|
/**
|
|
10
4
|
* Configures and registers the restore command
|
|
11
5
|
* @param program Commander program instance
|
|
12
6
|
*/
|
|
13
|
-
function registerRestoreCommand(program) {
|
|
7
|
+
export function registerRestoreCommand(program) {
|
|
14
8
|
program
|
|
15
9
|
.command("restore")
|
|
16
10
|
.description("Restore fragmented images")
|
|
@@ -27,10 +21,10 @@ function registerRestoreCommand(program) {
|
|
|
27
21
|
async function handleRestoreCommand(fragments, options) {
|
|
28
22
|
try {
|
|
29
23
|
console.log("🔀 Starting image restoration...");
|
|
30
|
-
const imagePaths =
|
|
31
|
-
const manifestPath =
|
|
32
|
-
const outputDir =
|
|
33
|
-
await
|
|
24
|
+
const imagePaths = validateImagePaths(fragments);
|
|
25
|
+
const manifestPath = validateManifestPath(options.manifest);
|
|
26
|
+
const outputDir = validateOutputDirectory(options.output);
|
|
27
|
+
await Pixzle.restore({
|
|
34
28
|
imagePaths,
|
|
35
29
|
manifestPath,
|
|
36
30
|
outputDir,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"restore.js","sourceRoot":"","sources":["../../src/commands/restore.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"restore.js","sourceRoot":"","sources":["../../src/commands/restore.ts"],"names":[],"mappings":"AAAA,OAAO,MAAM,MAAM,cAAc,CAAC;AAGlC,OAAO,EACL,kBAAkB,EAClB,oBAAoB,EACpB,uBAAuB,GACxB,MAAM,eAAe,CAAC;AAEvB;;;GAGG;AACH,MAAM,UAAU,sBAAsB,CAAC,OAAgB;IACrD,OAAO;SACJ,OAAO,CAAC,SAAS,CAAC;SAClB,WAAW,CAAC,2BAA2B,CAAC;SACxC,QAAQ,CAAC,gBAAgB,EAAE,qBAAqB,CAAC;SACjD,cAAc,CAAC,uBAAuB,EAAE,oBAAoB,CAAC;SAC7D,cAAc,CAAC,oBAAoB,EAAE,kBAAkB,CAAC;SACxD,MAAM,CAAC,oBAAoB,CAAC,CAAC;AAClC,CAAC;AAED;;;;GAIG;AACH,KAAK,UAAU,oBAAoB,CACjC,SAAmB,EACnB,OAAuB;IAEvB,IAAI,CAAC;QACH,OAAO,CAAC,GAAG,CAAC,kCAAkC,CAAC,CAAC;QAEhD,MAAM,UAAU,GAAG,kBAAkB,CAAC,SAAS,CAAC,CAAC;QACjD,MAAM,YAAY,GAAG,oBAAoB,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;QAC5D,MAAM,SAAS,GAAG,uBAAuB,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;QAE1D,MAAM,MAAM,CAAC,OAAO,CAAC;YACnB,UAAU;YACV,YAAY;YACZ,SAAS;SACV,CAAC,CAAC;QAEH,OAAO,CAAC,GAAG,CAAC,sCAAsC,SAAS,EAAE,CAAC,CAAC;IACjE,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACf,OAAO,CAAC,KAAK,CACX,yBAAyB,KAAK,YAAY,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,CAClF,CAAC;QACF,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAClB,CAAC;AACH,CAAC"}
|
package/dist/commands/shuffle.js
CHANGED
|
@@ -1,16 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.registerShuffleCommand = registerShuffleCommand;
|
|
7
|
-
const node_1 = __importDefault(require("@pixzle/node"));
|
|
8
|
-
const validators_1 = require("../validators");
|
|
1
|
+
import Pixzle from "@pixzle/node";
|
|
2
|
+
import { validateImagePaths, validateOutputDirectory } from "../validators";
|
|
9
3
|
/**
|
|
10
4
|
* Configures and registers the shuffle command
|
|
11
5
|
* @param program Commander program instance
|
|
12
6
|
*/
|
|
13
|
-
function registerShuffleCommand(program) {
|
|
7
|
+
export function registerShuffleCommand(program) {
|
|
14
8
|
program
|
|
15
9
|
.command("shuffle")
|
|
16
10
|
.description("Fragment images")
|
|
@@ -43,8 +37,8 @@ function registerShuffleCommand(program) {
|
|
|
43
37
|
async function handleShuffleCommand(images, options) {
|
|
44
38
|
try {
|
|
45
39
|
console.log("🔀 Starting image fragmentation...");
|
|
46
|
-
const imagePaths =
|
|
47
|
-
const outputDir =
|
|
40
|
+
const imagePaths = validateImagePaths(images);
|
|
41
|
+
const outputDir = validateOutputDirectory(options.output);
|
|
48
42
|
const config = {};
|
|
49
43
|
if (options.blockSize !== undefined)
|
|
50
44
|
config.blockSize = options.blockSize;
|
|
@@ -56,7 +50,7 @@ async function handleShuffleCommand(images, options) {
|
|
|
56
50
|
config.preserveName = true;
|
|
57
51
|
if (options.crossImageShuffle)
|
|
58
52
|
config.crossImageShuffle = true;
|
|
59
|
-
await
|
|
53
|
+
await Pixzle.shuffle({
|
|
60
54
|
imagePaths,
|
|
61
55
|
outputDir,
|
|
62
56
|
config: Object.keys(config).length > 0 ? config : undefined,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"shuffle.js","sourceRoot":"","sources":["../../src/commands/shuffle.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"shuffle.js","sourceRoot":"","sources":["../../src/commands/shuffle.ts"],"names":[],"mappings":"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"}
|
package/dist/index.js
CHANGED
|
@@ -1,10 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.Pixzle = void 0;
|
|
7
1
|
// Export CLI functionality for programmatic usage if needed
|
|
8
|
-
|
|
9
|
-
Object.defineProperty(exports, "Pixzle", { enumerable: true, get: function () { return __importDefault(node_1).default; } });
|
|
2
|
+
export { default as Pixzle } from "@pixzle/node";
|
|
10
3
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,4DAA4D;AAC5D,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,cAAc,CAAC"}
|
package/dist/types.js
CHANGED
package/dist/validators.js
CHANGED
|
@@ -1,24 +1,19 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.validateImagePaths = validateImagePaths;
|
|
4
|
-
exports.validateOutputDirectory = validateOutputDirectory;
|
|
5
|
-
exports.validateManifestPath = validateManifestPath;
|
|
6
|
-
const node_fs_1 = require("node:fs");
|
|
7
|
-
const node_path_1 = require("node:path");
|
|
1
|
+
import { existsSync, lstatSync } from "node:fs";
|
|
2
|
+
import { dirname, resolve } from "node:path";
|
|
8
3
|
/**
|
|
9
4
|
* Validates an array of image file paths
|
|
10
5
|
* @param paths Array of file paths to validate
|
|
11
6
|
* @returns Array of resolved absolute paths
|
|
12
7
|
*/
|
|
13
|
-
function validateImagePaths(paths) {
|
|
8
|
+
export function validateImagePaths(paths) {
|
|
14
9
|
const resolvedPaths = [];
|
|
15
10
|
for (const path of paths) {
|
|
16
|
-
const resolvedPath =
|
|
17
|
-
if (!
|
|
11
|
+
const resolvedPath = resolve(path);
|
|
12
|
+
if (!existsSync(resolvedPath)) {
|
|
18
13
|
console.error(`Error: File not found: ${path}`);
|
|
19
14
|
process.exit(1);
|
|
20
15
|
}
|
|
21
|
-
if (!
|
|
16
|
+
if (!lstatSync(resolvedPath).isFile()) {
|
|
22
17
|
console.error(`Error: Not a file: ${path}`);
|
|
23
18
|
process.exit(1);
|
|
24
19
|
}
|
|
@@ -31,11 +26,11 @@ function validateImagePaths(paths) {
|
|
|
31
26
|
* @param outputPath Output directory path
|
|
32
27
|
* @returns Resolved absolute path
|
|
33
28
|
*/
|
|
34
|
-
function validateOutputDirectory(outputPath) {
|
|
35
|
-
const resolvedPath =
|
|
29
|
+
export function validateOutputDirectory(outputPath) {
|
|
30
|
+
const resolvedPath = resolve(outputPath);
|
|
36
31
|
// Create parent directory if it doesn't exist
|
|
37
|
-
const parentDir =
|
|
38
|
-
if (!
|
|
32
|
+
const parentDir = dirname(resolvedPath);
|
|
33
|
+
if (!existsSync(parentDir)) {
|
|
39
34
|
console.error(`Error: Parent directory does not exist: ${parentDir}`);
|
|
40
35
|
process.exit(1);
|
|
41
36
|
}
|
|
@@ -46,13 +41,13 @@ function validateOutputDirectory(outputPath) {
|
|
|
46
41
|
* @param manifestPath Path to manifest file
|
|
47
42
|
* @returns Resolved absolute path
|
|
48
43
|
*/
|
|
49
|
-
function validateManifestPath(manifestPath) {
|
|
50
|
-
const resolvedPath =
|
|
51
|
-
if (!
|
|
44
|
+
export function validateManifestPath(manifestPath) {
|
|
45
|
+
const resolvedPath = resolve(manifestPath);
|
|
46
|
+
if (!existsSync(resolvedPath)) {
|
|
52
47
|
console.error(`Error: Manifest file not found: ${manifestPath}`);
|
|
53
48
|
process.exit(1);
|
|
54
49
|
}
|
|
55
|
-
if (!
|
|
50
|
+
if (!lstatSync(resolvedPath).isFile()) {
|
|
56
51
|
console.error(`Error: Manifest path is not a file: ${manifestPath}`);
|
|
57
52
|
process.exit(1);
|
|
58
53
|
}
|
package/dist/validators.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validators.js","sourceRoot":"","sources":["../src/validators.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"validators.js","sourceRoot":"","sources":["../src/validators.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAChD,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAE7C;;;;GAIG;AACH,MAAM,UAAU,kBAAkB,CAAC,KAAe;IAChD,MAAM,aAAa,GAAa,EAAE,CAAC;IAEnC,KAAK,MAAM,IAAI,IAAI,KAAK,EAAE,CAAC;QACzB,MAAM,YAAY,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;QAEnC,IAAI,CAAC,UAAU,CAAC,YAAY,CAAC,EAAE,CAAC;YAC9B,OAAO,CAAC,KAAK,CAAC,0BAA0B,IAAI,EAAE,CAAC,CAAC;YAChD,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QAClB,CAAC;QAED,IAAI,CAAC,SAAS,CAAC,YAAY,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC;YACtC,OAAO,CAAC,KAAK,CAAC,sBAAsB,IAAI,EAAE,CAAC,CAAC;YAC5C,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QAClB,CAAC;QAED,aAAa,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;IACnC,CAAC;IAED,OAAO,aAAa,CAAC;AACvB,CAAC;AAED;;;;GAIG;AACH,MAAM,UAAU,uBAAuB,CAAC,UAAkB;IACxD,MAAM,YAAY,GAAG,OAAO,CAAC,UAAU,CAAC,CAAC;IAEzC,8CAA8C;IAC9C,MAAM,SAAS,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;IACxC,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,EAAE,CAAC;QAC3B,OAAO,CAAC,KAAK,CAAC,2CAA2C,SAAS,EAAE,CAAC,CAAC;QACtE,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAClB,CAAC;IAED,OAAO,YAAY,CAAC;AACtB,CAAC;AAED;;;;GAIG;AACH,MAAM,UAAU,oBAAoB,CAAC,YAAoB;IACvD,MAAM,YAAY,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;IAE3C,IAAI,CAAC,UAAU,CAAC,YAAY,CAAC,EAAE,CAAC;QAC9B,OAAO,CAAC,KAAK,CAAC,mCAAmC,YAAY,EAAE,CAAC,CAAC;QACjE,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAClB,CAAC;IAED,IAAI,CAAC,SAAS,CAAC,YAAY,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC;QACtC,OAAO,CAAC,KAAK,CAAC,uCAAuC,YAAY,EAAE,CAAC,CAAC;QACrE,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAClB,CAAC;IAED,OAAO,YAAY,CAAC;AACtB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pixzle/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.18",
|
|
4
4
|
"description": "CLI implementation of image fragmentation and restoration (RESERVED)",
|
|
5
|
-
"type": "commonjs",
|
|
6
5
|
"main": "dist/index.js",
|
|
7
6
|
"types": "dist/index.d.ts",
|
|
8
7
|
"bin": {
|
|
@@ -24,8 +23,8 @@
|
|
|
24
23
|
},
|
|
25
24
|
"dependencies": {
|
|
26
25
|
"commander": "^12.1.0",
|
|
27
|
-
"@pixzle/core": "0.0.
|
|
28
|
-
"@pixzle/node": "0.0.
|
|
26
|
+
"@pixzle/core": "0.0.18",
|
|
27
|
+
"@pixzle/node": "0.0.18"
|
|
29
28
|
},
|
|
30
29
|
"devDependencies": {
|
|
31
30
|
"@types/node": "^22.10.1",
|