mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
docs: organize tool pages by modality under /tools/<modality>/
Move all 157 tool pages into image/video/audio/pdf/data subfolders so URLs read /tools/<modality>/<id> (e.g. /tools/image/crop). Nest the image sub-categories under an Image group in the sidebar so the nav reads by modality. Add public/_redirects (301, clean + .html forms) mapping every old flat /tools/<id> URL to its new path so inbound links keep working. Rewrite all internal /tools links. Verified with a clean docs build (no dead links).
This commit is contained in:
@@ -0,0 +1,72 @@
|
||||
---
|
||||
description: Rename multiple files using a pattern template and download as ZIP.
|
||||
---
|
||||
|
||||
# Bulk Rename
|
||||
|
||||
Rename multiple files using a pattern template with placeholders for index, padded index, and original filename. Returns a ZIP archive containing all renamed files.
|
||||
|
||||
## API Endpoint
|
||||
|
||||
`POST /api/v1/tools/image/bulk-rename`
|
||||
|
||||
Accepts multipart form data with multiple files and a JSON `settings` field.
|
||||
|
||||
## Parameters
|
||||
|
||||
| Parameter | Type | Required | Default | Description |
|
||||
|-----------|------|----------|---------|-------------|
|
||||
| pattern | string | No | `"image-{{index}}"` | Naming pattern with placeholders (max 1000 characters) |
|
||||
| startIndex | number | No | `1` | Starting index number |
|
||||
|
||||
### Pattern Placeholders
|
||||
|
||||
| Placeholder | Description | Example |
|
||||
|-------------|-------------|---------|
|
||||
| `{{index}}` | Sequential number starting from `startIndex` | `1`, `2`, `3` |
|
||||
| `{{padded}}` | Zero-padded sequential number | `01`, `02`, `03` |
|
||||
| `{{original}}` | Original filename without extension | `photo`, `IMG_001` |
|
||||
|
||||
The original file extension is always preserved.
|
||||
|
||||
## Example Request
|
||||
|
||||
```bash
|
||||
curl -X POST http://localhost:1349/api/v1/tools/image/bulk-rename \
|
||||
-H "Authorization: Bearer si_your-api-key" \
|
||||
-F "file=@photo1.jpg" \
|
||||
-F "file=@photo2.jpg" \
|
||||
-F "file=@photo3.jpg" \
|
||||
-F 'settings={"pattern": "vacation-{{padded}}", "startIndex": 1}'
|
||||
```
|
||||
|
||||
This produces: `vacation-1.jpg`, `vacation-2.jpg`, `vacation-3.jpg`
|
||||
|
||||
Using original filename:
|
||||
|
||||
```bash
|
||||
curl -X POST http://localhost:1349/api/v1/tools/image/bulk-rename \
|
||||
-H "Authorization: Bearer si_your-api-key" \
|
||||
-F "file=@IMG_001.jpg" \
|
||||
-F "file=@IMG_002.jpg" \
|
||||
-F 'settings={"pattern": "2024-trip-{{original}}-{{index}}"}'
|
||||
```
|
||||
|
||||
This produces: `2024-trip-IMG_001-1.jpg`, `2024-trip-IMG_002-2.jpg`
|
||||
|
||||
## Example Response
|
||||
|
||||
The response is a ZIP file streamed directly (not a JSON response). The response headers are:
|
||||
|
||||
```
|
||||
Content-Type: application/zip
|
||||
Content-Disposition: attachment; filename="renamed-a1b2c3d4.zip"
|
||||
```
|
||||
|
||||
## Notes
|
||||
|
||||
- This tool does not process images. It only renames files and packages them into a ZIP archive.
|
||||
- The zero-padding width for `{{padded}}` is determined automatically based on the total number of files (e.g. 100 files would use 3-digit padding: `001`, `002`, etc.).
|
||||
- File extensions are preserved from the original filenames.
|
||||
- Filenames are sanitized to remove unsafe characters.
|
||||
- At least one file must be provided.
|
||||
Reference in New Issue
Block a user