fix(drivers/139): update path handling, put for family#2719
Draft
xrgzs wants to merge 17 commits into
Draft
Conversation
xrgzs
force-pushed
the
fix/139-family
branch
5 times, most recently
from
July 6, 2026 13:02
e109087 to
d1c2368
Compare
xrgzs
marked this pull request as ready for review
July 6, 2026 13:59
xrgzs
marked this pull request as draft
July 16, 2026 15:20
Signed-off-by: MadDogOwner <xiaoran@xrgzs.top>
Signed-off-by: MadDogOwner <xiaoran@xrgzs.top>
Signed-off-by: MadDogOwner <xiaoran@xrgzs.top>
Signed-off-by: MadDogOwner <xiaoran@xrgzs.top>
Signed-off-by: MadDogOwner <xiaoran@xrgzs.top>
Signed-off-by: MadDogOwner <xiaoran@xrgzs.top>
Signed-off-by: MadDogOwner <xiaoran@xrgzs.top>
Signed-off-by: MadDogOwner <xiaoran@xrgzs.top>
Signed-off-by: MadDogOwner <xiaoran@xrgzs.top>
- Wrap stream with LimitedUploadStream before creating StreamSectionReader - Aligns with the same pattern used in the MetaPersonal/MetaGroup/MetaFamily path Co-authored-by: GitHub Copilot <copilot@github.com>
- Check rd.Seek() return value and free the section reader on error - Call ss.FreeSectionReader(rd) on all error paths within retry.Do closure - Prevents buffer.Block leak when retrying failed upload chunks Co-authored-by: GitHub Copilot <copilot@github.com> Signed-off-by: MadDogOwner <xiaoran@xrgzs.top>
- Move ss.GetSectionReader() before retry.Do() so the sequential stream section reader is only called once per chunk - Remove redundant ss.FreeSectionReader() calls from inside the retry closure since the reader is now owned by the outer scope - Fixes 'stream not cached' errors when retrying failed chunk uploads during cross-storage WebDAV COPY operations Co-authored-by: GitHub Copilot <copilot@github.com>
- Add UseOldStreamUpload option - Implement newRequest, newPost - Support rapid upload for PersonalNew and Group/Family Signed-off-by: MadDogOwner <xiaoran@xrgzs.top>
Signed-off-by: MadDogOwner <xiaoran@xrgzs.top>
Signed-off-by: MadDogOwner <xiaoran@xrgzs.top>
Signed-off-by: MadDogOwner <xiaoran@xrgzs.top>
Signed-off-by: MadDogOwner <xiaoran@xrgzs.top>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary / 摘要
说明:
官方网页版家庭云/共享群的上传方法已经改成和个人版的一致,只是域名不同,已预留API URL地址请求函数,
但老方法仍能上传,暂未实现新方法。实测老方法上传大文件会有问题,上传速度不如新方法。 统一为新方法。新方法支持秒传,但不支持流式,因此添加开关,允许用户回退到旧版本的流式上传。出现这个问题是官方家庭云改用
root:/前缀,之前不会拼接 root,故产生此问题。由于相关字段中包含 ID,因此使用拼接方法,不将ID直接改为Path,降低迁移成本。目前官方共享群未使用
root:/前缀,后续如果改了,直接改dirPath函数即可。/ 此 PR 包含破坏性变更。
/ 此 PR 修改了公开 API、配置、存储格式或迁移行为。
/ 此 PR 需要关联仓库同步修改。
Related repository PRs / 关联仓库 PR:
Related Issues / 关联 Issue
Testing / 测试
go test ./...家庭云 上传 复制 移动 删除 重命名 新建文件夹,根目录和子目录均无问题
修改到的新个人云测试上传无问题
Checklist / 检查清单
/ 我已阅读 CONTRIBUTING。
/ 我确认此贡献符合仓库许可证、贡献规范和行为准则。
gofmt,go fmt, orprettierwhere applicable./ 我已按适用情况使用
gofmt、go fmt或prettier格式化变更代码。/ 我已在适用情况下请求相关维护者或代码所有者审查。