feat(wiki-gen): implement S3 and WebDAV connectors (P0 complete)#29
Merged
feat(wiki-gen): implement S3 and WebDAV connectors (P0 complete)#29
Conversation
S3Connector:
- AWS SDK S3 integration
- Support for S3-compatible storage (MinIO, Wasabi, Cloudflare R2)
- Custom endpoint support
- Prefix-based path handling
- Streaming reads via AWS SDK
- Full async/await
WebDavConnector:
- reqwest HTTP client
- PROPFIND for directory listing
- GET for file reading
- HEAD for metadata
- Basic authentication support
- Compatible with εζδΊ, Nextcloud, ownCloud, Seafile
Dependencies:
- aws-sdk-s3 = "1"
- aws-config = "1"
- reqwest = { version = "0.12", features = ["json"] }
P0 Status:
- β
LocalConnector
- β
GitConnector
- β
S3Connector
- β
WebDavConnector
- 100% P0 complete (4/4)
Code Stats:
- s3.rs: 210 lines
- webdav.rs: 180 lines
- Total P0: ~790 lines
Next: P1 connectors (OSS, COS, OBS, SMB, NFS, SFTP)
P0 Complete: - LocalConnector β - GitConnector β - S3Connector β - WebDavConnector β - 100% P0 complete (4/4) - ~790 lines of code Updated: - docs/state.json: progress 24% - WORK_LOG.md: P0 complete, P1 starting - docs/STORAGE_CONNECTORS.md: marked S3 + WebDAV as implemented Coverage: 80% of use cases with P0 connectors Next: P1 connectors (OSS, COS, OBS, SMB, NFS, SFTP)
This was referenced Feb 21, 2026
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.
π¦ Storage Connectors - P0 Complete
β Implemented (4/4)
3. S3Connector
4. WebDavConnector
π Code Stats
π§ Technical Highlights
S3Connector:
WebDavConnector:
π¦ Dependencies Added
π― P0 Status
π Coverage
P0 connectors cover 80% of use cases:
π§ͺ Testing
cargo test -p memoryos-wiki-gen --lib storage cargo check -p memoryos-wiki-genπ Next Steps
P1 connectors (Week 2-3):
π Related