Bagage is the bridge between our users and garage, it enables them to synchronize files that matter for them from their computer to garage through WebDAV
Go to file
Alex c604a9a34f Add AGPLv3 license 2024-04-03 13:57:41 +02:00
internal/encoding/ssh/filexfer Working on SFTP 2021-11-19 19:54:49 +01:00
s3 It seems to work 2021-11-20 13:42:20 +01:00
sftp It seems to work 2021-11-20 13:42:20 +01:00
.dockerignore Better error management 2021-11-20 15:10:21 +01:00
.gitignore Working on SFTP 2021-11-19 19:54:49 +01:00
Dockerfile Fix cache directory err check+dockerfile 2021-11-20 16:05:58 +01:00
LICENSE Add AGPLv3 license 2024-04-03 13:57:41 +02:00
README.md Add a README file 2021-08-31 10:44:22 +02:00
auth_basic.go Refactor the codebase 2021-08-23 20:40:03 +02:00
auth_ldap.go Path + format 2021-11-20 09:53:05 +01:00
auth_s3.go Refactor the codebase 2021-08-23 20:40:03 +02:00
config.go It seems to work 2021-11-20 13:42:20 +01:00
cors.go Fix CORS by allowing everything 2023-10-16 16:10:14 +02:00
error.go Refactor the codebase 2021-08-23 20:40:03 +02:00
go.mod Working on SFTP 2021-11-19 19:54:49 +01:00
go.sum Working on SFTP 2021-11-19 19:54:49 +01:00
main.go Fix CORS by allowing everything 2023-10-16 16:10:14 +02:00
middleware.go Refactor the codebase 2021-08-23 20:40:03 +02:00
webdav.go It seems to work 2021-11-20 13:42:20 +01:00

README.md

bagage

This is a technical preview, use it a your own risk, expect bugs and missing features.

Bagage will be a service to access your documents everywhere.

Currently, it is only a WebDAV to S3 proxy. Later, it may propose a web interface and support synchronization with the Nextcloud client.

how it works

bagage exposes a webdav endpoint behind an HTTP basic auth. Credentials provided through basic auth are used to authenticate on the LDAP server, then 2 keys garage_s3_access_key and garage_s3_secret_key are fetched from the user's LDAP profile to authenticate against the S3 server.

For now, these entries must be manually/externally added to the LDAP server prior using the service.

configuration

bagage is configured through environment variables. You can get all the keys and their default values in the config.go file.

running it

You need a S3 endpoint and a LDAP server running. Once you correctly set your environment variables, you can simply run it:

go run .

docker

A simple dockerfile is proposed to build a binary if you want.