directus-extension-storage-manager 1.6.0 → 1.7.1
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 +28 -11
- package/dist/api.js +1 -1
- package/dist/app.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@ Move files between your Directus storages — local disk, S3, Google Cloud, Azur
|
|
|
10
10
|
|
|
11
11
|
Directus can use several storages at once, but it will not move existing files for you. Storage Manager does: browse each storage, upload, find files that are on disk but not in Directus, move files or whole folders, find File Library entries that nothing uses anymore, and optionally quarantine deletes in a Recycle Bin before permanent removal.
|
|
12
12
|
|
|
13
|
-
When you open a storage from the overview, the left sidebar shows that storage’s folder tree. Folders load as you expand them, so large storages stay quick to navigate.
|
|
13
|
+
When you open a storage from the overview, the left sidebar shows that storage’s folder tree. Folders load as you expand them, so large storages stay quick to navigate. The right sidebar has dedicated panels for the page you are on: **Materialize** in Directus Folders, **Detect** (and **Move** at the storage root) when browsing a storage, and **Restore** inside Recycle.
|
|
14
14
|
|
|
15
15
|
### Your storages
|
|
16
16
|
|
|
@@ -87,12 +87,25 @@ Include subfolders if you want the whole tree. Dry Run shows counts before you r
|
|
|
87
87
|
|
|
88
88
|
### Detect files
|
|
89
89
|
|
|
90
|
-
|
|
90
|
+
The file list in a storage folder is the **File Library** — files Directus already knows about. A folder can look empty even when objects still sit on disk or in the cloud (for example after a database restore, a failed delete, or files uploaded outside Directus).
|
|
91
|
+
|
|
92
|
+
Use **Detect** in the right sidebar:
|
|
91
93
|
|
|
92
94
|
- At the storage root: **Detect Files on {storage}**
|
|
93
95
|
- Inside a folder: **Detect Files in this Folder**
|
|
94
96
|
|
|
95
|
-
Import
|
|
97
|
+
That lists files on storage that are not registered yet. **Import** creates File Library rows without copying anything. Titles come from the filename (underscores become spaces). You can also **delete** selected leftovers from storage. Generated thumbnails are left alone (use **Thumbnails → Delete All Transforms** at the storage root).
|
|
98
|
+
|
|
99
|
+
If you try to delete a storage folder and it comes back or is skipped, open Detect first. Delete Folder only relocates or removes files that are already in Directus.
|
|
100
|
+
|
|
101
|
+
### Delete storage folders
|
|
102
|
+
|
|
103
|
+
When you delete a folder on a storage:
|
|
104
|
+
|
|
105
|
+
- **Move content one level up** — registered files go to the parent folder
|
|
106
|
+
- **Delete all content** — registered files are removed for good
|
|
107
|
+
|
|
108
|
+
Recycle Bin files under that path stay put, and the folder is not removed until they are restored or purged. Files that exist only on storage must be imported or deleted with Detect first. Empty cloud folders (GCS/S3 placeholders and `.keep` markers) are removed once nothing real is left.
|
|
96
109
|
|
|
97
110
|
### Unreferenced Files
|
|
98
111
|
|
|
@@ -106,7 +119,7 @@ Set your scan options, then click **Scan**:
|
|
|
106
119
|
- **Storage Filter** — limit the search to one storage, or check all
|
|
107
120
|
- **Scan Text Fields** — also look inside rich text, Markdown, JSON, code, multiline, list, tags, and text columns for file links. This can take longer on large sites; turn it off for a faster check of file/image fields only
|
|
108
121
|
|
|
109
|
-
After a scan you get a short summary and a list of matches (same cards/table layouts as elsewhere in Storage Manager). Select files and choose what to do:
|
|
122
|
+
After a scan you get a short summary and a list of matches (same cards/table layouts as elsewhere in Storage Manager, including storage location badges). Select files and choose what to do:
|
|
110
123
|
|
|
111
124
|
- **Move to Recycle** — when Recycle Bin is on, quarantine selected files instead of deleting immediately (primary action)
|
|
112
125
|
- **Move to Directus Folder** — organize them in the File Library (virtual folders only)
|
|
@@ -115,16 +128,19 @@ After a scan you get a short summary and a list of matches (same cards/table lay
|
|
|
115
128
|
|
|
116
129
|
### Recycle Bin
|
|
117
130
|
|
|
118
|
-
Open **Recycle Bin** from the left sidebar for an opt-in File Library quarantine.
|
|
131
|
+
Open **Recycle Bin** from the left sidebar for an opt-in File Library quarantine. Isolation is the point: files stay registered, but `/assets` returns 404 (no thumbnails in collections or Studio), and they cannot be found in file interfaces, search, or the picker unless you open the recycle folder on purpose. If still-used content was quarantined, the gap shows up immediately — move the file out of Recycle to restore access.
|
|
119
132
|
|
|
120
133
|

|
|
121
134
|
|
|
122
|
-
Turn **On** to create `storage_manager_trashed_at` on `directus_files` and a recycle folder (default **`_Recycle`** — you can pick another File Library folder while Off). Unreferenced Files can move selections here
|
|
135
|
+
Turn **On** to create `storage_manager_trashed_at` on `directus_files` and a recycle folder (default **`_Recycle`** — you can pick another File Library folder while Off). Unreferenced Files can move selections here. You can also **Move to Recycle** from a storage or Directus Folders browse when files or folders are selected.
|
|
136
|
+
|
|
137
|
+
On each storage browse page, Recycle files for that adapter appear in a virtual folder of the same name at the top of the folder list (objects stay at their original keys). In **Directus Folders** and the native File Library, `_Recycle` is listed first (the `_` prefix is not enough on its own — many languages sort it as “Recycle”). From there you can restore selected files, or use **Restore All**. Restore always returns files to the File Library root — storage keys do not move.
|
|
123
138
|
|
|
124
139
|
While On you can:
|
|
125
140
|
|
|
126
141
|
- Set **Retention (days)** — how long files stay before they are purge candidates
|
|
127
142
|
- **Dry Run Purge** / **Purge Expired** — permanently delete files older than retention after re-checking that they are still unreferenced
|
|
143
|
+
- **Restore All** — sidebar action on Recycle Bin and on each storage’s virtual `_Recycle` folder. Restores every quarantined file (or every Recycle file on that storage) to the File Library root, with progress, cancel, and background for large bins
|
|
128
144
|
- **Scheduled Purge** — optionally create a daily Schedule Flow (`0 3 * * *`) that runs **Purge Recycle Bin**. Turning Recycle Bin off pauses a linked Flow; you can open or remove the Flow from this page
|
|
129
145
|
|
|
130
146
|
Source of truth is the folder id. Renaming the folder in the File Library is fine.
|
|
@@ -144,10 +160,10 @@ For each group you can choose:
|
|
|
144
160
|
|
|
145
161
|
| Setting | Options |
|
|
146
162
|
| ------- | ------- |
|
|
147
|
-
| **On deselect** | Keep file in library · Ask (Storage Manager only) · Delete file if unreferenced |
|
|
148
|
-
| **On item delete** | Keep file in library · Delete file if unreferenced |
|
|
163
|
+
| **On deselect** | Keep file in library · Move to Recycle Bin if unreferenced · Ask (Storage Manager only) · Delete file if unreferenced |
|
|
164
|
+
| **On item delete** | Keep file in library · Move to Recycle Bin if unreferenced · Delete file if unreferenced |
|
|
149
165
|
|
|
150
|
-
Storage Manager fields can override these defaults per field in Data Model (including **Use File Interfaces default**). Delete only
|
|
166
|
+
**Move to Recycle Bin** only runs when Recycle Bin is On and the file is still unused elsewhere; otherwise the file is kept. Storage Manager fields can override these defaults per field in Data Model (including **Use File Interfaces default**). Delete / recycle only run when nothing else still references the file.
|
|
151
167
|
|
|
152
168
|
### Settings
|
|
153
169
|
|
|
@@ -172,8 +188,9 @@ The **Storage Manager** Flow operation can move (or copy) **selected file IDs**
|
|
|
172
188
|
7. For collection fields that must land on a specific storage, use **File with Storage**, **Files with Storage**, or **Image with Storage** instead of the native file interfaces.
|
|
173
189
|
8. Use **File Interfaces** to set default cleanup behaviour when editors clear a file field or delete an item (works for native file fields too).
|
|
174
190
|
9. Use **Unreferenced Files** when you want to find leftover File Library entries, then move them to Recycle, relocate, or delete permanently.
|
|
175
|
-
10. Turn on **Recycle Bin** if you want a quarantine step before permanent delete, and optionally create **Scheduled Purge**.
|
|
176
|
-
11.
|
|
191
|
+
10. Turn on **Recycle Bin** if you want a quarantine step before permanent delete, and optionally create **Scheduled Purge**. Use **Restore All** (or restore selected files) to put them back at the File Library root.
|
|
192
|
+
11. If a storage folder looks empty, open **Detect** — files may still exist on storage that Directus does not know about.
|
|
193
|
+
12. Use **Dry Run**, then **Move**.
|
|
177
194
|
|
|
178
195
|
## Installation
|
|
179
196
|
|