vikunja/pkg/files
kolaente 0e1f44e57e refactor: replace afero with FileStorage interface
Replace the github.com/spf13/afero dependency with a purpose-built
FileStorage interface (Open, Write, Stat, Remove, MkdirAll) with three
implementations: localStorage (with basePath), s3Storage (with key
prefix), and memStorage (for tests).

Each implementation owns its base path — callers pass only file IDs.
Delete s3fs.go, change File.File from afero.File to io.ReadCloser,
and fix duplication flows to buffer content for seeking.
2026-03-20 10:59:44 +01:00
..
db.go feat: register Vikunja tables with db package at init 2026-03-04 15:37:54 +01:00
diagnostics_unix.go feat(doctor): add user namespace detection and improved storage diagnostics (#2180) 2026-02-01 11:57:35 +01:00
diagnostics_windows.go feat(doctor): add user namespace detection and improved storage diagnostics (#2180) 2026-02-01 11:57:35 +01:00
dump.go fix: correct license header references (#882) 2025-06-10 12:18:38 +02:00
error.go fix(attachments): extend upload file size to form data (#1577) 2025-09-30 22:23:07 +00:00
filehandling.go refactor: replace afero with FileStorage interface 2026-03-20 10:59:44 +01:00
files.go refactor: replace afero with FileStorage interface 2026-03-20 10:59:44 +01:00
files_test.go refactor: replace afero with FileStorage interface 2026-03-20 10:59:44 +01:00
main_test.go feat: move to slog for logging 2025-07-21 18:15:39 +02:00
repair.go refactor: replace afero with FileStorage interface 2026-03-20 10:59:44 +01:00
s3_test.go refactor: replace afero with FileStorage interface 2026-03-20 10:59:44 +01:00
storage.go refactor: replace afero with FileStorage interface 2026-03-20 10:59:44 +01:00
storage_local.go refactor: replace afero with FileStorage interface 2026-03-20 10:59:44 +01:00
storage_local_test.go refactor: replace afero with FileStorage interface 2026-03-20 10:59:44 +01:00
storage_mem.go refactor: replace afero with FileStorage interface 2026-03-20 10:59:44 +01:00
storage_mem_test.go refactor: replace afero with FileStorage interface 2026-03-20 10:59:44 +01:00
storage_s3.go refactor: replace afero with FileStorage interface 2026-03-20 10:59:44 +01:00