alist/drivers/123
千石 fcbc79cb24
feat: Support 123pan safebox (#9311)
* feat(meta): Added a SafePassword field

- Added the SafePassword field to meta.go
- Revised the field format to align with the code style
- The SafePassword field is used to supplement the extended functionality

* feat(driver): Added support for safe unlocking logic

- Added safe file unlocking logic in `driver.go`, returning an error if unlocking fails.
- Introduced the `safeBoxUnlocked` variable of type `sync.Map` to record the IDs of unlocked files.
- Enhanced error handling logic to automatically attempt to unlock safe files and re-retrieve the file list.
- Added the `IsLock` field to file types in `types.go` to identify whether they are safe files.
- Added a constant definition for the `SafeBoxUnlock` interface address in `util.go`.
- Added the `unlockSafeBox` method to unlock a safe with a specified file ID via the API.
- Optimized the file retrieval logic to automatically call the unlock method when the safe is locked.

* Refactor (driver): Optimize lock field type

- Changed the `IsLock` field type from `int` to `bool` for better semantics.
- Updated the check logic to use direct Boolean comparisons to improve code readability and accuracy.
2025-09-05 19:58:27 +08:00
..
driver.go feat: Support 123pan safebox (#9311) 2025-09-05 19:58:27 +08:00
meta.go feat: Support 123pan safebox (#9311) 2025-09-05 19:58:27 +08:00
types.go feat: Support 123pan safebox (#9311) 2025-09-05 19:58:27 +08:00
upload.go perf: optimize IO read/write usage (#8243) 2025-04-12 16:55:31 +08:00
util.go feat: Support 123pan safebox (#9311) 2025-09-05 19:58:27 +08:00