千石
e2016dd031
refactor(webdav): Use ResolvePath instead of JoinPath ( #9344 )
...
- Changed the path concatenation method between `reqPath` and `src` and `dst` to use `ResolvePath`
- Updated the implementation of path handling in multiple functions
- Improved the consistency and reliability of path resolution
2025-10-16 17:23:11 +08:00
千石
a6bd90a9b2
feat(driver/s3): Add OSS Archive Support ( #9350 )
...
* feat(s3): Add support for S3 object storage classes
Introduces a new 'storage_class' configuration option for S3 providers. Users can now specify the desired storage class (e.g., Standard, GLACIER, DEEP_ARCHIVE) for objects uploaded to S3-compatible services like AWS S3 and Tencent COS.
The input storage class string is normalized to match AWS SDK constants, supporting various common aliases. If an unknown storage class is provided, it will be used as a raw value with a warning. This enhancement provides greater control over storage costs and data access patterns.
* feat(storage): Support for displaying file storage classes
Adds storage class information to file metadata and API responses.
This change introduces the ability to store file storage classes in file metadata and display them in API responses. This allows users to view a file's storage tier (e.g., S3 Standard, Glacier), enhancing data management capabilities.
Implementation details include:
- Introducing the StorageClassProvider interface and the ObjWrapStorageClass structure to uniformly handle and communicate object storage class information.
- Updated file metadata structures (e.g., ArchiveObj, FileInfo, RespFile) to include a StorageClass field.
- Modified relevant API response functions (e.g., GetFileInfo, GetFileList) to populate and return storage classes.
- Integrated functionality for retrieving object storage classes from underlying storage systems (e.g., S3) and wrapping them in lists.
* feat(driver/s3): Added the "Other" interface and implemented it by the S3 driver.
A new `driver.Other` interface has been added and defined in the `other.go` file.
The S3 driver has been updated to implement this new interface, extending its functionality.
* feat(s3): Add S3 object archive and thaw task management
This commit introduces comprehensive support for S3 object archive and thaw operations, managed asynchronously through a new task system.
- **S3 Transition Task System**:
- Adds a new `S3Transition` task configuration, including workers, max retries, and persistence options.
- Initializes `S3TransitionTaskManager` to handle asynchronous S3 archive/thaw requests.
- Registers dedicated API routes for monitoring S3 transition tasks.
- **Integrate S3 Archive/Thaw with Other API**:
- Modifies the `Other` API handler to intercept `archive` and `thaw` methods for S3 storage drivers.
- Dispatches these operations as `S3TransitionTask` instances to the task manager for background processing.
- Returns a task ID to the client for tracking the status of the dispatched operation.
- **Refactor `other` package for improved API consistency**:
- Exports previously internal structs such as `archiveRequest`, `thawRequest`, `objectDescriptor`, `archiveResponse`, `thawResponse`, and `restoreStatus` by making their names public.
- Makes helper functions like `decodeOtherArgs`, `normalizeStorageClass`, and `normalizeRestoreTier` public.
- Introduces new constants for various S3 `Other` API methods.
2025-10-16 17:22:54 +08:00
千石
35d322443b
feat(driver): Add URL signing support ( #9347 )
...
Introduces the ability to sign generated URLs for enhanced security and access control.
This feature is activated by configuring a `PrivateKey`, `UID`, and `ValidDuration` in the driver settings. If a private key is provided, the driver will sign the output URLs, making them time-limited based on the `ValidDuration`. The `ValidDuration` defaults to 30 minutes if not specified.
The core signing logic is encapsulated in the new `sign.go` file. The `driver.go` file integrates this signing process before returning the final URL.
2025-10-11 19:14:13 +08:00
D@' 3z K!7
81a7f28ba2
feat(drivers): add ProtonDrive driver ( #9331 )
...
- Implement complete ProtonDrive storage driver with end-to-end encryption support
- Add authentication via username/password with credential caching and reusable login
- Support all core operations: List, Link, Put, Copy, Move, Remove, Rename, MakeDir
- Include encrypted file operations with PGP key management and node passphrase handling
- Add temporary HTTP server for secure file downloads with range request support
- Support media streaming using temp server range requests
- Implement progress tracking for uploads and downloads
- Support directory operations with circular move detection
- Add proper error handling and panic recovery for external library integration
Closes #9312
2025-09-30 14:18:58 +08:00
textrix
fe564c42da
feat: add pCloud driver support ( #9339 )
...
- Implement OAuth2 authentication with US/EU region support
- Add file operations (list, upload, download, delete, rename, move, copy)
- Add folder operations (create, rename, move, delete)
- Enhance error handling with pCloud-specific retry logic
- Use correct API methods: GET for reads, POST for writes
- Implement direct upload approach for better performance
- Add exponential backoff for failed requests with 4xxx/5xxx classification
2025-09-30 14:17:54 +08:00
Chesyre
d17889bf8e
feat(gofile): add configurable link expiration handling ( #9329 )
...
* feat(driver): add Gofile storage driver
Add support for Gofile.io cloud storage service with full CRUD operations.
Features:
- File and folder listing
- Upload and download functionality
- Create, move, rename, copy, and delete operations
- Direct link generation for file access
- API token authentication
The driver implements all required driver interfaces and follows
the existing driver patterns in the codebase.
* feat(gofile): add configurable link expiration handling
- Adjusts driver addition metadata to accept LinkExpiry and DirectLinkExpiry options for caching and API expiry control (drivers/gofile/meta.go:10).
- Applies the new options when building file links, setting optional local cache expiration (drivers/gofile/driver.go:101) and sending an expireTime to the direct-link API (drivers/gofile/util.go:202).
- Logs Gofile API error payloads and validates the structured error response before returning it (drivers/gofile/util.go:141).
- Adds the required imports and returns the configured model.Link instance (drivers/gofile/driver.go:6).
2025-09-30 14:16:28 +08:00
千石
4f8bc478d5
refactor(driver): Refactored directory link check logic ( #9324 )
...
- Use `filePath` variable to simplify path handling
- Replace `isSymlinkDir` with `isLinkedDir` in `isFolder` check
- Use simplified path variables in `times.Stat` function calls
refactor(util): Optimized directory link check functions
- Renamed `isSymlinkDir` to `isLinkedDir` to expand Windows platform support
- Corrected path resolution logic to ensure link paths are absolute
- Added error handling to prevent path resolution failures
2025-09-14 21:03:58 +08:00
千石
e1800f18e4
feat: Check usage before deleting storage ( #9322 )
...
* feat(storage): Added role and user path checking functionality
- Added `GetAllRoles` function to retrieve all roles
- Added `GetAllUsers` function to retrieve all users
- Added `firstPathSegment` function to extract the first segment of a path
- Checks whether a storage object is used by a role or user, and returns relevant information for unusing it
* fix(storage): Fixed a potential null value issue with not checking firstMount.
- Added a check to see if `firstMount` is null to prevent logic errors.
- Adjusted the loading logic of `GetAllRoles` and `GetAllUsers` to only execute when `firstMount` is non-null.
- Fixed the `usedBy` check logic to ensure that an error message is returned under the correct conditions.
- Optimized code structure to reduce unnecessary execution paths.
2025-09-12 17:56:23 +08:00
D@' 3z K!7
16cce37947
fix(drivers): add session renewal cron for MediaFire driver ( #9321 )
...
- Implement automatic session token renewal every 6-9 minutes
- Add validation for required SessionToken and Cookie fields in Init
- Handle session expiration by calling renewToken on validation failure
- Prevent storage failures due to MediaFire session timeouts
Fixes session closure issues that occur after server restarts or extended periods.
Co-authored-by: Da3zKi7 <da3zki7@duck.com >
2025-09-12 17:53:47 +08:00
千石
6e7c7d1dd0
refactor (auth): Optimize permission path processing logic ( #9320 )
...
- Changed permission path collection from map to slice to improve code readability
- Removed redundant path checks to improve path addition efficiency
- Restructured the loop logic for path processing to simplify the path permission assignment process
2025-09-11 21:16:33 +08:00
Chesyre
28a8428559
feat(driver): add Gofile storage driver ( #9318 )
...
Add support for Gofile.io cloud storage service with full CRUD operations.
Features:
- File and folder listing
- Upload and download functionality
- Create, move, rename, copy, and delete operations
- Direct link generation for file access
- API token authentication
The driver implements all required driver interfaces and follows
the existing driver patterns in the codebase.
2025-09-11 11:46:31 +08:00
D@' 3z K!7
d0026030cb
feat(drivers): add MediaFire driver support ( #9319 )
...
- Implement complete MediaFire storage driver
- Add authentication via session_token and cookie
- Support all core operations: List, Get, Link, Put, Copy, Move, Remove, Rename, MakeDir
- Include thumbnail generation for media files
- Handle MediaFire's resumable upload API with multi-unit transfers
- Add proper error handling and progress reporting
Closes 请求支持Mediafire #7869
Co-authored-by: Da3zKi7 <da3zki7@duck.com >
2025-09-11 11:46:09 +08:00
千石
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
Sakkyoi Cheng
930f9f6096
fix(ssologin): missing role in SSO auto-registration and minor callback issue ( #9305 )
...
* fix(ssologin): return after error response
* fix(ssologin): set default role for SSO user creation
2025-09-04 22:15:39 +08:00
千石
23107483a1
Refactor (storage): Comment out the path validation logic ( #9308 )
...
- Comment out the error return logic for paths with "/"
- Remove storage path restrictions to allow for flexible handling of root paths
2025-09-04 22:14:33 +08:00
千石
4b288a08ef
fix: session invalid issue ( #9301 )
...
* feat(auth): Enhanced device login session management
- Upon login, obtain and verify `Client-Id` to ensure unique device sessions.
- If there are too many device sessions, clean up old ones according to the configured policy or return an error.
- If a device session is invalid, deregister the old token and return a 401 error.
- Added `EnsureActiveOnLogin` function to handle the creation and refresh of device sessions during login.
* feat(session): Modified session deletion logic to mark sessions as inactive.
- Changed session deletion logic to mark sessions as inactive using the `MarkInactive` method.
- Adjusted error handling to ensure an error is returned if marking fails.
* feat(session): Added device limits and eviction policies
- Added a device limit, controlling the maximum number of devices using the `MaxDevices` configuration option.
- If the number of devices exceeds the limit, the configured eviction policy is used.
- If the policy is `evict_oldest`, the oldest device is evicted.
- Otherwise, an error message indicating too many devices is returned.
* refactor(session): Filter for the user's oldest active session
- Renamed `GetOldestSession` to `GetOldestActiveSession` to more accurately reflect its functionality
- Updated the SQL query to add the `status = SessionActive` condition to retrieve only active sessions
- Replaced all callpoints and unified the new function name to ensure logical consistency
2025-08-29 21:20:29 +08:00
Sky_slience
63391a2091
fix(readme): remove outdated sponsor links from README files ( #9300 )
...
Co-authored-by: Sky_slience <Skyslience@spdzy.com >
2025-08-29 14:56:54 +08:00
JoaHuang
a11e4cfb31
Merge pull request #9299 from okatu-loli/session-manage-2
...
fix: session login error
2025-08-29 13:45:10 +08:00
okatu-loli
9a7c82a71e
feat(auth): Optimized device session handling logic
...
- Introduced middleware to handle device sessions
- Changed `handleSession` to `HandleSession` in multiple places in `auth.go` to maintain consistent naming
- Updated response structure to return `device_key` and `token`
2025-08-29 13:31:44 +08:00
okatu-loli
8623da5361
feat(session): Added user session limit and device eviction logic
...
- Renamed `CountSessionsByUser` to `CountActiveSessionsByUser` and added session status filtering
- Added user and device session limit, with policy handling when exceeding the limit
- Introduced device eviction policy: If the maximum number of devices is exceeded, the oldest session will be evicted using the "evict_oldest" policy
- Modified `LastActive` update logic to ensure accurate session activity time
2025-08-29 11:53:55 +08:00
千石
84adba3acc
feat(user): Enhanced role assignment logic ( #9297 )
...
- Imported the `utils` package
- Modified the role assignment logic to prevent assigning administrator or guest roles to users
2025-08-28 09:57:34 +08:00
千石
3bf0af1e68
fix(session): Fixed the session status update logic. ( #9296 )
...
- Removed the error returned when the session status is `SessionInactive`.
- Updated the `LastActive` field of the session to always record the current time.
2025-08-28 09:57:13 +08:00
千石
de09ba08b6
chore(deps): Update 115driver dependency to v1.1.2 ( #9294 )
...
- Upgrade `github.com/SheltonZhu/115driver` to v1.1.2 in `go.mod`
- Modify `replace` to point to `github.com/okatu-loli/115driver v1.1.2`
- Remove old version checksum from `go.sum` and add new version checksum
2025-08-27 17:46:34 +08:00
千石
c64f899a63
feat: implement session management ( #9286 )
...
* feat(auth): Added device session management
- Added the `handleSession` function to manage user device sessions and verify client identity
- Updated `auth.go` to call `handleSession` for device handling when a user logs in
- Added the `Session` model to database migrations
- Added `device.go` and `session.go` files to handle device session logic
- Updated `settings.go` to add device-related configuration items, such as the maximum number of devices, device eviction policy, and session TTL
* feat(session): Adds session management features
- Added `SessionInactive` error type in `device.go`
- Added session-related APIs in `router.go` to support listing and evicting sessions
- Added `ListSessionsByUser`, `ListSessions`, and `MarkInactive` methods in `session.go`
- Returns an appropriate error when the session state is `SessionInactive`
* feat(auth): Marks the device session as invalid.
- Import the `session` package into the `auth` module to handle device session status.
- Add a check in the login logic. If `device_key` is obtained, call `session.MarkInactive` to mark the device session as invalid.
- Store the invalid status in the context variable `session_inactive` for subsequent middleware checks.
- Add a check in the session refresh logic to abort the process if the current session has been marked invalid.
* feat(auth, session): Added device information processing and session management changes
- Updated device handling logic in `auth.go` to pass user agent and IP information
- Adjusted database queries in `session.go` to optimize session query fields and add `user_agent` and `ip` fields
- Modified the `Handle` method to add `ua` and `ip` parameters to store the user agent and IP address
- Added the `SessionResp` structure to return a session response containing `user_agent` and `ip`
- Updated the `/admin/user/create` and `/webdav` endpoints to pass the user agent and IP address to the device handler
2025-08-25 19:46:38 +08:00
千石
3319f6ea6a
feat(search): Optimized search result filtering and paging logic ( #9287 )
...
- Introduced the `filteredNodes` list to optimize the node filtering process
- Filtered results based on the page limit during paging
- Modified search logic to ensure nodes are within the user's base path
- Added access permission checks for node metadata
- Adjusted paging logic to avoid redundant node retrieval
2025-08-25 19:46:24 +08:00
千石
d7723c378f
chore(deps): Upgrade 115driver to v1.1.1 ( #9283 )
...
- Upgraded `github.com/SheltonZhu/115driver` from v1.0.34 to v1.1.1
- Updated the corresponding version verification information in `go.sum`
2025-08-25 19:46:10 +08:00
千石
a9fcd51bc4
fix: ensure DefaultRole stores role ID while exposing role name in APIs ( #9279 )
...
* fix(setting): ensure DefaultRole stores role ID while exposing role name in APIs
- Simplified initial settings to use `model.GUEST` as the default role ID instead of querying roles at startup.
- Updated `GetSetting`, `ListSettings` handlers to:
- Convert stored role ID into the corresponding role name when returning data.
- Preserve dynamic role options for selection.
- Removed unused `strings` import and role preloading logic from `InitialSettings`.
- This change avoids DB dependency during initialization while keeping consistent role display for frontend clients.
* fix(setting): ensure DefaultRole stores role ID while exposing role
name in APIs (fix/settings-get-role)
- Simplify initial settings to use `model.GUEST` as the default role ID
instead of querying roles at startup.
- Update `GetSetting`, `ListSettings` handlers to:
- Convert stored role ID into the corresponding role name when
returning data.
- Preserve dynamic role options for selection.
- Remove unused `strings` import and role preloading logic from
`InitialSettings`.
- Avoid DB dependency during initialization while keeping consistent
role display for frontend clients.
2025-08-19 15:01:32 +08:00
千石
74e384175b
fix(lanzou): correct comment parsing logic in lanzou driver ( #9278 )
...
- Adjusted logic to skip incrementing index when exiting comments.
- Added checks to continue loop if inside a single-line or block comment.
- Prevents erroneous parsing and retains intended comment exclusion.
2025-08-19 00:53:52 +08:00
千石
eca500861a
feat: add user registration endpoint and role-based default settings ( #9277 )
...
* feat(setting): add role-based default and registration settings (closed #feat/register-and-statistics)
- Added `AllowRegister` and `DefaultRole` settings to site configuration.
- Integrated dynamic role options for `DefaultRole` using `op.GetRoles`.
- Updated `setting.go` handlers to manage `DefaultRole` options dynamically.
- Modified `const.go` to include new site settings constants.
- Updated dependencies in `go.mod` and `go.sum` to support new functionality.
* feat(register-and-statistics): add user registration endpoint
- Added `POST /auth/register` endpoint to support user registration.
- Implemented registration logic in `auth.go` with dynamic role assignment.
- Integrated settings `AllowRegister` and `DefaultRole` for registration flow.
- Updated imports to include new modules: `conf`, `setting`.
- Adjusted user creation logic to use `DefaultRole` setting dynamically.
* feat(register-and-statistics): add user registration endpoint (#register-and-statistics)
- Added `POST /auth/register` endpoint to support user registration.
- Implemented registration logic in `auth.go` with dynamic role assignment.
- Integrated `AllowRegister` and `DefaultRole` settings for registration flow.
- Updated imports to include new modules: `conf`, `setting`.
- Adjusted user creation logic to use `DefaultRole` dynamically.
* feat(register-and-statistics): enhance role management logic (#register-and-statistics)
- Refactored CreateRole and UpdateRole functions to handle default role.
- Added dynamic role assignment logic in 'role.go' using conf settings.
- Improved request handling in 'handles/role.go' with structured data.
- Implemented default role logic in 'db/role.go' to update non-default roles.
- Modified 'model/role.go' to include a 'Default' field for role management.
* feat(register-and-statistics): enhance role management logic
- Refactor CreateRole and UpdateRole to handle default roles.
- Add dynamic role assignment using conf settings in 'role.go'.
- Improve request handling with structured data in 'handles/role.go'.
- Implement default role logic in 'db/role.go' for non-default roles.
- Modify 'model/role.go' to include 'Default' field for role management.
* feat(register-and-statistics): improve role handling logic
- Switch from role names to role IDs for better consistency.
- Update logic to prioritize "guest" for default role ID.
- Adjust `DefaultRole` setting to use role IDs.
- Refactor `getRoleOptions` to return role IDs as a comma-separated string.
* feat(register-and-statistics): improve role handling logic
2025-08-18 16:38:21 +08:00
千石
97d4f79b96
fix: resolve webdav decode issue ( #9268 )
...
* fix: resolve webdav handshake error in permission checks
- Updated role permission logic to handle bidirectional subpaths,
fixing handshake termination by remote host due to path mismatch.
- Refactored function naming for consistency and clarity.
- Enhanced filtering of objects based on user permissions.
- Modified `makePropstatResponse` to preserve encoded href paths.
- Added test for `makePropstatResponse` to ensure href encoding.
* Delete server/webdav/makepropstatresponse_test.go
* ci(workflow): set GOPROXY for Go builds on GitHub Actions
- Use `GOPROXY=https://proxy.golang.org,direct ` to speed up module downloads
- Mitigates network flakiness (e.g., checksum DB timeouts/rate limits)
- `,direct` provides fallback for private/unproxyable modules
- No build logic changes; only affects dependency resolution across all matrix targets
---------
Co-authored-by: AlistGo <opsgit88@gmail.com >
2025-08-16 20:55:17 +08:00
千石
fcfb3369d1
fix: webdav error location ( #9266 )
...
* feat: improve WebDAV permission handling and user role fetching
- Added logic to handle root permissions in WebDAV requests.
- Improved the user role fetching mechanism.
- Enhanced path checks and permission scopes in role_perm.go.
- Set FetchRole function to avoid import cycles between modules.
* fix(webdav): resolve connection reset issue by encoding paths
- Adjust path encoding in webdav.go to prevent connection reset.
- Utilize utils.EncodePath for correct path formatting.
- Ensure proper handling of directory paths with trailing slash.
* fix(webdav): resolve connection reset issue by encoding paths
- Adjust path encoding in webdav.go to prevent connection reset.
- Utilize utils.FixAndCleanPath for correct path formatting.
- Ensure proper handling of directory paths with trailing slash.
* fix: resolve webdav handshake error in permission checks
- Updated role permission logic to handle bidirectional subpaths.
- This adjustment fixes the issue where remote host terminates the
handshake due to improper path matching.
* fix: resolve webdav handshake error in permission checks (fix/fix-webdav-error)
- Updated role permission logic to handle bidirectional subpaths,
fixing handshake termination by remote host due to path mismatch.
- Refactored function naming for consistency and clarity.
- Enhanced filtering of objects based on user permissions.
* fix: resolve webdav handshake error in permission checks
- Updated role permission logic to handle bidirectional subpaths,
fixing handshake termination by remote host due to path mismatch.
- Refactored function naming for consistency and clarity.
- Enhanced filtering of objects based on user permissions.
2025-08-15 23:10:55 +08:00
千石
aea3ba1499
feat: add tag backup and fix bugs ( #9265 )
...
* feat(label): enhance label file binding and router setup (feat/add-tag-backup)
- Add `GetLabelsByFileNamesPublic` to retrieve labels using file names.
- Refactor router setup for label and file binding routes.
- Improve `toObjsResp` for efficient label retrieval by file names.
- Comment out unnecessary user ID parameter in `toObjsResp`.
* feat(label): enhance label file binding and router setup
- Add `GetLabelsByFileNamesPublic` for label retrieval by file names.
- Refactor router setup for label and file binding routes.
- Improve `toObjsResp` for efficient label retrieval by file names.
- Comment out unnecessary user ID parameter in `toObjsResp`.
* refactor(db): comment out debug print in GetLabelIds (#feat/add-tag-backup)
- Comment out debug print statement in GetLabelIds to clean up logs.
- Enhance code readability by removing unnecessary debug output.
* feat(label-file-binding): add batch creation and improve label ID handling
- Introduced `CreateLabelFileBinDingBatch` API for batch label binding.
- Added `collectLabelIDs` helper function to handle label ID parsing.
- Enhanced label ID handling to support varied delimiters and input formats.
- Refactored `CreateLabelFileBinDing` logic for improved code readability.
- Updated router to include `POST /label_file_binding/create_batch`.
2025-08-15 23:09:00 +08:00
千石
6b2d81eede
feat(user): enhance path management and role handling ( #9249 )
...
- Add `GetUsersByRole` function for fetching users by role.
- Introduce `GetAllBasePathsFromRoles` to aggregate paths from roles.
- Refine path handling in `pkg/utils/path.go` for normalization.
- Comment out base path prefix updates to simplify role operations.
2025-08-06 16:31:36 +08:00
千石
85fe4e5bb3
feat(alist_v3): add IntSlice type for JSON unmarshalling ( #9247 )
...
- Add `IntSlice` type to handle both single int and array in JSON.
- Modify `MeResp` struct to use `IntSlice` for `Role` field.
- Import `encoding/json` for JSON operations.
2025-08-04 12:02:45 +08:00
千石
52da07e8a7
feat(123_open): add new driver support for 123 Open ( #9246 )
...
- Implement new driver for 123 Open service, enabling file operations
such as listing, uploading, moving, and removing files.
- Introduce token management for authentication and authorization.
- Add API integration for various file operations and actions.
- Include utility functions for handling API requests and responses.
- Register the new driver in the existing drivers' list.
2025-08-04 11:56:57 +08:00
Sky_slience
46de9e9ebb
fix(driver): 123 download and modify request headers on the frontend ( #9236 )
...
Co-authored-by: Sky_slience <Skyslience@spdzy.com >
2025-08-03 20:00:09 +08:00
千石
ae90fb579b
feat(log): enhance log formatter to respect NO_COLOR env variable ( #9239 )
...
- Adjust log formatter to disable colors when NO_COLOR or ALIST_NO_COLOR
environment variables are set.
- Reorganize formatter settings for better readability.
2025-08-03 09:26:23 +08:00
Sky_slience
394a18cbd9
Fix 123 download ( #9235 )
...
* fix(driver): handle additional HTTP status code 210 for URL redirection
* fix(driver): 123 download url error
---------
Co-authored-by: Sky_slience <Skyslience@spdzy.com >
2025-07-30 16:55:32 +08:00
千石
280960ce3e
feat(user-db): enhance user management with role-based queries (allow-edit-role-guest) ( #9234 )
...
- Add `GetUsersByRole` function to fetch users based on their roles.
- Extend `UpdateUserBasePathPrefix` to accept optional user lists.
- Ensure path cleaning in `UpdateUserBasePathPrefix` for consistency.
- Integrate guest role fetching in `auth.go` middleware.
- Utilize `GetUsersByRole` in `role.go` for base path modifications.
- Remove redundant line in `role.go` role modification logic.
2025-07-30 13:15:35 +08:00
Sky_slience
74332e91fb
feat(ui): add new UI configuration option to settings ( #9233 )
...
* feat(ui): add new UI configuration option to settings
* fix(ui): disable new UI feature by default
---------
Co-authored-by: Sky_slience <Skyslience@spdzy.com >
2025-07-30 12:22:02 +08:00
Sky_slience
540d6c7064
fix(meta): update OAuth token URL and improve default client credentials ( #9231 )
2025-07-30 10:48:33 +08:00
千石
55b2bb6b80
feat(user-management): Enhance admin management and role handling
2025-07-29 19:45:28 +08:00
qianshi
d5df6fa4cf
Merge branch 'main' into feat/allow-edit-role-guest
2025-07-29 19:13:01 +08:00
千石
3353055482
Update Dockerfile.ci ( #9230 )
...
chore(docker): Update base image from alpine:edge to alpine:3.20.7 in Dockerfile.ci
2025-07-29 18:35:47 +08:00
千石
4d7c2a09ce
docs(README): Add API documentation links across multiple languages ( #9225 )
...
- Add API documentation section to `README.md` with link to Apifox
- Add API documentation section to `README_ja.md` with Japanese translation and link to Apifox
- Add API documentation section to `README_cn.md` with Chinese translation and link to Apifox
2025-07-29 09:42:34 +08:00
qianshi
5b8c26510b
feat(user-management): Enhance admin management and role handling
...
- Add `CountEnabledAdminsExcluding` function to count enabled admins excluding a specific user.
- Implement `CountUsersByRoleAndEnabledExclude` in `internal/db/user.go` to support exclusion logic.
- Refactor role handling with switch-case for better readability in `server/handles/role.go`.
- Ensure at least one enabled admin remains when disabling an admin in `server/handles/user.go`.
- Maintain guest role name consistency when updating roles in `internal/op/role.go`.
2025-07-28 23:07:07 +08:00
千石
91cc7529a0
feat(user/role/storage): enhance user and storage operations with additional validations ( #9223 )
...
- Update `CreateUser` to adjust `BasePath` based on user roles and clean paths.
- Modify `UpdateUser` to incorporate role-based path changes.
- Add validation in `CreateStorage` and `UpdateStorage` to prevent root mount path.
- Prevent changes to admin user's role and username in user handler.
- Update `UpdateRole` to modify user base paths when role paths change, and clear user cache accordingly.
- Import `errors` package to handle error messages.
2025-07-27 22:25:45 +08:00
千石
f61d13d433
refactor(convert_role): Improve role conversion logic for legacy formats ( #9219 )
...
- Add new imports: `database/sql`, `encoding/json`, and `conf` package in `convert_role.go`.
- Simplify permission entry initialization by removing redundant struct formatting.
- Update error logging messages for better clarity.
- Replace `op.GetUsers` with direct database access for fetching user roles.
- Implement role update logic using `rawDb` and handle legacy int role conversion.
- Count the number of users whose roles are updated and log completion.
- Introduce `IsLegacyRoleDetected` function to check for legacy role formats.
- Modify `cmd/common.go` to invoke role conversion if legacy format is detected.
2025-07-26 15:20:08 +08:00
千石
00120cba27
feat: enhance permission control and label management ( #9215 )
...
* 标签管理
* pr检查优化
* feat(role): Implement role management functionality
- Add role management routes in `server/router.go` for listing, getting, creating, updating, and deleting roles
- Introduce `initRoles()` in `internal/bootstrap/data/data.go` for initializing roles during bootstrap
- Create `internal/op/role.go` to handle role operations including caching and singleflight
- Implement role handler functions in `server/handles/role.go` for API responses
- Define database operations for roles in `internal/db/role.go`
- Extend `internal/db/db.go` for role model auto-migration
- Design `internal/model/role.go` to represent role structure with ID, name, description, base path, and permissions
- Initialize default roles (`admin` and `guest`) in `internal/bootstrap/data/role.go` during startup
* refactor(user roles): Support multiple roles for users
- Change the `Role` field type from `int` to `[]int` in `drivers/alist_v3/types.go` and `drivers/quqi/types.go`.
- Update the `Role` field in `internal/model/user.go` to use a new `Roles` type with JSON and database support.
- Modify `IsGuest` and `IsAdmin` methods to check for roles using `Contains` method.
- Update `GetUserByRole` method in `internal/db/user.go` to handle multiple roles.
- Add `roles.go` to define a new `Roles` type with JSON marshalling and scanning capabilities.
- Adjust code in `server/handles/user.go` to compare roles with `utils.SliceEqual`.
- Change role initialization for users in `internal/bootstrap/data/dev.go` and `internal/bootstrap/data/user.go`.
- Update `Role` handling in `server/handles/task.go`, `server/handles/ssologin.go`, and `server/handles/ldap_login.go`.
* feat(user/role): Add path limit check for user and role permissions
- Add new permission bit for checking path limits in `user.go`
- Implement `CheckPathLimit` method in `User` struct to validate path access
- Modify `JoinPath` method in `User` to enforce path limit checks
- Update `role.go` to include path limit logic in `Role` struct
- Document new permission bit in `Role` and `User` comments for clarity
* feat(permission): Add role-based permission handling
- Introduce `role_perm.go` for managing user permissions based on roles.
- Implement `HasPermission` and `MergeRolePermissions` functions.
- Update `webdav.go` to utilize role-based permissions instead of direct user checks.
- Modify `fsup.go` to integrate `CanAccessWithRoles` function.
- Refactor `fsread.go` to use `common.HasPermission` for permission validation.
- Adjust `fsmanage.go` for role-based access control checks.
- Enhance `ftp.go` and `sftp.go` to manage FTP access via roles.
- Update `fsbatch.go` to employ `MergeRolePermissions` for batch operations.
- Replace direct user permission checks with role-based permission handling across various modules.
* refactor(user): Replace integer role values with role IDs
- Change `GetAdmin()` and `GetGuest()` functions to retrieve role by name and use role ID.
- Add patch for version `v3.45.2` to convert legacy integer roles to role IDs.
- Update `dev.go` and `user.go` to use role IDs instead of integer values for roles.
- Remove redundant code in `role.go` related to guest role creation.
- Modify `ssologin.go` and `ldap_login.go` to set user roles to nil instead of using integer roles.
- Introduce `convert_roles.go` to handle conversion of legacy roles and ensure role existence in the database.
* feat(role_perm): implement support for multiple base paths for roles
- Modify role permission checks to support multiple base paths
- Update role creation and update functions to handle multiple base paths
- Add migration script to convert old base_path to base_paths
- Define new Paths type for handling multiple paths in the model
- Adjust role model to replace BasePath with BasePaths
- Update existing patches to handle roles with multiple base paths
- Update bootstrap data to reflect the new base_paths field
* feat(role): Restrict modifications to default roles (admin and guest)
- Add validation to prevent changes to "admin" and "guest" roles in `UpdateRole` and `DeleteRole` functions.
- Introduce `ErrChangeDefaultRole` error in `internal/errs/role.go` to standardize error messaging.
- Update role-related API handlers in `server/handles/role.go` to enforce the new restriction.
- Enhance comments in `internal/bootstrap/data/role.go` to clarify the significance of default roles.
- Ensure consistent error responses for unauthorized role modifications across the application.
* 🔄 **refactor(role): Enhance role permission handling**
- Replaced `BasePaths` with `PermissionPaths` in `Role` struct for better permission granularity.
- Introduced JSON serialization for `PermissionPaths` using `RawPermission` field in `Role` struct.
- Implemented `BeforeSave` and `AfterFind` GORM hooks for handling `PermissionPaths` serialization.
- Refactored permission calculation logic in `role_perm.go` to work with `PermissionPaths`.
- Updated role creation logic to initialize `PermissionPaths` for `admin` and `guest` roles.
- Removed deprecated `CheckPathLimit` method from `Role` struct.
* fix(model/user/role): update permission settings for admin and role
- Change `RawPermission` field in `role.go` to hide JSON representation
- Update `Permission` field in `user.go` to `0xFFFF` for full access
- Modify `PermissionScopes` in `role.go` to `0xFFFF` for enhanced permissions
* 🔒 feat(role-permissions): Enhance role-based access control
- Introduce `canReadPathByRole` function in `role_perm.go` to verify path access based on user roles
- Modify `CanAccessWithRoles` to include role-based path read check
- Add `RoleNames` and `Permissions` to `UserResp` struct in `auth.go` for enhanced user role and permission details
- Implement role details aggregation in `auth.go` to populate `RoleNames` and `Permissions`
- Update `User` struct in `user.go` to include `RolesDetail` for more detailed role information
- Enhance middleware in `auth.go` to load and verify detailed role information for users
- Move `guest` user initialization logic in `user.go` to improve code organization and avoid repetition
* 🔒 fix(permissions): Add permission checks for archive operations
- Add `MergeRolePermissions` and `HasPermission` checks to validate user access for reading archives
- Ensure users have `PermReadArchives` before proceeding with `GetNearestMeta` in specific archive paths
- Implement permission checks for decompress operations, requiring `PermDecompress` for source paths
- Return `PermissionDenied` errors with 403 status if user lacks necessary permissions
* 🔒 fix(server): Add permission check for offline download
- Add permission merging logic for user roles
- Check user has permission for offline download addition
- Return error response with "permission denied" if check fails
* ✨ feat(role-permission): Implement path-based role permission checks
- Add `CheckPathLimitWithRoles` function to validate access based on `PermPathLimit` permission.
- Integrate `CheckPathLimitWithRoles` in `offline_download` to enforce path-based access control.
- Apply `CheckPathLimitWithRoles` across file system management operations (e.g., creation, movement, deletion).
- Ensure `CheckPathLimitWithRoles` is invoked for batch operations and archive-related actions.
- Update error handling to return `PermissionDenied` if the path validation fails.
- Import `errs` package in `offline_download` for consistent error responses.
* ✨ feat(role-permission): Implement path-based role permission checks
- Add `CheckPathLimitWithRoles` function to validate access based on `PermPathLimit` permission.
- Integrate `CheckPathLimitWithRoles` in `offline_download` to enforce path-based access control.
- Apply `CheckPathLimitWithRoles` across file system management operations (e.g., creation, movement, deletion).
- Ensure `CheckPathLimitWithRoles` is invoked for batch operations and archive-related actions.
- Update error handling to return `PermissionDenied` if the path validation fails.
- Import `errs` package in `offline_download` for consistent error responses.
* ♻️ refactor(access-control): Update access control logic to use role-based checks
- Remove deprecated logic from `CanAccess` function in `check.go`, replacing it with `CanAccessWithRoles` for improved role-based access control.
- Modify calls in `search.go` to use `CanAccessWithRoles` for more precise handling of permissions.
- Update `fsread.go` to utilize `CanAccessWithRoles`, ensuring accurate access validation based on user roles.
- Simplify import statements in `check.go` by removing unused packages to clean up the codebase.
* ✨ feat(fs): Improve visibility logic for hidden files
- Import `server/common` package to handle permissions more robustly
- Update `whetherHide` function to use `MergeRolePermissions` for user-specific path permissions
- Replace direct user checks with `HasPermission` for `PermSeeHides`
- Enhance logic to ensure `nil` user cases are handled explicitly
* 标签管理
* feat(db/auth/user): Enhance role handling and clean permission paths
- Comment out role modification checks in `server/handles/user.go` to allow flexible role changes.
- Improve permission path handling in `server/handles/auth.go` by normalizing and deduplicating paths.
- Introduce `addedPaths` map in `CurrentUser` to prevent duplicate permissions.
* feat(storage/db): Implement role permissions path prefix update
- Add `UpdateRolePermissionsPathPrefix` function in `role.go` to update role permissions paths.
- Modify `storage.go` to call the new function when the mount path is renamed.
- Introduce path cleaning and prefix matching logic for accurate path updates.
- Ensure roles are updated only if their permission scopes are modified.
- Handle potential errors with informative messages during database operations.
* feat(role-migration): Implement role conversion and introduce NEWGENERAL role
- Add `NEWGENERAL` to the roles enumeration in `user.go`
- Create new file `convert_role.go` for migrating legacy roles to new model
- Implement `ConvertLegacyRoles` function to handle role conversion with permission scopes
- Add `convert_role.go` patch to `all.go` under version `v3.46.0`
* feat(role/auth): Add role retrieval by user ID and update path prefixes
- Add `GetRolesByUserID` function for efficient role retrieval by user ID
- Implement `UpdateUserBasePathPrefix` to update user base paths
- Modify `UpdateRolePermissionsPathPrefix` to return modified role IDs
- Update `auth.go` middleware to use the new role retrieval function
- Refresh role and user caches upon path prefix updates to maintain consistency
---------
Co-authored-by: Leslie-Xy <540049476@qq.com >
2025-07-26 09:51:59 +08:00
Sakana
5e15a360b7
feat(github_releases): concurrently request the GitHub API ( #9211 )
2025-07-24 15:30:12 +08:00
alist666
2bdc5bef9e
Merge pull request #9207 from AlistGo/fix-aliyundirve
...
fix: update DriveId assignment to use DeviceID from Addition struct
2025-07-17 13:21:32 +08:00
AlistDev
13ea1c1405
fix: restore user-agent header in HTTP requests
2025-07-16 20:39:05 +08:00
AlistDev
fd41186679
fix: update DriveId assignment to use DeviceID from Addition struct
2025-07-14 23:04:40 +08:00
alist666
9da56bab4d
Merge pull request #9171 from AlistGo/fix-189pc-login
...
fix: update documentation links to point to the new domain And fix 189pc getToken fail
2025-06-28 00:20:50 +08:00
alistgo
51eeb22465
fix: dead link
2025-06-27 23:58:52 +08:00
Alone
b1586612ca
feat: add ghcr docker image ( #8524 )
2025-06-27 23:39:23 +08:00
AlistDev
7aeb0ab078
fix: update documentation links to point to the new domain And fix 189pc getToken fail
2025-06-27 16:28:09 +08:00
MadDogOwner
ffa03bfda1
feat(cloudreve_v4): add Cloudreve V4 driver ( #8470 closes #8328 #8467 )
...
* feat(cloudreve_v4): add Cloudreve V4 driver implementation
* fix(cloudreve_v4): update request handling to prevent token refresh loop
* feat(onedrive): implement retry logic for upload failures
* feat(cloudreve): implement retry logic for upload failures
* feat(cloudreve_v4): support cloud sorting
* fix(cloudreve_v4): improve token handling in Init method
* feat(cloudreve_v4): support share
* feat(cloudreve): support reference
* feat(cloudreve_v4): support version upload
* fix(cloudreve_v4): add SetBody in upLocal
* fix(cloudreve_v4): update URL structure in Link and FileUrlResp
2025-05-24 13:38:43 +08:00
Andy Hsu
630cf30af5
feat(115_open): implement rate limiting for API requests
2025-05-11 13:39:32 +08:00
Andy Hsu
bc5117fa4f
fix(115_open): add delay in MakeDir function to handle rate limiting
2025-05-02 16:53:39 +08:00
yoclo
11e7284824
fix: prevent guest user from updating profile ( #8447 )
2025-04-29 23:14:16 +08:00
MadDogOwner
b2b91a9281
feat(doubao): add get_download_info API and download_api option ( #8428 )
2025-04-27 20:00:25 +08:00
MadDogOwner
f541489d7d
fix(netease_music): change ListResp size fields from string to int64 ( #8417 )
2025-04-27 19:59:30 +08:00
bigQY
6d9c554f6f
feat: add UseLargeThumbnail for 139 ( #8424 )
2025-04-27 19:58:45 +08:00
Mmx
e532ab31ef
fix: remove auth middleware for authn login ( #8407 )
2025-04-27 19:58:09 +08:00
Mmx
bf0705ec17
fix: shebang of entrypoint.sh ( #8408 )
2025-04-27 19:56:34 +08:00
gdm257
17b42b9fa4
fix(mega): use newest file for same filename ( #8422 close #8344 )
...
Mega supports duplicate names but alist does not support.
In `List()` method, driver will return multiple files with same name.
That makes alist to use oldest version file for listing/downloading.
So it is necessary to filter old same name files in a folder.
After fixes, all CRUD work normally.
Refs #8344
2025-04-27 19:56:04 +08:00
Sam- Pan(潘绍森)
41bdab49aa
fix(139): incorrect host ( #8368 )
...
* fix: correct new personal cloud path for 139Driver
* Update drivers/139/driver.go
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* fix bug
---------
Co-authored-by: panshaosen <19802021493@139.com >
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
Co-authored-by: j2rong4cn <253551464@qq.com >
2025-04-19 14:29:12 +08:00
Lin Tianchuan
8f89c55aca
perf(local): avoid duplicate parsing of VideoThumbPos ( #7812 )
...
* feat(local): support percent for video thumbnail
The percentage determines the point in the video (as a percentage of the total duration) at which the thumbnail will be generated.
* feat(local): support both time and percent for video thumbnail
* refactor(local): avoid duplicate parsing of VideoThumbPos
2025-04-19 14:27:13 +08:00
wxnq
b449312da8
fix(docker_release): avoid duplicate occupation in docker image ( #8393 close #8388 )
...
* fix(ci): modify the method of adding permissions
* fix(build): modify the method of adding permissions(to keep up with ci)
2025-04-19 14:26:19 +08:00
MadDogOwner
52d4e8ec47
fix(lanzou): remove JavaScript comments from response data ( #8386 )
...
* feat(lanzou): add RemoveJSComment function to clean JavaScript comments from HTML
* feat(lanzou): remove comments from share page data in getFilesByShareUrl function
* fix(lanzou): optimize RemoveJSComment function to improve comment removal logic
2025-04-19 14:24:43 +08:00
New Future
28e5b5759e
feat(azure_blob): implement GetRootId interface in Addition struct ( #8389 )
...
fix failed get dir
2025-04-19 14:23:48 +08:00
asdfghjkl
477c43971f
feat(doubao_share): support doubao_share link ( #8376 )
...
Co-authored-by: anobodys <anobodys@gmail.com >
2025-04-19 14:22:43 +08:00
Yifan Gao
0a9921fa79
fix(aliyundrive_open): resolve file duplication issues and improve path handling ( #8358 )
...
* fix(aliyundrive_open): resolve file duplication issues and improve path handling
1. Fix file duplication by implementing a new removeDuplicateFiles method that cleans up duplicate files after operations
2. Change Move operation to use "ignore" for check_name_mode instead of "refuse" to allow moves when destination has same filename
3. Set Copy operation to handle duplicates by removing them after successful copy
4. Improve path handling for all file operations (Move, Rename, Put, MakeDir) by properly maintaining the full path of objects
5. Implement GetRoot interface for proper root object initialization with correct path
6. Add proper path management in List operation to ensure objects have correct paths
7. Fix path handling in error cases and improve logging of failures
* refactor(aliyundrive_open): change error logging to warnings for duplicate file removal
Updated the Move, Rename, and Copy methods to log warnings instead of errors when duplicate file removal fails, as the primary operations have already completed successfully. This improves the clarity of logs without affecting the functionality.
* Update drivers/aliyundrive_open/util.go
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
---------
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-04-19 14:22:12 +08:00
Lee CQ
88abb323cb
feat(url-tree): implement the Put interface to support adding links directly to the UrlTree on the web side ( #8312 )
...
* feat(url-tree)支持PUT
* feat(url-tree) UrlTree更新时,需要将路径和内容分割 #8303
* fix: stdpath.Join call
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
---------
Co-authored-by: Andy Hsu <i@nn.ci >
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-04-12 17:27:56 +08:00
asdfghjkl
f0b1aeaf8d
feat(doubao): support upload ( #8302 close #8335 )
...
* feat(doubao): support upload
* fix(doubao): fix file list cursor
* fix: handle strconv.Atoi err
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
---------
Co-authored-by: anobodys <anobodys@gmail.com >
Co-authored-by: Andy Hsu <i@nn.ci >
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-04-12 17:12:40 +08:00
Yifan Gao
c8470b9a2a
fix(fs): remove old target object from cache before updating ( #8352 )
2025-04-12 17:09:46 +08:00
Dgs
d0ee90cd11
fix(thunder): fix login issue ( #8342 close #8288 )
2025-04-12 17:05:58 +08:00
Dgs
544a7ea022
fix(pikpak&pikpak_share): fix WebPackageName ( #8305 )
2025-04-12 17:03:58 +08:00
j2rong4cn
4f5cabc725
feat: add h2c for http server ( #8294 )
...
* feat: add h2c for http server
* chore(config): add EnableH2c option
2025-04-12 17:02:51 +08:00
j2rong4cn
a2f266277c
fix(net): unexpected write ( #8291 close #8281 )
2025-04-12 17:01:52 +08:00
jerry
a4bfbf8a83
fix(ipfs): fix problems ( #8252 )
...
* fix: 🐛 (ipfs): fix the list error caused by not proper join path function
使用更加规范的路径拼接,修复了有中文或符号的路径无法正常访问的问题
* refactor: 命名规范
* 删除多余的条件判断
* fix: 使用withresult方法重构代码,添加get方法,提高性能
* fix: 允许get方法获取目录
去除多余的判断
* fix: 允许copy,rename,move进行覆写
* fix: 修复move方法导致的目录被删除
* refactor: 整理关于返回Path的代码
* fix: 修复由于get方法导致的ipfs路径无法访问
* fix: 修复path处理错误的get方法
修复get方法,删除意外加入的目录
* fix: fix path join
use path join instead of filepath join to avoid os problem
* fix: rm filepath ref
---------
Co-authored-by: Andy Hsu <i@nn.ci >
2025-04-12 17:01:30 +08:00
j2rong4cn
ddffacf07b
perf: optimize IO read/write usage ( #8243 )
...
* perf: optimize IO read/write usage
* .
* Update drivers/139/driver.go
Co-authored-by: MadDogOwner <xiaoran@xrgzs.top >
---------
Co-authored-by: MadDogOwner <xiaoran@xrgzs.top >
2025-04-12 16:55:31 +08:00
xiaoQQya
3375c26c41
perf(quark_uc&quark_uc_tv): native proxy multithreading ( #8287 )
...
* perf(quark_uc): native proxy multithreading
* perf(quark_uc_tv): native proxy multithreading
* chore(fs): file query result add id
2025-04-03 20:50:29 +08:00
asdfghjkl
ab68faef44
fix(baidu_netdisk): add another video crack api ( #8275 )
...
Co-authored-by: anobodys <anobodys@gmail.com >
2025-04-03 20:44:49 +08:00
New Future
2e21df0661
feat(driver): add Azure Blob Storage driver ( #8261 )
...
* add azure-blob driver
* fix nested folders copy
* feat(driver): add Azure Blob Storage driver
实现 Azure Blob Storage 驱动,支持以下功能:
- 使用共享密钥身份验证初始化连接
- 列出目录和文件
- 生成临时 SAS URL 进行文件访问
- 创建目录
- 移动和重命名文件/文件夹
- 复制文件/文件夹
- 删除文件/文件夹
- 上传文件并支持进度跟踪
此驱动允许用户通过 AList 平台无缝访问和管理 Azure Blob Storage 中的数据。
* feat(driver): update help doc for Azure Blob
* doc(readme): add new driver
* Update drivers/azure_blob/driver.go
fix(azure): fix name check
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Update README.md
doc(readme): fix the link
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* fix(azure): fix log and link
---------
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-04-03 20:43:21 +08:00
MadDogOwner
af18cb138b
feat(139): add option ReportRealSize ( #8244 close #8141 )
...
* feat(139): handle family upload errors
* feat(139): add option `ReportRealSize`
* Update drivers/139/driver.go
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
---------
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-04-03 20:41:59 +08:00
j2rong4cn
31c55a2adf
fix(archive): unable to preview ( #8248 )
...
* fix(archive): unable to preview
* fix bug
2025-04-03 20:41:05 +08:00
MadDogOwner
465dd1703d
feat(cloudreve): s3 policy support ( #8245 )
...
* feat(cloudreve): s3 policy support
* fix(cloudreve): correct potential off-by-one error in `etags` initialization
2025-04-03 20:40:19 +08:00
j2rong4cn
a6304285b6
fix: revert "refactor(net): pass request header" ( #8269 )
...
5be50e77d9
2025-04-03 20:35:52 +08:00
YangXu
affd0cecd1
fix(pikpak&pikpak_share): update algorithms ( #8278 )
2025-04-03 20:35:14 +08:00
MadDogOwner
37640221c0
fix(doubao): update file size type to int64 ( #8289 )
2025-04-03 20:34:27 +08:00
Andy Hsu
e4bd223d1c
fix(deps): update 115-sdk-go to v0.1.5
2025-04-03 20:29:53 +08:00
jerry
0cde4e73d6
feat(ipfs): better ipfs support ( #8225 )
...
* feat: ✨ better ipfs support
fixed mfs crud, added ipns support
* Update driver.go
clean up
2025-03-27 23:25:23 +08:00
Ljcbaby
7b62dcb88c
fix(baidu_netdisk): deplicate retry ( #8210 redo #7972 , link #8180 )
2025-03-27 23:22:55 +08:00
never lee
c38dc6df7c
fix(115_open): support multipart upload ( #8229 )
...
Co-authored-by: neverlee <neverlea@formail.com >
2025-03-27 23:22:08 +08:00
MadDogOwner
5668e4a4ea
feat(doubao): add Doubao driver ( #8232 closes #8020 #8206 )
...
* feat(doubao): implement List()
* feat(doubao): implement Link()
* feat(doubao): implement MakeDir()
* refactor(doubao): add type Object to store key
* feat(doubao): implement Move()
* feat(doubao): implement Rename()
* feat(doubao): implement Remove()
2025-03-27 23:21:42 +08:00
KirCute
1335f80362
feat(archive): support multipart archives ( #8184 close #8015 )
...
* feat(archive): multipart support & sevenzip tool
* feat(archive): rardecode tool
* feat(archive): support decompress multi-selected
* fix(archive): decompress response filter internal
* feat(archive): support multipart zip
* fix: more applicable AcceptedMultipartExtensions interface
2025-03-27 23:20:44 +08:00
KirCute
704d3854df
feat(alist_v3): support forward archive requests ( #8230 )
...
* feat(alist_v3): support forward archive requests
* fix: encode all inner path
2025-03-27 23:18:34 +08:00
MadDogOwner
44cc71d354
fix(cloudreve): enable SetContentLength for uploading to local policy ( #8228 close #8174 )
...
* fix(cloudreve): upload failure to return error msg instead of deletion success
* fix(cloudreve): enable SetContentLength for uploading to local policy
* refactor(cloudreve): move local policy upload logic to utils for better error handling
* refactor(cloudreve): unified upload code style
* refactor(cloudreve): improve user agent handling
2025-03-27 23:18:15 +08:00
KirCute
9a9aee9ac6
feat(alias): support writing to non-ambiguous paths ( #8216 )
...
* feat(alias): support writing to non-ambiguous paths
* feat(alias): support extract concurrency
* fix(alias): extract url no pass query
2025-03-27 23:17:45 +08:00
KirCute
4fcc3a187e
fix(traffic): duplicate semaphore release when uploading ( #8211 close #8180 )
2025-03-27 23:15:47 +08:00
Ljcbaby
10a76c701d
fix(db): support postgres trust/peer mode ( #8198 close #8066 )
2025-03-27 23:15:04 +08:00
KirCute
6e13923225
fix(sftp-server): postgre cannot store control characters ( #8188 close #8186 )
2025-03-27 23:14:36 +08:00
Andy Hsu
32890da29f
fix(115_open): upgrade 115-sdk-go dependency to v0.1.4
2025-03-21 19:06:09 +08:00
Andy Hsu
758554a40f
fix(115_open): upgrade 115-sdk-go dependency to v0.1.3 ( close #8169 )
2025-03-19 21:47:42 +08:00
Andy Hsu
4563aea47e
fix(115_open): rename delay to take effect ( close #8156 )
2025-03-18 22:25:04 +08:00
Andy Hsu
35d6f3b8fc
fix(115_open): upgrade sdk ( close #8151 )
2025-03-18 22:21:50 +08:00
j2rong4cn
b4e6ab12d9
refactor: FilterReadMeScripts ( #8154 close #8150 )
...
* refactor: FilterReadMeScripts
* .
2025-03-18 22:02:33 +08:00
Andy Hsu
3499c4db87
feat: 115 open driver ( #8139 )
...
* wip: 115 open
* chore(go.mod): update 115-sdk-go dependency version
* feat(115_open): implement directory management and file operations
* chore(go.mod): update 115-sdk-go dependency to v0.1.1 and adjust callback handling in driver
* chore: rename driver
2025-03-17 00:52:09 +08:00
hshpy
d20f41d687
fix: missing handling of RangeReadCloser ( #8146 )
2025-03-16 22:14:44 +08:00
Andy Hsu
d16ba65f42
fix(lang): initialize configuration in LangCmd before generating language JSON file
2025-03-16 16:37:33 +08:00
hshpy
c82e632ee1
fix: potential XSS vulnerabilities ( #7923 )
...
* fix: potential XSS vulnerabilities
* feat: support filter and render for readme.md
* chore: set ReadMeAutoRender to true
* fix attachFileName undefined
---------
Co-authored-by: Andy Hsu <i@nn.ci >
2025-03-15 23:28:40 +08:00
折纸飞机
04f5525f20
fix(s3): incorrectly added slash before the Bucket name ( #8083 close #8001 )
2025-03-15 00:21:24 +08:00
shniubobo
28b61a93fd
feat(webdav): support oc:checksums ( #8064 close #7472 )
...
Ref: #7472
2025-03-15 00:21:07 +08:00
j2rong4cn
0126af4de0
fix(crypt): premature close of MFile ( #8132 close #8119 )
...
* fix(crypt): premature close of MFile
* refactor
2025-03-15 00:13:30 +08:00
MadDogOwner
7579d44517
fix(onedrive): set req.ContentLength ( #8081 )
...
* fix(onedrive): set req.ContentLength
* fix(onedrive_app): set req.ContentLength
* fix(cloudreve): set req.ContentLength
2025-03-15 00:12:37 +08:00
MadDogOwner
5dfea714d8
fix(cloudreve): use milliseconds timestamp in last_modified ( #8133 )
2025-03-15 00:12:15 +08:00
Ljcbaby
370a6c15a9
fix(baidu_netdisk): remove duplicate retry ( #7972 )
2025-03-01 19:00:36 +08:00
Ljcbaby
2570707a06
feat(baidu_netdisk): support dynamical slice size for low bandwith upload case ( #7965 )
...
* 动态分片尺寸
* 补充严格测试结果
2025-03-01 18:46:05 +08:00
j2rong4cn
4145734c18
refactor(net): pass request header ( #8031 close #8008 )
...
* refactor(net): pass request header
* feat(proxy): add `Etag` to response header
* refactor
2025-03-01 18:35:34 +08:00
KirCute
646c7bcd21
fix(archive): use another sign for extraction ( #7982 )
2025-03-01 18:34:33 +08:00
KirCute
cdc41595bc
feat(github): support GPG verification ( #7996 close #7986 )
...
* feat(github): support GPG verification
* chore
2025-02-24 23:12:23 +08:00
KirCute_ECT
79bef0be9e
chore: fix build failed ( #8005 )
2025-02-16 15:11:48 +08:00
KirCute_ECT
c230f24ebe
fix(archive): decode filename when decompressing zips ( #7998 close #7988 )
2025-02-16 12:25:01 +08:00
KirCute_ECT
30d8c20756
feat(archive): support deprioritize previewing ( #7984 )
2025-02-16 12:24:10 +08:00
KirCute_ECT
3b71500f23
feat(traffic): support limit task worker count & file stream rate ( #7948 )
...
* feat: set task workers num & client stream rate limit
* feat: server stream rate limit
* upgrade xhofe/tache
* .
2025-02-16 12:22:11 +08:00
foxxorcat
399336b33c
fix(189pc): transfer rename ( #7958 )
...
* fix(189pc): transfer rename
* fix: OverwriteUpload
* fix: change search method
* fix
* fix
2025-02-16 12:21:34 +08:00
KirCute_ECT
36b4204623
feat(github): support github proxy ( #7979 close #7963 )
2025-02-16 12:21:03 +08:00
YangRucheng
f25be154c6
fix(ilanzou): add header X-Forwarded-For to solve IP ban ( #7977 )
...
* fix: warning
* feat: ip header
* fix: ip header for fs link
2025-02-16 12:20:28 +08:00
Sakana
ec3fc945a3
fix(feiji): modify the request header ( #7902 close #7890 )
2025-02-09 18:35:39 +08:00
MadDogOwner
3f9bed3d5f
feat(bootstrap): add .url to proxy types ( #7928 )
2025-02-09 18:33:38 +08:00
Jealous
b9ad18bd0a
feat(recursive-move): Advanced conflict policy for preventing unintentional overwriting ( #7906 )
2025-02-09 18:32:57 +08:00
Jealous
0219c4e15a
fix(index): fix the issue where ignored paths are not updated ( #7907 )
2025-02-09 18:31:43 +08:00
Feng.YJ
d983a4ebcb
refactor(cmd): use std runtime package to get go version info ( #7964 )
...
* refactor(cmd): use std `runtime` package to get go version info
- Remove the `GoVersion` variable.
- Remove overriding `GoVersion` by ldflags in `build.sh`.
- Get go version, OS and arch from the constants in the std `runtime` package instead of compile time.
* chore(ci): remove `GoVersion` flag from workflows
Remove GoVersion flag from beta_release.yml and build.yml workflows.
> Reduce compile-time dependencies.
2025-02-09 18:30:56 +08:00
Sakana
f795807753
feat(github_releases): support dir size for show all version ( #7938 )
...
* refactor
* 修改默认 RepoStructure
* feat: 支持使用 gh-proxy
2025-02-09 18:30:38 +08:00
hshpy
6164e4577b
fix: missing args when using alias driver ( #7941 close #7932 )
2025-02-05 19:22:10 +08:00
Sakana
39bde328ee
fix(lenovonas_share): the size of the directory ( #7914 )
2025-02-01 17:32:58 +08:00
KirCute_ECT
779c293f04
fix(driver): implement canceling and updating progress for putting for some drivers ( #7847 )
...
* fix(driver): additionally implement canceling and updating progress for putting for some drivers
* refactor: add driver archive api into template
* fix(123): use built-in MD5 to avoid caching full
* .
* fix build failed
2025-02-01 17:29:55 +08:00
abc1763613206
b9f397d29f
fix(139): restore the Account handling, partially reverts #7850 ( #7900 close #7784 )
2025-01-30 11:25:41 +08:00
Jiang Xiang
d53eecc229
fix(febbox): panic due to slice out of range ( #7898 close #7889 )
2025-01-30 11:24:07 +08:00
Andy Hsu
f88fd83d4a
feat(ci): use go-cross/cgo-actions for dev build
2025-01-28 18:57:09 +08:00
Andy Hsu
226c34929a
feat(ci): add build info for beta release
2025-01-27 21:32:59 +08:00
j2rong4cn
027edcbe53
refactor(patch): execute all patches in dev version ( #7807 )
2025-01-27 20:49:24 +08:00
Snowykami
fd51f34efa
feat(misskey): add misskey driver ( #7864 )
2025-01-27 20:47:52 +08:00
Sakana
bdd9774aa7
feat(github_releases): add support for github_releases driver ( #7844 close #7842 )
...
* feat(github_releases): 添加对 GitHub Releases 的支持
* feat(github_releases): 增加目录大小和更新时间,增加请求缓存
* Feat(github_releases): 可选填入 GitHub token 来提高速率限制或访问私有仓库
* Fix(github_releases): 修复仓库无权限或不存在时的异常
* feat(github_releases): 支持显示所有版本,开启后不显示文件夹大小
* feat(github_releases): 兼容无子目录
2025-01-27 20:28:44 +08:00
Jealous
258b8f520f
feat(recursive-move): add overwrite option to preventing unintentional overwriting ( #7868 closes #7382,#7719)
...
* feat(recursive-move): add `overwrite` option to preventing unintentional overwriting
* chore: rearrange code order
2025-01-27 20:25:39 +08:00
Jiang Xiang
99f39410f2
fix(s3): escape CopySource request header when copying files ( #7860 close #7858 )
2025-01-27 20:23:13 +08:00
Shelton Zhu
267120a8c8
fix(115): fix offline download ( #7845 close #7794 )
...
* feat(115): use multi url for list files & change download url api
* fix(115): fix offline download. (close #7794 )
2025-01-27 20:20:55 +08:00
KirCute_ECT
5eff8cc7bf
feat(upload): support rapid upload on web ( #7851 )
2025-01-27 20:20:09 +08:00
KirCute_ECT
d5ec998699
feat(task): allow retry canceled ( #7852 )
2025-01-27 20:18:10 +08:00
LaoShui
23f3178f39
chore(README): formatting spacing in README links ( #7879 ) [skip ci]
2025-01-27 20:13:35 +08:00
MadDogOwner
cafdb4d407
fix(139): correct path handling in groupGetFiles ( #7850 closes #7848,#7603)
...
* fix(139): correct path handling in groupGetFiles
* perf(139): reduce the number of requests in groupGetFiles
* refactor(139): check authorization expiration (#10 )
* refactor(139): check authorization expiration
* fix bug
* chore(139): update api version to 7.14.0
---------
Co-authored-by: j2rong4cn <36783515+j2rong4cn@users.noreply.github.com >
2025-01-27 20:11:21 +08:00
Jealous
0d4c63e9ff
feat(fs): display the existing filename in error message ( #7877 )
2025-01-27 20:09:17 +08:00
j2rong4cn
5c5d8378e5
fix(archive): unable to preview ( #7843 )
...
* fix(archive): unrecognition zip
* feat(archive): add tree for zip meta
* fix bug
* refactor(archive): meta cache time use Link Expiration first
* feat(archive): return sort policy in meta (#2 )
* refactor
* perf(archive): reduce new network requests
---------
Co-authored-by: KirCute_ECT <951206789@qq.com >
2025-01-27 20:08:56 +08:00
j2rong4cn
2be0c3d1a0
feat(alias): add DownloadConcurrency and DownloadPartSize option ( #7829 )
...
* fix(net): goroutine logic bug (AlistGo/alist#7215 )
* Fix goroutine logic bug
* Fix bug
---------
Co-authored-by: hpy hs <hshpy.pengyu@gmail.com >
* perf(net): sequential and dynamic concurrency
* fix(net): incorrect error return
* feat(alias): add `DownloadConcurrency` and `DownloadPartSize` option
* feat(net): add `ConcurrencyLimit`
* pref(net): create `chunk` on demand
* refactor
* refactor
* fix(net): `r.Closers.Add` has no effect
* refactor
---------
Co-authored-by: hpy hs <hshpy.pengyu@gmail.com >
2025-01-27 20:08:39 +08:00
foxxorcat
bdcf450203
fix: resolve concurrent read/write issues in WrapObjName ( #7865 )
2025-01-27 20:06:18 +08:00
Jealous
c2633dd443
fix(workflow): use the dev version of the web for beta releases ( #7862 )
...
* fix(workflow): use dev version of the web for beta releases
* chore(config): check version string by prefix
2025-01-23 22:49:35 +08:00
KirCute_ECT
11b6a6012f
fix(copy): use Link and Put when the driver does not support copying ( #7834 )
2025-01-18 23:52:02 +08:00
Jealous
59e02287b2
feat(fs): add overwrite option to preventing unintentional overwriting ( #7809 )
2025-01-18 23:39:07 +08:00
KirCute_ECT
bb40e2e2cd
feat(archive): archive manage ( #7817 )
...
* feat(archive): archive management
* fix(ftp-server): remove duplicate ReadAtSeeker realization
* fix(archive): bad seeking of SeekableStream
* fix(archive): split internal and driver extraction api
* feat(archive): patch
* fix(shutdown): clear decompress upload tasks
* chore
* feat(archive): support .iso format
* chore
2025-01-18 23:28:12 +08:00
j2rong4cn
ab22cf8233
feat: add Reference interface to driver ( #7805 )
...
* feat: add `Reference` interface to driver
* feat(123_share): support reference 123pan
2025-01-18 23:26:58 +08:00
MadDogOwner
880cc7abca
fix(139): use personal_new by default ( #7836 )
2025-01-18 23:24:09 +08:00
Jealous
b60da9732f
feat(offline-download): allow using offline download tools in any storage ( #7716 )
...
* Feat(offline-download): allow using thunder offline download tool in any storage
* Feat(offline-download): allow using 115 offline download tool in any storage
* Feat(offline-download): allow using pikpak offline download tool in any storage
* style(offline-download): unify offline download tool names
* feat(offline-download): show available offline download tools only
* Fix(offline-download): update unmodified tool names.
---------
Co-authored-by: Andy Hsu <i@nn.ci >
2025-01-10 21:24:44 +08:00
KirCute_ECT
e04114d102
feat(github): add github api driver ( #7717 )
...
* feat(github): add github api driver
* fix: filter submodule operation
* feat: rename, copy and move, but with bugs
* fix: move and copy returns 422
* fix: change TargetPath in rename msg from parent path to new self path
* fix: add non-commit mutex
* pref(github): use net/http to put blob
* chore: add a help message to `ref` addition
2025-01-10 20:59:58 +08:00
KirCute_ECT
51bcf83511
feat(url-tree): support url tree driver writing ( #7779 close #5166 )
...
* feat: support url tree writing
* fix: meta writable
* feat: disable writable via addition
2025-01-10 20:50:56 +08:00
KirCute_ECT
25b4b55ee1
feat(ftp-server): support resumable downloading ( #7792 )
2025-01-10 20:50:20 +08:00
Jiang Xiang
6812ec9a6d
fix(ilanzou): add accept-encoding request header ( #7796 close #7759 )
2025-01-10 20:49:50 +08:00
Lin Tianchuan
31a7470865
feat(local): support both time and percent for video thumbnail ( #7802 )
...
* feat(local): support percent for video thumbnail
The percentage determines the point in the video (as a percentage of the total duration) at which the thumbnail will be generated.
* feat(local): support both time and percent for video thumbnail
2025-01-10 20:48:45 +08:00
Mmx
687124c81d
ci(build_docker): merge build_docker into release_docker workflow ( #7755 )
...
* feat(ci): merge build_docker workflow into release_docker
* fix(ci): logics of docker meta
2025-01-01 21:29:59 +08:00
foxxorcat
e4439e66b9
fix:(baidu_photo): upload erron -6 ( #7760 close #7744 )
...
* fix:(baidu_photo): upload erron -6
* fix(baidu_photo):api add bdstoken
2025-01-01 21:13:34 +08:00
MadDogOwner
7fd4ac7851
fix(139): update familyGetFiles pagination logic ( #7748 close #7711 )
2024-12-30 22:55:47 +08:00
KirCute_ECT
6745dcc139
feat(task): attach creator to user of the context ( #7729 )
2024-12-30 22:55:09 +08:00
KirCute_ECT
aa1082a56c
feat(sftp-server): do not generate host key until first enabled ( #7734 )
2024-12-30 22:54:37 +08:00
Jealous
ed149be84b
feat(index): add disable index option for storages ( #7730 )
2024-12-30 22:52:55 +08:00
Sakana
040dc14ee6
fix(lenovonas_share): stoken expire ( #7727 )
2024-12-30 22:51:39 +08:00
Mmx
4dce53d72b
feat(docker release): improve aria2 image, add aio image ( #7750 )
...
* build: add argument INSTALL_ARIA2 to dockerfile
* feat: run aria2 in main entrypoint
* feat(ci): environment matrix for docker release
* improve(ci): allow overwrite artifacts in docker release
* fix(ci): permission of alist binary in docker; entrypoint logic
* improve(aria2): move aria2 data to /opt/aria2; fix permission issues
References:
https://github.com/AlistGo/with_aria2/pull/13
Co-authored-by: GoodbyeNJN <cc@fuckwall.cc >
* fix(ci): aio image is not taking effect
* fix(build): tar command in aria2 installation process
(cherry picked from commit 647285408354807bae64df6a20fefb696ff787de)
---------
Co-authored-by: GoodbyeNJN <cc@fuckwall.cc >
2024-12-30 22:51:05 +08:00
j2rong4cn
365fc40dfe
fix: static page to limit request method ( #7745 close #7667 )
2024-12-30 22:49:18 +08:00
KirCute_ECT
5994c17b4e
feat(patch): upgrade patch module ( #7738 )
...
* feat(patch): upgrade patch module
* chore(patch): add docs
* fix(patch): skip and rewrite invalid last launched version
* fix(patch): turn two functions into patches
2024-12-30 22:48:33 +08:00
Jealous
42243b1517
feat(thunder): add offline download tool ( #7673 )
...
* feat(thunder): add offline download tool
* fix(thunder): improve error handling and parse file size in status response
---------
Co-authored-by: Andy Hsu <i@nn.ci >
2024-12-25 21:23:58 +08:00
KirCute_ECT
48916cdedf
fix(permission): enhance the strictness of permissions ( #7705 close #7680 )
...
* fix(permission): enhance the strictness of permissions
* fix: add initial permissions to admin
2024-12-25 21:17:58 +08:00
Feng.YJ
5ecf5e823c
fix(webauthn): handle error when removing webauthn credential ( #7689 )
2024-12-25 21:16:34 +08:00
KirCute_ECT
c218b5701e
fix(115): support float QPS ( #7677 )
2024-12-25 21:16:03 +08:00
KirCute_ECT
77d0c78bfd
feat(sftp-server): public key login ( #7668 )
2024-12-25 21:15:06 +08:00
j2rong4cn
db5c601cfe
fix(crypt): add sign to thumbnail ( #6611 )
2024-12-25 21:13:54 +08:00
KirCute_ECT
221cdf3611
feat(s3): support custom host presign ( #7699 close #7696 )
2024-12-25 21:13:23 +08:00
KirCute_ECT
40b0e66efe
feat(ftp-server): treat moving across file systems as copying ( #7704 close #7701 )
...
* feat(ftp-server): treat moving across file systems as copying
* fix: ensure compatibility across different fs on the same driver
2024-12-25 21:12:30 +08:00
KirCute_ECT
b72e85a73a
fix(ftp-server): rewrite download in a more appropriate method ( #7656 )
2024-12-25 21:11:45 +08:00
KirCute_ECT
6aaf5975c6
fix(ftp-server): work unproperly when base url is not root ( #7693 )
...
* fix(ftp-server): work unproperly when base url is not root
* fix: avoid merge conflict
2024-12-25 21:11:36 +08:00
MadDogOwner
bb2aec20e4
fix(139): handle upload file conflicts ( #7692 )
2024-12-25 21:11:05 +08:00
KirCute_ECT
d7aa1608ac
feat(task): add speed monitor ( #7655 )
2024-12-25 21:09:54 +08:00
j2rong4cn
db99224126
perf: Speed of database initialization ( #7694 )
...
* perf: 优化非sqlite3数据库时初始化慢的问题
* refactor
2024-12-25 21:08:22 +08:00
MadDogOwner
b8bd14f99b
fix(lanzou): missing parameter ( #7678 close #7210 )
2024-12-17 22:05:52 +08:00
hshpy
331885ed64
fix(net): close of closed channel ( #7580 )
2024-12-17 22:04:27 +08:00
Andy Hsu
cf58ab3a78
chore(config): disable FTP and SFTP by default
2024-12-12 21:04:14 +08:00
KirCute_ECT
33ba7f1521
feat: sftp server support ( #7643 )
...
* feat: sftp server support
* fix(sftp-server): try fix build failed
* fix: sftp download lack
2024-12-12 20:51:43 +08:00
KirCute_ECT
201e25c17f
fix(ftp-server): large transfer leads to client timeout ( #7639 )
...
* fix(ftp-server): client timeout to wait a large file upload to netdisk
* fix(ftp-server): driver alist v3 upload failed and temp files do not be deleted
2024-12-12 20:50:00 +08:00
Andy Hsu
ecefa5e0eb
ci: fix desktop beta release trigger
2024-12-10 20:21:51 +08:00
KirCute_ECT
650b03aeb1
feat: ftp server support ( #7634 close #1898 )
...
* feat: ftp server support
* fix(ftp): incorrect mode for dirs in LIST returns
2024-12-10 20:17:46 +08:00
KirCute_ECT
7341846499
perf(task): merge requests of operating selected ( #7637 )
2024-12-10 19:30:50 +08:00
MadDogOwner
a3908fd9a6
fix(139): update APIs ( #7591 close #7603 )
...
* fix(139): update family cloud API
* fix(139): update API of familyGetLink
* feat(139): support group (close #7603 )
* docs: add `139 group` to Readme
* feat(139): support multipart upload (close : #7444 )
* feat(139): add custom upload part size option
* fix: missing right big quote
---------
Co-authored-by: Andy Hsu <i@nn.ci >
2024-12-09 23:54:21 +08:00
MadDogOwner
2a035302b2
fix(cloudreve): support upload to remote and OneDrive storage ( #7632 close #6882 )
...
- Add support for remote and OneDrive storage types
- Implement new upload methods for different storage types
- Update driver to handle various storage policies
- Add error handling and session cleanup for failed uploads
2024-12-09 23:35:44 +08:00
MadDogOwner
016e169c41
feat(139): support multipart upload ( close : #7444 ) ( #7630 )
...
* feat(139): support multipart upload (close : #7444 )
* feat(139): add custom upload part size option
2024-12-09 23:34:29 +08:00
Joseph Chris
088120df82
feat(sso): add custom extra scope support ( #7577 )
2024-12-09 23:33:46 +08:00
Shelton Zhu
aa45a82914
fix(115): fix login bug ( #7626 close #7614 close #7620 )
2024-12-09 23:33:07 +08:00
shingyu
5084d98398
fix(onedrive): fix timeout error ( #7551 close #7506 )
2024-12-08 17:06:33 +08:00
YangXu
fa15c576f0
fix(pikpak): remove oauth2 method ( #7567 close #7545 )
2024-12-07 17:03:46 +08:00
foxxorcat
2d3605c684
fix(baidu_photo): cookie login fix download error ( #7602 )
2024-12-07 17:02:52 +08:00
alist666
492b49d77a
Update README.md
2024-12-07 01:00:25 +08:00
Kuingsmile
94915b2148
fix(baidu_netdisk): update fileToObj to use ServerCtime and ServerMtime ( #7535 )
2024-11-21 22:41:23 +08:00
YangXu
2dec756f23
fix(pikpak&pikpak_share): captcha_sign error ( #7530 close #7481 close #7482 )
2024-11-21 22:40:39 +08:00
j2rong4cn
4c0cffd29b
fix(net): close of closed channel ( #7529 )
2024-11-21 22:39:14 +08:00
Rirmach
25c5e075a9
fix(local): Preserve file owner when copying ( #7528 )
2024-11-21 22:38:41 +08:00
Mmx
398c04386a
feat(sso): generate and verify OAuth state with go-cache ( #7527 )
2024-11-21 22:38:04 +08:00
Mmx
12b429584e
feat(security): generating random string with crypto rand ( #7525 )
2024-11-21 22:37:19 +08:00
Mmx
150dcc2147
fix(sso): OIDC compatibility mode ( #7524 )
2024-11-21 22:36:41 +08:00
Andy Hsu
0ba754fd40
fix(release): missing installation of zig
2024-11-17 23:11:03 +08:00
Andy Hsu
28d2367a87
fix(ci): no space left on device
2024-11-17 22:24:06 +08:00
BlueSkyXN
a4ad98ee3e
fix(pikpak): domain block and change to NET ( #7350 )
2024-11-17 20:03:04 +08:00
Jason-Fly
1c01dc6839
fix(storage): delete storage fails if a panic occurred during initialization ( #7501 )
...
* fix(storage): store storages map when init storage panic
* fix(drivers): add nil check to drop method
2024-11-16 13:20:49 +08:00
Jason-Fly
c3c5843dce
fix(terabox): panic due to slice out of range ( #7499 close #7487 )
2024-11-16 13:19:59 +08:00
Jason-Fly
6c38c5972d
fix(terabox): big file upload issue ( #7498 close #7490 )
2024-11-16 13:18:49 +08:00
foxxorcat
0a46979c51
feat(115): enhance cache ( #7479 )
2024-11-08 22:08:50 +08:00
foxxorcat
67c93eed2b
feat(baidu_netdisk,baidu_photo): add and fix hashinfo ( #7469 )
2024-11-08 22:08:25 +08:00
安稳
f58de9923a
refactor(aliyunopen,config): Modify default properties ( #7476 )
2024-11-08 22:07:35 +08:00
foxxorcat
2671c876f1
revert: "fix(115): enforce 20GB file size limit on uploadev"
...
This reverts commit 216e3909f3 .
2024-11-02 21:08:19 +08:00
Andy Hsu
e707fa38f1
ci: remove specific tag for freebsd action
2024-11-02 17:05:00 +08:00
foxxorcat
b803b0070e
fix(115): 20GB file upload restriction ( #7452 )
...
* fix(115): multipart upload error
* feat(115): Modify default page size
* fix(115): Replace temporary repair scheme
2024-11-02 16:41:33 +08:00
KirCute_ECT
64ceb5afb6
feat: support general users view and cancel own tasks ( #7416 close #7398 )
...
* feat: support general users view and cancel own tasks
Add a creator attribute to the upload, copy and offline download
tasks, so that a GENERAL task creator can view and cancel them.
BREAKING CHANGE:
1. A new internal package `task` including the struct `TaskWithCreator`
which embeds `tache.Base` is created, and the past dependence on
`tache.Task` will all be transferred to dependence on this package.
2. The API `/admin/task` can now also be accessed via `/task`, and the
old endpoint is retained to ensure compatibility with legacy
automation scripts.
Closes #7398
* fix(deps): update github.com/xhofe/tache to v0.1.3
2024-11-01 23:32:26 +08:00
Rirmach
10c7ebb1c0
fix(local): cross-device file move ( #7430 )
2024-11-01 23:31:33 +08:00
UUBulb
d0cda62703
ci: add freebsd release build ( #7344 )
2024-11-01 21:37:53 +08:00
Maxwell Davis
ce0b99a510
fix(cloudreve): path not exist when moving/copying files ( #7432 )
...
Co-authored-by: 马建军 <1432318228@qq.com >
2024-11-01 21:12:29 +08:00
Mmx
34a148c83d
feat(local): thumbnail token bucket smooth migration ( #7425 )
...
* feat(local): allow to migrate static token buckets
* improve(local): token bucket migration boundary handling
2024-11-01 20:58:53 +08:00
Mmx
4955d8cec8
ci(docker): support riscv64 and ppc64le ( #7426 )
...
* ci(docker): bump cache key of musl library
* build(docker): add new arches to build script
* ci(docker): add new arches to buildx platforms
2024-11-01 20:53:53 +08:00
Shelton Zhu
216e3909f3
fix(115): enforce 20GB file size limit on uploadev ( #7447 close #7413 )
...
- Introduce a file size restriction to handle uploads more securely.
- Provide an informative error for uploads that exceed the new limit.
2024-11-01 20:52:19 +08:00
Andy Hsu
a701432b8b
ci: add freebsd to beta release
2024-10-21 00:05:56 +08:00
Jason-Fly
a2dc45a80b
fix(ilanzou): fix upload failure for small files ( #7368 close #7250 )
2024-10-20 23:53:56 +08:00
Jason-Fly
48ac23c8de
fix(ilanzou): fix infinite loop when getting file list ( #7366 close #7357 )
2024-10-20 23:53:40 +08:00
hanbao233xD
2830575490
perf(123pan): change domain of login ( #7325 )
...
* Update driver.go
* 1
* Update util.go
* 123新登录接口
* Revert "Update util.go"
This reverts commit a13a58f8a8 .
* Update driver.go
* Update util.go
* Update util.go
2024-10-15 19:45:30 +08:00
YangXu
e8538bd215
feat: add febbox driver ( #7304 close #7293 )
2024-10-14 22:44:20 +08:00
Andy Hsu
c3e43ff605
fix(115): use latest appVer for upload ( close #7315 )
2024-10-12 00:48:54 +08:00
URenko
5f19d73fcc
fix: Terabox ( close #6961 close #6983 in #7279 )
2024-10-04 15:46:10 +08:00
Shelton Zhu
bdf4b52885
feat(offline_download): add transmission ( close #4102 in #7232 )
2024-09-28 23:15:58 +08:00
Shelton Zhu
6106a2d4cc
fix: dynamic update app version ( close #7198 in #7220 )
2024-09-18 23:30:28 +08:00
Andy Hsu
b6451451b1
fix: release version ( close #7182 )
2024-09-17 01:37:14 +08:00
lm379
f06d2c0348
fix(115): change ua ( #7196 close #7191 )
2024-09-17 01:34:47 +08:00
Andy Hsu
b7ae56b109
ci: delete beta tag before generating changelog
2024-09-14 00:50:24 +08:00
Andy Hsu
5d9167d676
fix: recover panic on storage init
2024-09-13 23:50:51 +08:00
jindongh
1b42b9627c
fix(google_photo): fix issue copy videos from google photo ( #7160 close #7158 )
...
#7158 During copy from google photo to aliyun, it failed consistently with 404 when copying mp4 file with =m37.
Change =m37 to =dv will fix the issue
2024-09-12 19:08:13 +08:00
renovate[bot]
bb58b94a10
fix(deps): update module github.com/charmbracelet/bubbles to v0.20.0 ( #7142 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-09-10 00:02:47 +08:00
Andy Hsu
ffce61d227
ci: add @ to trigger by comment
2024-09-10 00:02:24 +08:00
renovate[bot]
0310b70d90
fix(deps): update module golang.org/x/crypto to v0.27.0 ( #7147 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-09-10 00:01:51 +08:00
Andy Hsu
73f0b135b6
ci: split arm and non-arm target on beta release workflow
2024-09-09 00:25:35 +08:00
Andy Hsu
8316f81e41
ci: update beta tag to newest commit
2024-09-08 23:03:58 +08:00
foxxorcat
cdbfda8921
fix(baidu_photo): change download api ( #7144 close #7133 )
2024-09-08 19:47:11 +08:00
YangXu
9667832b32
fix(pikpak): fix nil pointer error ( #7150 )
2024-09-08 19:45:42 +08:00
Andy Hsu
b36d38f63f
chore: go mod tidy
2024-09-08 11:12:53 +08:00
renovate[bot]
c8317250c1
fix(deps): update golang.org/x/exp digest to e7e105d ( #7139 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-09-08 11:10:07 +08:00
renovate[bot]
0242f36e1c
fix(deps): update module google.golang.org/grpc to v1.66.0 ( #7098 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-09-08 10:58:52 +08:00
renovate[bot]
40a68bcee6
fix(deps): update module github.com/ncw/swift/v2 to v2.0.3 ( #7107 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-09-08 10:58:04 +08:00
renovate[bot]
92713ef5c4
fix(deps): update module github.com/charmbracelet/bubbletea to v1 ( #7103 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-09-08 10:57:04 +08:00
YangXu
716d33fddd
feat(pikpak&pikpak_share): add download address delay detection ( #7136 )
...
* feat(pikpak): add download address delay detection
* feat(pikpak_share): add download address delay detection
2024-09-08 10:45:43 +08:00
foxxorcat
c9fa3d7cd6
fix: broken file with local proxy ( #7132 close #7112 )
...
* fix: local proxy download file damage
* fix: temp dir remove
2024-09-08 10:44:34 +08:00
Mmx
4874c9e43b
fix(local): thumbnails oom ( #7124 close #7082 )
...
* add my_build.sh
* Fix OOM of thumbnail generation of LoaclDrive by using a task queue to control thread count
* remove my_build.sh
* chore(local): allow ThumbConcurrency set to zero
* revert(local): changes to thumbnail generating functions
* feat(local): implement static token bucket
* feat(local): use static token bucket to limit thumbnails generating concurrent
---------
Co-authored-by: KKJas <75424880+Muione@users.noreply.github.com >
2024-09-03 20:03:30 +08:00
Mmx
34ada81582
fix(webdav): memory leak in HttpServer ( #7123 close #7088 )
...
* chore(webdav): fix warnings in HttpServe
* fix(webdav): HttpServe memory leak
2024-09-03 20:02:13 +08:00
YangXu
ba716ae325
fix(pikpak): error when passing the user_id field ( #7117 close #7118 )
2024-09-01 23:06:51 +08:00
Andy Hsu
d4f9c4b6af
ci: trigger desktop beta version
2024-08-29 23:03:54 +08:00
renovate[bot]
b910b8917f
fix(deps): update golang.org/x/exp digest to 9b4947d ( #7065 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-08-24 22:24:18 +08:00
Mmx
d92744e673
chore(local): decrease mass ffmpeg logs ( #7073 )
2024-08-24 22:20:20 +08:00
Andy Hsu
868b0ec25c
chore: replace link of zhaoziyuan [skip ci]
2024-08-23 12:27:19 +08:00
Andy Hsu
e21edf98e2
revert: 34b6785fab
2024-08-21 17:08:03 +00:00
ice yao
d2514d236f
feat(drivers): add kodbox storage ( #7059 close #7058 )
...
- kodbox: https://github.com/kalcaddle/kodbox
2024-08-22 00:46:38 +08:00
renovate[bot]
34b6785fab
fix(deps): update module github.com/meilisearch/meilisearch-go to v0.28.0 ( #7061 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-08-22 00:45:31 +08:00
Rammiah
48f50a2ceb
fix(search): BuildIndex concurrency error ( #7035 )
2024-08-22 00:44:55 +08:00
Wang Xiaoqing
74887922b4
fix(offline_download): os.create failure while the name of downloaded file is empty ( #7041 )
2024-08-22 00:44:23 +08:00
renovate[bot]
bcb24d61ea
fix(deps): update module github.com/go-resty/resty/v2 to v2.14.0 ( #6981 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-08-22 00:43:35 +08:00
renovate[bot]
db1494455d
fix(deps): update module github.com/charmbracelet/bubbles to v0.19.0 ( #7048 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-08-22 00:43:11 +08:00
renovate[bot]
d9a1809313
fix(deps): update module github.com/charmbracelet/lipgloss to v0.13.0 ( #7049 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-08-22 00:42:50 +08:00
cui fliter
0715198c7f
chore: fix log format typo ( #7056 )
...
Signed-off-by: cuishuang <imcusg@gmail.com >
2024-08-22 00:42:19 +08:00
YangXu
ef5e192c3b
fix(pikpak): webdav upload issue ( #7050 )
2024-08-22 00:35:52 +08:00
YangXu
489b28bdf7
fix(pikpak_share): add captcha_token generation function ( #7045 )
2024-08-22 00:35:14 +08:00
Andy Hsu
18176c659c
ci: add beta tag to newest docker image
2024-08-20 21:36:36 +08:00
renovate[bot]
4c48a816bf
fix(deps): update module github.com/charmbracelet/bubbletea to v0.27.0 ( #7025 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-08-19 23:30:26 +08:00
renovate[bot]
9af7aaab59
fix(deps): update github.com/city404/v6-public-rpc-proto/go digest to 90f8e24 ( #7028 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-08-19 23:30:08 +08:00
renovate[bot]
a54a09314f
fix(deps): update module github.com/aws/aws-sdk-go to v1.55.5 ( #6813 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-08-19 23:29:45 +08:00
renovate[bot]
e2fcd73720
fix(deps): update module github.com/go-webauthn/webauthn to v0.11.1 ( #6901 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-08-19 23:29:24 +08:00
YangXu
e238b90836
fix(pikpak): modify the processing logic of CaptchaToken ( #7024 )
2024-08-18 23:26:29 +08:00
Andy Hsu
69e5b66b50
ci: use changelogithub to generate changelog
2024-08-18 13:57:44 +08:00
Andy Hsu
e8e6d71c41
ci: only one beta release action concurrency [skip ci]
2024-08-18 00:38:27 +08:00
Andy Hsu
4ba476e25c
ci: build beta release
2024-08-18 00:25:16 +08:00
Andy Hsu
e5fe9ea5f6
ci: set changelog for beta release
2024-08-17 23:03:49 +08:00
Andy Hsu
e1906c9312
ci: only release on tag with v prefix
2024-08-17 22:08:29 +08:00
1-1-2
51c95ee117
fix: decode body if enable gzip ( #7003 )
2024-08-15 22:25:53 +08:00
Mmx
1f652e2e7d
ci(docker): using docker build args instead of extra dockerfile for ffmpeg ( #6989 )
...
* build: using docker build arg to determine install ffmpeg or not
* ci: pass build-args to ffmpeg image build step
2024-08-15 21:48:48 +08:00
YangXu
8e6c1aa78d
fix(pikpak): refresh_token cannot be obtained ( #7017 )
2024-08-15 21:46:55 +08:00
renovate[bot]
6bff5b6107
fix(deps): update module golang.org/x/image to v0.19.0 ( #6982 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-08-14 19:35:33 +08:00
Mmx
94937db491
feat(s3): using internal download method in proxy ( #6988 )
2024-08-14 19:34:48 +08:00
Shelton Zhu
3dc250cc37
feat(115): update qrcode source list ( #6996 )
...
* remove mac, linux, window (disabled)
* add alipaymini, wechatmini, qandroid
2024-08-14 19:34:11 +08:00
foxxorcat
9560799175
fix(189pc): InvalidSessionKey ( #6994 close #6992 )
2024-08-14 19:33:15 +08:00
renovate[bot]
8f3c5b1587
fix(deps): update module github.com/meilisearch/meilisearch-go to v0.27.2 ( #6907 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-08-11 11:40:47 +08:00
renovate[bot]
285125d06a
fix(deps): update module github.com/larksuite/oapi-sdk-go/v3 to v3.3.1 ( #6978 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-08-11 11:40:26 +08:00
renovate[bot]
a26185fe05
fix(deps): update github.com/xhofe/go-cache digest to b1a7192 ( #6939 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-08-11 11:40:05 +08:00
renovate[bot]
a7efa3a676
fix(deps): update golang.org/x/exp digest to 0cdaa3a ( #6977 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-08-11 11:39:13 +08:00
renovate[bot]
d596ef5c38
fix(deps): update module github.com/blevesearch/bleve/v2 to v2.4.2 ( #6892 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-08-11 11:38:56 +08:00
renovate[bot]
34e34ef564
fix(deps): update module golang.org/x/time to v0.6.0 ( #6944 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-08-11 11:38:32 +08:00
renovate[bot]
8032d0afb6
fix(deps): update module golang.org/x/oauth2 to v0.22.0 ( #6943 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-08-10 21:01:41 +08:00
renovate[bot]
d3bc8993ee
fix(deps): update module github.com/dlclark/regexp2 to v1.11.4 ( #6958 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-08-10 21:01:05 +08:00
YangXu
62ed169a39
feat: add support for quark tv driver and uc tv driver ( #6959 )
2024-08-10 21:00:43 +08:00
花生瓜子大杏仁
979d0cfeee
fix(chaoxing): upload to ChaoxingxingGroupCloud failed ( #6953 )
...
change the data type on deserializing json
2024-08-10 20:59:49 +08:00
Shelton Zhu
29165d8e60
feat(115): add offline download tool ( close #6888 in #6954 )
2024-08-10 20:59:07 +08:00
YangXu
2d77db6bc2
fix(halalcloud): fix the timeout issue when logging in ( #6960 )
2024-08-10 20:58:10 +08:00
itsHenry
74f8295960
feat: persistant Task ( #6925 close #5313 )
2024-08-07 12:16:21 +08:00
YangXu
f2727095d9
fix(thunder_browser): fix space parameter not handled correctly in some cases & update some parameters ( #6952 )
2024-08-06 22:14:36 +08:00
YangXu
d4285b7c6c
fix(halalcloud): fix some custom fields not taking effect & update appID and appSecret ( #6938 )
2024-08-04 19:03:24 +08:00
Andy Hsu
2e4265a778
feat: deleting folders is not allowed ( close #6933 )
2024-08-04 18:28:35 +08:00
itsHenry
81258d3e8a
feat: invalidate token on logout ( #6923 close #6792 )
2024-08-04 12:32:39 +08:00
Sakana
a6bead90d7
feat: add support for lenovonas_share driver ( #6921 )
2024-08-04 12:28:19 +08:00
j2rong4cn
87caaf2459
fix: out of order when database is not sqlite3 ( #6560 )
2024-08-03 13:11:09 +08:00
Hao Jiakang
af9c6afd25
feat: update alist-org/gofakes3 to v0.0.7 to support create folder in PutObject ( #6880 )
2024-07-27 20:06:05 +08:00
renovate[bot]
8b5727a0aa
fix(deps): update golang.org/x/exp digest to 8a7402a ( #6801 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-26 14:27:56 +08:00
renovate[bot]
aeae47c9bf
fix(deps): update module github.com/larksuite/oapi-sdk-go/v3 to v3.3.0 ( #6812 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-25 20:13:01 +08:00
renovate[bot]
1aff758688
fix(deps): update github.com/alist-org/times digest to efa0c7d ( #6840 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-25 20:11:12 +08:00
foxxorcat
4a42bc5083
fix(lanzou): not find file page param ( #6862 close #6857 )
...
* fix(lanzou):not find file page param
* fix(labzou): change lanzouo.com to lanzoui.com
2024-07-25 20:09:48 +08:00
seiuneko
5fa70e4010
perf(123pan): optimize rate limiting ( #6859 )
...
- eliminating fixed 200 ms delay in getFiles to prevent thread starvation
- allowing cancellation via context to mitigate potential DoS attacks by immediately cancelling excessive requests
2024-07-25 20:08:59 +08:00
Andy Hsu
d4e3355f56
chore: duplicate import typo
2024-07-21 20:50:07 +08:00
Andy Hsu
94f257e557
fix(local): crush on android
...
closes #5874
closes #6567
2024-07-21 20:48:48 +08:00
Andy Hsu
e5f53d6dee
chore: go mod tidy
2024-07-21 20:31:52 +08:00
Andy Hsu
cbd4bef814
fix(123pan): use local sort ( close #6820 )
2024-07-21 20:29:32 +08:00
seiuneko
2d57529e77
fix(123pan): add warning for mismatched file count when listing files ( #6814 )
...
Fixes an issue where using `file_name` order could result in incorrect file counts compared to response fields.
2024-07-20 12:27:18 +08:00
renovate[bot]
2b74999703
fix(deps): update module github.com/alist-org/gofakes3 to v0.0.6 ( #6802 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: David Hao <akang943578@gmail.com >
Co-authored-by: Ke Wang <me@ke.wang >
2024-07-17 14:31:09 +08:00
renovate[bot]
fe081d0ebc
chore(deps): update softprops/action-gh-release action to v2 ( #6786 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-17 12:22:54 +08:00
renovate[bot]
5ef7a27be3
chore(deps): update docker/build-push-action action to v6 ( #6785 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-17 12:22:35 +08:00
renovate[bot]
c9a18f4de6
chore(deps): update benjlevesque/short-sha action to v3 ( #6784 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-17 12:22:17 +08:00
renovate[bot]
f2a24881d0
fix(deps): update module gorm.io/driver/postgres to v1.5.9 ( #6783 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-17 12:21:54 +08:00
Sakura-Byte
cee00005ab
feat: add support for Onedrive Sharelink driver ( #6793 )
...
* feat: add support for Onedrive Sharelink driver
* fix(Onedrive Sharelink): use internal UA
2024-07-17 12:21:06 +08:00
YangXu
049575b5a5
fix(pikpak): captcha_token not refreshing correctly ( #6788 )
2024-07-16 16:00:05 +08:00
YangXu
a93937f80d
fix(pikpak): add captcha_token generation function ( #6775 )
...
closes #6752
closes #6760
2024-07-14 21:07:00 +08:00
renovate[bot]
488ebaa1af
fix(deps): update module github.com/aws/aws-sdk-go to v1.54.19 ( #6170 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-14 21:04:27 +08:00
seiuneko
8278d3875b
fix: ignore os.ErrClosed error on repeated FileStream close operations ( #6762 )
...
Also resolves the issue where S3 PutObject returns a 500 status code.
2024-07-14 20:59:24 +08:00
renovate[bot]
736ba44031
fix(deps): update module github.com/gin-gonic/gin to v1.10.0 ( #6771 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-14 20:58:55 +08:00
renovate[bot]
a6ff6a94df
fix(deps): update module golang.org/x/oauth2 to v0.21.0 ( #6781 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-14 20:58:41 +08:00
renovate[bot]
17f78b948a
fix(deps): update module gorm.io/driver/mysql to v1.5.7 ( #6782 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-14 20:58:20 +08:00
Andy Hsu
fe1040a367
chore(lark): don't use github.com/ipfs/boxo/path
2024-07-14 20:29:23 +08:00
renovate[bot]
83048e6c7c
fix(deps): update module github.com/charmbracelet/lipgloss to v0.12.1 ( #6768 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-14 20:22:50 +08:00
renovate[bot]
9128647970
fix(deps): update module github.com/rclone/rclone to v1.67.0 ( #6780 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-14 19:41:23 +08:00
renovate[bot]
9629705100
fix(deps): update module gorm.io/gorm to v1.25.11 ( #6764 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-14 19:40:46 +08:00
renovate[bot]
cd663f78af
fix(deps): update module github.com/charmbracelet/bubbletea to v0.26.6 ( #6766 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-14 19:36:10 +08:00
renovate[bot]
3c483ace4f
fix(deps): update module gorm.io/driver/sqlite to v1.5.6 ( #6763 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-14 19:09:38 +08:00
renovate[bot]
3e949fcf33
fix(deps): update module github.com/charmbracelet/bubbles to v0.18.0 ( #6765 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-14 19:08:03 +08:00
renovate[bot]
81b0afc349
fix(deps): update module github.com/dlclark/regexp2 to v1.11.2 ( #6769 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-14 19:07:09 +08:00
renovate[bot]
a04da3ec50
fix(deps): update module github.com/gin-contrib/cors to v1.7.2 ( #6770 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-14 19:06:43 +08:00
renovate[bot]
9e0482afbb
fix(deps): update module github.com/larksuite/oapi-sdk-go/v3 to v3.2.8 ( #6756 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-13 19:51:32 +08:00
renovate[bot]
9de40f8976
fix(deps): update module github.com/spf13/cobra to v1.8.1 ( #6757 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-13 19:50:31 +08:00
Andy Hsu
ba4df55d6e
fix(deps): upgrade wopan-sdk-go ( close #6663 )
2024-07-13 19:49:45 +08:00
renovate[bot]
de8d2d6dc0
fix(deps): update module github.com/go-resty/resty/v2 to v2.13.1 ( #6759 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-13 19:40:57 +08:00
renovate[bot]
65b423c503
fix(deps): update github.com/city404/v6-public-rpc-proto/go digest to 9a9b82a ( #6753 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-13 17:42:25 +08:00
renovate[bot]
ff20b5a6fb
fix(deps): update module github.com/baidubce/bce-sdk-go to v0.9.184 ( #6754 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-13 17:29:05 +08:00
renovate[bot]
37d86ff55c
fix(deps): update module github.com/minio/sio to v0.4.0 ( #6446 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-13 17:28:25 +08:00
renovate[bot]
4e1c67617f
fix(deps): update module github.com/go-webauthn/webauthn to v0.10.2 ( #6310 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-13 17:28:13 +08:00
renovate[bot]
9bc2d340a2
fix(deps): update golang.org/x/exp digest to 46b0784 ( #6486 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-13 17:27:49 +08:00
renovate[bot]
60fc416d8f
fix(deps): update module google.golang.org/grpc to v1.64.1 [security] ( #6728 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-13 17:05:55 +08:00
renovate[bot]
99c9632cdc
fix(deps): update module github.com/gin-contrib/cors to v1.6.0 [security] ( #6708 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-13 17:05:08 +08:00
renovate[bot]
2fb772c888
fix(deps): update module github.com/meilisearch/meilisearch-go to v0.27.0 ( #6436 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-13 17:04:42 +08:00
renovate[bot]
87192ad07d
fix(deps): update module github.com/blevesearch/bleve/v2 to v2.4.1 ( #6542 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-13 17:04:18 +08:00
renovate[bot]
3746831384
chore(deps): update actions-cool/issues-helper action to v3.6.0 ( #6513 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-13 17:03:56 +08:00
renovate[bot]
80d4fbb870
fix(deps): update module github.com/gorilla/websocket to v1.5.3 ( #6653 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-13 17:03:20 +08:00
renovate[bot]
92c65b450e
fix(deps): update module golang.org/x/image to v0.18.0 [security] ( #6658 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-13 17:02:52 +08:00
renovate[bot]
213fc0232e
fix(deps): update module github.com/sheltonzhu/115driver to v1.0.25 ( #6447 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-13 17:02:31 +08:00
Mmx
33be44adad
chore: update polyfill URL due to service unavailability and supply chain attack risk ( #6740 )
2024-07-11 18:13:22 +08:00
Hao Jiakang
ca0d66bd01
fix: S3 Implementation bug & Support AWS Signature V2 ( #6683 )
...
* Fix: when S3 PutObject with objectName contains /, aliyundriveopen failed due to KeyNotFound, make dir to fix this.
(cherry picked from commit eb24f45771 )
* Upgrade gofakes3 to v0.0.5, support AWS Signature V2
(cherry picked from commit 3218d7cf2c )
---------
Co-authored-by: David Hao <akang943578@gmail.com >
2024-07-07 16:50:40 +08:00
Muione
3a3d0adfa0
feat: add pikpak offline download function ( #6648 )
...
* add pikpak offline download function
* 完善PikPak离线下载功能
* 删除多余的代码
* add task cache to avoid too many requests about API
* 优化Status函数
* 完善所有功能,目前测试无BUG
* 减少缓存时间,优化添加离线任务的参数
2024-07-07 16:50:05 +08:00
YangXu
ca30849e24
feat: add support for halalcloud driver ( #6696 )
2024-07-07 13:20:34 +08:00
YangXu
316f3569a5
feat(thunderBrowser): add automatically generate UserAgent ( #6692 )
2024-07-07 13:19:19 +08:00
lany
2705877235
fix(iLanZou): resolve resource access issue ( #6673 )
...
* fix(drivers/iLanZou): resolve resource access issue on iLanZou driver mount
The driver failed to mount due to incorrect URL parameter ordering which the backend did not accept
This commit reorders the parameters to meet the backend's expectations
and ensures successful mounting of the iLanZou driver.
Closes #6271 , Closes #6415
* fix(drivers/iLanZou): Fixed the error ID number returned when creating a folder
Closes #6610 , Closes #6333
---------
Co-authored-by: maye174 <96584640+maye174@users.noreply.github.com >
2024-07-02 15:30:00 +08:00
YangXu
432901db5a
feat(thunderx): generate UserAgent automatically ( #6664 )
2024-07-02 14:59:07 +08:00
XZB-1248
227d034db8
feat(sftp): add suport for passphrase of private key ( #6624 close #6592 )
...
Co-authored-by: XZB <i@1248.ink >
2024-06-28 23:50:00 +08:00
快乐的老鼠宝宝
453d7da622
docs: change outdated repository link to alist-org ( #6007 )
2024-06-28 23:47:21 +08:00
j2rong4cn
29fe49fb87
fix(alias): Support forced refresh of file list ( #6562 )
2024-06-16 16:59:10 +08:00
Toby Shi
fcf2683112
feat(ftp): custom encoding ( #6528 close #1260 )
2024-06-16 16:58:02 +08:00
Mmx
3a996a1a3a
build: update sqlite driver ( #6599 )
...
* build: update sqlite driver
* build: remove docker build sqlite-compatible commands
2024-06-16 16:56:45 +08:00
j2rong4cn
1b14d33b9f
fix(alist_v3): use net/http for uploading ( #6616 close #6613 )
2024-06-16 16:55:49 +08:00
YangXu
639b7817bf
feat: add supports for thunder_browser driver ( #6529 close #6526 )
...
* feat: add supports for thunderX driver
* fix: Fix the bug where UserID is not passed correctly
* feat: add support for thunder_browser driver
2024-05-27 21:34:26 +08:00
foxxorcat
163af0515f
fix(pikpak): refresh_token contention ( #6501 close #6511 )
2024-05-27 21:31:59 +08:00
Andy Hsu
8e2b9c681a
fix(ilanzou): upgrade devVersion
2024-05-23 20:05:00 +08:00
foxxorcat
0a8d710e01
fix(mopan): upgrade version ( #6500 )
2024-05-23 18:56:17 +08:00
Andy Hsu
d781f7127a
fix: add lark to windows target
2024-05-23 11:52:37 +08:00
WintBit
85d743c5d2
feat: add support for lark driver ( #6475 )
...
* feat: lark storage driver
* feat: external view mode
* limit lark targets
* fix: missing package
---------
Co-authored-by: Andy Hsu <i@nn.ci >
2024-05-22 23:31:58 +08:00
j2rong4cn
5f60b51cf8
feat: add proxy_range option for 139Yun Alias AList V3 ( #6496 )
2024-05-22 23:31:42 +08:00
foxxorcat
7013d1b7b8
fix: pikpak captcha_required ( #6497 )
...
* fix: pikpak captcha_required
* fix(pikpak_share): video download
2024-05-22 23:29:29 +08:00
Kuingsmile
9eec872637
feat(mega): add 2FA support ( #6473 )
...
* feat(mega): add support for two-factor authentication in Mega driver #6226
* feat(mega): remove debug print statement in Mega driver Init function
* feat(mega): add help message for new field
2024-05-22 23:28:14 +08:00
j2rong4cn
037850bbd5
feat(alias): support Rename and Remove ( #6478 )
...
* feat(alias): support `Rename` and `Remove`
* fix(alias): `autoFlatten` not updated after editing
* feat(alias): add `protect_same_name` option
2024-05-22 09:27:48 +08:00
YangXu
bbe3d4e19f
feat: add supports for thunderX driver ( #6464 )
2024-05-21 23:24:28 +08:00
Sakura-Byte
78a9676c7c
feat(alist_v3): Optional pass UA to upstream remote ( #6443 )
...
* fix(115): Support 115 302 redirect while getting link under (nested) alist_v3 remote
* chore: simplify logic
* chore: simplify logic
* use internal UA
* add option to set if the user want their ua be passed to upstream
2024-05-12 17:34:36 +08:00
Andy Hsu
8bf93562eb
fix(baidu): unknown type for custom upload part size ( close #6435 )
2024-05-09 14:54:53 +08:00
George Chen
b57afd0a98
fix(sftp): reconnect to server when connection was broken ( #6416 close #6403 )
...
* fix(sftp): reconnect to server when conn was broken (close #6403 )
* fix(sftp): fix typo
---------
Co-authored-by: George Chen <gchen@isimarkets.com >
2024-05-09 14:53:25 +08:00
liuycy
f261ef50cc
feat: add supports for netease music driver ( #6423 close #5364 )
2024-05-09 14:29:35 +08:00
itsHenry
7e7b9b9b48
feat(s3): server support generated url request ( #6431 )
2024-05-09 14:28:59 +08:00
meozky
2313213f59
fix(189pc): FamilyID range overflow ( #6427 close #6426 )
2024-05-09 14:23:12 +08:00
Moraxyc
5f28532423
fix(test): ensure setupStorages is executed once ( #6422 )
...
In TestGetStorageVirtualFilesByPath() and TestGetBalancedStorage(), setupStorages() was being called twice, leading to a "UNIQUE constraint failed" error.
2024-05-09 14:22:19 +08:00
Andy Hsu
4cbbda8832
fix(baidu): custom upload part size ( close #5757 )
2024-05-02 22:30:00 +08:00
Mmx
7bf5014417
ci: cache musl library in docker build workflow ( #6392 )
...
* ci: add musl libs into action cache
* build: update Dockerfile.ci
2024-05-02 22:28:13 +08:00
Shelton Zhu
b704bba444
fix(115): disable NoOverwriteUpload ( #6409 close #6251 )
...
closed #6251
2024-05-02 22:27:55 +08:00
potoo
eecea3febd
fix(onedrive): fix Ctime/Mtime ( #6397 )
2024-05-02 22:27:31 +08:00
Andy Hsu
0e246a7b0c
chore: replace link of vidhub [skip ci]
2024-04-30 14:22:26 +08:00
Mmx
b95df1d745
perf: use io copy with buffer pool ( #6389 )
...
* feat: add io methods with buffer
* chore: move io.Copy calls to utils.CopyWithBuffer
2024-04-25 20:11:15 +08:00
potoo
ec08ecdf6c
fix(baidu_netdisk): cached Ctime/Mtime ( #6373 close #6370 )
...
(cherry picked from commit 23542541e4f343d484de1f83ee5c928d2ab6753c)
2024-04-25 20:08:20 +08:00
potoo
479fc6d466
fix(webdav): make sure Mtime after Ctime ( #6372 close #6371 )
...
* fix(server/webdav) make sure Mtime >= Ctime
* fix(server/webdav) avoid variable 'stream' collides with imported package name
2024-04-24 17:13:30 +08:00
Xiaoran Studio
32ddab9b01
feat(123_share): add access token ( #6357 )
2024-04-24 14:54:01 +08:00
jack roble
0c9dcec9cd
fix: init storages in order ( #6346 )
2024-04-19 17:22:16 +08:00
tukipona
793a4ea6ca
fix(cloudreve): add domain to the download url if not exists ( #6339 close #6265 )
...
* fix: correct the download url got by Cloudreve driver
* fix: add an condition to the correction
2024-04-12 21:45:16 +08:00
tukipona
c3c5181847
feat(Seafile): add token login ( #6324 close #5302 )
2024-04-10 21:50:30 +08:00
Mix
cd5a8a011d
fix: typo about env of Meilisearch ( #6316 )
2024-04-08 18:35:23 +08:00
itsHenry
1756036a21
fix(authn): subfolder api is considered as a wrong origin( closes #6294 in #6301 )
2024-04-03 14:33:19 +08:00
itsHenry
58c3cb3cf6
fix(s3): don't bind s3 port if s3 is not enabled ( #6291 )
2024-04-03 10:09:48 +08:00
foxxorcat
d8e190406a
feat(189pc): add family transfer upload ( #6288 )
...
* feat(189pc): add family transfer upload
* fix(189):family transfer file delete
2024-04-02 16:51:02 +08:00
guangwu
2880ed70ce
fix: some typos ( #6283 )
...
Signed-off-by: guoguangwu <guoguangwug@gmail.com >
2024-04-02 16:50:30 +08:00
二丫讲梵
0e86036874
fix(doge): reget client after refresh session ( #6277 )
2024-03-29 14:56:49 +08:00
NewbieOrange
e37465e67e
feat(crypt): force stream upload for supported drivers ( #6270 )
2024-03-29 14:42:01 +08:00
jwcesign
d517adde71
docs: use width instead of height for image in Readme ( #6282 )
...
* Update README.md
* Update README_cn.md
* Update README_ja.md
2024-03-29 14:40:43 +08:00
二丫讲梵
8a18f47e68
fix(doge): the temporary access key is only valid for two hours ( #6273 )
...
* feat: add doge driver
* doc: 补充readme文档
* fix: 对齐meta信息
* fix: 调整结构体名字,与driver保持一致
* perf: merge to s3
* Rename goge.go to doge.go
* fix: 解决多吉云临时秘钥两个小时过期的问题
* fix: 定时任务在Drop中Stop
---------
Co-authored-by: Andy Hsu <i@nn.ci >
2024-03-27 14:22:26 +08:00
二丫讲梵
cf08aa3668
feat: add doge driver ( #6201 )
...
* feat: add doge driver
* doc: 补充readme文档
* fix: 对齐meta信息
* fix: 调整结构体名字,与driver保持一致
* perf: merge to s3
* Rename goge.go to doge.go
---------
Co-authored-by: Andy Hsu <i@nn.ci >
2024-03-25 22:53:44 +08:00
itsHenry
9c84b6596f
feat: stand-alone port s3 server ( #6242 )
...
* feat: single port s3 server
* fix: unable to PUT files if not in root dir
2024-03-24 15:16:00 +08:00
健忘症
022e0ca292
fix(139): incorrect refreshTokenResp serialization ( #6248 )
2024-03-24 11:04:55 +08:00
陈佳
88947f6676
fix(ipfs): url escape filename ( #6245 close #6027 )
...
This resolves #6027
2024-03-24 11:03:18 +08:00
Mmx
b07ddfbc13
fix(ci): replace dockerfile tag step may have no effect ( #6206 )
2024-03-13 15:11:21 +08:00
Andy Hsu
9a0a63d34c
fix(ilanzou): add referer to request header ( close #6171 )
2024-03-11 20:30:22 +08:00
健忘症
195c869272
feat(139): refresh token periodically ( #6146 )
...
* 139定时刷新token
* fix build fail
2024-03-11 20:10:26 +08:00
itsHenry
bdfc1591bd
fix: webauthn logspam ( #6181 )
2024-03-10 16:48:25 +08:00
renovate[bot]
82222840fe
fix(deps): update golang.org/x/exp digest to 814bf88 ( #6144 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-09 14:58:36 +08:00
foxxorcat
45e009a22c
fix(mopan): upload error ( close #6158 in #6166 )
2024-03-09 14:54:49 +08:00
mlkt
ac68079a76
feat(seafile): improve features, support access to encrypted library, etc ( #6160 )
2024-03-08 15:33:42 +08:00
Andy Hsu
2a17d0c2cd
fix: settings reset to default after restart if set to empty ( close #6143 )
2024-03-05 16:29:26 +08:00
renovate[bot]
6f6a8e6dfc
fix(deps): update github.com/t3rm1n4l/go-mega digest to d494b6a ( #6081 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-04 15:12:22 +08:00
Andy Hsu
7d9ecba99c
fix: add m3u8 to default video types ( close #6142 )
2024-03-04 14:26:00 +08:00
Sukka
ae6984714d
fix: remove default polyfill ( #6130 close #6100 )
...
* refactor(setting): replace `polyfill.io``
* fix: remove default polyfill
---------
Co-authored-by: Andy Hsu <i@nn.ci >
2024-03-02 15:36:28 +08:00
itsHenry
d0f88bd1cb
feat: s3 server support ( #6088 close #5186 )
...
Currently tested: List, Get, Remove
2024-03-02 15:35:10 +08:00
wolfsilver
f8b1f87a5f
fix: support for Microsoft WebDAV ( #6133 close #6104 )
...
* Add support for Microsoft WebDAV
* add import
2024-03-02 14:59:55 +08:00
Kevin Z
71e4e1ab6e
fix(chaoxing): json cannot unmarshal content.uploadDate ( close #6119 in #6124 )
2024-03-01 13:37:09 +08:00
Andy Hsu
7e6522c81e
ci: build ffmpeg image with dev version
2024-02-24 18:10:45 +08:00
Andy Hsu
94a80bccfe
fix(feiji): unable to get link ( close #6082 )
2024-02-24 18:04:08 +08:00
renovate[bot]
e66abb3f58
fix(deps): update module github.com/aws/aws-sdk-go to v1.50.24 ( #5873 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-23 20:56:14 +08:00
Andy Hsu
742335f80e
fix: don't push docker on pr due to security
2024-02-23 15:42:52 +08:00
不插电
f1979a8bbc
feat(search): search with meilisearch ( #6060 )
...
* feat(search): search with meilisearch.
* feat(search): meilisearch supports auto update.
* chores: remove utils.Log.
* fix(search): the null pointer caused by deleting non-existing file/folder indexes.
---------
Co-authored-by: Andy Hsu <i@nn.ci >
2024-02-23 15:37:40 +08:00
Mars160
1f835502ba
feat: support customize dsn for mysql and pg ( #6031 )
...
* support for unixsocket to connect to mysql
* feat: customize dsn for mysql and pg
---------
Co-authored-by: Andy Hsu <i@nn.ci >
2024-02-23 15:28:48 +08:00
Andy Hsu
424ab2d0c0
ci: remove docker latest tag on dev
2024-02-21 15:50:05 +08:00
Andy Hsu
858ba19670
ci: also push docker to hub for pr
2024-02-21 14:58:45 +08:00
Mmx
0c7e47a76c
feat: add docker image with pre-installed ffmpeg ( #6054 )
...
* build: add dockerfile for ffmpeg version
* ci: add docker image with ffmpeg release
* fix: donnot push on docker build test
2024-02-21 14:04:22 +08:00
不插电
53926d5cd0
fix(search): duplicate folder on autoupdate ( #6063 close #6062 )
...
* fix(search): the problem of not returning in time when index does not support auto update.
* fix(search): the problem of duplicate indexing of folders.
2024-02-20 19:12:07 +08:00
Andy Hsu
47f4b05517
feat(sftp): allow ignore symlink error ( close #6026 )
2024-02-15 18:54:19 +08:00
123pan
6d85f1b0c0
fix(123): User-Agent and rate limit ( #6012 )
...
* 修复标签
* 新增接口限流器。防止云盘云端把Alist当做攻击,封禁Alist客户端
---------
Co-authored-by: 风信子 <fengxinzi@xaidc.com >
2024-02-09 14:45:44 +08:00
ArcticLampyrid
e49fda3e2a
fix: WebDAV's creation date should use RFC3339 format ( #6015 close #5878 )
2024-02-08 19:22:29 +08:00
Andy Hsu
da5e35578a
fix: embed all files of dist
2024-02-03 19:44:50 +08:00
foxxorcat
812f58ae6d
fix(mopan): client version is too low ( #5987 )
...
* fix(mopan): download err ` client version is too low`
* feat(mopan):support sms login
* refactor(quqi): upload use s3
2024-02-02 21:04:43 +08:00
睿音
9bd3c87bcc
fix(ldap): exiting by peer exception occurred during the TLS connection( #5977 )
2024-02-01 10:43:08 +08:00
Jing
c82866975e
fix: error on repeated reading static ( #5957 )
...
* Update static.go
* rm initial value of static
---------
Co-authored-by: Andy Hsu <i@nn.ci >
2024-01-30 21:21:53 +08:00
shouko
aef952ae68
feat(dropbox): add root_namespace_id to access teams folder ( #5929 )
...
* feat(dropbox): add root_namespace_id to access teams folder
* fix(dropbox): get_current_account API request
* feat(dropbox): extract root_namespace_id properly
* style: format code
2024-01-24 17:03:50 +08:00
Echo Response
9222510d8d
feat(quqi): add download link with cdn ( #5938 )
...
* feat(quqi): add download link by cdn
* fix(quqi): cookie error when login with phone number
2024-01-24 16:47:49 +08:00
Echo Response
d88b54d98a
fix(quqi): empty file link for non vip user ( #5926 )
...
* fix(quqi): error returned when uploading a file that existed
* fix empty download link for no vip user
* fix cannot parse request result
---------
Co-authored-by: Andy Hsu <i@nn.ci >
2024-01-21 15:28:52 +08:00
Echo Response
85a28d9822
fix(quqi): error on uploading an existing file ( #5920 )
2024-01-20 21:22:50 +08:00
Andy Hsu
4f7761fe2c
fix: set progress to 100 when it's NaN ( close #5906 )
2024-01-20 13:06:46 +08:00
Echo Response
a8c900d09e
fix(quqi): file extension duplication when rename and some missing form parameters ( #5910 )
...
* feat: add `quqi` driver
* change signature of request function
* specific header for every storage
* todo: real upload
* fix upload method
* fix incorrect parameters for some request function calls
* refine some form parameters to avoid potential problems
* fix file extension duplication in rename function
* improve the error message in login function
---------
Co-authored-by: Andy Hsu <i@nn.ci >
2024-01-19 13:57:31 +08:00
None
8bccb69e8d
fix(google_photo): add support for streaming video, range requests ( #5905 )
...
* Update util.go
Return mediaMetadata
* Update driver.go
Using width and height
2024-01-19 13:02:05 +08:00
Andy Hsu
0f29a811bf
fix: s3 upload exceeded total allowed configured MaxUploadParts ( close #5909 )
2024-01-19 12:05:10 +08:00
Echo Response
442c2f77ea
feat: add quqi driver ( #5899 close #5251 )
...
* feat: add `quqi` driver
* change signature of request function
* specific header for every storage
* todo: real upload
* fix upload method
* fix incorrect parameters for some request function calls
---------
Co-authored-by: Andy Hsu <i@nn.ci >
2024-01-19 10:59:56 +08:00
Andy Hsu
ce06f394f1
fix: missing salt of guest user ( close #5737 )
2024-01-17 14:15:34 +08:00
Shelton Zhu
e3e790f461
feat(115): add QR code source selection ( #5891 )
...
* feat(115): add QR code source selection
closed #5386
* feat(115_share): add QR code source selection
2024-01-16 15:59:44 +08:00
SoY0ung
f0e8c0e886
fix(chaoxing): JSON parsing error in content field ( #5877 )
...
* fix(chaoxing):fix JSON parsing error in `content` field
* fix(chaoxing): optimizing `UnmarshalJSON` implementation
* fix(chaoxing): use `objectID` when is empty
2024-01-14 12:53:31 +08:00
renovate[bot]
86b35ae5cf
fix(deps): update module golang.org/x/oauth2 to v0.16.0 ( #5865 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-12 11:54:35 +08:00
renovate[bot]
4930f85b90
fix(deps): update module golang.org/x/crypto to v0.18.0 ( #5863 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-11 20:56:19 +08:00
renovate[bot]
85fe65951d
fix(deps): update golang.org/x/exp digest to 0dcbfd6 ( #5862 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-11 20:39:16 +08:00
renovate[bot]
1381e8fb27
fix(deps): update module github.com/aws/aws-sdk-go to v1.49.18 ( #5848 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-11 20:24:20 +08:00
Andy Hsu
292bbe94ee
fix(feijipan): incorrect address of download link ( close #5859 )
2024-01-11 10:16:14 +08:00
Andy Hsu
bb6747de4e
docs: add feijipan to Readme
2024-01-11 10:15:16 +08:00
Andy Hsu
555ef0eb1a
feat: add feijipan driver ( close #5856 )
2024-01-10 16:58:10 +08:00
秋秋
bff56ffd0f
ci: add android target to release build ( #5844 )
...
* build: build android
Signed-off-by: lateautumn233 <lateautumn233@foxmail.com >
* ci: add `android` target to release build
Signed-off-by: lateautumn233 <lateautumn233@foxmail.com >
---------
Signed-off-by: lateautumn233 <lateautumn233@foxmail.com >
2024-01-09 19:00:11 +08:00
Andy Hsu
34b73b94f7
feat(local): allow specifying the recycle bin path ( close #5832 )
2024-01-09 18:51:21 +08:00
renovate[bot]
434892f135
fix(deps): update module github.com/aliyun/aliyun-oss-go-sdk to v3 ( #5800 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-09 17:14:31 +08:00
Mmx
e6e2d03ba1
perf: make docker release 10 times faster ( #5803 )
...
* build: improve multistage docker build
* build: add dockerfile for ci
* build: add BuildDockerMultiplatform function in build.sh for ci
* ci: change build method
* build: add missing mod download command to the Dockerfile
* build: revert changes made ffmpeg installed
* build: use musl build for docker release
* ci: apply to dev version
* fix: don't login on pr
* fix: don't build_docker_with_aria2 on pr
---------
Co-authored-by: Andy Hsu <i@nn.ci >
2024-01-05 15:52:30 +08:00
renovate[bot]
28bb3f6310
fix(deps): update module golang.org/x/image to v0.15.0 ( #5825 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-05 15:35:41 +08:00
renovate[bot]
fb729c1846
fix(deps): update module github.com/aws/aws-sdk-go to v1.49.15 ( #5816 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-05 15:34:16 +08:00
Rammiah
4448e08f5b
fix(net): Buf use Mutex ( #5823 )
...
Co-authored-by: Andy Hsu <i@nn.ci >
2024-01-05 12:20:08 +08:00
Andy Hsu
8020d42b10
fix: panic due to send on closed channel ( close #5729 )
2024-01-05 11:41:53 +08:00
Andy Hsu
9d5fb7f595
feat: add ILanzou driver ( #5810 close #5715 )
...
* wip: basic request and login
* feat: impl list
* feat: impl link
* feat: impl mkdir, move, rename, delete
* feat: impl upload
* docs: add iLanzou to readme
2024-01-04 22:03:15 +08:00
Andy Hsu
126cfe9f93
fix(vtencent): only show 50 files ( close #5805 )
2024-01-04 21:54:39 +08:00
renovate[bot]
fd96a7ccf4
fix(deps): update golang.org/x/exp digest to be819d1 [skip ci] ( #5807 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-04 21:02:22 +08:00
renovate[bot]
03b9b9a119
chore(deps): update docker/setup-qemu-action action to v3 ( #5798 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-03 14:51:54 +08:00
renovate[bot]
03dbdfc0dd
chore(deps): update docker/setup-buildx-action action to v3 ( #5797 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-03 14:46:37 +08:00
renovate[bot]
2683621ed7
chore(deps): update docker/metadata-action action to v5 [skip ci] ( #5795 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-03 14:46:09 +08:00
renovate[bot]
be537aa49b
chore(deps): update docker/login-action action to v3 [skip ci] ( #5794 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-03 14:45:53 +08:00
renovate[bot]
6f742a68cf
chore(deps): update docker/build-push-action action to v5 [skip ci] ( #5793 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-03 14:45:32 +08:00
renovate[bot]
97a4b8321d
chore(deps): update actions/upload-artifact action to v4 ( #5792 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-03 14:44:59 +08:00
renovate[bot]
8c432d3339
chore(deps): update actions/checkout action to v4 ( #5788 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-02 17:43:22 +08:00
renovate[bot]
ff25e51f80
chore(deps): update actions/setup-go action to v5 ( #5789 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-02 17:43:08 +08:00
renovate[bot]
88831b5d5a
fix(deps): update module golang.org/x/oauth2 to v0.15.0 [skip ci] ( #5785 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-02 15:44:45 +08:00
renovate[bot]
b97c9173af
fix(deps): update module golang.org/x/image to v0.14.0 [skip ci] ( #5784 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-02 15:42:38 +08:00
renovate[bot]
207c7e05fe
fix(deps): update module github.com/spf13/cobra to v1.8.0 [skip ci] ( #5783 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-02 15:42:17 +08:00
renovate[bot]
7db27e6da8
fix(deps): update module golang.org/x/time to v0.5.0 [skip ci] ( #5786 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-02 15:41:52 +08:00
foxxorcat
b5cc90cb5a
fix(115): support null UserAgent ( #5787 )
2024-01-02 15:41:32 +08:00
renovate[bot]
8a427ddc49
fix(deps): update module github.com/go-webauthn/webauthn to v0.10.0 [skip ci] ( #5782 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-02 14:54:38 +08:00
renovate[bot]
c36644a172
fix(deps): update module github.com/go-resty/resty/v2 to v2.11.0 ( #5781 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-02 14:27:08 +08:00
renovate[bot]
45b1ff4a24
fix(deps): update module github.com/charmbracelet/bubbles to v0.17.1 [skip ci] ( #5775 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-02 14:24:56 +08:00
renovate[bot]
a4a9675616
fix(deps): update module github.com/charmbracelet/bubbletea to v0.25.0 [skip ci] ( #5776 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-02 14:12:54 +08:00
renovate[bot]
8531b23382
fix(deps): update module github.com/deckarep/golang-set/v2 to v2.6.0 [skip ci] ( #5778 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-02 14:12:33 +08:00
renovate[bot]
2c15349ce4
fix(deps): update module github.com/gin-contrib/cors to v1.5.0 [skip ci] ( #5779 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-02 14:12:13 +08:00
renovate[bot]
5afd65b65c
fix(deps): update module github.com/aliyun/aliyun-oss-go-sdk to v2.2.10+incompatible ( #5447 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-01 22:19:25 +08:00
renovate[bot]
e2434029f9
fix(deps): update module github.com/maruel/natural to v1.1.1 [skip ci] ( #5771 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-01 22:18:51 +08:00
renovate[bot]
bdf7abe717
fix(deps): update module github.com/aws/aws-sdk-go to v1.49.13 [skip ci] ( #5774 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-01 22:18:13 +08:00
renovate[bot]
2c8d003c2e
fix(deps): update module github.com/djherbis/times to v1.6.0 [skip ci] ( #5422 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-01 22:17:44 +08:00
renovate[bot]
a006f57637
fix(deps): update module google.golang.org/appengine to v1.6.8 [skip ci] ( #5772 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-01 21:42:43 +08:00
renovate[bot]
be5d94cd11
fix(deps): update module golang.org/x/crypto to v0.17.0 [security] ( #5768 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-01 21:42:03 +08:00
renovate[bot]
977b3cf9ab
fix(deps): update golang.org/x/exp digest to 02704c9 [skip ci] ( #5769 )
...
* fix: missing modified in validate regexp
* fix(deps): update golang.org/x/exp digest to 02704c9
---------
Co-authored-by: Andy Hsu <i@nn.ci >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-01 19:57:04 +08:00
renovate[bot]
182aacd309
fix(deps): update module github.com/gorilla/websocket to v1.5.1 [skip ci] ( #5770 )
...
* fix: missing modified in validate regexp
* fix(deps): update module github.com/gorilla/websocket to v1.5.1
---------
Co-authored-by: Andy Hsu <i@nn.ci >
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-01-01 19:55:31 +08:00
Andy Hsu
57bac9e0d2
fix: some missing regexp lib modified
2024-01-01 18:44:59 +08:00
Andy Hsu
478470f609
feat!: replace regex package ( close #5755 )
2023-12-31 15:03:25 +08:00
xiaofei
6b8f35e7fa
feat(alipan): replace domain ( #5751 close #5747 )
2023-12-31 14:29:14 +08:00
Guobao
697a0ed2d3
feat: add ldap login support ( #5706 )
...
* feat: add ldap login support
* fix: ldap permission config group
2023-12-31 13:46:13 +08:00
foxxorcat
299bfb4d7b
feat(115): support 302 redirect ( #5733 )
2023-12-25 11:28:57 +08:00
Feng.YJ
3eca38e599
feat: add support for client-side discoverable WebAuthn login ( #5722 )
...
* Add support for client-side discoverable in begin login
Use `(*webauthn.WebAuthn).BeginDiscoverableLogin()` to handle client-side discoverable login.
* Upgrade github.com/go-webauthn/webauthn to v0.10.0
Upgrade [go-webauthn/webauthn](github.com/go-webauthn/webauthn) library to latest.
The convenient finish login function (as FinishDiscoverableLogin) for discoverable functions has been added in the v0.9.0. [^1]
---
[^1]: https://github.com/go-webauthn/webauthn/releases/tag/v0.9.0
* Add support for client-side discoverable in validating login
Use `(*webauthn.WebAuthn).FinishDiscoverableLogin()` to handle client-side discoverable login.
> **NOTE**:
- The first param `rawID` in this callback function is unnecessary to check, it's handled by the third-party webauthn library later.
- `userHandle` param is equal to the ID returned by (User).WebAuthnID() function.
2023-12-24 15:21:17 +08:00
Andy Hsu
ab216ed170
fix(onedrive): rename object in root folder ( close #5468 )
2023-12-17 22:58:26 +08:00
Andy Hsu
e91c42c9dc
fix(alist_v3): timeout on upload ( close #5465 )
2023-12-17 15:45:27 +08:00
tonsr
54f7b21a73
fix(123): api sign error ( #5689 close #5083 )
...
* fix:123 driver connect error
* feat: calculate sign with pure go
---------
Co-authored-by: tangminghao <tangminghao@hxzn.com >
Co-authored-by: Andy Hsu <i@nn.ci >
2023-12-17 15:21:32 +08:00
linepro6
de56f926cf
feat(139): support new personal cloud api ( #5690 )
...
Co-authored-by: Andy Hsu <i@nn.ci >
2023-12-16 16:56:45 +08:00
Andy Hsu
6d4ab57a0e
build: enable cgo for win/arm64 [skip ci]
2023-12-15 18:22:16 +08:00
Andy Hsu
734d4b0354
ci: add darwin/arm64 target to dev build
2023-12-15 17:07:02 +08:00
foxxorcat
74b20dedc3
fix: retry multipart file reset ( #5693 close #5628 )
2023-12-14 21:31:36 +08:00
Andy Hsu
83c2269330
fix(qbit): seed time doesn't take effect ( close #5663 )
2023-12-11 15:20:29 +08:00
Andy Hsu
296be88b5f
fix: incorrect key of oidc username ( close #5670 )
2023-12-10 13:17:56 +08:00
Andy Hsu
026e944cbb
feat: add task info to resp of add task api ( close #5579 )
2023-12-03 14:44:20 +08:00
Andy Hsu
8bdfc7ac8e
fix(offline_download): don't wait for transfer task ( close #5595 )
2023-12-03 14:20:01 +08:00
Andy Hsu
e4a6b758dc
docs: remove jetbrains in special sponsor [skip ci]
2023-12-03 12:57:35 +08:00
Andy Hsu
66b7fe1e1b
fix: task cannot be retried manually ( close #5599 )
2023-11-30 20:44:05 +08:00
Andy Hsu
f475eb4401
fix: incorrect go-version on auto-lang
2023-11-30 12:37:25 +08:00
Andy Hsu
b99e709bdb
fix(teambition): international upload ( close #5360 )
2023-11-29 22:51:03 +08:00
Kuingsmile
f4dcf4599c
fix: add error handling for webdav mkcol according to RFC 4918 ( #5581 )
...
* feat: add error handling for mkcol method in webdav.go
* feat: update rfc reference
* fix: fix issue with uncorrect error handling
2023-11-27 18:53:52 +08:00
Andy Hsu
54e75d7287
feat: enabled sign_all by default
2023-11-25 20:27:23 +08:00
Andy Hsu
d142fc3449
ci: upgrade golang version
2023-11-25 16:09:38 +08:00
Andy Hsu
f23567199b
chore: go mod tidy
2023-11-25 15:12:25 +08:00
Andy Hsu
1420492d81
ci: go get after replacing go mod
2023-11-25 15:11:29 +08:00
Andy Hsu
b88067ea2f
ci: fix docker build error: 'pread64' undeclared here
2023-11-25 14:42:33 +08:00
Andy Hsu
d5f381ef6f
chore: upgrade golang version
2023-11-25 14:22:13 +08:00
Andy Hsu
68af284dad
fix: task popped but not execute ( close #5565 )
2023-11-25 14:15:17 +08:00
Andy Hsu
d26887d211
fix: content-type conflicts with #5420
2023-11-24 19:22:19 +08:00
Andy Hsu
3f405de6a9
feat: customize allow origins, headers and methods
2023-11-24 19:18:34 +08:00
Andy Hsu
6100647310
fix: reflected XSS vulnerability plist api
2023-11-24 16:46:48 +08:00
Andy Hsu
34746e951c
feat(offline_download): add simple http tool ( close #4002 )
2023-11-24 16:26:05 +08:00
Andy Hsu
b6134dc515
feat: allow keep files in offline download ( close #4678 )
2023-11-24 15:02:36 +08:00
Andy Hsu
d455a232ef
fix(vtencent): hack file with size 0 but actual size is not 0
...
- allow use another proxy for vtencent and chaoxing
2023-11-23 22:35:07 +08:00
textrix
fe34d30d17
feat(crypt): add show hidden option ( #5554 )
2023-11-23 21:50:16 +08:00
BlueSkyXN
0fbb986ba9
fix(aliyundrive_open): mitigation measures for 15-minute limit ( #5560 close #5547 )
...
* fix(aliyundrive_open):Mitigation measures for AliOpen's 15-minute limit.
I conducted small-scale tests, which seem to have no significant negative impact. If the 15-minute issue still occurs, further measures will be needed. Methods like local proxy can be attempted.
* chore(aliyundrive_open): change cache of the link to 1 minute
---------
Co-authored-by: Andy Hsu <i@nn.ci >
2023-11-23 21:49:16 +08:00
zhangxiang
1280070438
feat: add chaoxing and vtencent driver ( #5526 close #3347 )
...
* add chaoxing and vtencent
* add vtencent put file
* add sha1 to transfer files instantly
* simplified upload file code
* setting onlyproxy
* fix get files modifyDate bug
2023-11-23 21:40:16 +08:00
Andy Hsu
d7f66138eb
docs: add sponsor VidHub [skip ci]
2023-11-22 15:09:39 +08:00
Andy Hsu
b2890f05ab
feat: retry all failed task ( close #5242 )
2023-11-21 15:54:42 +08:00
Andy Hsu
7583c4d734
feat: customize workers and retry of task ( close #5493 fix #5274 )
2023-11-21 15:51:57 +08:00
Andy Hsu
11a30c5044
feat: refactor task module
2023-11-20 18:01:51 +08:00
Andy Hsu
de9647a5fa
chore: remove useless code
2023-11-19 20:05:09 +08:00
Andy Hsu
8d5283604c
ci: add short sha to artifact
2023-11-19 15:21:25 +08:00
MuGu
867accafd1
fix(local): video file thumbnails not displaying on iOS Safari ( #5420 )
...
* perf(webdav): support for cookies on webdav drive
* fix(local): video file thumbnails not displaying on iOS Safari
2023-11-18 22:36:41 +08:00
Andy Hsu
6fc6751463
feat: support using external dist files ( close #5531 )
2023-11-18 19:56:22 +08:00
guangwu
f904596cbc
chore: remove refs to deprecated io/ioutil ( #5519 )
...
Signed-off-by: guoguangwu <guoguangwu@magic-shield.com >
2023-11-16 05:16:15 -06:00
Andy Hsu
3d51845f57
feat: invalidate old token after changing the password ( close #5515 )
2023-11-13 15:22:42 +08:00
renovate[bot]
a7421d8fc2
fix(deps): update module github.com/aws/aws-sdk-go to v1.46.7 ( #5068 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-12 15:14:27 +08:00
foxxorcat
55a14bc271
fix(mopan): 302 Redirect ( #5505 close #5502 )
...
* fix(mopan):302 Redirect
* fix(mopan): do not forget to close the body
---------
Co-authored-by: Andy Hsu <i@nn.ci >
2023-11-12 15:13:55 +08:00
Andy Hsu
91f51f17d0
feat(webdav): add tls_insecure_skip_verify field ( close #5490 )
2023-11-10 15:38:23 +08:00
Andy Hsu
4355dae491
fix: incorrect content-type of apk files ( close #5385 )
2023-11-06 18:20:25 +08:00
sheltonzhu
da1c7a4c23
feat: add 115_share driver ( #5481 close #5384 )
...
This update introduces the ability to mount 115 share links.
Currently, only listing and downloading are supported. Note that login and share link are required for this feature to work.
Close #5384
2023-11-06 16:58:57 +08:00
Andy Hsu
769281bd40
feat: refactor offline download ( #5408 close #4108 )
...
* wip: refactor offline download (#5331 )
* base tool
* working: aria2
* refactor: change type of percentage to float64
* wip: adapt aria2
* wip: use items in offline_download
* wip: use tool manager
* wip: adapt qBittorrent
* chore: fix typo
* Squashed commit of the following:
commit 4fc0a77565
Author: Andy Hsu <i@nn.ci >
Date: Fri Oct 20 21:06:25 2023 +0800
fix(baidu_netdisk): upload file > 4GB (close #5392 )
commit aaffaee2b5
Author: gmugu <94156510@qq.com >
Date: Thu Oct 19 19:17:53 2023 +0800
perf(webdav): support request with cookies (#5391 )
commit 8ef8023c20
Author: NewbieOrange <NewbieOrange@users.noreply.github.com >
Date: Thu Oct 19 19:17:09 2023 +0800
fix(aliyundrive_open): upload progress for normal upload (#5398 )
commit cdfbe6dcf2
Author: foxxorcat <95907542+foxxorcat@users.noreply.github.com >
Date: Wed Oct 18 16:27:07 2023 +0800
fix: hash gcid empty file (#5394 )
commit 94d028743a
Author: Andy Hsu <i@nn.ci >
Date: Sat Oct 14 13:17:51 2023 +0800
ci: remove `pr-welcome` label when close issue [skip ci]
commit 7f7335435c
Author: itsHenry <2671230065@qq.com >
Date: Sat Oct 14 13:12:46 2023 +0800
feat(cloudreve): support thumbnail (#5373 close #5348 )
* feat(cloudreve): support thumbnail
* chore: remove unnecessary code
commit b9e192b29c
Author: foxxorcat <95907542+foxxorcat@users.noreply.github.com >
Date: Thu Oct 12 20:57:12 2023 +0800
fix(115): limit request rate (#5367 close #5275 )
* fix(115):limit request rate
* chore(115): fix unit of `limit_rate`
---------
Co-authored-by: Andy Hsu <i@nn.ci >
commit 69a98eaef6
Author: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Date: Wed Oct 11 22:01:55 2023 +0800
fix(deps): update module github.com/aliyun/aliyun-oss-go-sdk to v2.2.9+incompatible (#5141 )
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
commit 1ebc96a4e5
Author: Andy Hsu <i@nn.ci >
Date: Tue Oct 10 18:32:00 2023 +0800
fix(wopan): fatal error concurrent map writes (close #5352 )
commit 66e2324cac
Author: Andy Hsu <i@nn.ci >
Date: Tue Oct 10 18:23:11 2023 +0800
chore(deps): upgrade dependencies
commit 7600dc28df
Author: Andy Hsu <i@nn.ci >
Date: Tue Oct 10 18:13:58 2023 +0800
fix(aliyundrive_open): change default api to raw server (close #5358 )
commit 8ef89ad0a4
Author: foxxorcat <95907542+foxxorcat@users.noreply.github.com >
Date: Tue Oct 10 18:08:27 2023 +0800
fix(baidu_netdisk): hash and `error 2` (#5356 )
* fix(baidu):hash and error:2
* fix:invalid memory address
commit 35d672217d
Author: jeffmingup <1960588251@qq.com >
Date: Sun Oct 8 19:29:45 2023 +0800
fix(onedrive_app): incorrect api on `_accessToken` (#5346 )
commit 1a283bb272
Author: foxxorcat <95907542+foxxorcat@users.noreply.github.com >
Date: Fri Oct 6 16:04:39 2023 +0800
feat(google_drive): add `hash_info`, `ctime`, `thumbnail` (#5334 )
commit a008f54f4d
Author: nkh0472 <67589323+nkh0472@users.noreply.github.com >
Date: Thu Oct 5 13:10:51 2023 +0800
docs: minor language improvements (#5329 ) [skip ci]
* fix: adapt update progress type
* Squashed commit of the following:
commit 65c5ec0c34
Author: itsHenry <2671230065@qq.com >
Date: Sat Nov 4 13:35:09 2023 +0800
feat(cloudreve): folder size count and switch (#5457 close #5395 )
commit a6325967d0
Author: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Date: Mon Oct 30 15:11:20 2023 +0800
fix(deps): update module github.com/charmbracelet/lipgloss to v0.9.1 (#5234 )
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
commit 4dff49470a
Author: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Date: Mon Oct 30 15:10:36 2023 +0800
fix(deps): update golang.org/x/exp digest to 7918f67 (#5366 )
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
commit cc86d6f3d1
Author: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Date: Sun Oct 29 14:45:55 2023 +0800
fix(deps): update module golang.org/x/net to v0.17.0 [security] (#5370 )
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
commit c0f9c8ebaf
Author: Andy Hsu <i@nn.ci >
Date: Thu Oct 26 19:21:09 2023 +0800
feat: add ignore direct link params (close #5434 )
2023-11-06 16:56:55 +08:00
sheltonzhu
3bbdd4fa89
fix(115): fix driver package import and variable ( #5482 )
...
names
2023-11-06 16:53:57 +08:00
foxxorcat
68f440abdb
fix(weiyun): unmarshal overflow ( #5459 )
2023-11-05 22:41:14 +08:00
itsHenry
65c5ec0c34
feat(cloudreve): folder size count and switch ( #5457 close #5395 )
2023-11-04 13:35:09 +08:00
renovate[bot]
a6325967d0
fix(deps): update module github.com/charmbracelet/lipgloss to v0.9.1 ( #5234 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-30 15:11:20 +08:00
renovate[bot]
4dff49470a
fix(deps): update golang.org/x/exp digest to 7918f67 ( #5366 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-30 15:10:36 +08:00
renovate[bot]
cc86d6f3d1
fix(deps): update module golang.org/x/net to v0.17.0 [security] ( #5370 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-29 14:45:55 +08:00
Andy Hsu
c0f9c8ebaf
feat: add ignore direct link params ( close #5434 )
2023-10-26 19:21:09 +08:00
Andy Hsu
4fc0a77565
fix(baidu_netdisk): upload file > 4GB ( close #5392 )
2023-10-20 21:06:25 +08:00
gmugu
aaffaee2b5
perf(webdav): support request with cookies ( #5391 )
2023-10-19 19:17:53 +08:00
NewbieOrange
8ef8023c20
fix(aliyundrive_open): upload progress for normal upload ( #5398 )
2023-10-19 19:17:09 +08:00
foxxorcat
cdfbe6dcf2
fix: hash gcid empty file ( #5394 )
2023-10-18 16:27:07 +08:00
Andy Hsu
94d028743a
ci: remove pr-welcome label when close issue [skip ci]
2023-10-14 13:17:51 +08:00
itsHenry
7f7335435c
feat(cloudreve): support thumbnail ( #5373 close #5348 )
...
* feat(cloudreve): support thumbnail
* chore: remove unnecessary code
2023-10-14 13:12:46 +08:00
foxxorcat
b9e192b29c
fix(115): limit request rate ( #5367 close #5275 )
...
* fix(115):limit request rate
* chore(115): fix unit of `limit_rate`
---------
Co-authored-by: Andy Hsu <i@nn.ci >
2023-10-12 20:57:12 +08:00
renovate[bot]
69a98eaef6
fix(deps): update module github.com/aliyun/aliyun-oss-go-sdk to v2.2.9+incompatible ( #5141 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-11 22:01:55 +08:00
Andy Hsu
1ebc96a4e5
fix(wopan): fatal error concurrent map writes ( close #5352 )
2023-10-10 18:32:00 +08:00
Andy Hsu
66e2324cac
chore(deps): upgrade dependencies
2023-10-10 18:23:11 +08:00
Andy Hsu
7600dc28df
fix(aliyundrive_open): change default api to raw server ( close #5358 )
2023-10-10 18:13:58 +08:00
foxxorcat
8ef89ad0a4
fix(baidu_netdisk): hash and error 2 ( #5356 )
...
* fix(baidu):hash and error:2
* fix:invalid memory address
2023-10-10 18:08:27 +08:00
jeffmingup
35d672217d
fix(onedrive_app): incorrect api on _accessToken ( #5346 )
2023-10-08 19:29:45 +08:00
foxxorcat
1a283bb272
feat(google_drive): add hash_info, ctime, thumbnail ( #5334 )
2023-10-06 16:04:39 +08:00
nkh0472
a008f54f4d
docs: minor language improvements ( #5329 ) [skip ci]
2023-10-05 13:10:51 +08:00
Andy Hsu
3d7f79cba8
docs: change domain of contributors image [skip ci]
2023-10-03 17:34:24 +08:00
Andy Hsu
9ff83a7950
feat: add header to meta (ref #5317 )
2023-10-02 16:43:29 +08:00
Andy Hsu
e719a1a456
feat(sso): custom username key for OIDC ( close #5169 )
2023-10-02 14:42:40 +08:00
Andy Hsu
40a6fcbdff
ci: do not stale issue with working or pr-welcome label [skip ci]
2023-10-02 14:13:11 +08:00
Andy Hsu
0fd51646f6
feat(onedrive): custom host for download link ( close #5310 )
2023-10-02 14:07:47 +08:00
Andy Hsu
e8958019d9
fix(115): allow use proxy directly ( close #5324 )
2023-10-02 14:00:13 +08:00
URenko
e1ef690784
fix(terabox): encode parameters for filemanager api ( #5308 )
2023-10-01 16:58:29 +08:00
LaoShui
4024050dd0
chore: fix typo ( #5316 )
2023-10-01 16:58:00 +08:00
renovate[bot]
eb918658f0
fix(deps): update module github.com/ipfs/go-ipfs-api to v0.7.0 ( #5247 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-30 22:58:19 +08:00
Nick Wang
fb13dae136
feat(crypt): optional pre-generated thumbnails ( #5284 )
2023-09-27 13:57:10 +08:00
Andy Hsu
6b67a36d63
fix(terabox): auto refresh JsToken ( close #5277 )
2023-09-25 16:38:05 +08:00
Andy Hsu
a64dd4885e
fix(139): fixed time zone ( close #5263 )
2023-09-22 16:54:16 +08:00
Andy Hsu
0f03a747d8
ci: cancel previous workflow run
2023-09-22 16:53:07 +08:00
itsHenry
30977cdc6d
feat: sso compatibility mode ( #5260 )
2023-09-22 16:45:51 +08:00
Andy Hsu
106cf720c1
fix(baidu_netdisk): retry logic in request ( close #5262 )
2023-09-22 16:27:44 +08:00
Andy Hsu
882112ed1c
feat: add hash_info field to /fs/get ( close #5259 )
2023-09-22 15:20:04 +08:00
Ovear
2a6ab77295
fix(115): data race in Link ( #5253 )
2023-09-21 13:39:07 +08:00
Andy Hsu
f0981a0c8d
chore(virtual): implement the driver interface with result
2023-09-20 09:02:56 +08:00
renovate[bot]
57eea4db17
fix(deps): update module github.com/go-resty/resty/v2 to v2.8.0 ( #5244 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-20 08:51:34 +08:00
renovate[bot]
234852ca61
fix(deps): update module github.com/pkg/sftp to v1.13.6 ( #5041 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-19 20:02:42 +08:00
renovate[bot]
809105b67e
fix(deps): update module github.com/blevesearch/bleve/v2 to v2.3.10 ( #5232 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-17 15:57:29 +08:00
renovate[bot]
02e8c31506
fix(deps): update golang.org/x/exp digest to 9212866 ( #5205 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-16 23:21:42 +08:00
tcbx99
19b39a5c04
fix(onedrive): overwrite upload big file ( close #5217 in #5218 )
...
See https://learn.microsoft.com/zh-cn/onedrive/developer/rest-api/api/driveitem_createuploadsession
2023-09-14 13:38:07 +08:00
Andy Hsu
28e2731594
fix: clear cache recursively on deleting the folder ( close #5209 )
2023-09-13 16:06:17 +08:00
Andy Hsu
b1a279cbcc
feat(139): implement MoveResult interface ( close #5130 )
2023-09-13 15:56:13 +08:00
Andy Hsu
352a6a741a
feat(webdav): support copy directly without task ( close #5206 )
2023-09-13 15:45:57 +08:00
renovate[bot]
109015567a
fix(deps): update module golang.org/x/oauth2 to v0.12.0 ( #5058 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-12 12:52:48 +08:00
Andy Hsu
9e0fa77ca2
feat: add 123 link driver ( close #4924 )
2023-09-10 16:50:10 +08:00
Andy Hsu
335b11c698
chore: implement the driver interface with obj return [skip ci]
2023-09-08 15:25:49 +08:00
Andy Hsu
8e433355e6
fix(terabox): missing JsToken field on request ( close #5189 )
2023-09-08 15:18:56 +08:00
Andy Hsu
3504f017b9
fix(upload): memory leak on form upload as task ( close #5185 )
2023-09-07 15:51:52 +08:00
Andy Hsu
cd2f8077fa
chore: enable all pprof handle on debug
2023-09-07 14:56:50 +08:00
Andy Hsu
d5b68a91d2
fix(webdav): optimize HEAD request ( close #5182 )
2023-09-06 16:32:51 +08:00
Andy Hsu
623c7dcea5
fix(189pc): get real link after redirect
2023-09-06 16:02:28 +08:00
foxxorcat
ecbd6d86cd
fix(lanzou): sub file in share folder need pwd ( #5184 )
2023-09-06 14:48:12 +08:00
foxxorcat
7200344ace
feat: adapt hash feature for some drivers ( #5180 )
...
* feat(pikpak,thunder): adaptation gcid hash
* chore(weiyun): add note
* feat(baidu_netdisk): adaptation rapid
* feat(baidu_photo): adaptation hash
* feat(189pc): adaptation rapid
* feat(mopan):adaptation ctime
* feat(139):adaptation hash and ctime
---------
Co-authored-by: Andy Hsu <i@nn.ci >
2023-09-06 14:46:35 +08:00
Sean
b313ac4daa
fix(crypt): fix 139cloud hack ( #5178 )
...
(cherry picked from commit 18bf64af47e58cc69cdd2e598de9c19538a7bf78)
2023-09-06 14:12:01 +08:00
Andy Hsu
f2f312b43a
fix: http response body not close on status >= 400 ( close #5163 )
2023-09-05 15:46:16 +08:00
Andy Hsu
6f6d20e1ba
fix: force_https not take effect on noRoute ( close #5167 )
2023-09-05 13:05:46 +08:00
Andy Hsu
3231c3d930
perf(db): release database before exit
2023-09-05 13:04:27 +08:00
fregie
b604e21c69
feat(webdav): support http chunked request ( close #5161 in #5162 )
...
But we do not recommend not adding the content-length header when putting files
2023-09-05 13:03:29 +08:00
Andy Hsu
3c66db9845
ci: split release actions
2023-09-03 22:57:18 +08:00
Andy Hsu
f6ab1f7f61
perf(ftp): non use SIZE FTP command ( close #5150 )
2023-09-03 18:47:32 +08:00
Sean
8e40465e86
fix(aliyundrive_open): date format on uploading ( #5151 )
...
(cherry picked from commit 88f815979ac91caa8bc425a2ff9a18bbd8a2e736)
2023-09-03 18:12:05 +08:00
Sean
37dffd0fce
feat(crypt): customize filename_encoding ( #5148 )
...
close #5109
close #5080
2023-09-03 18:06:44 +08:00
Sean
e7c0d94b44
fix: form upload when ticked As A Task ( #5145 )
2023-09-03 15:40:40 +08:00
renovate[bot]
8102142007
fix(deps): update github.com/orzogc/fake115uploader digest to 58f9eb7 ( #5133 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-02 14:50:06 +08:00
renovate[bot]
7c6dec5d47
fix(deps): update module 115driver to v1.0.16 ( close #5117 in #5120 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-01 14:31:47 +08:00
Andy Hsu
dd10c0c5d0
chore(aliyundrive_open): print resp content on refresh token ( close #5129 )
2023-08-31 18:43:25 +08:00
Andy Hsu
34fadecc2c
fix(ftp): dead lock on Read ( close #5128 )
2023-08-31 15:10:47 +08:00
renovate[bot]
cb8867fcc1
fix(deps): update module github.com/google/uuid to v1.3.1 ( #5066 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-30 19:30:41 +08:00
Kuingsmile
092ed06833
feat(uss): add AntiTheftChainToken field ( #5115 )
...
* feat(uss): add AntiTheftChainToken; fix link func
* feat(uss): optimize _upt generation
2023-08-30 15:16:26 +08:00
Sean
6308f1c35d
fix: updateTime, createTime and HashInfo ( #5111 )
2023-08-29 13:31:24 +08:00
Andy Hsu
ce10c9f120
fix: temp file not close and incorrect WebPutAsTask
2023-08-28 18:18:02 +08:00
Andy Hsu
6c4736fc8f
fix: allow no Last-Modified on upload api
2023-08-28 16:42:03 +08:00
Andy Hsu
b301b791c7
fix(local): set create and modified time for new file ( close #4938 )
2023-08-27 23:05:13 +08:00
Andy Hsu
19d34e2eb8
feat: receive lastModified from upload api
2023-08-27 23:03:09 +08:00
Sean
a3748af772
feat: misc improvements about upload/copy/hash ( #5045 )
...
general: add createTime/updateTime support in webdav and some drivers
general: add hash support in some drivers
general: cross-storage rapid-upload support
general: enhance upload to avoid local temp file if possible
general: replace readseekcloser with File interface to speed upstream operations
feat(aliyun_open): same as above
feat(crypt): add hack for 139cloud
Close #4934
Close #4819
baidu_netdisk needs to improve the upload code to support rapid-upload
2023-08-27 21:14:23 +08:00
jimyag
9b765ef696
chore: remove README.md executable permission ( close #5097 in #5100 )
2023-08-27 14:35:03 +08:00
foxxorcat
8f493cccc4
fix(mopan): parameter error ( #5091 )
2023-08-25 14:10:05 +08:00
Myth
31a033dff1
fix(lanzou): download cannot find data ( #5088 )
2023-08-24 21:56:20 +08:00
renovate[bot]
8c3337b88b
fix(deps): update module golang.org/x/image to v0.11.0 ( #5044 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-21 15:01:11 +08:00
renovate[bot]
7238243664
fix(deps): update module golang.org/x/crypto to v0.12.0 [skip ci] ( #5043 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-21 14:43:59 +08:00
renovate[bot]
ba2b15ab24
fix(deps): update module golang.org/x/net to v0.14.0 [skip ci] ( #5051 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-21 14:43:07 +08:00
renovate[bot]
28dc8822b7
fix(deps): update module github.com/u2takey/ffmpeg-go to v0.5.0 [skip ci] ( #5042 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-20 13:10:01 +08:00
foxxorcat
358c5055e9
fix(lanzou): download not find file sgin ( close #5046 in #5048 )
2023-08-20 13:08:57 +08:00
renovate[bot]
b6cd40e6d3
chore(deps): update actions-cool/issues-helper action to v3.5.2 [skip ci] ( #5033 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-19 14:20:55 +08:00
renovate[bot]
7d96d8070d
fix(deps): update github.com/winfsp/cgofuse digest to f87f5db [skip ci] ( #4908 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-19 14:19:30 +08:00
renovate[bot]
d482fb5f26
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.327 [skip ci] ( #4395 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-19 14:18:08 +08:00
renovate[bot]
60402ce1fc
fix(deps): update module github.com/deckarep/golang-set/v2 to v2.3.1 [skip ci] ( #4925 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-19 14:15:22 +08:00
Andy Hsu
1e3950c847
fix: copy tasks using multi-thread downloader can't be canceled ( #5028 )
...
#4981 related
2023-08-19 14:06:59 +08:00
renovate[bot]
ed550594da
fix(deps): update golang.org/x/exp digest to d852ddb ( #4910 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-18 19:34:38 +08:00
Andy Hsu
3bbae29f93
feat(cloudreve): add custom user-agent ( close #5020 )
2023-08-17 19:41:21 +08:00
renovate[bot]
3b74f8cd9a
fix(deps): update module github.com/sheltonzhu/115driver to v1.0.15 ( #4926 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-17 15:33:46 +08:00
Andy Hsu
e9bdb91e01
fix: ignore salt on marshal model.User
2023-08-16 13:31:15 +08:00
itsHenry
1aa024ed6b
feat: support webauthn login ( #4945 )
...
* feat: support webauthn login
* manually merge
* fix: clear user cache after updating authn
* decrease db size of Authn
* change authn type to text
* simplify code structure
---------
Co-authored-by: Andy Hsu <i@nn.ci >
2023-08-14 22:54:38 +08:00
Andy Hsu
13e8d36e1a
fix(aliyundrive_open): use RawStdEncoding for base64
2023-08-13 20:52:38 +08:00
Andy Hsu
5606c23768
perf(copy): use multi-thread downloader ( close #5000 )
2023-08-13 15:31:49 +08:00
dependabot[bot]
0b675d6c02
chore(deps): bump github.com/libp2p/go-libp2p to 0.27.8 ( #4978 )
...
Bumps [github.com/libp2p/go-libp2p](https://github.com/libp2p/go-libp2p ) from 0.26.3 to 0.27.8.
- [Release notes](https://github.com/libp2p/go-libp2p/releases )
- [Changelog](https://github.com/libp2p/go-libp2p/blob/master/CHANGELOG.md )
- [Commits](https://github.com/libp2p/go-libp2p/compare/v0.26.3...v0.27.8 )
---
updated-dependencies:
- dependency-name: github.com/libp2p/go-libp2p
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-08-11 22:57:42 +08:00
foxxorcat
c1db3a36ad
feat: upload progress recovery ( #4987 )
...
* feat(189pc):upload progress recovery
* fix:some err
* feat(baidu_netdisk,baidu_photo):upload progress recovery
* feat(mopan):upload progress recovery
* feat(baidu_netdisk):custom upload api
2023-08-11 14:23:30 +08:00
Andy Hsu
c59dbb4f9e
fix(local): files get deleted when copied to other storage ( close #4983 )
2023-08-10 16:42:09 +08:00
foxxorcat
df6b306fce
perf(drivers): fs operations and cache ( #4965 )
...
* perf(baidu_photo):multi-thread upload
* perf(baidu_netdisk):multi-thread upload and cache optimization
* fix:LimitWriter
* fix(weiyun):only one login is allowed
* feat(189pc):multi threaded upload
* feat(baidu_netdisk):multi threaded upload
* feat(baidu_photo):multi threaded upload
* feat(weiyun):multi threaded upload
* perf(aliyundriver_open):optimize upload code and optimize cache
* fix(weiyun):invalid directory ID
* fix(baidu_netdisk):modified time
* fix(baidu_netdisk,baidu_photo):upload slice error
* perf(baidu_netdisk):cancel unnecessary retries
* fix(limitWriter):must return a non-nil error if it returns n < len(p)
* fix(aliyundrive_open):Name and Filename only use one
* perf(mopan):multi-thread upload
2023-08-09 16:13:09 +08:00
Andy Hsu
9d45718e5f
fix: model.Link marshal error ( close #4971 )
...
ignore unsupported filed of `model.Link`
2023-08-09 14:04:31 +08:00
Andy Hsu
b91ed7a78a
fix(aliyundrive_open): retry refresh token if sub not match
2023-08-08 22:08:05 +08:00
Andy Hsu
95386d777b
feat(aliyundrive_open): record token exchange
2023-08-08 20:38:13 +08:00
Andy Hsu
635809c376
feat(cmd): list all storages command ( close #4960 )
2023-08-08 16:15:45 +08:00
Andy Hsu
af6bb2a6aa
docs: ignore network reason for bug report [skip ci]
2023-08-08 14:54:32 +08:00
Andy Hsu
a797494aa3
fix: missed update user's password
2023-08-07 18:51:54 +08:00
Andy Hsu
353dd7f796
ci: mark non-prerelease when upload assets
2023-08-07 16:23:36 +08:00
Andy Hsu
1c00d64952
feat: rehash password with a unique salt for each user
2023-08-07 15:46:19 +08:00
Andy Hsu
ff5cf3f4fa
feat: allow use token to access WebDAV
2023-08-07 14:38:50 +08:00
Andy Hsu
5b6b2f427a
feat(cmd): add show token command
2023-08-07 13:49:23 +08:00
Sean
7877184bee
feat(baidu_netdisk): add retry to most operations ( close #4863 in #4939 )
2023-08-07 13:44:28 +08:00
Andy Hsu
e9cb37122e
chore(cmd): change come output for admin command
2023-08-06 23:02:22 +08:00
Andy Hsu
a425392a2b
feat(cmd): set or random new password for admin
2023-08-06 22:34:02 +08:00
Andy Hsu
75acbcc115
perf: sha256 for user's password ( close #3552 )
2023-08-06 22:09:17 +08:00
Andy Hsu
30415cefbe
perf: delete user cache after cancel 2FA
2023-08-06 20:47:58 +08:00
panici
1d06a0019f
feat(search): paging and scope ( close #4381 in #4930 )
...
Co-authored-by: Andy Hsu <i@nn.ci >
2023-08-06 15:13:23 +08:00
Andy Hsu
3686075a7f
ci: change auto commit user [skip ci]
2023-08-05 16:32:06 +08:00
Andy Hsu
6c1c7e5cc0
fix(wopan): missing familyID on mkdir ( close #4927 )
2023-08-04 22:26:56 +08:00
Andy Hsu
c4f901b201
fix: undeclared identifier kIOMainPortDefault on darwin/arm64
2023-08-04 21:23:58 +08:00
Andy Hsu
4b7acb1389
feat(ci): add multiple ARM targets prebuilt ( close #4243 )
2023-08-04 20:57:56 +08:00
Sean
15b7169df4
perf: multi-thread downloader, Content-Disposition ( #4921 )
...
general: enhance multi-thread downloader with cancelable context, immediately stop all stream processes when canceled;
feat(crypt): improve stream closing;
general: fix the bug of downloading files becomes previewing stream on modern browsers;
Co-authored-by: Sean He <866155+seanhe26@users.noreply.github.com >
Co-authored-by: Andy Hsu <i@nn.ci >
2023-08-04 15:29:54 +08:00
Andy Hsu
861948bcf3
revert: "ci: auto gofmt for pull request" [skip ci]
...
This reverts commit 8b353da0d2 .
2023-08-04 13:25:23 +08:00
Bnq Dzj
e5ffd39cf2
feat: add 123Pan Share driver ( close #4853 in #4898 )
...
Co-authored-by: Andy Hsu <i@nn.ci >
2023-08-03 15:01:43 +08:00
Andy Hsu
8b353da0d2
ci: auto gofmt for pull request [skip ci]
2023-08-03 14:49:22 +08:00
foxxorcat
49bde82426
perf(189pc): empty file upload and cache optimization ( #4913 )
...
- login captcha error
- cache optimization
- upload empty file
2023-08-03 14:08:40 +08:00
foxxorcat
3e285aaec4
feat: add weiyun support ( close #4802 in #4883 )
...
Co-authored-by: Andy Hsu <i@nn.ci >
2023-08-02 21:39:59 +08:00
Andy Hsu
355fc576b1
issue: add config to bug report template [skip ci]
2023-08-02 21:05:50 +08:00
Andy Hsu
a69d72aa20
feat(aliyundrive_open): support resource drive ( close #4889 )
2023-08-02 15:50:01 +08:00
renovate[bot]
e5d123c5d3
fix(deps): update module golang.org/x/image to v0.10.0 [skip ci] ( #4902 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-02 15:38:10 +08:00
renovate[bot]
220eb33f88
fix(deps): update module golang.org/x/net to v0.13.0 [skip ci] ( #4903 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-02 15:16:39 +08:00
Andy Hsu
5238850036
docs: sync README [skip ci]
2023-08-02 15:15:48 +08:00
renovate[bot]
81ac963567
fix(deps): update module github.com/ipfs/go-ipfs-api to v0.6.1 [skip ci] ( #4882 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-02 15:01:25 +08:00
Sean
3c21a9a520
feat: Crypt driver, improve http/webdav handling ( #4884 )
...
this PR has several enhancements, fixes, and features:
- [x] Crypt: a transparent encryption driver. Anyone can easily, and safely store encrypted data on the remote storage provider. Consider your data is safely stored in the safe, and the storage provider can only see the safe, but not your data.
- [x] Optional: compatible with [Rclone Crypt](https://rclone.org/crypt/ ). More ways to manipulate the encrypted data.
- [x] directory and filename encryption
- [x] server-side encryption mode (server encrypts & decrypts all data, all data flows thru the server)
- [x] obfuscate sensitive information internally
- [x] introduced a server memory-cached multi-thread downloader.
- [x] Driver: **Quark** enabled this feature, faster load in any single thread scenario. e.g. media player directly playing from the link, now it's faster.
- [x] general improvement on HTTP/WebDAV stream processing & header handling & response handling
- [x] Driver: **Mega** driver support ranged http header
- [x] Driver: **Quark** fix bug of not closing HTTP request to Quark server while user end has closed connection to alist
## Crypt, a transparent Encrypt/Decrypt Driver. (Rclone Crypt compatible)
e.g.
Crypt mount path -> /vault
Crypt remote path -> /ali/encrypted
Aliyun mount paht -> /ali
when the user uploads a.jpg to /vault, the data will be encrypted and saved to /ali/encrypted/xxxxx. And when the user wants to access a.jpg, it's automatically decrypted, and the user can do anything with it.
Since it's Rclone Crypt compatible, users can download /ali/encrypted/xxxxx and decrypt it with rclone crypt tool. Or the user can mount this folder using rclone, then mount the decrypted folder in Linux...
NB. Some breaking changes is made to make it follow global standard, e.g. processing the HTTP header properly.
close #4679
close #4827
Co-authored-by: Sean He <866155+seanhe26@users.noreply.github.com >
Co-authored-by: Andy Hsu <i@nn.ci >
2023-08-02 14:40:36 +08:00
Andy Hsu
1dc1dd1f07
feat(aliyundrive_open): support livp format file download ( close #4890 )
2023-08-01 21:50:25 +08:00
foxxorcat
c9ea9bce81
feat(lanzou): support login with account ( close #4880 in #4885 )
2023-08-01 19:44:57 +08:00
foxxorcat
9f08353d31
feat(baidu_photo): optional delete album origin file ( close #4872 in #4875 )
2023-07-31 18:29:45 +08:00
Andy Hsu
ce0c3626c2
ci: remove working label on issue closed
2023-07-31 16:54:00 +08:00
foxxorcat
06f46206db
fix(baidu_photo): album download ( close #4603 in #4871 )
...
Co-authored-by: Andy Hsu <i@nn.ci >
2023-07-31 16:27:16 +08:00
Andy Hsu
579f0c06af
ci: delete file after decompression
...
fix: no space left on device
2023-07-30 18:25:52 +08:00
Andy Hsu
b12d92acc9
perf(baidu_netdisk): optimize memory allocate
2023-07-29 17:12:43 +08:00
Andy Hsu
e700ce15e5
fix: missed progress in upload task
2023-07-29 17:09:26 +08:00
renovate[bot]
7dbef7d559
chore(deps): update actions-cool/issues-helper action to v3.5.1 ( #4855 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-28 16:16:42 +08:00
Andy Hsu
7e9cdd8b07
fix(aliyundrive_open): fail limit on concurrently call ( #4851 )
2023-07-28 15:55:39 +08:00
meozky
cee6bc6b5d
fix(terabox): slice out of range ( close #4858 in #4860 )
2023-07-28 15:52:20 +08:00
Andy Hsu
cfd23c05b4
fix(139): upload empty file ( close #4711 )
2023-07-27 19:26:22 +08:00
Andy Hsu
0c1acd72ca
fix: link cache not deleted after overwriting file ( close #4852 )
2023-07-27 19:07:53 +08:00
Andy Hsu
e2ca06dcca
docs: update go version
2023-07-27 18:32:33 +08:00
Andy Hsu
0828fd787d
chore: update placeholder of version in bug_report issue template
2023-07-27 18:31:16 +08:00
Andy Hsu
2e23ea68d4
fix(aliyundrive_open): increase limit interval ( close #4851 )
2023-07-27 18:26:11 +08:00
Bnq Dzj
4afa822bec
fix(123): Use APP-side API ( close #4834 in #4856 )
2023-07-27 15:51:59 +08:00
Andy Hsu
f2ca9b40db
fix(qbittorrent): incorrect field type ( close #4843 )
2023-07-25 13:31:41 +08:00
Andy Hsu
4c2535cb22
fix(115): user-agent lost on upload ( close #4831 )
2023-07-23 15:18:33 +08:00
Andy Hsu
d4ea8787c9
fix(123): upload file size that less than 16 MB ( close #4816 )
2023-07-21 14:35:18 +08:00
Rui Tang
a4de04528a
fix(123): auth-key verification ( close #4811 in #4814 )
...
Co-authored-by: Andy Hsu <i@nn.ci >
2023-07-21 14:33:45 +08:00
renovate[bot]
f60aae7499
chore(deps): update actions-cool/issues-helper action to v3.5.0 ( #4801 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-21 13:55:16 +08:00
WintBit
de8f9e9eee
feat: SSO auto register ( close #4692 in #4795 )
...
Co-authored-by: Andy Hsu <i@nn.ci >
2023-07-20 16:30:30 +08:00
Ikko Eltociear Ashimine
cace9db12f
docs: add Japanese README [skip ci] ( #4798 )
2023-07-19 14:05:41 +08:00
Andy Hsu
ec2fb82836
chore: update special sponsors [skip ci]
2023-07-18 15:26:03 +08:00
Andy Hsu
afcfbf02ea
chore: go mod tidy
2023-07-16 15:12:38 +08:00
renovate[bot]
cad04e07dd
fix(deps): update module github.com/blevesearch/bleve/v2 to v2.3.9 [skip ci] ( #4750 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-16 15:06:49 +08:00
renovate[bot]
30f732138c
fix(deps): update module github.com/sirupsen/logrus to v1.9.3 [skip ci] ( #4668 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-16 15:06:16 +08:00
renovate[bot]
04034bd03b
fix(deps): update module github.com/jlaffaye/ftp to v0.2.0 [skip ci] ( #4455 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-16 15:05:46 +08:00
Andy Hsu
6ec9a8d4c7
fix(aliyundrive_open): the temp file is not delete ( close #4777 )
2023-07-16 15:01:22 +08:00
Andy Hsu
3f7882b467
feat(aliyundrive_open): rapid upload ( close #4766 )
2023-07-15 19:33:46 +08:00
Andy Hsu
a4511c1963
refactor: change hash function
2023-07-15 16:29:44 +08:00
Andy Hsu
9d1f122717
fix(local): thumbnail rotated if exist orientation tag ( close #4749 )
2023-07-15 14:31:03 +08:00
Andy Hsu
5dd73d80d8
fix(123): remove stream upload method ( close #4772 )
2023-07-14 19:12:18 +08:00
Andy Hsu
fce872bc1b
feat(123): thumbnail support ( #3953 )
2023-07-14 14:43:40 +08:00
Andy Hsu
df6c4c80c2
fix(123): update app-version ( close #4758 )
2023-07-14 14:17:29 +08:00
Andy Hsu
d2ff040cf8
feat(s3): add SessionToken field ( close #4761 )
2023-07-13 15:58:19 +08:00
foxxorcat
a31af209cc
fix(pikpak): hash calculation and fast upload judgment ( #4745 fix #1081 )
2023-07-11 22:19:21 +08:00
Andy Hsu
3f8b3da52b
feat(server): add HEAD method support ( close #4740 )
2023-07-11 13:47:49 +08:00
Andy Hsu
6887f14ec6
feat(pikpak): allow disable media link ( close #4735 )
2023-07-11 13:40:58 +08:00
Andy Hsu
3e0de5eaac
fix(deps): adapt module github.com/caarlos0/env/v9 ( #4728 )
2023-07-10 22:06:50 +08:00
Andy Hsu
61101a60f4
fix(s3): unable to copy empty folder ( close #4620 )
2023-07-10 14:55:19 +08:00
foxxorcat
3529023bf9
fix(mopan): size field type( close #4734 in #4736 )
2023-07-10 14:25:27 +08:00
renovate[bot]
d1d1a089a4
fix(deps): update module github.com/caarlos0/env/v7 to v9 ( #4728 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-09 18:15:04 +08:00
Andy Hsu
fa66358b1e
fix(sftp): read target obj of symlink file ( close #4713 )
2023-07-09 14:42:57 +08:00
Andy Hsu
2b533e4b91
feat: allow customize perm of unix file ( close #4709 )
2023-07-08 20:17:05 +08:00
renovate[bot]
d3530a8d80
fix(deps): update module golang.org/x/image to v0.9.0 ( #4725 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-08 19:21:15 +08:00
renovate[bot]
6052eb3512
fix(deps): update module golang.org/x/oauth2 to v0.10.0 ( #4522 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-08 15:44:42 +08:00
Andy Hsu
d17f7f7cad
fix(123): judge status on get redirect_url ( close #4718 )
2023-07-07 19:55:37 +08:00
Andy Hsu
8bdc67ec3d
fix(webdav): return 404 if error happened on handlePropfind
2023-07-05 13:52:21 +08:00
Andy Hsu
4fabc27366
fix(aliyundrive_open): panic if driver not init
2023-07-05 13:51:46 +08:00
Andy Hsu
e4c7b0f17c
fix: https port is not effective
2023-07-05 13:02:52 +08:00
Andy Hsu
5e8bfb017e
fix(123): add Referer to request ( close #4631 )
2023-07-04 18:36:46 +08:00
Andy Hsu
7d20a01dba
feat!: support listen to the unix ( close #4671 )
...
Starting from this commit, the HTTP server related config all move to the scheme
2023-07-04 17:56:02 +08:00
Andy Hsu
59dbf4496f
feat(offline_download): try to init client if not ready ( close #4674 )
2023-07-03 22:57:42 +08:00
vickunwu
12f40608e6
fix(oidc): use TOTP as state verification to replace the static 'state' parameter ( #4665 )
2023-07-03 22:41:08 +08:00
Andy Hsu
89832c296f
fix: judge can proxy with ext ( close #4688 )
2023-07-03 20:41:37 +08:00
foxxorcat
f09bb88846
fix(thunder): upload issues ( close #4663 in #4667 )
2023-06-29 13:21:30 +08:00
foxxorcat
c518f59528
feat: add MoPan driver ( close #4325 in #4659 )
...
Co-authored-by: Andy Hsu <i@nn.ci >
2023-06-28 14:53:43 +08:00
walloo
e9c74f9959
fix: regexp rename error ( close #4644 in #4653 )
...
Co-authored-by: Andy Hsu <i@nn.ci >
2023-06-26 15:15:57 +08:00
wenmig
21b8e7f6e5
fix(aliyundrive_share): add limit rate and lift rate limit restrictions ( #4587 )
2023-06-26 14:49:21 +08:00
Andy Hsu
2ae9cd8634
fix(dropbox): failed get link in #4639
...
close cfee536b96 (commitcomment-119404554)
2023-06-25 17:07:31 +08:00
wenmig
cfee536b96
feat: add Dropbox driver ( #4639 close #4590 )
...
Co-authored-by: Andy Hsu <i@nn.ci >
2023-06-23 17:36:40 +08:00
william
1c8fe3b24c
fix(aliyundrive_open): adaptive part size adjustment ( #4609 )
...
Co-authored-by: Andy Hsu <i@nn.ci >
2023-06-23 14:25:30 +08:00
Andy Hsu
84e23c397d
fix(baidu_netdisk): rollback #3652 ( close #4628 )
2023-06-21 18:37:25 +08:00
Andy Hsu
f7baec2e65
feat: add WoPan driver ( close #4541 )
2023-06-17 20:20:00 +08:00
wenmig
378bab32f1
chore(aliyundrive_share): increase the limit of the list api ( #4588 )
2023-06-17 20:10:34 +08:00
Andy Hsu
6cd8151cad
fix(aliyundrive_open): change default oauth_token_url
2023-06-16 15:03:27 +08:00
Andy Hsu
541449e10f
docs: add special sponsor [skip ci]
2023-06-14 05:42:21 +08:00
Andy Hsu
ca5a53fc24
fix(aliyundrive_open): openFile/list rate limit
2023-06-11 18:18:09 +08:00
BoYanZh
f646d2a699
feat!: listen to both http & https ( #4536 )
...
Co-authored-by: Andy Hsu <i@nn.ci >
2023-06-11 18:17:37 +08:00
Andy Hsu
363e036bf0
chore: fix typo [skip ci]
2023-06-10 22:25:35 +08:00
Andy Hsu
e23f00f349
fix(139): avoid panic due to Authorization for emptiness
2023-06-10 00:12:04 +08:00
Andy Hsu
9600267bda
ci: add linux-musl-amd64/arm64 to dev build
2023-06-09 23:43:52 +08:00
Andy Hsu
a66b0e0151
feat(139): auto extract account from Authorization
2023-06-09 23:41:41 +08:00
Andy Hsu
3bfa00d5d2
fix(189pc): add REQID header
2023-06-09 23:33:12 +08:00
Andy Hsu
6cbd2532cc
fix(139): modify the authentication mode
2023-06-09 23:02:02 +08:00
hunshcn
47976af0d3
feat: set ProxyFromEnvironment for default http client ( #4546 )
2023-06-09 22:08:54 +08:00
Andy Hsu
4dca52be85
fix(s3): optional add filename to disposition ( close #4538 )
2023-06-06 22:47:27 +08:00
Andy Hsu
62bb09300d
chore: fix typo [skip ci]
2023-06-06 19:34:10 +08:00
Andy Hsu
f9e067abec
feat: support delayed start ( #4532 )
2023-06-05 16:00:31 +08:00
Andy Hsu
1e62666406
feat(baidu_netdisk): allow custom crack ua
2023-06-04 15:57:41 +08:00
Andy Hsu
0e0cdf15ef
chore: change daysUntilClose [skip ci]
2023-06-03 21:15:52 +08:00
Andy Hsu
b124fdc092
perf(baidu): avoid refreshing the token on every startup
2023-06-02 18:31:42 +08:00
renovate[bot]
5141b3c165
fix(deps): update module github.com/gin-gonic/gin to v1.9.1 [security] [skip ci] ( #4521 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-02 18:31:14 +08:00
Mg Pig
881d6e271e
feat: add OIDC single sign-on ( #4496 )
...
close #3914
close #4315
2023-06-02 18:22:07 +08:00
Andy Hsu
bd2418c438
feat(deps): update alpine to 3.18
2023-05-28 19:30:42 +08:00
KAAAsS
8421c72c5c
fix(seafile): driver panic while downloading or uploading file ( #4491 )
...
Co-authored-by: Andy Hsu <i@nn.ci >
2023-05-28 16:45:46 +08:00
KAAAsS
a80e21997c
feat(cloudreve): auto remove trailing slash in address ( #4492 )
...
Co-authored-by: Andy Hsu <i@nn.ci >
2023-05-28 16:18:09 +08:00
Andy Hsu
4369cbbac3
fix(alist_v3): missed Content-Length on upload ( close #4457 )
2023-05-27 20:23:36 +08:00
zqxiaojin
89f76d7899
feat: add UC driver ( close #1127 in #4459 )
...
Co-authored-by: lj98568 <lj98568@alibaba-inc.com >
Co-authored-by: Andy Hsu <i@nn.ci >
2023-05-27 19:36:14 +08:00
foxxorcat
ef68f84787
fix(baidu_photo): legal album title check ( close #4479 in #4487 )
2023-05-27 17:07:57 +08:00
foxxorcat
2c1f70fbe9
fix(189pc): large file upload error ( close #4417 in #4438 )
2023-05-27 14:28:58 +08:00
Andy Hsu
b2f5757f8d
fix(copy): copy from driver that return writer ( close #4291 )
2023-05-26 21:57:43 +08:00
plzzzzg
6b97b4eb20
feat(s3): set content type from stream when uploading ( #4460 )
...
Co-authored-by: guopeilun <guopl@flatincbr.com >
2023-05-24 18:02:49 +08:00
renovate[bot]
645c10c11f
fix(deps): update module github.com/sirupsen/logrus to v1.9.2 ( #4402 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-20 22:15:32 +08:00
Noah Hsu
571bcf07b0
fix(alias): add api prefix for proxy url ( close #4392 )
2023-05-19 00:12:57 +08:00
Noah Hsu
63de65be45
fix: increase timeout for http_client ( close #4409 )
2023-05-18 23:32:05 +08:00
XYUU
a3446720a2
fix: make TlsInsecureSkipVerify enable for all request ( #4386 )
2023-05-14 17:05:47 +08:00
Andy Hsu
3c4c2ad4e0
feat(teambition): support s3 upload method ( close #4365 )
2023-05-13 23:06:25 +08:00
Andy Hsu
077a525961
fix(189): adapt new login method ( close #4378 )
2023-05-13 17:28:40 +08:00
Andy Hsu
5be79eb26e
feat: add robots.txt setting ( close #4303 )
2023-05-12 16:53:15 +08:00
renovate[bot]
ddc19ab699
fix(deps): update module github.com/blevesearch/bleve/v2 to v2.3.8 [skip ci] ( #4322 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-12 16:34:25 +08:00
renovate[bot]
ddfca5a29b
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.262 ( #3285 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-12 16:25:30 +08:00
william
c19166be1c
feat(google_drive): support sa ( close #3132 in #4360 )
...
Co-authored-by: Andy Hsu <i@nn.ci >
2023-05-12 14:47:50 +08:00
Andy Hsu
daad61443c
feat(local): support thumbnail cache ( close #4216 )
2023-05-11 19:57:24 +08:00
Andy Hsu
4b0c01158d
fix: panic on nil pointer
2023-05-11 19:44:44 +08:00
Andy Hsu
f97f1d532e
fix(webdav): don't retry for put if body isn't seeker ( close #4149 close #4238 )
2023-05-11 18:57:35 +08:00
Andy Hsu
e15755fef0
fix(189): enable TlsInsecureSkipVerify ( close #4355 )
2023-05-11 18:48:31 +08:00
安稳
ea88998325
docs: add help message for mount path ( #4364 )
...
Co-authored-by: Andy Hsu <i@nn.ci >
2023-05-11 18:40:56 +08:00
LMXiao
74d971aa8a
docs: fix git address [skip ci] ( #4366 )
2023-05-11 15:05:33 +08:00
安稳
d41d868a8d
fix(baidu_photo): change folder name length limit ( close #4351 in #4353 )
...
Co-authored-by: Andy Hsu <i@nn.ci >
2023-05-09 20:44:57 +08:00
renovate[bot]
555cc26cbf
fix(deps): update module golang.org/x/crypto to v0.9.0 ( #4350 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-09 20:28:52 +08:00
renovate[bot]
ab4215080b
fix(deps): update module golang.org/x/net to v0.10.0 ( #4347 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-09 16:31:17 +08:00
Xi Wuuuuuuuuuuuu~~~~~~~~~~~~~~~
9502f5acd7
fix(cloudreve): skip init login when using cookie ( #4341 )
2023-05-08 19:25:36 +08:00
Xi Wuuuuuuuuuuuu~~~~~~~~~~~~~~~
b03879403f
feat(cloudreve): support use cookie to login ( close #4324 in #4339 )
...
Co-authored-by: Andy Hsu <i@nn.ci >
2023-05-08 15:19:51 +08:00
Andy Hsu
ee4ac81677
fix(webdav): can't rename on infini-cloud ( close #4333 )
2023-05-08 14:21:12 +08:00
Andy Hsu
b69fc8c306
ci: increase daysUntilClose to avoid use stale-bot [skip ci]
2023-05-07 21:07:31 +08:00
陈佳
ee6c31332d
feat(drivers): ipfs api ( #4265 )
...
Co-authored-by: Andy Hsu <i@nn.ci >
2023-05-05 17:42:22 +08:00
Andy Hsu
9fa16bd5fc
ci: use github helper to close stale issue
2023-05-05 16:29:59 +08:00
Andy Hsu
c77ed5fcb0
feat(aliyundrive_open): limit rate for List and Link ( close #4290 )
2023-05-02 22:06:03 +08:00
Andy Hsu
822be17fb9
feat(aliyundrive_open): add expiration for link ( close #4061 )
2023-05-02 16:12:40 +08:00
Andy Hsu
7e3b13ea2d
fix: fs/list interface conversion from copy alias ( close #4279 )
2023-05-01 15:45:45 +08:00
hsluoyz
f8fb48fb32
fix: cannot connect to Casdoor SSO ( close #4266 in #4274 )
2023-05-01 15:32:34 +08:00
Noah Hsu
4bf46268da
feat(alias): support thumbnail ( close #4256 )
2023-04-28 00:17:15 +08:00
Noah Hsu
b7ea73b3c2
fix(aliyundrive_open): can't refresh token if access_token is empty ( #4255 )
2023-04-28 00:01:47 +08:00
Andy Hsu
9fbc54314d
chore(aliyundrive_open): change base url
2023-04-27 16:38:40 +08:00
Andy Hsu
cf8ab29a17
feat: optional allow be mounted ( close #4218 )
2023-04-27 16:33:01 +08:00
Andy Hsu
51cadd2d49
fix: ignore handle in json ( close #4251 close #4252 )
2023-04-27 15:39:32 +08:00
longxu0509
2bae8e129e
feat: add Casdoor single sign-on ( #4222 )
2023-04-26 16:01:40 +08:00
Andy Hsu
9d55ad3af6
fix(123): get download url ( close #4244 )
2023-04-26 15:06:24 +08:00
Andy Hsu
36cd504783
fix(alist_v3): missed meta_password update
...
fix: adb0739dfe (commitcomment-110328033)
2023-04-24 20:56:46 +08:00
foxxorcat
49f13b9b90
fix(baidu_photo): upload file has web prefix ( close #4233 in #4235 )
2023-04-24 19:13:33 +08:00
Andy Hsu
adb0739dfe
feat!(alist_v3): support username & password login ( close #4226 )
...
Breaking changes:
- rename access_token to token
- rename old password to meta_password
2023-04-23 17:48:26 +08:00
Brian
340cb940e3
fix(qbittorrent): set autoTMM ( #4217 )
2023-04-22 13:33:54 +08:00
Andy Hsu
8711f2a1c5
feat(quark): shard request file ( close #4175 )
2023-04-17 15:33:38 +08:00
Andy Hsu
7f35aab071
revert(quark): remove preset range header
2023-04-17 14:39:21 +08:00
Andy Hsu
ecd167d2f9
feat(quark): add preset range header ( close #4166 )
2023-04-16 19:26:03 +08:00
varg1714
220fd30830
fix: the recursive subdirectory moving bug ( #4171 )
2023-04-16 16:08:12 +08:00
Andy Hsu
5cba10446e
fix(123): adapt new upload method ( close #4141 )
2023-04-14 15:48:39 +08:00
Andy Hsu
a9bdb15205
ci: fix golang version in auto_lang [skip ci]
2023-04-14 13:49:13 +08:00
Andy Hsu
c5f6a90f54
fix(quark): download file size limit ( close #4140 )
2023-04-14 13:47:05 +08:00
varg1714
46f9aefb04
feat: empty folder clear API [ckip ci] ( #4132 )
...
* 增加清理空文件夹API
* 修复嵌套文件夹删除Bug
Author: varg247 <varg247@gmail.com >
---------
Co-authored-by: varg247 <varg247@qq.com >
2023-04-13 15:39:21 +08:00
Andy Hsu
fdcad9c154
fix(123): incorrect endpoint ( close #4046 )
2023-04-12 23:04:12 +08:00
Andy Hsu
027025361a
ci: fixed version of alpine
2023-04-12 16:01:49 +08:00
Andy Hsu
f1245153b9
chore(deps): upgrade to go@1.20
2023-04-12 15:42:27 +08:00
Andy Hsu
570b8be022
fix(onedrive): error check in upBig
2023-04-11 22:52:42 +08:00
Andy Hsu
86a773674a
feat(task): print stack trace if panic
2023-04-11 15:16:57 +08:00
Andy Hsu
75fd0ee185
feat(s3): optional remove bucket name from path ( close #4069 )
2023-04-09 19:25:52 +08:00
Andy Hsu
cc43238bd1
fix(alias): disable log completely ( #4054 )
2023-04-09 15:46:26 +08:00
Andy Hsu
c0a6beecea
fix(alias): panic on nil pointer ( close #4093 )
2023-04-09 14:06:04 +08:00
renovate[bot]
c77eebb035
fix(deps): update module golang.org/x/image to v0.7.0 ( #4065 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-08 21:51:51 +08:00
renovate[bot]
b1efb86b28
fix(deps): update module golang.org/x/net to v0.9.0 [skip ci] ( #4066 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-08 21:20:19 +08:00
renovate[bot]
0707449c8f
fix(deps): update module golang.org/x/crypto to v0.8.0 [skip ci] ( #4076 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-08 21:18:39 +08:00
Andy Hsu
0f8a84f67e
perf(alias): disabled log on fs call ( close #4054 )
2023-04-07 00:02:07 +08:00
renovate[bot]
a475783b00
fix(deps): update module github.com/spf13/cobra to v1.7.0 [skip ci] ( #4041 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-06 21:41:41 +08:00
Andy Hsu
67413015e8
ci: use non-upx prebuilt for windows by default
2023-04-06 21:38:57 +08:00
renovate[bot]
3a311a47af
fix(deps): update module github.com/upyun/go-sdk/v3 to v3.0.4 ( #4039 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-04 17:10:31 +08:00
Andy Hsu
9ccd802126
fix(123): api prefix changed ( close #4038 )
2023-04-04 16:39:56 +08:00
Andy Hsu
0acba7cd22
perf(123): reduce login count
2023-04-03 11:24:29 +08:00
Night Space
3cdb8e7a81
fix(trainbit): incorrect filename display ( #4027 )
2023-04-02 21:13:20 +08:00
Andy Hsu
d3efee2ea1
fix(s3): increase PartSize if filesize > 50000MB ( close #4017 )
2023-04-02 16:09:27 +08:00
NewbieOrange
4ec274e748
fix(aliyundrive_open): refresh upload url if expired ( #3999 close #3823 )
...
* fix(aliyundrive_open): refresh upload url for large files
* fix(aliyundrive_open): retry upload on url expiry
* fix(aliyundrive_open): ignore 409 error
* feat(aliyundrive): cleanup upload retry logic
* feat(util): add multireadable io utility
* feat(aliyundrive_open): make upload fully stream
* feat(aliyundrive_open): refresh upload url every 20 puts
* fix(aliyundrive_open): part info panic
* chore: change refresh upload url strategy
---------
Co-authored-by: Andy Hsu <i@nn.ci >
2023-04-01 14:54:29 +08:00
Andy Hsu
3b07c72f88
fix(proxy): ignore Referer if got redirect ( close #3996 )
2023-03-31 20:29:55 +08:00
Wuxuan
0c5820a98f
docs(aliyundrive_open): revised the sentence that may cause ambiguity ( #3989 )
2023-03-29 20:26:21 +08:00
Andy Hsu
86beadc0ed
fix: missed sign with enable sign_all ( close #3957 )
2023-03-26 16:19:01 +08:00
Andy Hsu
be62d64dba
chore: cancel 2fa succeed tips
2023-03-25 18:36:13 +08:00
BaiYi
112363031a
feat: add fine-grained control for link signing ( #3924 )
...
* Determine whether the URL requires Sign
* Add File and Mem based KV
NOT TESTED: TokenKV Function
* Change Token KV func to common func.
Add File based KV func
* Remove KV, Remove Token
I found that the original Sign function is enough to complete the link signature, and only need to add simple configuration items to meet the requirements.
* Add IsStorageSigned func to judge if Signing is enabled in the storage settings.
It should be working now.
* Add a SIGN button to the management panel.
* Add enable_sign to the basic storage struct.
Can enable sign for every driver now.
Bug: When sign enabled, in download page, Copy link doesn't contain a sign.
(Not done yet)
* Fix a bug from commit 8f6c25f .
Response of fsread function does not contain sign.
* Optimize code and follow advices.
- Add back public/dist/README.md
- Enable sign when DownProxyUrl is enabled
- Merge needSign() to isEncrypt() in fsread.go
* simplify code
---------
Co-authored-by: Andy Hsu <i@nn.ci >
2023-03-24 22:44:33 +08:00
Andy Hsu
48dc3552a6
fix(url_tree): incorrect tree structure
2023-03-24 20:34:03 +08:00
Brian
663814c9ef
fix(url_tree): fix test url [skip ci] ( #3940 )
2023-03-24 20:26:00 +08:00
Andy Hsu
bd892e6a63
feat(drivers): new driver UrlTree ( close #3268 in #3933 )
...
* feat(drivers): new driver `urls` (close #3268 )
* chore: rename
* support customize basic info or get from url
* dfs tree to calculate folder size
* go mod tidy
* add help message
2023-03-24 15:13:54 +08:00
sheltonzhu
4fd2c09845
fix(115): download issue due to ua ( close #3931 in #3932 )
2023-03-23 22:57:44 +08:00
XZB-1248
0eab31bdf5
fix(local): filename with whitespace issue ( #3928 )
...
* fix(local): filename whitespace problem
* fix(deps): remove deprecated package io/ioutil
---------
Co-authored-by: XZB <i@1248.ink >
2023-03-23 15:18:37 +08:00
zhengxiexie
c6af22b97e
feat: add thumbnail to fs/get api ( #3927 )
2023-03-23 13:59:39 +08:00
安静书生
b2a5110672
feat(onedrive): support application authorization method ( #3906 )
2023-03-23 13:26:03 +08:00
Andy Hsu
c628992ea6
ci: add log required on question label [skip ci]
2023-03-22 14:03:04 +08:00
Brian
c65d868e09
fix(baidu_share): large file download ( #3887 close #3876 )
...
* fix(baidushare): large file download
* refactor: optimize client
2023-03-20 17:46:15 +08:00
Andy Hsu
aeb48b2ecc
perf(aliyundrive_open): don't refresh token on init if token valid
2023-03-20 15:00:02 +08:00
Andy Hsu
cefec1a663
style: sort imports
2023-03-20 14:59:01 +08:00
panici
e7ad830aa8
fix(cloudreve): captcha code ocr ( #3889 close #3662 )
2023-03-19 20:30:39 +08:00
renovate[bot]
b27eed265a
fix(deps): update module github.com/blevesearch/bleve/v2 to v2.3.7 [skip ci] ( #3874 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-19 20:26:48 +08:00
Night Space
3abe26473c
fix(trainbit): decode html code ( #3883 )
2023-03-19 15:25:06 +08:00
Night Space
023107226c
fix(trainbit): remove unnecessary operation ( #3881 )
2023-03-18 13:52:36 +08:00
Andy Hsu
8b109cfe40
fix(smb): byte alignment ( close #3868 )
2023-03-17 16:32:34 +08:00
Andy Hsu
b48e97d406
chore: fix release name [skip ci]
2023-03-16 22:47:01 +08:00
renovate[bot]
6c91cfeb90
chore(deps): update actions/setup-go action to v4 ( #3858 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-16 18:28:51 +08:00
renovate[bot]
bfd1f25972
fix(deps): update module github.com/deckarep/golang-set/v2 to v2.3.0 [skip ci] ( #3852 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-16 15:58:02 +08:00
Brian
8c0defce09
feat(task): add clear succeeded and retry ( #3856 close #3776 )
2023-03-16 15:56:27 +08:00
Andy Hsu
a1e88cfa05
fix(teambition): empty token for upload ( close #3854 )
2023-03-15 14:56:41 +08:00
Andy Hsu
443f5ffbcc
feat(alias): auto flatten if only one root
2023-03-14 20:25:52 +08:00
Andy Hsu
b8bc94306d
fix(alias): check obj exist for every storage (fix d9795ff)
2023-03-14 20:11:25 +08:00
Andy Hsu
d9795ff22f
feat(alias): support proxy and direct together
2023-03-14 13:46:27 +08:00
XZB-1248
c4108007cd
fix: spaces in filename will be replaced with plus sign ( #3841 )
...
Co-authored-by: XZB <i@1248.ink >
2023-03-14 12:27:42 +08:00
Brian
f3db23a41e
feat(qbittorrent): add offline download seed time ( #3842 close #3588 )
2023-03-14 12:13:23 +08:00
sheltonzhu
4741a75c92
feat(115): update upload api to v4.0 add pagesize option ( #3840 close #3753 )
2023-03-13 20:02:52 +08:00
Andy Hsu
301756ba03
feat(drivers): alias a new storage with multi path ( close #3248 )
2023-03-13 15:35:37 +08:00
Night Space
3b2703a5e5
feat(drivers): add the support for Trainbit ( #3813 )
...
* feat: add the support for Trainbit
read only
* feat: add the support for Trainbit
modify the structure of code
allow to create folder, move, rename and remove
* feat: add the support for Trainbit
allow to upload file
* feat: add the support for Trainbit
get token from page
* feat: add the support for Trainbit
display progress of updating
* feat: add the support for Trainbit
fix bug of time zone
* feat: add the support for Trainbit
fix the bug of filename
2023-03-12 22:18:55 +08:00
Brian
2a601f06cb
feat(drivers): add BaiduYun share link support ( #3801 )
...
新增百度网盘分享链接挂载
2023-03-12 14:00:11 +08:00
NewbieOrange
adc3a56552
feat(aliyundrive): make checksum cancellable ( #3814 )
2023-03-12 13:59:40 +08:00
hcrgm
4d9a29bddd
feat(ftp): support seek/range request ( #3811 )
2023-03-11 21:02:47 +08:00
hcrgm
666e02f0c3
fix(storage): explicitly set storages' status to disabled ( #3810 )
2023-03-11 20:45:35 +08:00
Ke Xu
6aaec19c1c
feat: allow override startup command for Docker image ( #3800 )
...
This is to enable the use case where the stock Docker image is used with
different flags. E.g. `docker run xhofe/alist:latest ./alist server --data=mydata`
This was the behavior until PR#2818 changed it. This would make the image more usable.
2023-03-11 15:33:59 +08:00
varg1714
1091e1b740
feat: file aggregation and regular rename api ( #3788 )
...
* 增加文件聚合接口,将给定文件夹下所有文件移动到目标文件夹。
* 增加文件正则重命名接口。
---------
Co-authored-by: varg247 <varg247@qq.com >
2023-03-10 19:01:49 +08:00
fregie
d06c605421
fix: smb drive lastConnTime data race ( #3787 close #3782 )
2023-03-10 15:59:53 +08:00
Andy Hsu
43de823058
fix: path IsApply check ( close #3784 )
2023-03-09 21:03:56 +08:00
Wuxuan
02d0aef611
feat(aliyundrive_open): add internal upload (aliyun ECS for Beijing area only) ( #3775 )
2023-03-09 20:48:30 +08:00
Andy Hsu
5596661ce8
feat(aliyundrive_open): optional delete file directly ( close #3769 )
2023-03-08 19:19:13 +08:00
Andy Hsu
2379cb8d67
style: go mod tidy
2023-03-08 19:08:11 +08:00
Andy Hsu
8c0ebe0841
revert: "fix(deps): update module gorm.io/gorm to v1.24.6 ( #3684 )" ( close #3746 )
...
This reverts commit c595fd7f94 .
2023-03-08 19:07:04 +08:00
renovate[bot]
fd868bac84
fix(deps): update module github.com/caarlos0/env/v7 to v7.1.0 ( #3763 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-08 16:21:43 +08:00
Andy Hsu
ebcbb29a0f
feat: ping api ( close #3752 )
2023-03-07 19:05:52 +08:00
Andy Hsu
00ff0a43a7
feat(cmd): disable a storage with specific mountPath ( close #3564 )
2023-03-07 19:01:40 +08:00
Andy Hsu
3d3f23ec9e
fix: upload check if disable sub folder ( close #3741 )
2023-03-07 14:13:39 +08:00
NewbieOrange
d484219c48
fix(security): compare auth token in constant time ( #3740 close #3739 )
2023-03-06 23:41:06 +08:00
itsHenry
dd4c97393e
feat: show sso settings at a more reasonable sort ( #3735 )
2023-03-06 20:59:45 +08:00
Andy Hsu
07b8ff25a7
ci: auto release desktop
2023-03-06 18:05:57 +08:00
renovate[bot]
0d5c3c5080
fix(deps): update module github.com/deckarep/golang-set/v2 to v2.2.0 [skip ci] ( #3727 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-06 17:54:17 +08:00
LisonFan
75b4429f73
feat(quark): enable NoOverwriteUpload ( #3720 )
2023-03-05 18:00:00 +08:00
Andy Hsu
34ef6bd18d
feat(115): enable NoOverwriteUpload [skip ci] ( close #3669 )
2023-03-05 17:59:19 +08:00
Andy Hsu
c915313ec9
feat: rename then delete if storage doesn't support overwrite upload ( close #3643 )
2023-03-05 15:36:12 +08:00
Andy Hsu
12a095a1d6
fix: slice bounds out of range on CanAccess check
2023-03-05 15:29:53 +08:00
Andy Hsu
dc000f640a
feat: optional log to std
2023-03-05 15:07:06 +08:00
renovate[bot]
aa1c5b2be3
fix(deps): update module golang.org/x/crypto to v0.7.0 [skip ci] ( #3717 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-05 14:32:41 +08:00
renovate[bot]
1d4ec3c50d
fix(deps): update module golang.org/x/net to v0.8.0 [skip ci] ( #3715 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-05 14:32:26 +08:00
renovate[bot]
ebfeef52f4
fix(deps): update module golang.org/x/image to v0.6.0 [skip ci] ( #3714 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-05 13:52:53 +08:00
renovate[bot]
c595fd7f94
fix(deps): update module gorm.io/gorm to v1.24.6 ( #3684 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-02 19:15:50 +08:00
renovate[bot]
421052f88a
fix(deps): update github.com/t3rm1n4l/go-mega digest to a01a2cd ( #3665 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-02 19:03:38 +08:00
itsHenry
603681fbe6
feat: rebuild Single sign-on system ( #3649 close #3571 )
...
* rebuild single sign on system
* perf: use cache
* fix: codefactor check
---------
Co-authored-by: Andy Hsu <i@nn.ci >
2023-03-02 17:55:33 +08:00
Andy Hsu
f442185aa5
perf(123): optimize login error
2023-02-28 21:17:15 +08:00
Andy Hsu
ca9e739465
fix: hide apply to sub path without enable ( close #3661 )
2023-02-28 18:43:52 +08:00
Admire
53a1c4283b
fix(baidu_netdisk): maybe optimize crack api ( #3652 )
...
User-Agent to netdisk and remove origin=dlna(is baned)
2023-02-28 18:27:07 +08:00
Karbob
93dd768234
fix(webdav): disabled is not working in webdav ( #3659 )
...
A disabled user with webdav permission can use webdav normally, which is not allowed.
2023-02-28 18:26:13 +08:00
Andy Hsu
c9c4d6bc7e
fix!(local): perm on mkdir ( close #3626 )
2023-02-26 21:25:32 +08:00
Andy Hsu
81e10f8939
ci: set prerelease before the build completes
2023-02-25 18:06:35 +08:00
Andy Hsu
4dd753de52
fix(aliyundrive_open): missed expire_sec while get link ( close #3610 )
2023-02-25 17:54:36 +08:00
Andy Hsu
79df63d319
chore(aliyundrive): change alert info
2023-02-25 14:28:27 +08:00
Andy Hsu
ec54831162
fix: only refresh token while do request ( close #3591 )
2023-02-24 20:31:12 +08:00
Andy Hsu
c8f3e8ab4d
feat!: skip tls insecure verify by default
2023-02-23 22:33:54 +08:00
Andy Hsu
4be8524d80
feat: add alert for driver
2023-02-23 22:03:11 +08:00
Andy Hsu
0d3146b51d
fix(webdav): disable put with empty path ( close #3569 )
2023-02-23 21:19:50 +08:00
Andy Hsu
f95d843969
feat(aliyundrive): add url_expire_sec for video preview ( close #3522 )
2023-02-23 20:50:31 +08:00
Andy Hsu
28aee8c493
feat: add aliyundrive open driver ( #3437 )
...
close #3533
close #3521
close #3459
close #3375
* feat: add aliyundrive open driver
* feat: adapt alist api
* fix: trailing spaces
* feat(aliyundrive_open): video preview api
2023-02-23 20:45:57 +08:00
Andy Hsu
de3ea82eb9
ci: add closeComment for stale
2023-02-22 22:17:33 +08:00
renovate[bot]
268ba3d069
fix(deps): update module github.com/gin-gonic/gin to v1.9.0 [skip ci] ( #3551 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-02-22 21:24:35 +08:00
GodFinal
309d6558fb
feat(local): add thumbnail for video with ffmpeg ( #3556 )
...
* feat(local): add ffmpeg
* fix: missed `+`
---------
Co-authored-by: Andy Hsu <i@nn.ci >
2023-02-22 21:19:42 +08:00
Andy Hsu
c08fdfc868
fix: missed assignment [skip ci]
2023-02-22 20:20:28 +08:00
Andy Hsu
1b28e6af3e
ci: replace issues-helper with stale for inactive check
2023-02-22 20:07:18 +08:00
Andy Hsu
8655e33e60
fix: incorrect api if not set site_url ( 6c2f348)
2023-02-21 19:57:50 +08:00
Andy Hsu
50579fef84
fix: cancel api replace to avoid missing host
2023-02-21 19:45:09 +08:00
Andy Hsu
e39299bfe2
fix(local): missed type of MkdirPerm ( 923937b)
2023-02-21 17:45:15 +08:00
kdxcxs
d1ab2443f1
feat(qbittorrent): delete tags when deleting qbittorrent tasks ( #3546 )
...
* feat & refactor(qbittorrent/client): support `deleteFiles` arg for `Client.Delete()` method
* feat(qbittorrent/client): also delete tags in `Client.Delete()`
2023-02-21 16:45:41 +08:00
renovate[bot]
658cf368bb
fix(deps): update github.com/t3rm1n4l/go-mega digest to b87ebf5 ( #3539 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-02-21 16:43:37 +08:00
Andy Hsu
fd36ce59f6
fix(onedrive): either id or path in parentReference must be specified ( close #3028 )
2023-02-21 16:19:46 +08:00
Andy Hsu
95b3b87672
feat(sftp): support range header
2023-02-20 16:57:52 +08:00
Andy Hsu
0d07d81802
feat(smb): support range header ( close #3192 )
2023-02-20 16:46:38 +08:00
Andy Hsu
923937b530
feat(local): custom mkdir perm ( close #3196 )
2023-02-20 16:20:36 +08:00
Andy Hsu
09492193c4
fix(alist_v3): api error pass ( close #3326 )
2023-02-20 16:15:52 +08:00
Andy Hsu
40b26a81a0
fix!: change default epub viewer ( close #3519 )
2023-02-20 16:08:10 +08:00
renovate[bot]
4293a0ba8c
fix(deps): update module github.com/golang-jwt/jwt/v4 to v4.5.0 [skip ci] ( #3525 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-02-20 16:06:35 +08:00
Andy Hsu
6c2f3486fc
fix!: reverse proxy to sub-directory ( #3483 )
...
from this commit, if you want reverse proxy to sub-directory like `alist` with `nginx`, you need config:
```nginx
location /alist/ {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Range $http_range;
proxy_set_header If-Range $http_if_range;
proxy_redirect off;
proxy_pass http://127.0.0.1:5244/alist/ ;
# the max size of file to upload
client_max_body_size 20000m;
}
```
2023-02-18 19:03:07 +08:00
kdxcxs
3c7512f64a
fix(qbittorrent): fix two file transferring related bugs [skip ci] ( #3501 )
...
* fix(qbittorrent): delete qbittorrent task before transferring
* fix(qbittorrent): parse the path correctly when the torrent contains folders
2023-02-18 18:54:51 +08:00
renovate[bot]
84219d3d70
fix(deps): update module gorm.io/driver/mysql to v1.4.7 [skip ci] ( #3495 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-02-18 18:13:41 +08:00
renovate[bot]
05d3727335
fix(deps): update module golang.org/x/image to v0.5.0 [security skip ci] ( #3489 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-02-18 18:13:22 +08:00
仝华帅
ee77c3b113
fix: friendly tip for initial logging in [skip ci] ( #3406 )
...
* refactor: friendly tip for initial logging in
* fix CodeFactor issue
more info pls refer to: https://segmentfault.com/a/1190000043031147
2023-02-18 17:53:11 +08:00
renovate[bot]
fcaf485e0b
fix(deps): update module gorm.io/driver/postgres to v1.4.8 [skip ci] ( #3496 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-02-18 17:52:03 +08:00
renovate[bot]
bd83469bb1
fix(deps): update module golang.org/x/net to v0.7.0 [security skip ci] ( #3502 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-02-18 17:51:33 +08:00
BaimoQilin
90f111b24f
docs: translate title [skip ci] ( #3498 )
...
* Update README_cn.md
* Update README_cn.md
---------
Co-authored-by: Andy Hsu <i@nn.ci >
2023-02-18 17:50:42 +08:00
foxxorcat
7d1034c569
fix(aliyundrive): error occurred when running multiple instances at the same time ( #3448 )
...
* fix(aliyundrive):an error occurred when running multiple instances at the same time
* Update util.go
fix(aliyunpan):clear retry count
2023-02-16 22:12:19 +08:00
Andy Hsu
236c17176c
fix(123): adapt new file list api ( close #3464 )
2023-02-16 22:09:45 +08:00
Andy Hsu
6ee4c10e8f
chore(onedrive)!: change default redirect_uri [skip ci]
2023-02-16 21:37:20 +08:00
AkashiCoin
3798634028
fix(pikpak_share): change media url to content url ( close #3273 ) ( #3441 )
2023-02-16 15:42:11 +08:00
Andy Hsu
567ba5ccd4
feat(aliyundrive_share): aliyun office preview ( close #3408 )
2023-02-15 16:52:24 +08:00
Andy Hsu
ae2ee1821a
chore: change qBittorrent setting [skip ci]
2023-02-15 16:51:29 +08:00
Andy Hsu
805b1e4fa3
fix: different url encoding ( close #3423 )
2023-02-15 16:20:30 +08:00
kdxcxs
d92c10da56
fix(qbittorrent): fix multiple bugs for qbittorrent download ( close #3413 in #3427 )
...
* fix(qbittorrent): wait for qbittorrent to parse torrent and create task
#3413
* fix(qbittorrent): check task state correctly
* fix(qbittorrent): fix path sent to `op.Put()`
2023-02-15 15:58:31 +08:00
Andy Hsu
6659f6d367
fix: windows arm64 build [skip ci]
2023-02-14 20:28:05 +08:00
Andy Hsu
fe416ba15c
feat!: close sign_all by default
2023-02-14 19:20:15 +08:00
Andy Hsu
de66708b24
fix(aliyundrive): device session signature error ( #3398 )
...
* fix signature
* fix: indent-error-flow [skip ci]
2023-02-14 19:17:21 +08:00
Andy Hsu
2ca3e0b8bc
fix(123): incorrect download url ( close #3385 )
2023-02-14 15:47:41 +08:00
Andy Hsu
ae04a0a760
chore: go mod tidy
2023-02-14 15:30:33 +08:00
kdxcxs
c28168c970
feat: support qbittorrent ( close #3087 in #3333 )
...
* feat(qbittorrent): authorization and logging in support
* feat(qbittorrent/client): support `AddFromLink`
* refactor(qbittorrent/client): check authorization when getting a new client
* feat(qbittorrent/client): support `GetInfo`
* test(qbittorrent/client): update test cases
* feat(qbittorrent): init qbittorrent client on bootstrap
* feat(qbittorrent): support setting webui url via gin
* feat(qbittorrent/client): support deleting
* feat(qbittorrent/client): parse `TorrentStatus` enum when unmarshalling json in `GetInfo()`
* feat(qbittorrent/client): support getting files by id
* feat(qbittorrent): support adding qbittorrent tasks via gin
* refactor(qbittorrent/client): return a `Client` interface in `New()` instead of `*client`
* refactor: task handle
* chore: fix typo
* chore: change path
---------
Co-authored-by: Andy Hsu <i@nn.ci >
2023-02-14 15:20:45 +08:00
foxxorcat
46b2ed2507
fix(aliyundriver):x-device-id error code ( #3390 )
...
* fix(aliyundriver):x-drvice-id error code
* fix(aliyunpan):session signature error
* fix typo
---------
Co-authored-by: Andy Hsu <i@nn.ci >
2023-02-14 14:11:07 +08:00
NewbieOrange
22843ffc70
fix(fs): copy file if symlink failed ( #3368 )
2023-02-13 14:41:35 +08:00
NewbieOrange
e1b6368343
feat(aliyundrive): zero copy for local file uploads ( #3359 )
2023-02-12 16:13:57 +08:00
NewbieOrange
62dae50d70
feat(fs): create symbolic link instead of copy local files ( close #2186 in #3354 )
2023-02-12 16:03:11 +08:00
Andy Hsu
43a8ed472b
fix: can't login by github after disable guest ( close #3314 )
2023-02-09 20:12:04 +08:00
Andy Hsu
d87878c232
ci: cancel win/arm64 on dev build [skip ci]
2023-02-09 20:05:00 +08:00
Noah Hsu
ab7dee49b0
feat: add windows/arm64 target ( close #3308 )
2023-02-09 19:52:40 +08:00
renovate[bot]
dca115506d
fix(deps): update module golang.org/x/crypto to v0.6.0 [skip ci] ( #3315 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-02-09 16:17:10 +08:00
renovate[bot]
be17fba0c6
fix(deps): update module golang.org/x/net to v0.6.0 [skip ci] ( #3316 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-02-09 16:16:43 +08:00
renovate[bot]
cd58aa5efe
fix(deps): update module gorm.io/driver/mysql to v1.4.6 ( #3311 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-02-09 16:00:08 +08:00
renovate[bot]
946833d2cc
fix(deps): update module golang.org/x/image to v0.4.0 ( #3323 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-02-09 15:59:31 +08:00
renovate[bot]
eb42d09849
chore(deps): update docker/build-push-action action to v4 ( #3200 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-02-08 22:22:33 +08:00
renovate[bot]
9d00492750
fix(deps): update module gorm.io/driver/postgres to v1.4.7 ( #3312 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-02-08 22:20:04 +08:00
renovate[bot]
b6711d6ab9
chore(deps): update actions-cool/issues-helper action to v3.4.0 ( #3279 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-02-08 22:12:02 +08:00
BoYanZh
7bc46de8aa
feat: settings for tls insecure skip verify ( close #3306 in #3307 )
2023-02-08 22:01:26 +08:00
Noah Hsu
a4f4fb2d73
chore(deps): upgrade github.com/caarlos0/env
2023-02-07 19:55:55 +08:00
Noah Hsu
a181b56ea7
feat: optional forward direct link params ( close #3123 )
2023-02-07 16:39:14 +08:00
Noah Hsu
d0b743d955
fix(onedrive): downloadUrl missed on personal account ( close #3276 )
2023-02-07 16:16:29 +08:00
Noah Hsu
a985b748e9
fix: allow_indexed check ( close #3291 )
2023-02-07 15:14:39 +08:00
Andy Hsu
44cb8aaafe
feat: only log to std on debug/dev mode
2023-02-05 09:17:37 +08:00
Andy Hsu
51f5d1b3c4
fix(local): set perm 0777 for folder ( close #2996 )
2023-02-04 12:11:13 +08:00
Andy Hsu
36e0d6f787
perf(onedrive): optimize request parameter ( close #3178 )
2023-02-04 11:53:13 +08:00
Andy Hsu
3d0065bdcf
feat!: allow disable user ( close #3241 )
...
From this commit, the guest user will be disabled by default
2023-02-04 11:44:17 +08:00
renovate[bot]
7bf8071095
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.194 ( #2940 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-02-04 11:24:47 +08:00
renovate[bot]
30d39f8e10
fix(deps): update module gorm.io/gorm to v1.24.5 ( #3231 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-02-04 11:22:39 +08:00
aimuz
20d3ef7de6
fix(139): check http code & increase chunk size ( #3224 )
...
* fixed: 大文件上传导致连接重置
Signed-off-by: aimuz <mr.imuz@gmail.com >
* revert Dockerfile
---------
Signed-off-by: aimuz <mr.imuz@gmail.com >
Co-authored-by: Andy Hsu <i@nn.ci >
2023-02-04 11:20:13 +08:00
Code2qing
86e5dae4d1
fix(aliyundrive_share): no permission after share_id change ( #3246 )
2023-02-04 11:10:28 +08:00
Andy Hsu
d89b1d4871
fix(baidu_baidu_netdisk): override for create ( close #3242 )
2023-02-03 18:10:39 +08:00
Zayia
080e6fb22a
fix(google_drive): allow download abuse file ( #3217 )
...
通过添加参数acknowledgeAbuse=true,对疑似风险文件直接下载
2023-02-01 19:43:36 +08:00
Wuxuan
e1cd71616d
feat(aliyundrive): internal upload (aliyun ECS for Beijing area only) ( #3188 )
...
Co-authored-by: wangwuxuan2011 <git@wangwuxuan.cn >
2023-01-30 11:18:08 +08:00
Noah Hsu
c92e11dad5
ci: auto build docker with aria2
2023-01-27 15:16:00 +08:00
Noah Hsu
b52e8747fa
fix(alist_v3): incorrect dir on remove ( close #3154 )
2023-01-27 14:51:56 +08:00
xsgy
14305748f0
fix(lanzou): files cannot be uploaded to the specified directory ( #3157 )
...
* Update driver.go
* fix(Lanzou):files cannot be uploaded to the specified directory
Solve the problem that files cannot be uploaded to the specified directory
2023-01-27 14:46:54 +08:00
Noah Hsu
44f8112e53
fix(s3): ignore current folder in contents ( close #3137 )
2023-01-25 19:58:00 +08:00
renovate[bot]
6a90b1d40a
fix(deps): update module github.com/caarlos0/env/v6 to v7 ( #3117 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-01-23 20:02:09 +08:00
Noah Hsu
b42ec3e810
fix: relative path judgment ( close #3130 )
2023-01-23 15:52:46 +08:00
panici
28875ce304
fix(alist_v3): incorrect src_dir on move and copy ( close #3121 pr #3124 )
...
* fix(alist_v3):add dir check(close #3121 )
* Update driver.go
Co-authored-by: Noah Hsu <i@nn.ci >
2023-01-22 18:52:54 +08:00
Noah Hsu
9b99e8ab70
fix(search): allow indexed check ( close #3103 )
2023-01-19 17:00:49 +08:00
Noah Hsu
98872a8fdb
fix: cancel EXCLUSIVE mode on sqlite3
...
because it will result in failure to get admin's info
2023-01-19 16:49:43 +08:00
Noah Hsu
ce4a295008
fix!: check https with X-Forwarded-Proto
...
not read old setting `api_url` and `base_path` from this commit
2023-01-19 12:16:42 +08:00
xsgy
bc1babb5b5
fix(lanzou): shortened filename when uploading files ( #3099 )
2023-01-19 12:05:14 +08:00
Noah Hsu
d61242d85d
feat: add wma to default audio types ( close #3088 )
2023-01-18 10:50:28 +08:00
Noah Hsu
99d7105357
fix: move virtual files to end ( close #3052 )
2023-01-18 10:23:54 +08:00
BoYanZh
be8a9c5f07
fix: mark progress as done after clear ( #3086 )
2023-01-18 09:39:32 +08:00
Wuxuan
530e74c70b
fix: avoid regular expression match current directory ( #3078 )
...
* fix: avoid regular expression match current directory
* fix: optimize and regexp exclude slash
Co-authored-by: wuxuan <refused@wuxuan.eu.org >
2023-01-17 21:54:25 +08:00
Gao Mingfei
0a337756ba
fix(quark): upload file integer divide by zero panic. ( close #3076 pr #3077 )
2023-01-17 18:02:06 +08:00
Noah Hsu
26fe0a7684
feat: customize index max depth
...
Because some driver's issue may cause infinite loop
2023-01-17 17:33:18 +08:00
Aoang
9c7e451c03
perf: optimize sqlite3 ( #3074 )
...
- use journal mode to WAL
- set locking mode to EXCLUSIVE
- set auto vacuum
ref:
- https://www.sqlite.org/pragma.html#pragma_journal_mode
- https://www.sqlite.org/pragma.html#pragma_locking_mode
- https://www.sqlite.org/pragma.html#pragma_auto_vacuum
2023-01-17 17:06:11 +08:00
Noah Hsu
8df1455f25
workflow: add tips for Reproduction
2023-01-17 16:34:56 +08:00
Noah Hsu
9d9377f65d
fix(local): incorrect path of thumbnail (for 6453ae0)
2023-01-16 20:02:30 +08:00
Noah Hsu
8b523fab8b
revert: add Getter interface back
2023-01-16 19:55:43 +08:00
Noah Hsu
6453ae0968
fix(search): empty parent where update ( close #2810 )
2023-01-16 17:33:24 +08:00
清靈語
1cfd47a258
feat: install tzdata in the docker image ( #3056 )
...
* disable caching of repository metadata and installation of tzdata
* add TZ variable example
2023-01-16 13:43:15 +08:00
BoYanZh
8e2069c554
fix: db non full-text import error ( #3055 )
2023-01-15 23:49:23 +08:00
Noah Hsu
6b8778a63c
fix: don't save if refresh token is empty ( close #2957 )
2023-01-14 20:33:07 +08:00
Zexi
aaa8c440fe
fix(seafile): token refresh ( #3010 )
...
* docs: add Seafile support
* fix: Seafile token refresh
2023-01-13 21:20:21 +08:00
panici
2dc5dec83c
feat: add Cloudreve driver ( close #2658 in #2997 )
...
* feat: add cloudreve support
add cloudreve support
(#2658 )
* docs(README): add suppuort cloudreve
* fix(cloudreve): add cookie refresh
Co-authored-by: panici <zhangjun@zjdeMacBook-Pro.local >
2023-01-12 19:57:43 +08:00
Code2qing
1eca2b83ed
perf(terabox): optimize prompt message ( #3002 )
...
* perf(terabox):prompt login status when init the driver
* docs:add Terabox
* perf(terabox):prompt area is not available
* style(terabox): del else
2023-01-12 19:40:38 +08:00
Zexi
48e6f3bb23
feat: add Seafile driver ( #2964 )
...
* feat: add Seafile driver
* docs: add Seafile support
* refactor: optimization
* fix: close redirect on `move` and `rename`
Co-authored-by: Noah Hsu <i@nn.ci >
2023-01-10 20:51:42 +08:00
BoYanZh
0ad9e17196
feat: lazy index creation on searcher init ( #2962 )
2023-01-09 14:09:21 +08:00
wangwuxuan2011
9398cdaac1
fix(s3): allow http/https headers to be attached from CustomHost ( #2959 )
...
* add(s3):Allow http/https headers to be attached to CustomHost
* optimize
Co-authored-by: wangwuxuan <wangwuxuan@163.com >
Co-authored-by: Noah Hsu <i@nn.ci >
2023-01-08 21:47:45 +08:00
foxxorcat
2f19d4a834
perf(lanzou): optimize the use of list cache ( #2956 )
...
* fix:local sort not cache
* perf(lanzou): Optimize the use of list cache
2023-01-08 21:31:35 +08:00
aimuz
99a186d01b
fix(139): upload failed ( #2950 )
...
fix: The file size is exceeded and cannot be uploaded
fix: File name has special characters, signature fails
improve: optimize memory usage
Signed-off-by: aimuz <mr.imuz@gmail.com >
Signed-off-by: aimuz <mr.imuz@gmail.com >
2023-01-08 16:31:00 +08:00
wangwuxuan2011
40ef233d24
fix(USS): resolve driver problem ( #2942 )
...
* remove:"Endpoint" and "CustomHost" are the same thing, remove "CustomHost"
* fix: file download url error
* fix: too many file get list error
Co-authored-by: wangwuxuan <wangwuxuan@163.com >
2023-01-08 16:30:05 +08:00
foxxorcat
7c3ea193ff
fix(lanzou):webdav unable to download and upload ( close #2700 )
...
* fix(lanzou):Unable to get folder
* fix(lanzou):webdav unable to download and upload. (close 2700)
2023-01-08 15:37:39 +08:00
BoYanZh
7902b646ff
feat: add database non full text index ( close #2916 )
2023-01-07 01:40:49 +08:00
BoYanZh
1c453ae147
feat: add a switch to enable auto update index ( close #2930 )
2023-01-07 00:59:30 +08:00
BoYanZh
cf5714ba73
fix(smb): use correct path ( #2933 )
...
There is no need to add a `.` prefix as there is no leading `/` in paths
2023-01-07 00:47:08 +08:00
foxxorcat
d655340634
fix(lanzou): cookie type failed to get file ( #2926 )
2023-01-06 18:08:40 +08:00
renovate[bot]
8d4ac031c3
chore(deps): update module github.com/aws/aws-sdk-go to v1.44.174 [skip ci] ( #2920 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-01-06 15:36:33 +08:00
foxxorcat
a1ded3a339
refactor(baidu_photo): optimize code ( close #2911 pr #2924 )
2023-01-06 15:36:05 +08:00
Noah Hsu
4a0e47dbac
fmt: go mod tidy
2023-01-05 19:34:18 +08:00
renovate[bot]
510d266da8
chore(deps): update module github.com/aws/aws-sdk-go to v1.44.173 [skip ci] ( #2832 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-01-05 19:32:58 +08:00
renovate[bot]
35dfb36884
chore(deps): update module gorm.io/driver/mysql to v1.4.5 [skip ci] ( #2881 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-01-05 19:31:47 +08:00
renovate[bot]
b88f4d2ba6
chore(deps): update module gorm.io/driver/sqlite to v1.4.4 [skip ci] ( #2869 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-01-05 19:31:28 +08:00
renovate[bot]
50318da879
chore(deps): update module gorm.io/driver/postgres to v1.4.6 [skip ci] ( #2867 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-01-05 19:18:42 +08:00
renovate[bot]
575487a0e2
chore(deps): update module gorm.io/gorm to v1.24.3 [skip ci] ( #2870 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-01-05 19:18:15 +08:00
renovate[bot]
69d3ccaed2
chore(deps): update module golang.org/x/net to v0.5.0 [skip ci] ( #2908 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-01-05 19:17:41 +08:00
renovate[bot]
170859a112
chore(deps): update module golang.org/x/crypto to v0.5.0 [skip ci] ( #2905 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-01-05 19:16:56 +08:00
renovate[bot]
7fdcb106a5
chore(deps): update module golang.org/x/image to v0.3.0 [skip ci] ( #2906 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-01-05 17:49:45 +08:00
AkashiCoin
14d4ddb752
fix(mysql): change mysql against mode ( close #2903 close #2844 pr #2904 )
2023-01-05 17:11:58 +08:00
zxdstyle
428e59a844
fix(uss): close of closed channel ( close #2847 #2896 )
...
* fix(uss): close of closed channel
* fix(uss): close of closed channel
Co-authored-by: zxdstyle <xiangdong.zhu@maitang001.com >
2023-01-04 21:43:47 +08:00
Code2qing
1c8d895fc0
feat(terabox): add terabox driver ( close #2825 close #2678 #2849 )
2022-12-31 16:44:20 +08:00
Code2qing
fbf3fb825b
fix(baidu_netdisk): file copy and file upload [skip ci] ( #2848 )
2022-12-31 16:43:22 +08:00
Noah Hsu
16e07ae016
fix(s3): set default root path ( close #2834 )
2022-12-30 14:53:01 +08:00
Noah Hsu
d1b9db38c7
feat(docker): add docker-compose file ( close #2067 )
2022-12-30 14:25:22 +08:00
Noah Hsu
395f0fc5f3
fix(docker): use root user as default
2022-12-30 14:21:39 +08:00
BoYanZh
143e4cd077
fix: mysql FULLTEXT search ( #2840 )
2022-12-30 14:20:04 +08:00
Noah Hsu
f777a2fab4
fix: version doesn't update
2022-12-30 01:24:37 +08:00
renovate[bot]
dad3012ec3
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.169 ( #2816 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-29 21:22:50 +08:00
Noah Hsu
d45209edb2
fix: /entrypoint.sh permission denied
2022-12-29 17:16:30 +08:00
Noah Hsu
e89489453d
fix: cache nil value for meta
2022-12-28 17:44:34 +08:00
DDS-Tomo
ed6c8194a7
feat: add PUID, PGID, Umask settings to docker image ( close #2525 pr #2818 )
...
Co-authored-by: DDSRem <1448139087@qq.com >
2022-12-28 17:18:27 +08:00
itsHenry
83fe17c6ec
feat: support github login ( #2639 )
...
* Support Github Login
* improve according to codefactor
* fix due to last updates
* optimization
Co-authored-by: Noah Hsu <i@nn.ci >
2022-12-27 22:11:22 +08:00
renovate[bot]
c00dcc8f39
fix(deps): update module github.com/gin-gonic/gin to v1.8.2 ( #2785 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-25 18:20:24 +08:00
Noah Hsu
e118f4a3b9
feat: update index by req.Paths
2022-12-24 20:23:04 +08:00
renovate[bot]
5e28d0f96a
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.167 ( #2781 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-24 16:14:20 +08:00
BoYanZh
3af23f6792
feat: batch reload all storages ( close #2762 pr #2775 )
2022-12-21 19:21:18 +08:00
BoYanZh
3a41b929c9
fix: pgsql search [skip ci] ( close #2761 pr #2774 )
2022-12-21 19:19:37 +08:00
Noah Hsu
105f22969c
feat: support cancel for some drivers ( close #2717 )
2022-12-21 15:03:09 +08:00
renovate[bot]
e4a88a7c13
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.164 ( #2773 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-21 12:04:32 +08:00
Noah Hsu
b0255040c6
chore: fix typo
2022-12-20 20:07:19 +08:00
Noah Hsu
f1e842e12a
feat: customize settings layout ( close #2765 )
2022-12-20 20:04:37 +08:00
Noah Hsu
d756cf3e9f
fix(local): disable copying or moving to subfolders ( close #2760 )
2022-12-20 16:27:04 +08:00
EzraRT
146619134d
feat: customize proxy ignore headers ( close #2763 pr #2766 )
...
* clean referer when use proxy
* feat: customize proxy ignore headers
Co-authored-by: Noah Hsu <i@nn.ci >
2022-12-20 16:08:32 +08:00
renovate[bot]
372030071e
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.163 [skip ci] ( #2738 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-20 15:13:14 +08:00
foxxorcat
62a06fa0f9
feat: optimize file operation interface ( #2757 )
...
* feat: optimize file operation interface
* chore: fix typo
Co-authored-by: Noah Hsu <i@nn.ci >
2022-12-20 15:02:40 +08:00
BoYanZh
e2bcca2fbd
feat: static files for embed viewers ( #2739 )
2022-12-19 13:34:06 +08:00
BoYanZh
4568af9542
feat: better static file Cache-Control ( #2751 )
2022-12-19 13:32:00 +08:00
Noah Hsu
b50d486a63
fix: sub path check if subPath = /
2022-12-18 21:28:38 +08:00
BoYanZh
0ae3fc608b
feat: export all cmd ( #2746 )
2022-12-18 19:53:39 +08:00
foxxorcat
6024e8d832
refactor: split the db package hook and cache to the op package ( #2747 )
...
* refactor:separate the setting method from the db package to the op package and add the cache
* refactor:separate the meta method from the db package to the op package
* fix:setting not load database data
* refactor:separate the user method from the db package to the op package
* refactor:remove user JoinPath error
* fix:op package user cache
* refactor:fs package list method
* fix:tile virtual paths (close #2743 )
* Revert "refactor:remove user JoinPath error"
This reverts commit 4e20daaf9e .
* clean path directly may lead to unknown behavior
* fix: The path of the meta passed in must be prefix of reqPath
* chore: rename all virtualPath to mountPath
* fix: `getStoragesByPath` and `GetStorageVirtualFilesByPath`
is_sub_path:
/a/b isn't subpath of /a/bc
* fix: don't save setting if hook error
Co-authored-by: Noah Hsu <i@nn.ci >
2022-12-18 19:51:20 +08:00
EthanZhu
f38f4f401b
fix(139): modify chunk size to avoid large file upload failure ( close #2744 close #2682 pr #2745 )
2022-12-18 17:48:09 +08:00
BoYanZh
3b2ae85009
chore: only ignore root dirs ( #2741 )
2022-12-18 16:48:32 +08:00
baysonfox
faf4150d1e
docs: fix badges on README.md and README_cn.md [skip ci] ( #2749 )
2022-12-18 16:48:03 +08:00
foxxorcat
fb64f00640
refactor: obj name mapping and internal path processing ( #2733 )
...
* refactor:Prepare to remove the get interface
* feat:add obj Unwarp interface
* refactor:obj name mapping and program internal path processing
* chore: fix typo
* feat: unwrap get
* fix: no use op.Get to get parent id
* fix: set the path uniformly
Co-authored-by: Noah Hsu <i@nn.ci >
2022-12-17 19:49:05 +08:00
AkashiCoin
3d336b328a
feat: add pikpak share driver ( close #2728 pr #2731 )
2022-12-16 19:10:19 +08:00
renovate[bot]
f9cf29e0b6
fix(deps): update module golang.org/x/crypto to v0.4.0 ( #2638 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-16 19:08:52 +08:00
renovate[bot]
cbd038f30f
fix(deps): update module golang.org/x/net to v0.4.0 ( #2608 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-16 19:05:20 +08:00
renovate[bot]
2aeb75a779
fix(deps): update module github.com/blevesearch/bleve/v2 to v2.3.6 ( #2727 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-16 19:05:06 +08:00
renovate[bot]
2f8eaf6bea
fix(deps): update module github.com/pquerna/otp to v1.4.0 ( #2708 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-16 18:15:59 +08:00
renovate[bot]
fb7a5dec1b
fix(deps): update module golang.org/x/image to v0.2.0 ( #2601 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-16 18:15:19 +08:00
renovate[bot]
e61bac039a
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.161 ( #2595 ) [skip ci]
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-16 18:14:56 +08:00
BoYanZh
b3be9ef428
feat(search): use FULLTEXT index ( close #2716 pr #2726 )
2022-12-16 16:51:36 +08:00
BoYanZh
5a6b600ace
feat: show gorm log on debug/dev mode ( #2720 )
2022-12-15 17:48:52 +08:00
BoYanZh
e58ca686e3
feat: cache static files ( #2715 )
2022-12-15 17:48:29 +08:00
BoYanZh
6f4b1ba4b3
feat: log to stdout & file ( #2709 )
2022-12-14 13:19:08 +08:00
BoYanZh
cdc45630ae
fix: whereInParent when parent = "/" ( #2706 )
2022-12-14 10:37:09 +08:00
BoYanZh
7947ff1ae4
feat: limit max connection count ( #2701 )
2022-12-14 10:33:58 +08:00
foxxorcat
33bae52fa1
refactor: optimize driver initialization need to manually deserialize and assign values, and remove redundant driver registration parameters ( #2691 )
...
* refactor: optimize driver initialization need to manually deserialize and assign values, and remove redundant driver registration parameters
* fix typo
Co-authored-by: Noah Hsu <i@nn.ci >
2022-12-13 18:03:30 +08:00
Noah Hsu
3ee45c69a7
fix(baidu_netdisk): encode path for create ( close #2690 )
2022-12-13 17:57:41 +08:00
BoYanZh
179d285564
feat: optimize database search ( #2687 )
...
* feat: remove index on `SearchNode.Name`
As we do not use s% on name column, index there does not work
* fix: init index after init data
Or on the first run, it will log 'init index error: readObjectStart: expect { or n, but found , error found in #0 byte of ...||..., bigger context ...||...'
* fix: match parent more precisely
It will match `/a/bc` if we search in `/a/b` originally.
But it is not backward compatible by adding a suffix `/`
to all the data in parent field
2022-12-12 20:20:01 +08:00
BoYanZh
a2e8e96c71
feat: respond static file on loading storages ( #2686 )
2022-12-12 20:17:58 +08:00
Noah Hsu
5043815d48
fix(search): don't delete virtual folder while update indexes ( close #2677 )
2022-12-11 14:59:58 +08:00
BoYanZh
1640f06e13
feat(search): multiple keywords split by space ( #2669 )
2022-12-10 19:28:34 +08:00
BoYanZh
62ea93837c
feat: alist v3 index permission ( #2653 )
...
* feat: alist v3 index permission
* fix allowIndexed check
Co-authored-by: Noah Hsu <i@nn.ci >
2022-12-10 19:03:09 +08:00
Noah Hsu
446f82888c
fix(local): add sign to thumbnail ( close #2536 close #2650 )
2022-12-09 10:08:31 +08:00
BoYanZh
6f1aeb47fd
feat: index enhancement ( close #2632 pr #2636 )
...
* feat: index paths as setting
* feat: clear index (#2632 )
* feat: check indexMQ more frequently
2022-12-09 10:02:13 +08:00
Noah Hsu
1f7c1b4f43
fix(cors): allow all methods ( close #2640 )
2022-12-08 11:35:21 +08:00
BoYanZh
3fa0217c4b
feat(alist-v3): support write ( close #2626 pr #2635 )
2022-12-07 19:02:28 +08:00
Noah Hsu
2dd30f2b77
feat(search): support with password
2022-12-07 10:45:02 +08:00
BoYanZh
6e23c8b4c0
feat: partial update index ( close #2593 close #2621 pr #2624 )
2022-12-07 10:41:52 +08:00
BoYanZh
72aa63adce
fix: skip virtual driver on building index ( close #2604 pr #2617 )
2022-12-06 20:43:32 +08:00
Noah Hsu
e65e8be59e
fix(search): missed base_path of user for parent ( close #2611 )
2022-12-06 17:28:39 +08:00
BoYanZh
7aa4dfb240
feat: use natural sort in SortFiles ( #2612 )
2022-12-06 17:28:18 +08:00
CN-traveler
bd324233a0
fix: can't paste image while report bug ( #2597 ) [skip ci]
2022-12-06 09:19:49 +08:00
Noah Hsu
f1a9b68022
fix(index): update indexes in database
2022-12-05 20:23:37 +08:00
Noah Hsu
dda1da4576
fix(index): nil pointer call
2022-12-05 20:22:35 +08:00
Noah Hsu
5b7aa9c1cf
feat: allow all cors headers ( close #2571 )
2022-12-05 20:05:20 +08:00
Noah Hsu
a28aaceaad
chore(ci): only build on main branch
2022-12-05 19:52:02 +08:00
renovate[bot]
2bb200af87
fix(deps): update modules by renovate[bot]
...
fix(deps): update module github.com/sheltonzhu/115driver to v1.0.13 (#2413 ) [skip ci]
fix(deps): update module github.com/golang-jwt/jwt/v4 to v4.4.3 (#2526 ) [skip ci]
fix(deps): update module golang.org/x/image to v0.1.0 (#2587 ) [skip ci]
chore: go mod tidy
Co-Authored-By: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-05 19:50:49 +08:00
Noah Hsu
97f1efbb72
feat!: disable --force-bin-dir if --data is abs
...
related issues: #2580 #2542
after this commit, the `--force-bin-dir` would take no effect if `--data` is absolute path
2022-12-05 18:32:48 +08:00
Noah Hsu
bf8b6f4c2c
feat: customize ignore paths of indexes
2022-12-05 16:45:11 +08:00
Noah Hsu
bd33c200dc
feat: optimize index build
2022-12-05 16:07:36 +08:00
Noah Hsu
bc6baf1be0
fix(ci): sort lang json file
2022-12-05 14:40:46 +08:00
BoYanZh
dc8d5106f9
feat: auto fix address in alist & smb storages ( #2582 )
2022-12-05 13:31:34 +08:00
BoYanZh
8c0dfe2f3d
feat: Search enhancement ( #2562 )
...
* feat: ignore AList storage on indexing
* fix: remove unused err in `walkFn`
* chore(ci): fix auto_lang trigger and run it
* feat: batch index
* feat: quit index & init index
* feat: set DocType for bleve data
* fix: build index cleanup check origin err
2022-12-05 13:28:39 +08:00
Noah Hsu
4e1be9bee6
fix: async init aria2 to optimize start duration
2022-12-04 00:00:40 +08:00
BoYanZh
4c5285e094
chore(ci): format lang file ( #2558 )
2022-12-03 12:19:10 +08:00
Ovear
0838feeb82
fix:introduce buffered response writer for webdav, fix status/error return failed. ( #2544 )
...
* fix: introduce buffered response writer for webdav, fix webdav status/error return failed.
* fix: bypass buffered writer for GET/HEAD/POST requests
2022-12-02 17:59:59 +08:00
浅秋枫影
ae791c8634
fix: hide check in canAccess ( #2556 )
...
修复 meta.Password 和 meta.Hide 都为空的情况下,会导致无权限访问
2022-12-02 17:44:29 +08:00
BoYanZh
09f480318c
fix: unify settings string ( #2555 )
2022-12-02 17:42:42 +08:00
BoYanZh
4c5be5f07f
feat: only show CanAccess search results ( #2548 )
...
* feat: only show `CanAccess` search results
* have done in frontend
Co-authored-by: Noah Hsu <i@nn.ci >
2022-12-02 10:09:39 +08:00
Ovear
9c1ffdbb82
fix(aliyundrive): return error if got wrong http code ( #2543 )
2022-12-01 21:48:19 +08:00
Noah Hsu
18a63e34dd
fix(task): memory alignment for curID ( close #2541 )
2022-12-01 13:16:31 +08:00
Noah Hsu
ff0bcfef8a
feat: optional sign all files
2022-11-30 22:10:07 +08:00
Noah Hsu
4980b71ba3
fix: add hide check to canAccess ( close #2532 )
2022-11-30 22:01:33 +08:00
Noah Hsu
b5bf5f4325
fix: check if the req path is relative path ( close #2531 )
2022-11-30 21:38:00 +08:00
SiHuaN
f9788ea7cf
feat(webdav): delete privacy header and optimize 302 ( #2534 )
...
* fix: delete set-cookie from sharepoint webdav response header
* fix: avoid two redirects when using webdav
* fix: return the correct Content-Type instead of just `application/octet-stream`
* feat: webdav backend localOnly -> proxyOnly
2022-11-30 20:52:33 +08:00
Noah Hsu
83644dab85
fix: mapping filename in GetName
...
some missed filename mapping
2022-11-30 20:46:54 +08:00
itsHenry
d94cf72da2
fix(local): webp image decode while generate thumbnail ( close #2484 pr #2520 )
...
* Fix that webp thumb in local storage won't load
* Simplify code
Co-authored-by: Noah Hsu <i@nn.ci >
2022-11-29 09:47:40 +08:00
Noah Hsu
e98561ceb1
fix: filename char mapping while build index
2022-11-28 21:08:11 +08:00
Noah Hsu
76f37373e0
fix: settings map read and write concurrently
2022-11-28 16:54:03 +08:00
Simon
61a06992c3
fix(aria2): directory missing ( close #1856 pr #2504 )
2022-11-28 14:05:28 +08:00
Noah Hsu
ddcba93eea
feat: multiple search indexes ( #2514 )
...
* refactor: abstract search interface
* wip: ~
* fix cycle import
* objs update hook
* wip: ~
* Delete search/none
* auto update index while cache changed
* db searcher
TODO: bleve init issue
cannot open index, metadata missing
* fix size type
why float64??
* fix typo
* fix nil pointer using
* api adapt ui
* bleve: fix clear & change struct
2022-11-28 13:45:25 +08:00
Noah Hsu
bb969d8dc6
fix(aliyundrive_share): get share link download url directly ( close #2472 )
2022-11-24 18:50:04 +08:00
BoYanZh
2383e851e2
fix: reset index before build new one ( #2471 )
2022-11-24 14:47:49 +08:00
BoYanZh
330a767fd7
feat: build index & search with bleve ( close #1740 pr #2386 )
...
* feat: build index & search with bleve (#1740 )
* delete unused struct
Co-authored-by: Noah Hsu <i@nn.ci >
2022-11-24 11:46:47 +08:00
Noah Hsu
2b902de6fd
fix(build): switch to crazymax/xgo
2022-11-22 21:08:27 +08:00
Noah Hsu
85e1350af8
fix: check password while upload ( close #2444 )
2022-11-22 16:14:01 +08:00
Noah Hsu
c09800790b
feat: custom filename char mapping
...
fixes #2447 #2446 #2440 #2409 #2006 #1979 #1507 #324 #691 #518 #430
2022-11-22 15:54:18 +08:00
renovate[bot]
25fd343069
chore(deps): update module gorm and aws-sdk
...
fix(deps): update module gorm.io/gorm to v1.24.2 (#2436 )
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.142 (#2407 )
Co-Authored-By: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-21 17:37:03 +08:00
Noah Hsu
518487e3df
fix(123): optimize error messages ( #2415 )
2022-11-19 21:48:03 +08:00
BoYanZh
a02d9c8463
fix: check error type on file not found ( #2383 )
2022-11-18 01:30:37 +08:00
Noah Hsu
8beeba7c0c
fix(google_drive): check token before return link ( close #2392 )
2022-11-17 09:08:31 +08:00
renovate[bot]
50fb49f0c3
fix(deps): update dependencies by renovate[bot] ( #2344 )
...
chore(deps): add renovate.json (#2344 )
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.137 (#2345 )
chore(deps): update actions-cool/issues-helper action to v2.5.0 (#2346 )
fix(deps): update module github.com/caarlos0/env/v6 to v6.10.1 (#2348 )
fix(deps): update module github.com/gin-contrib/cors to v1.4.0 (#2349 )
fix(deps): update module github.com/sirupsen/logrus to v1.9.0 (#2354 ) [skip ci]
fix(deps): update module gorm.io/driver/postgres to v1.4.5 (#2361 ) [skip ci]
fix(deps): update module golang.org/x/crypto to v0.2.0 (#2357 ) [skip ci]
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.138 (#2358 ) [skip ci]
fix(deps): update module gorm.io/gorm to v1.24.1 (#2366 ) [skip ci]
fix(deps): update module gorm.io/driver/mysql to v1.4.4 (#2360 ) [skip ci]
fix(deps): update module github.com/spf13/cobra to v1.6.1 (#2356 ) [skip ci]
chore(deps): update actions-cool/issues-helper action to v3 (#2367 ) [skip ci]
fix(deps): update module gorm.io/driver/sqlite to v1.4.3 (#2365 ) [skip ci]
chore(deps): update actions/checkout action to v3 (#2368 ) [skip ci]
chore(deps): update actions/setup-go action to v3 (#2374 ) [skip ci]
chore(deps): update actions/upload-artifact action to v3 (#2375 ) [skip ci]
chore(deps): update docker/build-push-action action to v3 (#2377 ) [skip ci]
chore(deps): update docker/login-action action to v2 (#2378 ) [skip ci]
chore(deps): update docker/metadata-action action to v4 (#2381 ) [skip ci]
chore(deps): update docker/setup-buildx-action action to v2 (#2382 ) [skip ci]
chore(deps): update docker/setup-qemu-action action to v2 (#2387 ) [skip ci]
fix(deps): update module github.com/aws/aws-sdk-go to v1.44.139 (#2394 ) [skip ci]
fix(deps): update module golang.org/x/crypto to v0.3.0 (#2395 ) [skip ci]
Co-Authored-By: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-17 08:49:15 +08:00
Noah Hsu
4dcaa24758
fix: cache is modified while sorting ( close #2340 )
2022-11-15 14:38:23 +08:00
BoYanZh
3fbdf6f022
fix: resolve import cycle in alist v3 driver ( close #2337 pr #2338 )
2022-11-15 10:51:32 +08:00
Noah Hsu
aa9ba289bb
fix(123): overwrite upload if file has no change ( close #2324 )
2022-11-14 17:58:49 +08:00
Noah Hsu
3b6d8987db
chore: add id to resp of create storage
2022-11-13 20:17:10 +08:00
Noah Hsu
6e3df9f847
fix(google_drive): type of chunk_size ( close #2303 )
2022-11-12 18:46:38 +08:00
Noah Hsu
efe0e6af22
feat: silent start, stop and restart
2022-11-11 18:42:06 +08:00
Gerhard Tan
00de9bf16d
fix!: sign with the raw path instead of filename ( #2258 )
2022-11-11 16:24:25 +08:00
Noah Hsu
1743110a70
fix(123): incorrect order_by ( close #2285 )
2022-11-10 21:47:13 +08:00
BoYanZh
0352a8e028
feat: add alist v2 driver ( #2281 )
2022-11-10 17:42:12 +08:00
Code2qing
c601bb794b
feat(123): support mail login ( close #2218 pr #2276 )
2022-11-10 09:34:48 +08:00
BoYanZh
42865486f1
fix(local): deal with relative symlink dir ( #2274 )
2022-11-09 18:15:42 +08:00
sheltonzhu
44f5cf40ef
fix(115): update 115 driver lib to fix some bugs ( #2275 )
...
* fix duplicate cookies in client.List func
* rm useless cookie when init
2022-11-09 18:15:06 +08:00
Noah Hsu
c3ab378ac5
feat(google_drive): support shortcut ( close #2268 )
2022-11-09 16:19:33 +08:00
BoYanZh
cdcbfb24c4
fix(local): directory handle ( #2262 )
...
* fix(local): check symlink dir
* fix(local): set size of dir to 0 (close #2264 )
2022-11-09 11:20:09 +08:00
Noah Hsu
e05e2fd663
chore: change default timeout ( close #2252 )
2022-11-08 20:37:42 +08:00
Noah Hsu
6639cab1ae
feat(google_drive): chunk upload ( close #2241 )
2022-11-07 20:58:52 +08:00
Noah Hsu
8241f0999a
feat(google_drive): override upload ( close #1880 )
2022-11-07 20:35:35 +08:00
Noah Hsu
f3a5e3702d
fix(189): force use CN time zone ( close #2240 )
2022-11-07 16:37:47 +08:00
小傅Fox
46701a176d
feat(aria2): mark aria2 seeding as complete ( #2223 )
...
Currently if using aria2 to download a torrent file, it does not
consider seeding + active as completed, so the torrent download task
only completes as aria2 stops seeding.
This commit uses seeder property of TaskInfo, and mark tasks with active
status and true seeder as complete.
2022-11-06 16:20:09 +08:00
Noah Hsu
26a29f20c3
fix: missed encode path while use down proxy ( close #2208 )
2022-11-06 14:46:47 +08:00
Noah Hsu
18cd45d257
fix: disable cache for 302 redirect ( close #2216 )
2022-11-05 15:54:51 +08:00
联盟少侠
f0a533a77a
feat(115): put UA as a variable ( #2217 )
...
In special cases, developers can pass in custom UA to solve the speed limit problem
Mainly for developers calling from outside
2022-11-05 15:50:57 +08:00
sheltonzhu
619a9aeb6c
feat(115): add qrcode login ( #2206 )
2022-11-04 21:16:52 +08:00
Noah Hsu
7bfa5876ed
fix(189pc): fix typo
2022-11-01 19:32:40 +08:00
Noah Hsu
f95ab6ee57
docs: add 115 to readme [skip ci]
2022-11-01 19:28:24 +08:00
Noah Hsu
e75f19e9c0
feat: add Referrer-Policy while redirect (pr #2160 )
2022-11-01 19:19:08 +08:00
Noah Hsu
1c212f6c30
feat!: force to use the bin dir as the data dir ( close #2108 )
...
- move default log path to `data/log/log.log`
- replace `--conf` with `--data`
2022-11-01 19:16:23 +08:00
sheltonzhu
141419056d
feat(115): add cloud 115 driver ( #2164 )
...
close #2112
close #1598
close #894
2022-11-01 15:31:31 +08:00
Noah Hsu
aabfe49cb9
docs: change contributors show [skip ci]
2022-10-30 15:26:31 +08:00
BoYanZh
a3b631f9e9
fix(smb): remount smb before each operation ( close #2123 pr #2140 )
2022-10-30 15:05:07 +08:00
浅秋枫影
18165eb50d
fix(123): get real url ( #2135 )
...
123 今天更新多加了一层跳转`https://web-pro.cjjd18.com/download/?params=base64encode(rawurl) `,导致ip如果不符则可能下载返回403,在服务器端处理获取rawurl
2022-10-27 17:02:35 +08:00
浅秋枫影
061c462f0b
feat(mediatrack): get real url ( #2132 )
...
* feat:get real url for mediatrack
redirect token 一次有效,点击第二次就抛出了`400`错误。本次提交直接获取302后的真实链接返回前端
* add cache
cache 60 Second
2022-10-27 15:26:08 +08:00
BoYanZh
5f79d665d9
feat: add alist v3 driver ( close #1833 pr #2129 )
...
* feat: add alist v3 driver (close #1833 )
* chore: use generics
Co-authored-by: Noah Hsu <i@nn.ci >
2022-10-27 10:54:49 +08:00
BoYanZh
f0cc0a76a9
chore: fix typos ( #2122 )
...
* refactor: fix typos
* Update help.go
Co-authored-by: Noah Hsu <i@nn.ci >
2022-10-26 14:05:56 +08:00
BoYanZh
dd4674e486
feat: add smb driver ( close #1746 ) ( #2114 )
...
* feat: add smb driver (close #1746 )
* Update driver.go
2022-10-25 23:00:23 +08:00
Noah Hsu
0019959eec
fix: delete cache if files is empty
2022-10-25 16:42:06 +08:00
BoYanZh
3e9c38697d
fix: use utils.Log during static file router init ( #2100 )
...
formerly the log is not in stderr
2022-10-24 23:33:57 +08:00
Noah Hsu
e3b7c41199
docs: update demo url & sponsor content [skip ci]
2022-10-24 22:48:36 +08:00
Noah Hsu
a2c808c8ce
fix: incorrect root path of initial storage for dev mode
2022-10-23 16:26:14 +08:00
Jmper
da7e17aa38
feat(local): add show hidden config ( #2087 )
2022-10-23 14:53:07 +08:00
Noah Hsu
02df3759df
docs: fix typo [skip ci]
2022-10-20 14:29:28 +08:00
缘生
4fef500795
feat(user): set default password of init user from env ( #2058 )
...
add init user default password
Signed-off-by: ysicing <i@ysicing.me >
Signed-off-by: ysicing <i@ysicing.me >
2022-10-19 20:06:06 +08:00
Noah Hsu
07ece452b3
docs: fix docker link [skip ci]
2022-10-19 17:08:01 +08:00
Noah Hsu
b8cf02ca68
fix(aria2): retry 5 times for get status ( close #1857 )
2022-10-18 15:27:19 +08:00
Jake Liu
3db798a82a
feat(google_photo): Add categories in root, add album support. ( #2046 )
...
* feat(google_photo): Add categories in root, add album support.
* fix(google_photo): Remove else block in `drive/google_photo/types.go:60`
2022-10-18 15:19:05 +08:00
Noah Hsu
45cc0cedbd
fix(s3): mkdir and delete ( close #2029 )
2022-10-18 15:10:47 +08:00
foxxorcat
2efade123e
fix(189pc):slice bounds out of range close #2045
2022-10-17 22:39:51 +08:00
foxxorcat
fc393f743f
fix(thunder):no additional processing when the deviceID is correct
2022-10-17 22:37:17 +08:00
foxxorcat
0e99e7e9b9
fix(thunder,189pc): some known problems
2022-10-17 00:54:39 +08:00
Noah Hsu
7a95850c1b
fix(google_drive): incorrect ModifiedTime ( close #2002 )
2022-10-14 14:17:33 +08:00
Noah Hsu
549355bb29
build: change golang version
2022-10-12 17:35:44 +08:00
Noah Hsu
55aa8ee3b1
fix: version print of build script [skip ci]
2022-10-12 17:24:04 +08:00
Noah Hsu
1c22fc367e
docs: change badges in readme
2022-10-12 17:08:40 +08:00
Noah Hsu
5ea8d62aa4
fix(onedrive): unable to operate if path contains % ( close #1965 )
2022-10-11 14:21:58 +08:00
Noah Hsu
baebc2fbe9
fix: can't delete disabled storage ( close #1942 )
2022-10-09 22:20:48 +08:00
Noah Hsu
8c69260972
fix(webdav): set mime by ext if it's empty
2022-10-09 19:29:55 +08:00
Noah Hsu
30f992c6a8
feat(onedrive): customize chunk size ( close #1927 )
2022-10-08 22:23:33 +08:00
Noah Hsu
dcaaae366b
feat: add support for mega.nz (close 1553)
2022-10-08 22:16:41 +08:00
Jake Liu
284035823f
feat: add Google Photo support ( #1853 )
...
* feat: add Google Photo support
* fix: fetch all pages
* chore(google_photo): add meta info
Co-authored-by: Noah Hsu <i@nn.ci >
2022-10-07 20:36:56 +08:00
Noah Hsu
be8ff92414
docs: replace qq with discord [skip ci]
2022-10-05 14:17:00 +08:00
Noah Hsu
a4c846a424
chore(onedrive): set default value for region
2022-10-01 20:09:57 +08:00
Noah Hsu
451e418b18
perf: return cache before check obj to reduce recursion
2022-09-28 21:19:36 +08:00
hdm9527
4e13b1a83c
perf: modify onedrive upload chunk size ( #1831 close #1790 )
...
improve onedrive upload speed
2022-09-27 20:29:54 +08:00
Noah Hsu
9d2e9887af
docs: create FUNDING.yml [skip ci]
2022-09-27 14:41:43 +08:00
Noah Hsu
dc73c2e97d
fix: custom token expires in doesn't work
2022-09-27 14:23:56 +08:00
Noah Hsu
a624121095
ci: manual trigger github actions
2022-09-27 14:12:36 +08:00
Noah Hsu
9d9c79179b
feat: custom token expires in
2022-09-27 14:05:00 +08:00
Noah Hsu
b7479651e1
fix: incorrect base_path from site_url ( close #1830 )
2022-09-27 13:56:32 +08:00
Noah Hsu
2fc0ccbfe0
fix: don't init aria2 in new goroutine ( close #1752 )
2022-09-26 15:11:08 +08:00
Noah Hsu
f86ad1dce4
fix: create temp dir perm with 777 ( close #1813 )
2022-09-26 14:48:59 +08:00
Noah Hsu
f0181d92cd
fix: keep type of setting item is correct
2022-09-25 21:20:32 +08:00
Noah Hsu
5ac6a30c56
fix: use get_share_link_download_url if can't get_download_url ( close #1753 )
2022-09-25 20:32:11 +08:00
Noah Hsu
96d8a382e8
fix(aliyundrive_share): reget share token if token expired ( close #1798 )
2022-09-25 20:14:33 +08:00
Noah Hsu
7c32af4649
refactor!: move api_url and base_path to config file
2022-09-25 17:57:54 +08:00
Noah Hsu
03dbb3a403
chore: fix typo of env name
2022-09-25 17:41:04 +08:00
Noah Hsu
a570e4c7a0
fix: some settings don't take effect at startup
2022-09-23 20:37:49 +08:00
Noah Hsu
539c47bd3b
chore: change log if aria2 not ready
2022-09-23 20:04:47 +08:00
Noah Hsu
b6d9018ebd
fix: sorting by modified doesn't work ( close #1756 )
2022-09-23 12:30:32 +08:00
Noah Hsu
c929888e39
fix(123): change remove api ( close #1760 )
2022-09-23 12:28:57 +08:00
foxxorcat
af946ff13e
fix(baidu_photo): cannot download when proxy is opened
2022-09-23 01:15:12 +08:00
Noah Hsu
0039dc18e1
fix: set cdn to basePath if cdn is empty
2022-09-22 17:11:45 +08:00
Noah Hsu
4d6ab53336
feat: add form upload api ( close #1693 #1709 )
2022-09-22 16:53:58 +08:00
Noah Hsu
c7f6684eed
chore: add provider to fs list resp
2022-09-22 16:04:10 +08:00
Noah Hsu
b71ecc8e89
chore: add a default polyfill to head
2022-09-22 11:29:39 +08:00
Noah Hsu
3537153b91
feat: add aliyundrive share driver ( close #1215 )
2022-09-21 22:00:06 +08:00
Noah Hsu
9382f66f87
fix(aliyundrive): thumbnail missed
2022-09-21 21:59:07 +08:00
Noah Hsu
656f5f112c
fix(ftp): nil pointer dereference ( close #1722 )
2022-09-20 22:23:22 +08:00
Noah Hsu
9181861f47
fix: illegal files are not displayed ( close #1729 )
2022-09-20 20:14:38 +08:00
foxxorcat
1ab73e0742
feat: add lanzou driver
2022-09-20 15:29:40 +08:00
Noah Hsu
57686d9df1
fix(189): file size missed
2022-09-19 19:35:07 +08:00
Noah Hsu
ca177cc3b9
fix: set default mimetype to empty string ( close #1710 )
2022-09-19 18:58:40 +08:00
Noah Hsu
d8dc8d8623
fix: dir duplicate creation ( close #1687 )
2022-09-19 13:43:23 +08:00
Noah Hsu
5548ab62ac
fix: write does not take effect on the current dir ( close #1711 )
2022-09-19 13:35:37 +08:00
Noah Hsu
d6d82c3138
fix: page crashes if ipa name contains chinese ( close #1712 )
2022-09-19 13:33:23 +08:00
Noah Hsu
2185839236
chore: safe base64 decode ipa name
2022-09-18 20:17:24 +08:00
Noah Hsu
24d58f278a
fix: don't use cache if no objs
2022-09-18 18:38:47 +08:00
Noah Hsu
f80be96cf9
chore: replace sep _ with @ of ipa name
2022-09-18 16:53:39 +08:00
Noah Hsu
6c89c6c8ae
fix: aria2 download magnet link ( close #1665 )
2022-09-18 16:07:32 +08:00
Noah Hsu
b74b55fa4a
feat: support custom bundle-identifier by filename
2022-09-17 21:33:39 +08:00
Noah Hsu
09564102e7
fix(aliyundrive): rapid upload empty file ( close #1699 )
2022-09-17 19:39:19 +08:00
Noah Hsu
d436a6e676
fix: use base64 encode for ipa install
2022-09-17 17:06:08 +08:00
Noah Hsu
bec3a327a7
fix: hide objs if only virtual files
2022-09-17 15:31:30 +08:00
Noah Hsu
d329df70f3
fix: failed create record if use mysql ( close #1690 )
2022-09-16 22:21:43 +08:00
Noah Hsu
1af9f4061e
fix(s3): remove folder recursively
2022-09-16 21:25:55 +08:00
foxxorcat
0d012f85cb
feat: Add thunderExpert priority video url switch
2022-09-15 22:50:27 +08:00
Noah Hsu
e3b213c398
feat: add ca-certificates for docker ( fix : #1679 )
2022-09-15 18:56:30 +08:00
Noah Hsu
d9f0603271
fix: copy folder between two storage ( fix #1670 )
2022-09-15 17:58:32 +08:00
Noah Hsu
86a625cb40
fix: set CHARSET to utf8mb4 if use mysql
2022-09-15 17:14:03 +08:00
foxxorcat
f22232de5d
chore: baidu_photo rename only duplicate folders
2022-09-15 09:25:20 +08:00
Noah Hsu
7ad3748a46
feat: update cache after remove instead of clear
2022-09-14 20:28:52 +08:00
Noah Hsu
66b2562d03
fix: allow force root while fetch dirs ( close #1671 )
2022-09-14 19:57:39 +08:00
Noah Hsu
b197322cd8
fix: type of file with name uppercase
2022-09-14 15:14:04 +08:00
Noah Hsu
9e5ef974a7
fix: send on closed channel
2022-09-14 15:13:02 +08:00
联盟少侠
08a001fbd1
feat: add a start func for external calls ( #1628 )
2022-09-13 20:12:57 +08:00
Noah Hsu
54ae6dce0b
fix(fs/get): rawURL if use proxy ( close #1664 )
2022-09-13 20:02:57 +08:00
foxxorcat
a90ef201c7
fix(189pc,baidu_photo,thunder): single link limit multithreading
2022-09-13 18:44:07 +08:00
Noah Hsu
2de0da87fa
fix: infinite loop if new multi-level folder ( close #1661 )
2022-09-13 18:34:04 +08:00
foxxorcat
53e08e75fe
fix(189pc,baidu_photo): source file not closed
2022-09-12 22:45:30 +08:00
foxxorcat
6b5236f52e
feat: add baidu_photo driver
2022-09-12 17:10:02 +08:00
Noah Hsu
78e34f0d9f
fix: log error if err != nil ( close #1651 )
2022-09-12 17:01:06 +08:00
Noah Hsu
6aedd0f425
fix: trim slash suffix of sign
2022-09-11 19:39:24 +08:00
Noah Hsu
5ff0d850d7
feat(aliyundrive): add doc and video preview api
2022-09-11 19:12:54 +08:00
Noah Hsu
cd73e34ccc
chore: optional other interface
2022-09-11 18:40:19 +08:00
Noah Hsu
107462e42e
chore: change default pdf viewer address
2022-09-11 18:27:28 +08:00
Noah Hsu
e6c2d22700
workflow: update docs address [skip ci]
2022-09-11 17:17:47 +08:00
Noah Hsu
889ddcef7e
feat(baidu): update upload progress
2022-09-11 17:09:48 +08:00
Noah Hsu
68a6a0c40e
fix(aliyundrive): upload empty file
2022-09-11 17:04:05 +08:00
Noah Hsu
969018db37
fix: is the root folder required ( close #1633 )
2022-09-11 16:23:46 +08:00
Noah Hsu
fba1471ec4
docs: add thunder in storage list [skip ci]
2022-09-11 15:26:47 +08:00
Noah Hsu
8b72ac7f80
chore: rename xunlei to thunder
2022-09-11 14:30:17 +08:00
Noah Hsu
77a6aa487b
chore: cancel sign if no password
2022-09-11 14:14:14 +08:00
Noah Hsu
fd99c2197b
fix: remove relative path check
2022-09-11 14:05:13 +08:00
foxxorcat
9c91f062b9
fix(189pc): some minor problems
2022-09-11 13:18:29 +08:00
foxxorcat
537ca030b2
chore: fix xunlei some minor problems
2022-09-11 13:09:36 +08:00
Noah Hsu
b00dcdec0d
docs: Create CODE_OF_CONDUCT.md [skip ci]
2022-09-10 22:23:05 +08:00
Noah Hsu
57bcd376b4
fix(webdav): incorrect href if base_path isn't root ( close #1629 )
2022-09-10 19:27:34 +08:00
Noah Hsu
8d4d8648c6
ci: fetch dev version of alist-web
2022-09-10 19:05:02 +08:00
foxxorcat
35d177b67b
feat: add xunlei driver
2022-09-10 17:40:30 +08:00
Noah Hsu
40882443c2
feat: add show admin's username
2022-09-10 16:39:08 +08:00
Noah Hsu
05f19cad78
ci: add since-days for similarity-analysis [skip ci]
2022-09-10 16:18:10 +08:00
Noah Hsu
7249f277b2
ci: close issue that inactive more than 60 days [skip ci]
2022-09-10 16:10:39 +08:00
Noah Hsu
849124f177
fix(quark): default root folder id
2022-09-10 14:38:47 +08:00
Noah Hsu
f5c7a11da5
chore: add client ip to key of link cache
2022-09-10 14:12:57 +08:00
Noah Hsu
043a79189d
style: uniform use utils.CreateTempFile
2022-09-10 14:11:06 +08:00
Noah Hsu
5ed43fd17d
fix(123): pass ip when getting download link
2022-09-10 13:54:10 +08:00
Noah Hsu
220cd4d6b8
fix: must update version if upgrade
2022-09-10 13:47:38 +08:00
Noah Hsu
f692e6c011
fix(s3): copy or move folder ( close #1336 )
2022-09-10 13:42:03 +08:00
Noah Hsu
f48365929e
fix(pikpak): upload empty file ( close #1452 )
2022-09-10 13:25:52 +08:00
Noah Hsu
56219bf096
fix(google): folder judgment missed
2022-09-10 13:09:18 +08:00
Noah Hsu
5ad3849bb6
fix: if use down proxy url
2022-09-09 20:54:11 +08:00
Noah Hsu
4af9124162
fix: error if use abs temp path ( close #1624 )
2022-09-09 18:50:54 +08:00
Noah Hsu
92fba9a2bf
ci: remove commit-hash in version
2022-09-09 16:48:12 +08:00
Noah Hsu
63569be41d
fix: wrong columnName index
2022-09-09 16:44:54 +08:00
Noah Hsu
46325655e1
ci: fix compress filename [skip ci]
2022-09-09 16:31:43 +08:00
Noah Hsu
85d13c4c5a
ci: static link while build musl
2022-09-09 15:51:20 +08:00
Noah Hsu
af87131cc0
chore: fix release docker name typo [skip ci]
2022-09-09 14:42:55 +08:00
Noah Hsu
2505cb40ac
docs: update readme
2022-09-09 14:35:05 +08:00
Noah Hsu
4ec42a55d6
ci: fix release files path
2022-09-09 14:15:06 +08:00
Noah Hsu
7d3c3df207
ci: fix web release url
2022-09-09 13:34:22 +08:00
Noah Hsu
362d48aa98
chore: replace main color
2022-09-08 22:21:52 +08:00
Noah Hsu
dea87d098d
build: fix Dockerfile CMD arguments
2022-09-08 21:40:37 +08:00
Noah Hsu
901a74e252
ci: auto release
2022-09-08 21:22:21 +08:00
Noah Hsu
8705e48e0a
ci: auto build docker image
2022-09-08 20:27:13 +08:00
Noah Hsu
ed5adc21c2
ci: ignore git commit error
2022-09-08 20:04:19 +08:00
Noah Hsu
fbaebc020f
fix(189pc): wrong time if location incorrect ( close #1562 )
2022-09-08 20:03:07 +08:00
foxxorcat
918ca28d2b
feat: add 189cloudPC driver
2022-09-08 15:00:57 +08:00
Noah Hsu
7a12f1bddd
chore: add audio_cover setting
2022-09-07 19:18:19 +08:00
Noah Hsu
4ea19ae078
chore: replace $version of cdn with webVersion
2022-09-07 18:39:04 +08:00
Noah Hsu
71d30b6819
chore: rename index to order of storage
2022-09-07 15:55:15 +08:00
Noah Hsu
53fc2f32d8
ci: ignore cp error [skip ci]
2022-09-06 22:45:17 +08:00
Noah Hsu
e07654299b
fix(quark): upload commit bind resp
2022-09-06 22:41:45 +08:00
Noah Hsu
f127c959a1
feat: add MediaTrack driver
2022-09-06 17:24:05 +08:00
Noah Hsu
a24dfddc2a
feat: add 189cloud driver
2022-09-06 14:39:21 +08:00
Noah Hsu
534d8d30fc
feat: skip generate lang if no changes
2022-09-05 16:40:51 +08:00
Noah Hsu
868a4fd49e
fix(baidu): duplicate prefix of crack link request
2022-09-05 15:59:28 +08:00
Noah Hsu
900e71f78f
feat: add 139yun driver
2022-09-05 13:35:01 +08:00
Noah Hsu
3416861cab
style: use utils.SliceConvert uniformly
2022-09-05 00:26:04 +08:00
Noah Hsu
25ae1b8397
feat: add yandex disk driver
2022-09-05 00:24:16 +08:00
Noah Hsu
3dd4fbd76d
feat: add webdav driver
2022-09-04 22:34:54 +08:00
Noah Hsu
778cee4cdf
fix: download sign check
2022-09-04 18:29:41 +08:00
Noah Hsu
9d20c887df
fix: webdav_policy options
2022-09-04 14:48:21 +08:00
Noah Hsu
a1c86b3350
chore!: change root folder
2022-09-04 13:22:42 +08:00
Noah Hsu
a4a8739748
feat: add upyun-uss driver
2022-09-04 13:03:10 +08:00
Noah Hsu
ffba5e0aec
feat: add sftp driver ( close #1466 )
2022-09-04 12:43:52 +08:00
Noah Hsu
8fd56ef9dd
feat: check status before storage call
2022-09-03 22:32:09 +08:00
Noah Hsu
849de88e68
feat: add ftp driver
2022-09-03 22:07:08 +08:00
Noah Hsu
c89a462d0c
feat: add s3 driver
2022-09-03 21:38:43 +08:00
Noah Hsu
5d0668b00b
feat: add google_drive driver
2022-09-03 20:34:06 +08:00
Noah Hsu
7da9e33c4d
fix: hide access_token in error message of baidu_netdisk
2022-09-03 19:48:11 +08:00
Noah Hsu
dcc99802ec
fix: panic while create empty file
2022-09-03 19:32:44 +08:00
Noah Hsu
552aba997c
fix: default root folder of baidu_netdisk
2022-09-03 10:12:28 +08:00
Noah Hsu
611457c0e7
feat: add baidu_netdisk driver
2022-09-02 22:46:31 +08:00
Noah Hsu
decea4a739
feat: add quark driver
2022-09-02 21:36:47 +08:00
Noah Hsu
0f2425ce53
feat: add teambition driver
2022-09-02 18:24:14 +08:00
Noah Hsu
bc155af255
chore: remove slash of cdn
2022-09-02 16:02:06 +08:00
Noah Hsu
2d2a4f5776
docs: add go report card [skip ci]
2022-09-01 22:49:47 +08:00
Noah Hsu
284274b37e
feat: add 123pan driver
2022-09-01 22:13:37 +08:00
Noah Hsu
7290f9b301
chore: remove global_readme setting
2022-09-01 14:17:58 +08:00
Noah Hsu
454f563bce
fix: task id not update
2022-08-31 22:53:41 +08:00
Noah Hsu
755f4b83f6
feat: add progress for io copy
2022-08-31 22:41:27 +08:00
Noah Hsu
8e1ed4015b
fix: store storage in map whether error or not
2022-08-31 22:27:04 +08:00
Noah Hsu
d31faabc24
chore: fix typo
2022-08-31 22:08:12 +08:00
Noah Hsu
b73dce33aa
fix(onedrive,ali): upload progress
2022-08-31 22:04:04 +08:00
Noah Hsu
7ac1d14eeb
style: shorten name operations to op
2022-08-31 21:01:15 +08:00
Noah Hsu
9ec6d5be7a
chore: just use std errors in drivers
2022-08-31 20:58:57 +08:00
Noah Hsu
817d63597e
feat: add aliyundrive driver
2022-08-31 20:46:19 +08:00
Noah Hsu
102384e170
feat: add pikpak driver
2022-08-31 17:32:57 +08:00
Noah Hsu
7d407de22e
feat: add a driver template
2022-08-31 16:37:00 +08:00
Noah Hsu
41edac5826
fix: convert driver name while generate lang
2022-08-30 22:11:58 +08:00
Noah Hsu
f551dc76d0
feat: add onedrive driver
2022-08-30 21:52:06 +08:00
Noah Hsu
c95a7c2a04
chore: add home_container setting
2022-08-30 19:34:11 +08:00
Noah Hsu
a6b9dbfbe4
fix: use utils.Log in some places
2022-08-30 16:13:01 +08:00
Noah Hsu
615e5dd118
fix: put a placeholder file in dist [skip ci]
2022-08-30 15:53:40 +08:00
Noah Hsu
046bbb3a48
feat: use lumberjack for log rotate
2022-08-30 15:22:54 +08:00
Noah Hsu
59ec17a353
feat: add driver config in driver info
2022-08-30 14:39:10 +08:00
Noah Hsu
fec98e7f69
ci: auto build dev version
2022-08-29 22:49:20 +08:00
Noah Hsu
68a125491b
chore: add refresh arg in list func
2022-08-29 19:15:52 +08:00
Noah Hsu
97d4114e38
fix: check err before check upload
2022-08-29 14:18:43 +08:00
Noah Hsu
d267c43556
feat: static file router
2022-08-28 23:13:03 +08:00
Noah Hsu
e5480b99be
chore: decode filePath in header
2022-08-28 20:46:33 +08:00
Noah Hsu
e72a557b96
ci: minimize the event that triggers the workflow
2022-08-28 15:39:51 +08:00
Noah Hsu
a6f3094c9a
chore: graceful restart or stop
2022-08-28 15:34:12 +08:00
Noah Hsu
5ab5cc327f
feat: generate plist for ipa
2022-08-28 15:23:00 +08:00
Noah Hsu
74007a1d45
chore: add pagination settings
2022-08-27 23:07:48 +08:00
Noah Hsu
37eb3dd8f5
ci: push main branch directly
2022-08-27 18:51:10 +08:00
Noah Hsu
fbcf082ca7
feat: auto generate settings lang
2022-08-27 18:35:05 +08:00
Noah Hsu
cc9ccc4e9b
ci: auto generate drivers lang file
2022-08-26 19:06:32 +08:00
Noah Hsu
7425e001db
feat: auto generate drivers language json
2022-08-26 15:08:31 +08:00
Noah Hsu
d9ee174dd3
feat!: unity iframe preview
2022-08-23 16:50:54 +08:00
Noah Hsu
e9927806d4
fix(local): return ObjectNotFound if can't find file
2022-08-19 11:02:00 +08:00
Noah Hsu
38db3508a5
chore: add external_previews setting
2022-08-18 11:34:02 +08:00
Noah Hsu
d1b5c3e648
docs: fix preview dev change
2022-08-17 14:02:05 +08:00
Noah Hsu
02e2c809a8
chore: rename some request param
2022-08-14 23:52:14 +08:00
Noah Hsu
8cd05275f0
chore: change message type
2022-08-14 03:05:30 +08:00
Noah Hsu
fe0dee1196
docs: fix typo
2022-08-13 15:38:03 +08:00
Noah Hsu
05d8c27918
chore: rename icon_color to main_color
2022-08-13 15:11:46 +08:00
Noah Hsu
06e15fc149
feat: encode path of url ( close #1351 )
2022-08-12 14:51:23 +08:00
Noah Hsu
0f853c86da
fix: do not operate storage in memory if disabled
2022-08-11 21:46:03 +08:00
Noah Hsu
0fdfd1f2c2
feat: load storages while starting
2022-08-11 21:32:33 +08:00
Noah Hsu
74f1154e5e
feat: add disable option for storage ( close #1476 )
2022-08-11 21:08:50 +08:00
Noah Hsu
af884010d1
feat: local storage image thumbnail
2022-08-11 20:32:17 +08:00
Noah Hsu
fda4db71bf
ci: new issue bot
2022-08-10 20:05:39 +08:00
Noah Hsu
669ccc40a1
chore: change related of fs get api
2022-08-10 10:48:14 +08:00
Noah Hsu
358212749b
chore: add home_icon setting
2022-08-09 18:06:04 +08:00
Noah Hsu
d8b56042c3
chore: ignore opt_secret while marshal
2022-08-08 16:29:56 +08:00
Noah Hsu
6f48a0a82a
chore: add custom office viewer
2022-08-08 13:03:34 +08:00
Noah Hsu
2b04cf4ac3
feat: custom hide error message by regexp ( close #1468 )
2022-08-08 12:53:53 +08:00
Noah Hsu
d6437a337f
feat: add provider to obj get api
2022-08-08 00:58:32 +08:00
Noah Hsu
61fa6f38a8
feat: add type to fs read api
2022-08-08 00:51:05 +08:00
Noah Hsu
ccce6a30bb
ci: temporarily use self-modified issue-helper
2022-08-07 21:03:37 +08:00
Noah Hsu
1fd4ebe53e
feat: add related objs while get obj
2022-08-07 21:01:29 +08:00
Noah Hsu
2e8322e99b
feat: set cache_expiration for each storage ( close #1455 )
2022-08-07 13:33:53 +08:00
Noah Hsu
5b40254e3b
chore: fix drivers not import
2022-08-07 13:23:15 +08:00
Noah Hsu
0df3473337
feat: use cobra and add some command
2022-08-07 13:09:59 +08:00
Noah Hsu
2b5da3ef34
feat: cancel 2fa api
2022-08-07 11:59:33 +08:00
Noah Hsu
d01958a6bf
chore: and otp to current user resp
2022-08-06 17:21:32 +08:00
Noah Hsu
a6ed4afdae
feat: 2fa/otp support
2022-08-06 01:22:13 +08:00
Noah Hsu
b51e664543
chore: go fmt
2022-08-03 14:26:59 +08:00
Noah Hsu
721f18a7f4
feat: fs other api
2022-08-03 14:14:37 +08:00
Noah Hsu
2a68c3cc7b
feat: add thumbnail to list resp
2022-08-03 13:03:45 +08:00
Noah Hsu
71a6ebaf43
chore: dev test
2022-08-02 22:16:58 +08:00
Noah Hsu
c7128133d6
chore: rename remove to delete
2022-07-31 21:42:01 +08:00
Noah Hsu
829ef271e3
chore(deps): upgrade cache pkg
2022-07-31 21:23:19 +08:00
Noah Hsu
cb06d3a19a
feat: remove and clear task
2022-07-31 21:21:54 +08:00
Noah Hsu
be452aafde
chore: fix err nil pointer
2022-07-30 22:04:21 +08:00
Noah Hsu
33b7d75d8a
chore: if file exist and size = 0, delete it while upload
2022-07-30 20:04:21 +08:00
Noah Hsu
8c27ca3e8b
chore: import fmt
2022-07-29 18:22:42 +08:00
Noah Hsu
eface83716
chore: set initial guest permission 0
2022-07-27 21:53:21 +08:00
Noah Hsu
212dbb277e
fix: empty storage virtual file
2022-07-27 20:57:12 +08:00
Noah Hsu
53fd09814a
feat: user and meta get api
2022-07-27 17:41:25 +08:00
Noah Hsu
b399c924b7
chore: slice convert util
2022-07-27 17:08:29 +08:00
Noah Hsu
e707d6b26e
chore: change select values case
2022-07-27 15:49:18 +08:00
Noah Hsu
4ba04fa7db
chore: rename main items
2022-07-27 11:43:49 +08:00
Noah Hsu
5166d73b4d
chore: unified function name
2022-07-23 21:49:09 +08:00
Noah Hsu
826e4807dc
chore: add current user log
2022-07-23 21:33:53 +08:00
Noah Hsu
4691142f80
fix: webdav_policy default value
2022-07-23 21:19:27 +08:00
Noah Hsu
9d92834ee3
chore: password can be empty when update me
2022-07-23 20:49:16 +08:00
Noah Hsu
4f3129ec28
feat: change current user's profile
2022-07-23 20:42:12 +08:00
Noah Hsu
fb65e98fa3
chore: add fuse package
2022-07-20 00:39:20 +08:00
Noah Hsu
90a5c175ed
feat: virtual driver
2022-07-19 19:55:54 +08:00
Noah Hsu
872e7cf87b
fix: virtual obj is a folder
2022-07-19 18:10:02 +08:00
Noah Hsu
638db77ca1
chore: rename local struct
2022-07-19 17:11:53 +08:00
Noah Hsu
fe94016289
chore: set default root folder in driver config
2022-07-19 17:07:12 +08:00
Noah Hsu
184b9d1e6c
feat: get storage by id api
2022-07-18 23:02:14 +08:00
Noah Hsu
e08810a12f
chore: fix test typo
2022-07-18 14:52:34 +08:00
Noah Hsu
303d245e0f
docs: add sponsor
2022-07-18 00:48:55 +08:00
Noah Hsu
a16da3b45e
chore: fix typo
2022-07-12 18:41:16 +08:00
Noah Hsu
2bff656f00
chore: rename VirtualPath to MountPath
2022-07-12 14:11:37 +08:00
Noah Hsu
fbc858b43c
chore: optimize get settings
2022-07-12 14:03:03 +08:00
Noah Hsu
4ac312fd07
chore: add version to aria handle
2022-07-12 14:02:29 +08:00
Noah Hsu
b1d563c874
chore: add uuid to token
2022-07-12 14:01:43 +08:00
Noah Hsu
6ebb36b2eb
chore: deprecated settings test data
2022-07-11 22:36:30 +08:00
Noah Hsu
3691ee5861
chore: use variable
2022-07-11 22:22:30 +08:00
Noah Hsu
dc38f21294
chore: rename controllers to handles
2022-07-11 17:12:50 +08:00
Noah Hsu
8971a924f1
fix: clear password while get current user
2022-07-10 17:09:03 +08:00
Noah Hsu
18b218c6c9
fix: the variable has the same name as the package
2022-07-10 16:39:55 +08:00
Noah Hsu
a25d76ef6e
chore: fix typo
2022-07-10 16:20:13 +08:00
Noah Hsu
69d1287254
chore: remove wrapper of user
2022-07-10 15:47:09 +08:00
Noah Hsu
f102b130db
chore: public settings no auth required
2022-07-10 15:23:08 +08:00
Noah Hsu
fc1204c914
chore: rename account to storage
2022-07-10 14:45:39 +08:00
Noah Hsu
efa20cc7bd
feat: dirs api
2022-07-10 14:09:31 +08:00
Noah Hsu
e28c1e436d
fix: only file have raw_url
2022-07-08 15:56:29 +08:00
Noah Hsu
90283ef29c
chore: incorrect username retry count
2022-07-07 21:31:43 +08:00
Noah Hsu
156da2b794
fix: login don't need auth
2022-07-07 14:19:24 +08:00
Noah Hsu
9ba7cf0835
chore: add base path setting
2022-07-02 16:43:07 +08:00
Noah Hsu
fb23758d12
fix: empty public settings
2022-07-02 16:12:30 +08:00
Noah Hsu
8125fee3f9
feat: put directly api
2022-07-01 17:11:22 +08:00
Noah Hsu
e3891246b9
feat: post messenger
2022-07-01 16:53:01 +08:00
Noah Hsu
a6e5edcf53
chore: fix typo
2022-07-01 16:08:08 +08:00
Noah Hsu
4340a48633
fix: put as task from web
2022-07-01 15:11:18 +08:00
Noah Hsu
4d0ae6b1ef
fix: webdav move contains rename
2022-06-30 22:55:23 +08:00
Noah Hsu
53416172e7
feat: clear cache after change
2022-06-30 22:51:49 +08:00
Noah Hsu
2b1726614b
feat: webdav handle
2022-06-30 22:41:55 +08:00
Noah Hsu
dd013ac0b2
chore: add webdav package
2022-06-30 18:27:26 +08:00
Noah Hsu
3934d9029e
feat: hide objects
2022-06-30 16:09:06 +08:00
Noah Hsu
fba96d024f
feat: add write field to list resp
2022-06-30 15:53:57 +08:00
Noah Hsu
35b04ffa9c
feat: add readme field to list resp
2022-06-30 15:41:58 +08:00
Noah Hsu
e614faa99b
chore: cancel task while wait for worker
2022-06-29 22:06:56 +08:00
Noah Hsu
fd55f2cbfa
chore: reduce query aria2 status interval
2022-06-29 20:32:45 +08:00
Noah Hsu
f54418bdae
fix: serialize task info
2022-06-29 20:28:02 +08:00
Noah Hsu
786e44d1d2
fix: init aria2 client
2022-06-29 20:07:33 +08:00
Noah Hsu
58d153e5ff
fix: task list method
2022-06-29 18:56:31 +08:00
Noah Hsu
0bf724f447
feat: task manage api
2022-06-29 18:36:14 +08:00
Noah Hsu
c88680b495
chore: aria2 task wait for transfer
2022-06-29 18:12:31 +08:00
Noah Hsu
d24e51bc86
chore: user permissions
2022-06-29 18:03:12 +08:00
Noah Hsu
3c7a2f78cf
chore: init db and aria2
2022-06-29 17:37:40 +08:00
Noah Hsu
8abee6504f
feat: set aria2 client and add url to aria2 api
2022-06-29 17:31:37 +08:00
Noah Hsu
a09a1b814b
chore: change permission check
2022-06-29 17:08:31 +08:00
Noah Hsu
bf950ee6e1
feat: set raw url in get resp
2022-06-29 16:23:31 +08:00
Noah Hsu
40548926e6
feat: fs link api
2022-06-29 16:08:55 +08:00
Noah Hsu
f275f83de0
feat: fs manage api
2022-06-29 15:01:22 +08:00
Noah Hsu
8a0915ffb1
chore: don't and slash prefix just for windows abs path
2022-06-28 22:22:02 +08:00
Noah Hsu
505b126888
chore: optional get func for driver
2022-06-28 22:13:47 +08:00
Noah Hsu
96380a50da
feat: file proxy handle
2022-06-28 21:58:46 +08:00
Noah Hsu
d1efec4539
chore: common err resp log
2022-06-28 18:12:53 +08:00
Noah Hsu
67bc66fedf
feat: file down handle
2022-06-28 18:00:11 +08:00
Noah Hsu
d89ec89d51
feat: sign of file
2022-06-28 15:12:40 +08:00
Noah Hsu
5dbf5db4ff
feat: token and reset
2022-06-28 14:18:10 +08:00
Noah Hsu
7903ed1f52
chore: change fs get and list resp
2022-06-27 21:34:13 +08:00
Noah Hsu
c8f10703b7
feat: obj get api
2022-06-27 21:15:39 +08:00
Noah Hsu
db6b5f8950
chore: path standardize
2022-06-27 20:56:17 +08:00
Noah Hsu
74973bc5b5
fix: local relative path
2022-06-27 20:37:05 +08:00
Noah Hsu
7c0b86a9cd
feat: obj list api
2022-06-27 19:51:23 +08:00
Noah Hsu
c6007aa9e6
feat: sort obj list
2022-06-27 19:10:02 +08:00
Noah Hsu
f01a81ee9c
chore: settings util
2022-06-27 17:25:19 +08:00
Noah Hsu
005ded41c3
feat: settings manage api
2022-06-27 17:06:10 +08:00
Noah Hsu
1a148eee7c
feat: initial setting items
2022-06-27 15:51:02 +08:00
Noah Hsu
e4c3ef0262
feat: setting model
2022-06-27 14:51:48 +08:00
Noah Hsu
6bb2b76e25
chore: move item types
2022-06-27 14:32:21 +08:00
Noah Hsu
e71aff9d94
chore: keep guest in memory
2022-06-27 14:29:36 +08:00
Noah Hsu
490df4f5fe
fix: typo of environment variable ( close #1280 )
2022-06-27 14:01:15 +08:00
Noah Hsu
087fae1b15
chore: webdav policy of account
2022-06-27 13:58:21 +08:00
Noah Hsu
2aff218356
fix: gin.Context nil pointer
2022-06-26 20:31:04 +08:00
Noah Hsu
b98cd915a4
feat: driver manage api
2022-06-26 20:25:02 +08:00
Noah Hsu
3349982312
fix(driver): additional items
2022-06-26 20:18:12 +08:00
Noah Hsu
5783aa99f1
feat: account manage api
2022-06-26 20:00:36 +08:00
Noah Hsu
cab498e376
feat: user manage api
2022-06-26 19:36:27 +08:00
Noah Hsu
6b9bca893b
chore: change whether print log
2022-06-26 19:20:19 +08:00
Noah Hsu
c67f128f15
chore: move server package to root
2022-06-26 19:10:14 +08:00
Noah Hsu
4cef3adc90
feat: meta manage api
2022-06-26 19:09:28 +08:00
Noah Hsu
acd4083399
chore: ignore password for get current user
2022-06-26 16:55:37 +08:00
Noah Hsu
7cbfe93a02
chore: set guest while token is empty
2022-06-26 16:39:02 +08:00
Noah Hsu
54ca68e4b3
chore: init users
2022-06-25 22:05:02 +08:00
Noah Hsu
b474eefd87
chore: rename store to db
2022-06-25 21:36:35 +08:00
Noah Hsu
c5295f4d72
feat: user jwt login
2022-06-25 21:34:44 +08:00
Noah Hsu
306b90399c
chore: move conf package
2022-06-25 20:38:02 +08:00
Noah Hsu
7dadab95b2
fix: missed mimetype of stream in aria2 monitor
2022-06-25 15:15:54 +08:00
Noah Hsu
ee2bc99e4c
feat: cancel copy for upload
2022-06-25 15:14:03 +08:00
Noah Hsu
935416de45
chore: clear parent folder cache after upload
2022-06-24 14:24:39 +08:00
Noah Hsu
3f49271db6
feat(fs): add put return after finished
2022-06-24 14:21:28 +08:00
Noah Hsu
956a5ae906
perf: extract fs func and add error log
2022-06-23 23:03:11 +08:00
Noah Hsu
40b7ecc845
chore(aria2): export task manager
2022-06-23 21:24:23 +08:00
Noah Hsu
92983aa185
chore: get or remove by states
2022-06-23 21:19:01 +08:00
Noah Hsu
6c61f1d261
chore: add state for task
2022-06-23 21:09:54 +08:00
Noah Hsu
aedcae840d
test(aria2): download and transfer file
2022-06-23 17:06:17 +08:00
Noah Hsu
ffdb198247
feat(local): basic function of driver
2022-06-23 17:06:07 +08:00
Noah Hsu
3a1fcbef1c
chore: close stream after put
2022-06-23 17:05:03 +08:00
Noah Hsu
ffa0bc294a
chore: optimize standardize path
2022-06-23 17:04:37 +08:00
Noah Hsu
a65dcb48b4
chore: use abs temp dir
2022-06-23 16:49:37 +08:00
Noah Hsu
b971b13362
feat: dir and file check
2022-06-23 16:09:22 +08:00
Noah Hsu
d77dea733f
chore: rename errors
2022-06-23 16:03:27 +08:00
Noah Hsu
fd5c3e831d
chore: change size of file to int64
2022-06-23 15:57:36 +08:00
Noah Hsu
c3040fdfc3
chore: move errors
2022-06-23 15:57:10 +08:00
Noah Hsu
2612cd7f1c
test(aria2): init aria2 client
2022-06-22 19:36:49 +08:00
Noah Hsu
3fe0a7bf6b
refactor(task): remove Data field
2022-06-22 19:28:41 +08:00
Noah Hsu
a6df492fff
refactor(aria2): extract monitor
2022-06-22 15:16:13 +08:00
Noah Hsu
72208e052a
chore(fs): rename some variable and param
2022-06-22 15:03:27 +08:00
Noah Hsu
f6242d46b1
feat: add uri to aria2
2022-06-21 17:37:02 +08:00
Noah Hsu
55c4a925ba
chore(fs): rename some param
2022-06-21 16:37:51 +08:00
Noah Hsu
9633af4e25
fix: typo and error handle
2022-06-21 16:25:45 +08:00
Noah Hsu
55d6434daa
refactor(task): generic task manager
2022-06-21 16:14:37 +08:00
Noah Hsu
1b3387ca1a
chore: aria2 notifier
2022-06-20 22:29:52 +08:00
Noah Hsu
6c552a9d62
chore: aria2 related function
2022-06-20 20:34:58 +08:00
Noah Hsu
4db25605e7
fix(fs): typo
2022-06-20 19:50:59 +08:00
Noah Hsu
a61bb6ab1f
chore: add is it support upload config for driver
2022-06-20 17:14:08 +08:00
Noah Hsu
31ff31d3dd
chore: add callback for task
2022-06-20 17:13:19 +08:00
Noah Hsu
d665cce739
feat: add task work limit
2022-06-18 20:38:14 +08:00
Noah Hsu
dd46e99e66
chore: set addition type as text
2022-06-18 20:10:35 +08:00
Noah Hsu
adf0178bb7
feat: add progress for task
2022-06-18 20:06:45 +08:00
Noah Hsu
6ad2cf2003
test: add task manager test
2022-06-17 22:09:34 +08:00
Noah Hsu
68ca2abd0c
chore: change task.ID to uint64
2022-06-17 21:52:31 +08:00
Noah Hsu
d73a9e4734
fix: format % is missing verb at end of string
2022-06-17 21:42:56 +08:00
Noah Hsu
73c0c0bf44
chore: export copy and upload task manager
2022-06-17 21:38:37 +08:00
Noah Hsu
72a76599e4
feat: add upload file to task manager
2022-06-17 21:35:46 +08:00
Noah Hsu
b9f9e5853e
fix: copy task name
2022-06-17 21:30:16 +08:00
Noah Hsu
fa6e918fc7
feat: add copy to task manager
2022-06-17 21:23:44 +08:00
Noah Hsu
53e969e894
feat: task manager
2022-06-17 16:31:41 +08:00
Noah Hsu
6d0e54d87e
chore: add driver for issue template
2022-06-17 16:31:31 +08:00
Noah Hsu
626e878861
chore: update issue template
2022-06-17 16:31:25 +08:00
Noah Hsu
52575f6ad6
feat: add meta model and test
2022-06-17 16:31:19 +08:00
Noah Hsu
ca13678105
fix: add where for get user by name
2022-06-17 16:31:19 +08:00
Noah Hsu
355db3ab9b
feat: standardization virtual path while create and update
2022-06-17 16:31:19 +08:00
Noah Hsu
04f43cb684
fix: comment typo
2022-06-17 16:31:19 +08:00
Noah Hsu
52ab1310be
feat: set path as ID if it's empty
2022-06-17 16:31:19 +08:00
Noah Hsu
56c95eadea
feat: add user model
2022-06-17 16:30:49 +08:00
Noah Hsu
1df5472855
docs: add version explanation
2022-06-15 21:58:20 +08:00
Noah Hsu
9aa7074600
test: add get balanced account test
2022-06-15 21:52:31 +08:00
Noah Hsu
69647f73f0
chore: rename some symbols
2022-06-15 20:41:17 +08:00
Noah Hsu
09ef7c7106
refactor: change driver interface
2022-06-15 20:31:23 +08:00
Noah Hsu
d9eb188b7a
feat: check parent dir before upload
2022-06-15 19:20:36 +08:00
Noah Hsu
083395ee53
feat: recursive create folder
2022-06-15 19:10:11 +08:00
Noah Hsu
2d60dab13c
feat: copy files between 2 accounts
2022-06-15 18:58:26 +08:00
Noah Hsu
4fa7846f00
feat(local): check root folder while init
2022-06-15 18:48:30 +08:00
Noah Hsu
9fcdbec5c9
feat: get file stream from link
2022-06-15 18:08:13 +08:00
Noah Hsu
979f8383d8
chore: move some types to model
2022-06-15 18:06:42 +08:00
Noah Hsu
2cddd3cf2b
chore: add aria2 rpc package
2022-06-15 17:15:22 +08:00
Noah Hsu
c65a9b3001
fix: typo
2022-06-15 14:57:13 +08:00
Noah Hsu
066ddd3e09
chore: create temp file util
2022-06-15 14:56:43 +08:00
Noah Hsu
6cdd85283b
chore: reduce cache shards
2022-06-14 22:37:41 +08:00
Noah Hsu
5780d9d834
test: add GetAccountVirtualFilesByPath test
2022-06-14 22:23:33 +08:00
Noah Hsu
097b516dc5
fix: wrong virtual file name
2022-06-14 22:23:10 +08:00
Noah Hsu
b73dbee7e6
chore: don't export func GetAccountsByPath
2022-06-14 19:49:17 +08:00
Noah Hsu
b8e4a2e7c0
test: add driver and account test
2022-06-14 19:44:25 +08:00
Noah Hsu
0d4542a3f1
fix: delete account driver after get
2022-06-14 19:16:27 +08:00
Noah Hsu
7c4d28d55a
feat: replace with generic_sync.MapOf
2022-06-14 19:09:54 +08:00
Noah Hsu
1143331b4d
chore: task and message package
2022-06-14 17:19:43 +08:00
Noah Hsu
e4b956b091
chore: set log structure first
2022-06-14 17:18:58 +08:00
Noah Hsu
e3d2e6dd64
fix(local): local storage should haven't cache
2022-06-14 17:18:11 +08:00
Noah Hsu
6accc2eff6
feat: add NoCache config for driver
2022-06-13 21:15:58 +08:00
Noah Hsu
c525406516
feat: add cache for list files
2022-06-13 21:14:01 +08:00
Noah Hsu
6056fdbddc
feat: use singleflight to prevent cache breakdown
2022-06-13 20:24:13 +08:00
Noah Hsu
2f52b5d354
feat: link cache
2022-06-13 19:56:33 +08:00
Noah Hsu
e16ab876aa
feat: add expiration field for Link
2022-06-13 15:39:47 +08:00
Noah Hsu
3e8f36e9f3
feat: get root folder file
2022-06-13 14:53:44 +08:00
Xhofe
3135775250
fix: composite literal uses unkeyed fields
2022-06-11 19:01:20 +08:00
Noah Hsu
77b0c69112
feat: extract get function
2022-06-11 14:43:03 +08:00
Noah Hsu
ec89bb70c7
feat: fs and operations
2022-06-10 21:00:51 +08:00
Noah Hsu
cd7e9974df
feat: add root prefix before operate
2022-06-10 20:20:45 +08:00
Noah Hsu
354dee67dc
feat(fs): get file object
2022-06-10 17:26:43 +08:00
Noah Hsu
122b7baa73
feat(fs): list files
2022-06-10 17:18:27 +08:00
Noah Hsu
c5e5666b64
feat: set account modified time
2022-06-10 16:51:20 +08:00
Noah Hsu
7b6f11fa52
feat: get account by path
2022-06-10 16:49:52 +08:00
Noah Hsu
2481676c46
feat: get account files by path
2022-06-09 23:05:52 +08:00
Noah Hsu
164dab49ac
feat: get accounts by path
2022-06-09 23:05:27 +08:00
Noah Hsu
e1a2ed0436
feat: driver and account operate
2022-06-09 17:11:46 +08:00
Noah Hsu
5b73b68eb5
feat: add log enable config
2022-06-09 15:12:34 +08:00
Noah Hsu
cd21f14106
fix: additional field type
2022-06-08 17:01:36 +08:00
Noah Hsu
65fba7936c
chore: replace string with const
2022-06-08 16:42:06 +08:00
Noah Hsu
ba648fa10c
feat: get type from field's type
2022-06-08 16:32:20 +08:00
Noah Hsu
ae755db2d2
feat: driver additional items parse
2022-06-08 16:20:58 +08:00
Noah Hsu
677047c80b
feat: improve driver
2022-06-07 22:02:41 +08:00
Noah Hsu
0d93a6aa41
feat: driver manage
2022-06-07 18:13:55 +08:00
Noah Hsu
84eb978731
feat: sort and proxy config
2022-06-07 16:38:31 +08:00
Noah Hsu
ac0f984136
feat: driver config
2022-06-07 16:31:28 +08:00
Noah Hsu
79965ab4b3
feat(driver): add args to init and update func
2022-06-06 22:54:03 +08:00
Noah Hsu
492476dfe4
feat: additional info of account
2022-06-06 22:31:56 +08:00
Noah Hsu
62ac168226
chore: delete placeholder README
2022-06-06 22:08:39 +08:00
Noah Hsu
09616dbe25
feat: set gin log writer
2022-06-06 22:06:33 +08:00
Noah Hsu
fced60c2b5
feat: basic structure
2022-06-06 21:48:53 +08:00
Noah Hsu
b76060570e
refactor: init v3
2022-06-06 16:28:37 +08:00
Noah Hsu
eb15bce24b
ci: auto generate changelog
2022-06-06 16:22:12 +08:00
Noah Hsu
52814266b8
chore: Merge pull request #1200 from alist-org/all-contributors/add-XZB-1248
...
docs: add XZB-1248 as a contributor for code
2022-06-06 16:16:11 +08:00
allcontributors[bot]
f845ec05e0
docs: update .all-contributorsrc [skip ci]
2022-06-06 08:15:50 +00:00
allcontributors[bot]
29fb02c886
docs: update CONTRIBUTORS.md [skip ci]
2022-06-06 08:15:49 +00:00
Noah Hsu
072e854a71
chore: Merge pull request #1199 from alist-org/dev
...
Merge dev branch
2022-06-06 16:10:35 +08:00
Noah Hsu
cae0a5f603
chore: Merge pull request #1191 from XZB-1248/dev
...
fix: filename is urlencoded when using Safari
2022-06-03 21:57:42 +08:00
XZB
7c6d8ca222
fix(proxy): filename is urlencoded when using Safari
2022-06-02 18:13:17 +08:00
Noah Hsu
f6be50f15a
fix(189): login and get link ( close #1182 )
2022-05-31 16:03:54 +08:00
Noah Hsu
c35d54d092
chore: Merge pull request #1167 from Xhofe/dev
2022-05-28 21:01:47 +08:00
Noah Hsu
323dad2a1c
fix(sftp): infinite loop while remove file ( close #1094 )
2022-05-28 21:01:04 +08:00
Noah Hsu
62aefc4f68
fix(189): new resty client
2022-05-28 20:43:13 +08:00
Xhofe
6a7eb8b3eb
fix: don't save search files of balance account ( close #1125 )
2022-05-21 22:12:18 +08:00
Noah Hsu
eb549f2631
feat: add pdf viewer url to settings ( close #1109 )
2022-05-19 15:31:47 +08:00
Noah Hsu
9207eb69ee
feat: add m4v to default video types ( close #1114 )
2022-05-19 15:31:40 +08:00
Noah Hsu
866df0540b
chore: Merge pull request #1110 from foxxorcat/dev
...
增加123流式上传选择
2022-05-17 12:49:22 +08:00
foxxorcat
04e04a1aa6
fix(189pc): delete user-agent for upload
2022-05-16 23:33:12 +08:00
foxxorcat
6a66e39d5b
feat(123):add io stream upload
2022-05-16 21:03:00 +08:00
foxxorcat
f2b2728be7
fix(123,189pc,alidriver,xunlei):tempfile remove
2022-05-16 09:48:33 +08:00
Xhofe
39b8f28fc4
fix: disable pprof while not debug
2022-05-15 16:17:52 +08:00
Noe Hsu
e1ccc0b215
chore: Merge pull request #1093 from Xhofe/dev
...
2.5.2
2022-05-13 17:39:26 +08:00
Xhofe
87e339850d
fix(ftp): remove dir ( #1082 )
2022-05-13 17:38:22 +08:00
Noe Hsu
79c9b6ac77
chore: Merge pull request #1090 from foxxorcat/dev ( #1090 )
2022-05-13 13:54:04 +08:00
foxxorcat
aeb2297f1f
perf(123):file thumbnail
2022-05-12 22:27:32 +08:00
foxxorcat
3b59bb5c09
perf(123):upload
2022-05-12 21:39:55 +08:00
Noe Hsu
bc4bac921f
chore: Merge pull request #1089 from foxxorcat/dev
...
修复迅雷一些已知问题
2022-05-12 20:42:49 +08:00
foxxorcat
f917882a84
perf(xunlei):upload
2022-05-12 19:18:28 +08:00
foxxorcat
6a67d1cf69
fix(xunlei):check captchaToken
2022-05-12 19:15:39 +08:00
foxxorcat
041b3587bf
fix(xunlei):turn page
2022-05-12 13:27:49 +08:00
foxxorcat
0eef7a129c
fix(xunlei):the verification code cannot be obtained from the mobile phone number or email
2022-05-12 13:26:12 +08:00
Xhofe
4b635f06e3
fix(189pc): delete user-agent for upload
2022-05-11 20:01:15 +08:00
Noe Hsu
279111a8e2
chore: Merge pull request #1079 from foxxorcat/dev
2022-05-10 22:35:59 +08:00
foxxorcat
67674835da
fix(alidriver):fast upload file is not close
2022-05-10 21:54:44 +08:00
foxxorcat
732e9eb1c3
feat:add pprof
2022-05-10 21:40:43 +08:00
foxxorcat
b6af9aa587
fix(139,189,189pc,alidrive,onedrive,yandex):http response body is not close #1072
2022-05-10 21:37:48 +08:00
foxxorcat
a9027c0f06
fix(baidu.photo):update download api
2022-05-10 20:35:19 +08:00
Xhofe
d780fa18a5
fix(sftp): error while has no files( close #1078 )
2022-05-10 18:18:06 +08:00
Xhofe
d5626d6e2f
fix: cancel QueryEscape Disposition ( close #1074 )
2022-05-10 18:16:32 +08:00
foxxorcat
52dcbfe1a4
fix(xunlei):missing x-client-id error in some user requests
2022-05-09 18:14:52 +08:00
foxxorcat
bf0ee3d315
refactor(baidu.photo): add a file api of download
2022-05-09 12:43:51 +08:00
Xhofe
0237e78c1e
chore: Merge branch 'dev' into v2
2022-05-08 14:30:01 +08:00
Xhofe
44b8c6abf7
fix(189): typo
2022-05-08 14:28:26 +08:00
Hafiz Hsu
33e1acd344
chore: Merge pull request #1060 from Xhofe/dev
...
Dev 2.5.1
2022-05-08 14:26:27 +08:00
Xhofe
c54cb61f14
chore: add debug info
2022-05-08 14:25:37 +08:00
Xhofe
734b204709
chore: change ocr api
2022-05-08 14:22:07 +08:00
Hafiz Hsu
b7d9c5e4ff
chore: Merge pull request #1059 from foxxorcat/dev ( close #1053 )
...
fix baidu.photo and xunlei
2022-05-08 13:59:58 +08:00
foxxorcat
e698b457b9
fix(baidu.photo):windows path error
2022-05-08 13:37:56 +08:00
foxxorcat
5258c21656
fix(xunlei):login error
2022-05-08 13:36:36 +08:00
Hafiz Hsu
1ca9a3d14e
chore: Merge pull request #1052 from Xhofe/dev
...
docs: add baidu.photo
2022-05-07 16:47:22 +08:00
Xhofe
f23bec9a35
docs: add baidu.photo [skip ci]
2022-05-07 16:43:02 +08:00
Hafiz Hsu
62a1acd1f4
chore: Merge pull request #1051 from Xhofe/all-contributors/add-WntFlm
...
docs: add WntFlm as a contributor for code
2022-05-07 16:38:33 +08:00
allcontributors[bot]
fa6e3fe567
docs: update .all-contributorsrc [skip ci]
2022-05-07 08:38:10 +00:00
allcontributors[bot]
b71b62ee35
docs: update CONTRIBUTORS.md [skip ci]
2022-05-07 08:38:09 +00:00
Hafiz Hsu
410b4939a4
chore: Merge pull request #1050 from Xhofe/all-contributors/add-ericarena
...
docs: add ericarena as a contributor for code
2022-05-07 16:37:24 +08:00
allcontributors[bot]
62c0071f29
docs: update .all-contributorsrc [skip ci]
2022-05-07 08:36:58 +00:00
allcontributors[bot]
f043a41005
docs: update CONTRIBUTORS.md [skip ci]
2022-05-07 08:36:57 +00:00
Hafiz Hsu
2e9da57036
chore: Merge pull request #1048 from Xhofe/all-contributors/add-Windman1320
...
docs: add Windman1320 as a contributor for code
2022-05-07 16:36:17 +08:00
allcontributors[bot]
d83cd37984
docs: update .all-contributorsrc [skip ci]
2022-05-07 08:35:50 +00:00
allcontributors[bot]
bad8b0ebbb
docs: update CONTRIBUTORS.md [skip ci]
2022-05-07 08:35:49 +00:00
Hafiz Hsu
4535e65948
chore: Merge pull request #1047 from Xhofe/dev
...
Dev 2.5.0
2022-05-07 16:29:10 +08:00
Xhofe
3b413c2ee2
chore: Merge pull request #1021 from WntFlm/mimefix
...
fix(webdav): empty mimeType
2022-05-01 19:13:29 +08:00
Xhofe
427ae56333
chore: Merge pull request #1020 from foxxorcat/dev
...
fix(xunlei):download link speed limit
2022-05-01 13:25:54 +08:00
WntFlm
658fd5ad6e
fix(webdav): empty mimeType
...
Now mimeType will always be a non-empty string, by defaulting it to "application/octet-stream".
2022-05-01 09:42:25 +08:00
foxxorcat
11830bb51c
fix(xunlei):download link speed limit
2022-04-30 21:41:15 +08:00
Xhofe
75c98429bf
fix(webdav): wrong MIMEType ( close #1007 )
2022-04-29 14:09:51 +08:00
Xhofe
f77ea1b3a5
chore: Merge pull request #1011 from foxxorcat/dev
...
增加一刻相册支持,优化迅雷代码
2022-04-29 14:08:04 +08:00
foxxorcat
0a8bd96d33
feat: support baidu.photo
2022-04-28 23:44:22 +08:00
foxxorcat
68f37fc11f
refactor(xunlei): optimized code
2022-04-28 23:15:37 +08:00
Xhofe
d6775cda69
fix(123): can't delete folder ( close #1009 )
2022-04-28 21:17:11 +08:00
Windman
43c6e07bac
feat: add aria2 download settings( #1000 )
...
* feat: add aria2 support
在右键菜单中增加了使用aria2下载的item,可以直接发送选中的文件链接到aria2,省略复制再粘贴到aria2的步骤
* feat: set default value for `Aria2 RPC url`
Co-authored-by: Xhofe <i@nn.ci >
2022-04-28 18:05:07 +08:00
Xhofe
4901e9080c
fix(quark): file size over i32 ( close #997 )
2022-04-26 15:22:39 +08:00
Xhofe
48049a5ea3
docs: upgrade golang version [skip ci]
2022-04-25 16:05:49 +08:00
Xhofe
bd7260f0ff
chore: base for template
2022-04-24 21:22:24 +08:00
Xhofe
6c0d54394f
chore: Merge pull request #992 from Xhofe/dev
...
Dev 2.4.3
2022-04-24 17:40:26 +08:00
Xhofe
ce5dacbf3f
build: build musl first
2022-04-24 17:39:25 +08:00
Xhofe
08aaa5e2c0
build: rm .git before xgo
2022-04-24 16:53:47 +08:00
Xhofe
42c0e438d5
fix(webdav): sharepoint upload
2022-04-24 15:38:17 +08:00
Xhofe
e4df146043
fix(webdav): sharepoint repeat login
2022-04-24 15:37:59 +08:00
Xhofe
27b7dae113
feat(webdav): support range get
2022-04-23 22:43:02 +08:00
Xhofe
293d574ce7
build: specify xgo version
2022-04-23 16:53:26 +08:00
Xhofe
56b3b35556
chore: Merge pull request #984 from Xhofe/dev
...
2.4.2
2022-04-21 22:34:12 +08:00
Xhofe
a7a0e85a46
docs: update qq group
2022-04-21 22:31:17 +08:00
Xhofe
95c0106fdd
feat(onedrive): default redirect_uri( close #967 )
2022-04-20 15:21:48 +08:00
Xhofe
6612338fc1
fix(189pc): InvalidSessionKey ( fix #920 )
2022-04-20 15:16:30 +08:00
Xhofe
c276a1541f
chore: delete useless comment
2022-04-18 18:32:29 +08:00
Xhofe
cc96a5bbdb
chore: add windows bin to gitignore
2022-04-18 18:31:10 +08:00
Xhofe
0810561a8a
fix(xunlei): check err prevent stack overflow
2022-04-18 18:29:21 +08:00
Xhofe
82a5c43b94
chore: Merge pull request #961 from Xhofe/dev
...
Dev v2.4.1
2022-04-17 23:12:02 +08:00
Xhofe
d38f36ef44
chore: delete useless test file
2022-04-17 22:50:54 +08:00
Xhofe
f9533440c7
build: cancel static link for glibc
2022-04-17 22:50:28 +08:00
Xhofe
41a186b051
fix(native): set size of folder to 0
2022-04-17 21:12:55 +08:00
Xhofe
4e6a44253c
chore: Merge pull request #958 from Xhofe/dev
...
Dev 2.4.0
2022-04-17 17:29:02 +08:00
Xhofe
ebda77cd43
docs: add sharepoint to webdav
2022-04-17 17:16:39 +08:00
Xhofe
1a1e86521f
fix(quark): lost files while number of files > 100 ( fix #947 )
2022-04-16 21:06:33 +08:00
Xhofe
1b4740dae3
fix: file deduplication ( fix #941 )
2022-04-16 17:28:16 +08:00
Xhofe
91fc8df84e
build: cancel static link for darwin
2022-04-16 17:08:48 +08:00
Xhofe
e6ecf1fa30
feat(189): add tips get page
2022-04-16 17:08:21 +08:00
Xhofe
183a6f1b3a
build: static link for compile
2022-04-16 16:55:55 +08:00
Xhofe
3c2d59e272
build: use crazymax/xgo
2022-04-16 16:43:21 +08:00
Xhofe
fd80e3eaf7
build: Use -buildvcs=false to disable VCS stamping
2022-04-16 15:23:21 +08:00
Xhofe
4928c331a8
build: upgrade go version
2022-04-16 15:04:28 +08:00
foxxorcat
3ad75e54cb
refactor(baidu): add a crack api of download
...
* 修复百度网盘API文件大于20M问题
* refactor: keep the official api
Co-authored-by: Xhofe <i@nn.ci >
2022-04-16 14:52:36 +08:00
Xhofe
a2cf3ab42e
workflow: add checkboxes for issue template
2022-04-14 22:16:15 +08:00
Xhofe
e24814ee2f
chore: Merge pull request #938 from Xhofe/feature/search
...
Feature/search
2022-04-13 21:57:59 +08:00
Xhofe
37b42e6e17
fix(sftp): add port
2022-04-12 20:22:09 +08:00
Xhofe
30ebb0f4d4
feat: support other region sharepoint with webdav
2022-04-12 09:54:22 +08:00
Xhofe
8e059c64b5
feat: webdav for sharepoint online ( #460 )
2022-04-11 21:32:38 +08:00
Xhofe
395de069c2
fix: extract_folder causes sorting confusion ( close #929 )
2022-04-11 16:50:47 +08:00
Xhofe
4c22f37d54
fix(search): file type
2022-04-08 22:47:04 +08:00
Xhofe
a73a40133d
feat: search api
2022-04-08 22:03:26 +08:00
Xhofe
6591af58ea
feat: store search file index
2022-04-08 21:51:21 +08:00
Xhofe
58568d4ef6
fix(189cloud): remove empty Authorization
2022-04-07 16:56:50 +08:00
Xhofe
5295593bf8
fix(189cloudpc): wrong modified time ( close #910 )
2022-04-06 17:59:45 +08:00
Xhofe
24d031d578
feat: clear temp file while start
2022-04-06 16:24:31 +08:00
Xhofe
7141bf0358
build: static compilation for musl
2022-04-06 16:19:15 +08:00
Xhofe
c5d707cf0a
fix: multilevel virtual path ( close #904 )
2022-04-06 15:23:10 +08:00
Xhofe
dfcf66b43e
fix(native): set size of folder to 0
2022-04-06 15:11:03 +08:00
Xhofe
fa6ee62cf0
feat: global readme url
2022-04-05 20:17:27 +08:00
Xhofe
1428d90361
feat: meta readme
2022-04-05 20:17:16 +08:00
Xhofe
c413c22201
fix(quark): denied by Referer ACL
2022-04-04 20:55:48 +08:00
Xhofe
9b6adecd62
feat: sharepoint webdav (unfinished)
2022-04-04 20:55:22 +08:00
Xhofe
b3540cf539
docs: add SFTP in readme [skip ci]
2022-04-03 18:20:33 +08:00
Xhofe
f8650c9c0b
fix(webdav): remove default Authorization header ( close #893 )
2022-04-03 18:19:15 +08:00
foxxorcat
bf2e5768d6
feat: add rapid upload switch for 189pc and alidrive ( #892 )
...
* 189PC增加快传开关
* alidrive增加快传开关
2022-04-03 17:56:21 +08:00
Xhofe
18c82e79b5
feat: sftp support
2022-04-02 19:28:43 +08:00
Xhofe
d69d24a5b2
fix(alidrive): judge status of delete folder ( close #886 )
2022-04-02 14:34:34 +08:00
Xhofe
342729179d
chore: Merge pull request #884 from Xhofe/dev
...
fix: some issues of webdav due to virtual path
2022-04-01 22:02:39 +08:00
Xhofe
0537449335
fix(webdav): virtual path no account
2022-04-01 21:57:55 +08:00
Xhofe
df90311453
fix(webdav): alist path not found
2022-04-01 20:40:57 +08:00
Xhofe
876579ea3b
chore: Merge pull request #874 from Xhofe/dev
...
support mount to root path
2022-04-01 09:42:37 +08:00
Xhofe
e83081380e
workflow: cancel build docker for pr
2022-04-01 09:40:53 +08:00
Xhofe
9daeaf7562
fix: virtual path, support mount to root path
2022-04-01 09:40:08 +08:00
Xhofe
e6be11c17f
chore: Merge pull request #873 from Xhofe/dev
...
fix: load balance
2022-03-31 22:04:37 +08:00
Xhofe
b52e1e8be3
fix: load balance
2022-03-31 21:52:19 +08:00
Xhofe
948bbe9136
chore: Merge pull request #872 from Xhofe/dev
...
fix quark cookie, virtual path
2022-03-31 20:58:56 +08:00
Xhofe
ced61da33a
feat: virtual path
2022-03-31 20:43:17 +08:00
Xhofe
a0f4383d41
feat(quark): set status
2022-03-30 14:06:50 +08:00
Xhofe
5a527dfa2c
feat(xunlei): set timeout
2022-03-30 00:18:20 +08:00
Xhofe
49fc475f9f
feat(s3): create placeholder file for mkdir
2022-03-30 00:18:00 +08:00
Xhofe
83c377270e
fix(webdav): add sign for webdav proxy
2022-03-29 16:34:22 +08:00
Xhofe
7ffaef0de6
fix: audio and video types
2022-03-28 21:53:57 +08:00
Xhofe
dd151480a8
fix(alidrive): change response of move and copy
2022-03-28 21:51:24 +08:00
Xhofe
ad3121d367
fix(quark): __puus expired ( close #830 )
2022-03-28 21:38:05 +08:00
Xhofe
c1525ebc69
feat: cookie operate util
2022-03-28 21:10:20 +08:00
Xhofe
30277cd81f
docs: change blog address [skip ci]
2022-03-27 20:23:18 +08:00
Xhofe
466ec27ffe
chore: Merge pull request #825 from Xhofe/dev
...
docs: add disclaimer
2022-03-27 20:17:36 +08:00
Xhofe
85c757b035
docs: add disclaimer
2022-03-27 20:16:06 +08:00
Xhofe
712687370a
chore: Merge pull request #823 from Xhofe/dev
...
fix some issues
2022-03-26 23:54:17 +08:00
Xhofe
b68ba22df3
workflow: issue invalid bot
2022-03-26 23:51:25 +08:00
Xhofe
d9652e2a0b
fix(189cloud): link force https ( close #821 )
2022-03-26 21:59:18 +08:00
Xhofe
a5b757b251
feat: customize audio/video types ( close #819 )
2022-03-26 17:10:37 +08:00
Xhofe
0bc05a60b0
feat(189pc): override upload
2022-03-23 18:51:07 +08:00
Xhofe
db275f885a
fix: DProxyTypes judge
2022-03-22 19:53:26 +08:00
Xhofe
9e483d902f
feat: adapt postgres ( close #740 )
2022-03-22 16:41:38 +08:00
Xhofe
801f843f8a
workflow: reproduction is required [skip ci]
2022-04-05 03:24:51 +08:00
Xhofe
77ffb93cbe
feat: multiple down proxy urls ( close #793 )
2022-03-20 16:53:30 +08:00
Xhofe
bf73ea7f5d
chore: Merge pull request #787 from Xhofe/dev
...
fix some issues of webdav
2022-03-19 14:57:38 +08:00
Xhofe
9b23d0ab29
docs: add sponsors [skip ci]
2022-03-18 17:08:43 +08:00
Xhofe
908cdd2c78
revert: undo delete upFileMap
2022-03-17 21:57:54 +08:00
Xhofe
f4f61a5787
fix(webdav): nil pointer error ( close #749 )
2022-03-17 21:23:10 +08:00
foxxorcat
6db09a2736
fix: xunlei upload error ( #749 )
2022-03-17 21:13:13 +08:00
Xhofe
b21801d505
fix: clear cookie for 189 cloud login
2022-03-16 18:02:11 +08:00
foxxorcat
2dbedc245c
fix: 189 family cloud upload ( #761 )
2022-03-16 14:22:42 +08:00
Xhofe
58426613f6
feat: add tls config for mysql ( fix #758 )
2022-03-15 17:05:54 +08:00
Xhofe
ef19e851e3
fix: check local ip for 123pan
2022-03-15 14:48:39 +08:00
Xhofe
5a1b16a601
feat: set overwrite for aliyundrive upload
2022-03-14 22:43:27 +08:00
Xhofe
4eef9cd9bc
fix: nil pointer while delete baidu account ( close #751 )
2022-03-14 20:40:42 +08:00
Xhofe
79b5c018ea
workflow: add translation for duplicate issue [skip ci]
2022-03-14 18:09:38 +08:00
Xhofe
15651a4356
feat: only show files ( close #735 )
2022-03-13 19:37:58 +08:00
Xhofe
7be476cce0
fix: wrong dockerfile
2022-03-13 19:00:19 +08:00
Xhofe
bb017c5f6d
feat: remove env prefix for docker
2022-03-13 17:01:45 +08:00
Xhofe
c51dc4594d
chore: add tips for announcement
2022-03-13 16:46:06 +08:00
Xhofe
8e30b02efc
fix: cache config env typo
2022-03-13 16:38:12 +08:00
Xhofe
0aa438dce4
feat: add announcement setting
2022-03-12 21:09:33 +08:00
Xhofe
9c2fc8e860
feat: read config from environment
2022-03-12 20:38:22 +08:00
Xhofe
b1d7a980d9
feat: echo password while start every time
2022-03-12 00:24:55 +08:00
Xhofe
19d0a88b55
fix: cookie lanzou file with password
2022-03-11 19:48:32 +08:00
Xhofe
40567dee0e
fix: lanzou url password
2022-03-11 19:16:21 +08:00
Xhofe
4b540a2297
feat: skip creating an existing folder
2022-03-11 18:12:13 +08:00
Xhofe
8a62d55efe
feat(google): add default client
2022-03-10 20:08:10 +08:00
foxxorcat
10fce6c0fe
fix(xunlei): some issues about page turning( #716 )
2022-03-09 22:48:15 +08:00
Xhofe
d31d49a9bb
fix(189pc): some minor issues
2022-03-09 21:09:21 +08:00
foxxorcat
2e91f5ffa5
feat: support 189 family cloud ( close #612 )
2022-03-09 20:30:56 +08:00
Xhofe
8f19c45a81
feat: pikpak video use media link
2022-03-09 15:11:12 +08:00
Xhofe
c63e05983d
fix: 189cloud big file download ( close #683 )
2022-03-07 15:04:20 +08:00
Xhofe
678a982535
feat: add sleep for lanzou request ( close #690 )
2022-03-07 14:36:25 +08:00
Xhofe
b2c02e6c5e
feat: add driver template
2022-03-06 21:33:58 +08:00
Xhofe
7e05b0317f
chore: Merge pull request #689 from Xhofe/dev
...
docs: add Contributing and move Contributors
2022-03-06 20:49:14 +08:00
Xhofe
19f06dfaed
docs: fix typo [skip ci]
2022-03-06 20:44:37 +08:00
Xhofe
1680a18578
docs: move CONTRIBUTORS [skip ci]
2022-03-06 20:38:30 +08:00
Xhofe
e8f440ca5c
docs: create CONTRIBUTING.md [skip ci]
2022-03-06 20:30:17 +08:00
Xhofe
7deff76f49
chore: Merge pull request #687 from Xhofe/all-contributors/add-Clansty
...
docs: add Clansty as a contributor for doc
2022-03-06 17:36:13 +08:00
allcontributors[bot]
cd0afb9536
docs: update .all-contributorsrc [skip ci]
2022-03-06 09:35:08 +00:00
allcontributors[bot]
668a953cd8
docs: update README_cn.md [skip ci]
2022-03-06 09:35:07 +00:00
allcontributors[bot]
8bfbaa74f6
docs: update README.md [skip ci]
2022-03-06 09:35:06 +00:00
Xhofe
3ccf5ee620
fix: ipa plist key
2022-03-05 15:33:04 +08:00
Xhofe
b44243c021
feat: ipa name decode
2022-03-05 15:13:19 +08:00
foxxorcat
4ae81b5a79
feat: aliyundrive fast upload ( #652 )
2022-03-05 13:14:57 +08:00
Xhofe
189f4c19a5
release: release v2.1.1
2022-03-04 21:00:39 +08:00
Xhofe
92a3d74af5
chore: Merge pull request #675 from Xhofe/all-contributors/add-vg-land [skip ci]
...
docs: add vg-land as a contributor for code
2022-03-04 20:16:17 +08:00
allcontributors[bot]
bb73a10332
docs: update .all-contributorsrc [skip ci]
2022-03-04 12:14:55 +00:00
allcontributors[bot]
3baf1e8c7b
docs: update README_cn.md [skip ci]
2022-03-04 12:14:54 +00:00
allcontributors[bot]
fdb49f5fb4
docs: update README.md [skip ci]
2022-03-04 12:14:53 +00:00
Xhofe
2eedcc1626
feat: opus preview ( #638 )
2022-03-04 10:05:15 +08:00
Xhofe
6faecbd5d8
feat: add cache for xunlei
2022-03-04 09:55:37 +08:00
Xhofe
34ed05c62f
style: go mod tidy
2022-03-04 09:52:08 +08:00
Xhofe
ce83d6eb40
build: fix dev build
2022-03-04 09:50:47 +08:00
Xhofe
2271cb6c7c
docs: replace preview image [skip ci]
2022-03-03 23:30:45 +08:00
allcontributors[bot]
a42b30c96e
docs: update .all-contributorsrc [skip ci]
2022-03-03 23:28:37 +08:00
allcontributors[bot]
ce25d16222
docs: update README_cn.md [skip ci]
2022-03-03 23:28:37 +08:00
allcontributors[bot]
b392e093e3
docs: update README.md [skip ci]
2022-03-03 23:28:37 +08:00
allcontributors[bot]
0d5b7298db
docs: update .all-contributorsrc [skip ci]
2022-03-03 23:27:19 +08:00
allcontributors[bot]
2063ebb74d
docs: update README_cn.md [skip ci]
2022-03-03 23:27:19 +08:00
allcontributors[bot]
0408d7ab5d
docs: update README.md [skip ci]
2022-03-03 23:27:19 +08:00
allcontributors[bot]
d52451f9d2
docs: update .all-contributorsrc [skip ci]
2022-03-03 23:24:46 +08:00
allcontributors[bot]
ca9f77006a
docs: update README_cn.md [skip ci]
2022-03-03 23:24:46 +08:00
allcontributors[bot]
e8e8d925f3
docs: update README.md [skip ci]
2022-03-03 23:24:46 +08:00
Xhofe
623aab4c28
docs: move all contributors
2022-03-03 23:17:13 +08:00
allcontributors[bot]
3bc81d471e
docs: create .all-contributorsrc [skip ci]
2022-03-03 23:00:34 +08:00
allcontributors[bot]
dfddb5cfa1
docs: update README.md [skip ci]
2022-03-03 23:00:34 +08:00
Xhofe
80f5bde0cb
build: just upx linux/amd64
2022-03-03 19:44:13 +08:00
Xhofe
9de072161e
docs: add xunlei cloud ( #659 )
2022-03-03 19:38:59 +08:00
Xhofe
d08a7440bc
🎇 import uss
2022-03-03 19:33:40 +08:00
Xhofe
7a4bb2496d
✨ add welcome bot
2022-03-03 19:16:30 +08:00
Xhofe
f68ab40d26
🔀 Merge pull request #659 from foxxorcat/dev
...
✨ xunleicloud support
2022-03-03 17:03:23 +08:00
Xhofe
796d490fb7
🐛 fix #658 onedrive file/folder judge
2022-03-03 16:01:24 +08:00
foxxorcat
2964d5a6db
xunleicloud support
2022-03-03 15:45:33 +08:00
Xhofe
90b57dacee
🎇 remove set Content-Type for native
2022-03-02 19:27:40 +08:00
Xhofe
6af17e2509
🔒 fix #645 xss vulnerability
2022-03-01 20:09:25 +08:00
Xhofe
5193b2aa7d
🎨 fix some warning
2022-02-27 20:28:42 +08:00
Xhofe
3f644f07db
✏️ fix readme logo
2022-02-27 20:26:05 +08:00
Xhofe
d988f98b81
💚 fix upx
2022-02-26 00:12:00 +08:00
Xhofe
10634c7b77
👷 add build for macos
2022-02-25 23:59:27 +08:00
Xhofe
135d505192
⏪ back to cgo sqlite3
2022-02-25 23:55:57 +08:00
Xhofe
3f2be8a6ca
🔧 change default assets path
2022-02-25 22:08:12 +08:00
Xhofe
79bef09ee7
🔀 Merge branch 'feature/upyun' into dev
2022-02-25 21:06:49 +08:00
Xhofe
3534f6afac
💚 fix cal md5
2022-02-24 23:07:35 +08:00
Xhofe
106c1d069c
💚 change build platform
2022-02-24 22:55:50 +08:00
Xhofe
8ed0afe80d
🎇 add unupx version
2022-02-24 22:42:15 +08:00
Xhofe
6a6e3944d5
🔀 Merge branch 'feature/purego' into dev
2022-02-24 16:26:20 +08:00
Xhofe
94d5b5e47e
✨ direct but proxy types
2022-02-24 16:25:17 +08:00
Xhofe
e61b0f8e34
🔥 remove cgo to pure go
2022-02-24 16:08:49 +08:00
Xhofe
f7fbe1de6c
👷 build for all branch
2022-02-23 20:17:50 +08:00
Xhofe
01de01630e
🔥 remove placeholder for uss
2022-02-23 20:16:57 +08:00
Xhofe
f9f92e2198
✏️ fix typo
2022-02-23 20:13:52 +08:00
Xhofe
7d5f50b04a
👷 build for all branch
2022-02-23 20:12:21 +08:00
Xhofe
72b5d25e4c
✏️ fix label typo
2022-02-23 20:07:45 +08:00
Xhofe
cae7f36531
🎇 refresh one folder
2022-02-23 19:16:33 +08:00
Xhofe
aa79f49e25
🐛 fix #600 aliyundrive move file
2022-02-23 14:56:17 +08:00
Xhofe
b4ad301d53
🐛 fix #599 lanzou url without password
2022-02-23 11:18:51 +08:00
Xhofe
00ed54c4c9
✨ upyun uss support
2022-02-23 11:07:19 +08:00
Xhofe
ffa52794db
🍺 change login http method
2022-02-22 15:57:39 +08:00
Xhofe
24058d0c36
💚 fix dev build
2022-02-21 21:47:40 +08:00
Xhofe
641ca67671
💚 fix web replace
2022-02-21 20:31:01 +08:00
Xhofe
52ee2e0a8b
🐛 close #581 teambition update time error
2022-02-21 17:20:05 +08:00
Xhofe
724fc7f37e
💚 fix build web
2022-02-20 16:46:47 +08:00
Xhofe
9d279b104b
✨ dynamic public path
2022-02-20 15:14:18 +08:00
Xhofe
eb61f70164
🐛 fix show balance account
2022-02-20 13:06:59 +08:00
Xhofe
b3a8201768
🐛 fix that only two accounts can be load balanced
2022-02-19 21:49:37 +08:00
Xhofe
185795954b
🔊 add reason of failed to auto migrate model
2022-02-19 17:25:50 +08:00
微凉
cc62cc99d2
🐛 fix plist ipa name
2022-02-18 19:01:30 +08:00
微凉
270349f37c
🐛 fix write status sequence
2022-02-18 18:58:02 +08:00
微凉
977888070a
🐛 close #558 fix local file can't download
2022-02-18 18:50:01 +08:00
微凉
192d0f2bf3
🐛 fix update can't start
2022-02-18 18:49:40 +08:00
Xhofe
f2ec7884ec
🐛 fix only proxy webdav_direct
2022-02-17 17:49:03 +08:00
Xhofe
815975a4d2
🐛 fix 139 delete dir
2022-02-17 17:37:45 +08:00
Xhofe
f96a0238fc
👷 change issues-month-statistics
2022-02-17 17:29:45 +08:00
Xhofe
f695bd0959
🔧 change bundle-version
2022-02-17 16:54:34 +08:00
Xhofe
efe8f46e17
✏️ fix typo
2022-02-17 11:56:00 +08:00
Xhofe
515daa22a9
🐛 fix #551 add S3ForcePathStyle config
2022-02-17 11:30:34 +08:00
Xhofe
f11e22deaf
🚧 change base64 characters
2022-02-17 09:14:21 +08:00
Xhofe
5be976169f
🚧 fix bundle-identifier
2022-02-17 00:44:30 +08:00
Xhofe
a6e08f3bf4
📝 update readme
2022-02-17 00:08:37 +08:00
Xhofe
944e68a979
🚧 plist generate
2022-02-17 00:06:10 +08:00
Xhofe
b3a6e33ce1
🎇 quark support
2022-02-16 20:20:39 +08:00
Xhofe
cb53ddc8e8
🐛 fix nil pointer
2022-02-16 16:10:39 +08:00
Xhofe
693417be4f
🔧 add hide files setting item
2022-02-15 14:51:50 +08:00
Xhofe
5c3f91bb55
✨ support empty password
2022-02-15 14:42:24 +08:00
Xhofe
8a219d0732
👷 add issue bot
2022-02-14 20:03:42 +08:00
Xhofe
146a544af3
✏️ fix typo
2022-02-14 19:43:43 +08:00
Xhofe
48dccc6c0b
📝 update readme
2022-02-14 15:41:20 +08:00
Xhofe
ce1740cec4
✏️ fix typo
2022-02-14 15:36:21 +08:00
Xhofe
d40dbeae3e
💬 add issue template
2022-02-14 15:33:48 +08:00
Xhofe
5094b673c4
👷 add some issue bot
2022-02-14 15:32:25 +08:00
Xhofe
228e6d10e7
🔧 close #519 customize temp dir
2022-02-14 15:06:57 +08:00
Xhofe
e90b979d15
✨ close #535 request set timeout
2022-02-14 14:59:00 +08:00
Xhofe
fb05a6ca48
🐛 fix #533 only encode fileName
2022-02-14 14:31:09 +08:00
Xhofe
e055ed3afa
🎇 lanzou proxy add user-agent
2022-02-13 17:46:07 +08:00
Xhofe
4371c470b3
✨ webdav direct proxy
2022-02-13 15:57:42 +08:00
Xhofe
7bb237d0ef
🐛 fix #527 189 upload file name contains %
2022-02-13 13:03:34 +08:00
Xhofe
5c42354b01
🐛 fix #527 189 upload name contains +
2022-02-12 20:27:38 +08:00
Xhofe
387e8af422
🐛 fix 189 upload while filename contains &
2022-02-12 13:08:46 +08:00
Xhofe
5dca777caf
🔒 fix baidu direct link
2022-02-12 12:04:10 +08:00
Xhofe
0814778a14
🐛 fix no account error while only one
2022-02-11 17:11:02 +08:00
Xhofe
6827af3997
🎇 close #522 hide account for guest webdav
2022-02-11 16:19:55 +08:00
Xhofe
435bdea8f7
🔧 #523 add some default setting
2022-02-11 16:17:07 +08:00
Xhofe
4f81735af6
🎇 close #512 favicon redirect
2022-02-08 18:07:13 +08:00
Xhofe
bef3d2f88d
🐛 Fix the temp folder is not created at the first startup
2022-02-08 16:22:53 +08:00
Xhofe
ba99c7dc03
🐛 fix multiple accounts with the same prefix cannot be load balanced
2022-02-08 16:02:47 +08:00
微凉
f5c5162a9b
✨ load balance
2022-02-08 15:51:58 +08:00
微凉
a22903533e
🐛 set random seed
2022-02-04 16:08:15 +08:00
微凉
86cda58b22
🚧 echo password
2022-02-04 14:58:48 +08:00
微凉
7804cf9d5c
🔒 random webdav admin password
2022-02-04 14:39:11 +08:00
微凉
2bb7036110
🔧 change logo
2022-02-03 21:28:13 +08:00
微凉
ba545555cf
📝 update readme
2022-02-03 21:00:08 +08:00
微凉
be55ca690c
🔧 change default logo
2022-02-03 20:43:33 +08:00
微凉
9013add749
🔒 random initial password
2022-02-03 12:27:50 +08:00
微凉
3201b6da76
🐛 fix #376 windows webdav upload
2022-02-02 18:48:34 +08:00
微凉
feb42f1f4b
🔥 delete proxy interface
2022-02-02 18:03:54 +08:00
微凉
6f14d0eb5c
🎇 baidu disk support
2022-02-02 17:32:11 +08:00
微凉
7530d8f5b2
🐛 fix lanzou for download change
2022-02-01 22:33:19 +08:00
微凉
e25fe05a53
✨ yandex disk support
2022-02-01 17:15:11 +08:00
微凉
8e0ab8f780
🔥 remove onedrive refresh token cron
2022-02-01 15:20:17 +08:00
微凉
cb2a3c2b42
🎨 change proxy interface
2022-02-01 14:28:21 +08:00
微凉
1b6ec94f33
🐛 fix s3 custom host
2022-02-01 11:34:32 +08:00
微凉
cb23edc1fe
🐛 fix #462 check connect while get ftp client
2022-01-31 11:13:29 +08:00
微凉
6fd05d7d72
🐛 fix connMap not init
2022-01-30 00:55:12 +08:00
微凉
f26ac57569
🐛 fix ftp conn not store
2022-01-30 00:04:31 +08:00
微凉
2434ac54d0
🐛 fix webdav
2022-01-29 18:36:22 +08:00
微凉
f25b557327
📝 update readme
2022-01-29 15:31:06 +08:00
微凉
81a0706d01
✨ 189 chunk upload
2022-01-29 11:16:40 +08:00
微凉
5f6b576cbf
🔧 switch cdn to jsdelivr
2022-01-28 23:29:38 +08:00
微凉
549877f71e
🔥 Delete Text
2022-01-28 23:21:11 +08:00
微凉
c6a5ba9b91
🚧 189 chunk upload
2022-01-28 19:51:54 +08:00
微凉
1a69d80489
🎨 Pull away Path
2022-01-28 11:04:56 +08:00
微凉
b797f4302c
🎇 use tempFile to cal md5
2022-01-27 23:48:29 +08:00
微凉
bf9aa5c3d3
🔒 not allowed use relative path of native
2022-01-27 15:10:33 +08:00
微凉
7390e19a7a
🔒 not allowed down with relative path
2022-01-27 15:05:17 +08:00
微凉
b31a12a0cc
🔒 not allowed access using relative path for native
2022-01-27 14:54:20 +08:00
微凉
26ce001782
🎇 add ocr for 189
2022-01-27 12:34:49 +08:00
微凉
a2c7ff3262
✏️ Invalid Token
2022-01-26 16:27:38 +08:00
微凉
8fc7c716c0
✨ copy api
2022-01-26 14:07:51 +08:00
微凉
c70fc3fc4b
✨ finish teambition chunk upload
2022-01-26 14:05:35 +08:00
微凉
df513b7dc0
✨ teambition upload (<= 20 MB)
2022-01-23 14:03:04 +08:00
微凉
2a9598f4c6
🐛 fix #407 189cloud use local sort
2022-01-21 19:01:33 +08:00
微凉
224c20779c
🔧 add webp to image types
2022-01-20 23:01:59 +08:00
微凉
5d722298cb
📝 update readme
2022-01-20 22:38:53 +08:00
微凉
4bcc6359e3
💚 fix docker build
2022-01-20 20:52:14 +08:00
微凉
4144afcc92
🐛 fix #397 139yun file size overflow int32
2022-01-20 20:35:01 +08:00
微凉
2ad27046fb
🎨 split build and docker
2022-01-20 20:30:58 +08:00
微凉
9516ac6718
🎇 finish move api
2022-01-20 19:58:25 +08:00
微凉
de638c7c36
🐛 fix 123pan move
2022-01-20 19:58:10 +08:00
微凉
c6b34a033b
🔧 add swf to image types
2022-01-20 14:40:59 +08:00
微凉
31de3399d2
💚 fix musl prebuilt
2022-01-20 14:23:31 +08:00
微凉
0dc2ca019f
💚 fix musl prebuilt
2022-01-20 13:47:21 +08:00
微凉
04724f7f0f
👷 add prebuilt for musl-libc
2022-01-20 12:53:49 +08:00
微凉
75a983a965
🐛 fix webdav can't get file with password
2022-01-19 18:46:32 +08:00
微凉
e12d8bb8ca
⬆️ upgrade gorm
2022-01-19 09:15:00 +08:00
微凉
68f1ccfed4
✨ add sslmode for postgres
2022-01-19 09:14:31 +08:00
微凉
54272db59c
🚧 add folder api
2022-01-18 19:08:44 +08:00
微凉
6d34e88360
🎇 hide files while webdav visitor
2022-01-18 18:48:08 +08:00
微凉
0a901a2eb0
🐛 fix can't find zhimg for dev
2022-01-18 18:19:58 +08:00
微凉
e1671a0511
🚧 add move api
2022-01-18 16:13:07 +08:00
微凉
dcb4ec695f
✨ rename and mkdir api
2022-01-18 14:31:52 +08:00
微凉
4a21b6fe1d
🔥 close res.body for proxy
2022-01-18 11:29:32 +08:00
微凉
96a237902b
🐛 close #379 fix google drive can't get text file
2022-01-17 09:54:19 +08:00
微凉
cfb51e9f80
✨ Extract folder
2022-01-16 16:38:41 +08:00
微凉
e952f1c243
🔥 Optimize 189 cloud get client
2022-01-16 16:05:32 +08:00
微凉
07d6ca27db
🐛 Forbid MediaTrack to create a new folder with the same name
2022-01-16 13:21:29 +08:00
微凉
8245da485a
🐛 fix s3 for #362
2022-01-15 20:24:57 +08:00
微凉
5c759217cf
🐛 fix some lanzou can't down #360
2022-01-15 20:10:42 +08:00
微凉
0648fdebc2
♻️ solve circular dependency
2022-01-15 19:59:24 +08:00
微凉
ed670e528f
🐛 fix 139Yun error phone close #365
2022-01-15 19:44:22 +08:00
微凉
2473309a51
🎇 execute save while delete account
2022-01-15 19:36:37 +08:00