@fluxfiles/node 0.1.17 → 0.1.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/README.md +22 -0
- package/dist/index.d.mts +15 -7
- package/dist/index.d.ts +15 -7
- package/dist/index.js +4 -1
- package/dist/index.mjs +4 -1
- package/package.json +1 -1
- package/src/token.ts +6 -1
- package/src/types.ts +15 -7
package/README.md
CHANGED
|
@@ -68,6 +68,28 @@ The core then accepts `POST /api/fm/import-url` for that token (SSRF-guarded,
|
|
|
68
68
|
sharing the quota/dedup/variants pipeline). Server-wide defaults come from
|
|
69
69
|
`FLUXFILES_IMPORT_*` env vars on the core service.
|
|
70
70
|
|
|
71
|
+
### SFTP disk: chmod & SSH terminal
|
|
72
|
+
|
|
73
|
+
When the token targets a FluxFiles server that has an **SFTP disk** configured
|
|
74
|
+
(`SFTP_*` env on that server — see the
|
|
75
|
+
[core README](https://github.com/thai-pc/fluxfiles#sftp-disk-vps--shared-hosting)),
|
|
76
|
+
you can hand a token the SFTP file-manager tools. `chmod` is on by default for SFTP;
|
|
77
|
+
the **SSH terminal** is opt-in (it grants shell access as the SSH user):
|
|
78
|
+
|
|
79
|
+
```ts
|
|
80
|
+
const token = createToken({
|
|
81
|
+
userId: 'admin-7',
|
|
82
|
+
perms: ['read', 'write'],
|
|
83
|
+
disks: ['sftp'], // an SFTP disk configured on the FluxFiles server
|
|
84
|
+
allowChmod: true, // cPanel-style permissions (default on for SFTP)
|
|
85
|
+
allowTerminal: true, // SSH terminal — opt-in, off by default
|
|
86
|
+
});
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
These are **standalone-core** features: `@fluxfiles/node` mints for a real
|
|
90
|
+
FluxFiles server (Docker / standalone), which serves them — they aren't available
|
|
91
|
+
behind the WordPress / Laravel-proxy adapters.
|
|
92
|
+
|
|
71
93
|
### BYOB — encrypt a user's own bucket credentials
|
|
72
94
|
|
|
73
95
|
```ts
|
package/dist/index.d.mts
CHANGED
|
@@ -100,17 +100,20 @@ interface BaseTokenOptions {
|
|
|
100
100
|
* access as the SSH user, so it's opt-in. Core-standalone: the token must target a real core
|
|
101
101
|
* (this SDK does), not a proxy adapter that doesn't serve /api/fm/terminal. */
|
|
102
102
|
allowTerminal?: boolean;
|
|
103
|
-
/**
|
|
104
|
-
*
|
|
103
|
+
/** Optional self-hosted PTY terminal URL (ttyd / gotty / wetty, or any PTY-over-WebSocket
|
|
104
|
+
* server the operator runs). When set (and `allowTerminal` is true), the UI embeds it for a
|
|
105
|
+
* true interactive terminal instead of the built-in command-runner. Free; must be http(s).
|
|
106
|
+
* Core-standalone only (like `allowTerminal`). */
|
|
107
|
+
terminalPtyUrl?: string;
|
|
108
|
+
/** Allow the Optimization feature (POST /api/fm/optimize) — recompress images to WebP +
|
|
109
|
+
* compress PDFs. **Free/core**; default **false** because it replaces/deletes originals, so
|
|
110
|
+
* it's an opt-in capability. */
|
|
105
111
|
allowOptimize?: boolean;
|
|
106
|
-
/** Auto-optimize images on upload (recompress to WebP in the pipeline). Default false
|
|
107
|
-
*
|
|
112
|
+
/** Auto-optimize images on upload (recompress to WebP in the pipeline). Default false.
|
|
113
|
+
* Free/core. */
|
|
108
114
|
autoOptimize?: boolean;
|
|
109
115
|
/** WebP quality for optimization, 40–95. `0`/omitted = inherit the server default (82). */
|
|
110
116
|
optimizeQuality?: number;
|
|
111
|
-
/** Target format for optimization: `'webp'` (default) or `'avif'` (falls back to
|
|
112
|
-
* WebP when the server build lacks AVIF). */
|
|
113
|
-
optimizeFormat?: 'webp' | 'avif';
|
|
114
117
|
/** Keep the original file when optimizing (default false = replace in place). */
|
|
115
118
|
optimizeKeepOriginal?: boolean;
|
|
116
119
|
/** Skip optimizing a file larger than this many MB (0/omitted = no limit). */
|
|
@@ -171,6 +174,11 @@ interface BaseTokenOptions {
|
|
|
171
174
|
usageTopFoldersCount?: number;
|
|
172
175
|
/** Folder grouping depth for the usage breakdown. `0`/omitted = inherit (1). */
|
|
173
176
|
usageFolderDepth?: number;
|
|
177
|
+
/** Generic escape hatch: any JWT claim by its raw snake_case name (e.g.
|
|
178
|
+
* `{ allow_terminal: true, terminal_pty_url: '…', upload_collision: 'overwrite' }`).
|
|
179
|
+
* Merged last so explicit claims win; the server sanitizes on decode. The single
|
|
180
|
+
* place to set claims that don't have a typed option here. See docs/CONFIG.md. */
|
|
181
|
+
claims?: Record<string, unknown>;
|
|
174
182
|
}
|
|
175
183
|
interface CreateTokenOptions extends BaseTokenOptions {
|
|
176
184
|
/** Disk names the token may access. */
|
package/dist/index.d.ts
CHANGED
|
@@ -100,17 +100,20 @@ interface BaseTokenOptions {
|
|
|
100
100
|
* access as the SSH user, so it's opt-in. Core-standalone: the token must target a real core
|
|
101
101
|
* (this SDK does), not a proxy adapter that doesn't serve /api/fm/terminal. */
|
|
102
102
|
allowTerminal?: boolean;
|
|
103
|
-
/**
|
|
104
|
-
*
|
|
103
|
+
/** Optional self-hosted PTY terminal URL (ttyd / gotty / wetty, or any PTY-over-WebSocket
|
|
104
|
+
* server the operator runs). When set (and `allowTerminal` is true), the UI embeds it for a
|
|
105
|
+
* true interactive terminal instead of the built-in command-runner. Free; must be http(s).
|
|
106
|
+
* Core-standalone only (like `allowTerminal`). */
|
|
107
|
+
terminalPtyUrl?: string;
|
|
108
|
+
/** Allow the Optimization feature (POST /api/fm/optimize) — recompress images to WebP +
|
|
109
|
+
* compress PDFs. **Free/core**; default **false** because it replaces/deletes originals, so
|
|
110
|
+
* it's an opt-in capability. */
|
|
105
111
|
allowOptimize?: boolean;
|
|
106
|
-
/** Auto-optimize images on upload (recompress to WebP in the pipeline). Default false
|
|
107
|
-
*
|
|
112
|
+
/** Auto-optimize images on upload (recompress to WebP in the pipeline). Default false.
|
|
113
|
+
* Free/core. */
|
|
108
114
|
autoOptimize?: boolean;
|
|
109
115
|
/** WebP quality for optimization, 40–95. `0`/omitted = inherit the server default (82). */
|
|
110
116
|
optimizeQuality?: number;
|
|
111
|
-
/** Target format for optimization: `'webp'` (default) or `'avif'` (falls back to
|
|
112
|
-
* WebP when the server build lacks AVIF). */
|
|
113
|
-
optimizeFormat?: 'webp' | 'avif';
|
|
114
117
|
/** Keep the original file when optimizing (default false = replace in place). */
|
|
115
118
|
optimizeKeepOriginal?: boolean;
|
|
116
119
|
/** Skip optimizing a file larger than this many MB (0/omitted = no limit). */
|
|
@@ -171,6 +174,11 @@ interface BaseTokenOptions {
|
|
|
171
174
|
usageTopFoldersCount?: number;
|
|
172
175
|
/** Folder grouping depth for the usage breakdown. `0`/omitted = inherit (1). */
|
|
173
176
|
usageFolderDepth?: number;
|
|
177
|
+
/** Generic escape hatch: any JWT claim by its raw snake_case name (e.g.
|
|
178
|
+
* `{ allow_terminal: true, terminal_pty_url: '…', upload_collision: 'overwrite' }`).
|
|
179
|
+
* Merged last so explicit claims win; the server sanitizes on decode. The single
|
|
180
|
+
* place to set claims that don't have a typed option here. See docs/CONFIG.md. */
|
|
181
|
+
claims?: Record<string, unknown>;
|
|
174
182
|
}
|
|
175
183
|
interface CreateTokenOptions extends BaseTokenOptions {
|
|
176
184
|
/** Disk names the token may access. */
|
package/dist/index.js
CHANGED
|
@@ -172,6 +172,7 @@ function applyTenantOverrides(payload, opts) {
|
|
|
172
172
|
if (opts.allowChmod !== void 0) payload.allow_chmod = !!opts.allowChmod;
|
|
173
173
|
if (opts.allowCodeEdit !== void 0) payload.allow_code_edit = !!opts.allowCodeEdit;
|
|
174
174
|
if (opts.allowTerminal !== void 0) payload.allow_terminal = !!opts.allowTerminal;
|
|
175
|
+
if (opts.terminalPtyUrl) payload.terminal_pty_url = String(opts.terminalPtyUrl);
|
|
175
176
|
if (opts.allowOptimize !== void 0) payload.allow_optimize = !!opts.allowOptimize;
|
|
176
177
|
if (opts.allowShare !== void 0) payload.allow_share = !!opts.allowShare;
|
|
177
178
|
if (opts.allowAiVision !== void 0) payload.allow_ai_vision = !!opts.allowAiVision;
|
|
@@ -181,7 +182,6 @@ function applyTenantOverrides(payload, opts) {
|
|
|
181
182
|
if (opts.allowC2pa !== void 0) payload.allow_c2pa = !!opts.allowC2pa;
|
|
182
183
|
if (opts.autoOptimize !== void 0) payload.auto_optimize = !!opts.autoOptimize;
|
|
183
184
|
if (opts.optimizeQuality && opts.optimizeQuality > 0) payload.optimize_quality = Math.trunc(opts.optimizeQuality);
|
|
184
|
-
if (opts.optimizeFormat === "avif") payload.optimize_format = "avif";
|
|
185
185
|
if (opts.optimizeKeepOriginal !== void 0) payload.optimize_keep_original = !!opts.optimizeKeepOriginal;
|
|
186
186
|
if (opts.optimizeMaxMb && opts.optimizeMaxMb > 0) payload.optimize_max_mb = Math.trunc(opts.optimizeMaxMb);
|
|
187
187
|
if (opts.pdfLevel && ["screen", "ebook", "printer", "prepress", "default"].includes(opts.pdfLevel)) {
|
|
@@ -210,6 +210,9 @@ function applyTenantOverrides(payload, opts) {
|
|
|
210
210
|
if (opts.usageCriticalThreshold && opts.usageCriticalThreshold > 0) payload.usage_critical_threshold = Math.trunc(opts.usageCriticalThreshold);
|
|
211
211
|
if (opts.usageTopFoldersCount && opts.usageTopFoldersCount > 0) payload.usage_top_folders_count = Math.trunc(opts.usageTopFoldersCount);
|
|
212
212
|
if (opts.usageFolderDepth && opts.usageFolderDepth > 0) payload.usage_folder_depth = Math.trunc(opts.usageFolderDepth);
|
|
213
|
+
if (opts.claims) {
|
|
214
|
+
for (const [k, v] of Object.entries(opts.claims)) if (v !== void 0 && v !== null) payload[k] = v;
|
|
215
|
+
}
|
|
213
216
|
}
|
|
214
217
|
function validateByobDisk(name, config) {
|
|
215
218
|
if (!config || config.driver !== "s3" && config.driver !== "sftp") {
|
package/dist/index.mjs
CHANGED
|
@@ -150,6 +150,7 @@ function applyTenantOverrides(payload, opts) {
|
|
|
150
150
|
if (opts.allowChmod !== void 0) payload.allow_chmod = !!opts.allowChmod;
|
|
151
151
|
if (opts.allowCodeEdit !== void 0) payload.allow_code_edit = !!opts.allowCodeEdit;
|
|
152
152
|
if (opts.allowTerminal !== void 0) payload.allow_terminal = !!opts.allowTerminal;
|
|
153
|
+
if (opts.terminalPtyUrl) payload.terminal_pty_url = String(opts.terminalPtyUrl);
|
|
153
154
|
if (opts.allowOptimize !== void 0) payload.allow_optimize = !!opts.allowOptimize;
|
|
154
155
|
if (opts.allowShare !== void 0) payload.allow_share = !!opts.allowShare;
|
|
155
156
|
if (opts.allowAiVision !== void 0) payload.allow_ai_vision = !!opts.allowAiVision;
|
|
@@ -159,7 +160,6 @@ function applyTenantOverrides(payload, opts) {
|
|
|
159
160
|
if (opts.allowC2pa !== void 0) payload.allow_c2pa = !!opts.allowC2pa;
|
|
160
161
|
if (opts.autoOptimize !== void 0) payload.auto_optimize = !!opts.autoOptimize;
|
|
161
162
|
if (opts.optimizeQuality && opts.optimizeQuality > 0) payload.optimize_quality = Math.trunc(opts.optimizeQuality);
|
|
162
|
-
if (opts.optimizeFormat === "avif") payload.optimize_format = "avif";
|
|
163
163
|
if (opts.optimizeKeepOriginal !== void 0) payload.optimize_keep_original = !!opts.optimizeKeepOriginal;
|
|
164
164
|
if (opts.optimizeMaxMb && opts.optimizeMaxMb > 0) payload.optimize_max_mb = Math.trunc(opts.optimizeMaxMb);
|
|
165
165
|
if (opts.pdfLevel && ["screen", "ebook", "printer", "prepress", "default"].includes(opts.pdfLevel)) {
|
|
@@ -188,6 +188,9 @@ function applyTenantOverrides(payload, opts) {
|
|
|
188
188
|
if (opts.usageCriticalThreshold && opts.usageCriticalThreshold > 0) payload.usage_critical_threshold = Math.trunc(opts.usageCriticalThreshold);
|
|
189
189
|
if (opts.usageTopFoldersCount && opts.usageTopFoldersCount > 0) payload.usage_top_folders_count = Math.trunc(opts.usageTopFoldersCount);
|
|
190
190
|
if (opts.usageFolderDepth && opts.usageFolderDepth > 0) payload.usage_folder_depth = Math.trunc(opts.usageFolderDepth);
|
|
191
|
+
if (opts.claims) {
|
|
192
|
+
for (const [k, v] of Object.entries(opts.claims)) if (v !== void 0 && v !== null) payload[k] = v;
|
|
193
|
+
}
|
|
191
194
|
}
|
|
192
195
|
function validateByobDisk(name, config) {
|
|
193
196
|
if (!config || config.driver !== "s3" && config.driver !== "sftp") {
|
package/package.json
CHANGED
package/src/token.ts
CHANGED
|
@@ -144,6 +144,7 @@ function applyTenantOverrides(payload: Record<string, unknown>, opts: BaseTokenO
|
|
|
144
144
|
// SSH terminal (SFTP disks). Core-standalone — the token must target a real core
|
|
145
145
|
// (Node mints for one), not a proxy adapter that doesn't serve /api/fm/terminal.
|
|
146
146
|
if (opts.allowTerminal !== undefined) payload.allow_terminal = !!opts.allowTerminal;
|
|
147
|
+
if (opts.terminalPtyUrl) payload.terminal_pty_url = String(opts.terminalPtyUrl);
|
|
147
148
|
if (opts.allowOptimize !== undefined) payload.allow_optimize = !!opts.allowOptimize;
|
|
148
149
|
// Other paid-module claims (inert unless the module is installed + licensed).
|
|
149
150
|
if (opts.allowShare !== undefined) payload.allow_share = !!opts.allowShare;
|
|
@@ -154,7 +155,6 @@ function applyTenantOverrides(payload: Record<string, unknown>, opts: BaseTokenO
|
|
|
154
155
|
if (opts.allowC2pa !== undefined) payload.allow_c2pa = !!opts.allowC2pa;
|
|
155
156
|
if (opts.autoOptimize !== undefined) payload.auto_optimize = !!opts.autoOptimize;
|
|
156
157
|
if (opts.optimizeQuality && opts.optimizeQuality > 0) payload.optimize_quality = Math.trunc(opts.optimizeQuality);
|
|
157
|
-
if (opts.optimizeFormat === 'avif') payload.optimize_format = 'avif';
|
|
158
158
|
if (opts.optimizeKeepOriginal !== undefined) payload.optimize_keep_original = !!opts.optimizeKeepOriginal;
|
|
159
159
|
if (opts.optimizeMaxMb && opts.optimizeMaxMb > 0) payload.optimize_max_mb = Math.trunc(opts.optimizeMaxMb);
|
|
160
160
|
if (opts.pdfLevel && ['screen', 'ebook', 'printer', 'prepress', 'default'].includes(opts.pdfLevel)) {
|
|
@@ -185,6 +185,11 @@ function applyTenantOverrides(payload: Record<string, unknown>, opts: BaseTokenO
|
|
|
185
185
|
if (opts.usageCriticalThreshold && opts.usageCriticalThreshold > 0) payload.usage_critical_threshold = Math.trunc(opts.usageCriticalThreshold);
|
|
186
186
|
if (opts.usageTopFoldersCount && opts.usageTopFoldersCount > 0) payload.usage_top_folders_count = Math.trunc(opts.usageTopFoldersCount);
|
|
187
187
|
if (opts.usageFolderDepth && opts.usageFolderDepth > 0) payload.usage_folder_depth = Math.trunc(opts.usageFolderDepth);
|
|
188
|
+
|
|
189
|
+
// Generic escape hatch: ANY claim by its raw (snake_case) name. Merged last so an
|
|
190
|
+
// explicit claim wins over a preset/group default. The server sanitizes on decode.
|
|
191
|
+
// See docs/CONFIG.md for the full claim list.
|
|
192
|
+
if (opts.claims) for (const [k, v] of Object.entries(opts.claims)) if (v !== undefined && v !== null) payload[k] = v;
|
|
188
193
|
}
|
|
189
194
|
|
|
190
195
|
/**
|
package/src/types.ts
CHANGED
|
@@ -104,17 +104,20 @@ export interface BaseTokenOptions {
|
|
|
104
104
|
* access as the SSH user, so it's opt-in. Core-standalone: the token must target a real core
|
|
105
105
|
* (this SDK does), not a proxy adapter that doesn't serve /api/fm/terminal. */
|
|
106
106
|
allowTerminal?: boolean;
|
|
107
|
-
/**
|
|
108
|
-
*
|
|
107
|
+
/** Optional self-hosted PTY terminal URL (ttyd / gotty / wetty, or any PTY-over-WebSocket
|
|
108
|
+
* server the operator runs). When set (and `allowTerminal` is true), the UI embeds it for a
|
|
109
|
+
* true interactive terminal instead of the built-in command-runner. Free; must be http(s).
|
|
110
|
+
* Core-standalone only (like `allowTerminal`). */
|
|
111
|
+
terminalPtyUrl?: string;
|
|
112
|
+
/** Allow the Optimization feature (POST /api/fm/optimize) — recompress images to WebP +
|
|
113
|
+
* compress PDFs. **Free/core**; default **false** because it replaces/deletes originals, so
|
|
114
|
+
* it's an opt-in capability. */
|
|
109
115
|
allowOptimize?: boolean;
|
|
110
|
-
/** Auto-optimize images on upload (recompress to WebP in the pipeline). Default false
|
|
111
|
-
*
|
|
116
|
+
/** Auto-optimize images on upload (recompress to WebP in the pipeline). Default false.
|
|
117
|
+
* Free/core. */
|
|
112
118
|
autoOptimize?: boolean;
|
|
113
119
|
/** WebP quality for optimization, 40–95. `0`/omitted = inherit the server default (82). */
|
|
114
120
|
optimizeQuality?: number;
|
|
115
|
-
/** Target format for optimization: `'webp'` (default) or `'avif'` (falls back to
|
|
116
|
-
* WebP when the server build lacks AVIF). */
|
|
117
|
-
optimizeFormat?: 'webp' | 'avif';
|
|
118
121
|
/** Keep the original file when optimizing (default false = replace in place). */
|
|
119
122
|
optimizeKeepOriginal?: boolean;
|
|
120
123
|
/** Skip optimizing a file larger than this many MB (0/omitted = no limit). */
|
|
@@ -175,6 +178,11 @@ export interface BaseTokenOptions {
|
|
|
175
178
|
usageTopFoldersCount?: number;
|
|
176
179
|
/** Folder grouping depth for the usage breakdown. `0`/omitted = inherit (1). */
|
|
177
180
|
usageFolderDepth?: number;
|
|
181
|
+
/** Generic escape hatch: any JWT claim by its raw snake_case name (e.g.
|
|
182
|
+
* `{ allow_terminal: true, terminal_pty_url: '…', upload_collision: 'overwrite' }`).
|
|
183
|
+
* Merged last so explicit claims win; the server sanitizes on decode. The single
|
|
184
|
+
* place to set claims that don't have a typed option here. See docs/CONFIG.md. */
|
|
185
|
+
claims?: Record<string, unknown>;
|
|
178
186
|
}
|
|
179
187
|
|
|
180
188
|
export interface CreateTokenOptions extends BaseTokenOptions {
|