mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
d8f415f8ab
This changes allows to password protect shares. It works by: * Allowing to optionally pass a password when creating a share * If set, the password + salt that is configured via a new flag will be hashed via bcrypt and the hash stored together with the rest of the share * Additionally, a random 96 byte long token gets generated and stored as part of the share * When the backend retrieves an unauthenticated request for a share that has authentication configured, it will return a http 401 * The frontend detects this and will show a login prompt * The actual download links are protected via an url arg that contains the previously generated token. This allows us to avoid buffering the download in the browser and allows pasting the link without breaking it
21 lines
668 B
Go
21 lines
668 B
Go
package share
|
|
|
|
type CreateBody struct {
|
|
Password string `json:"password"`
|
|
Expires string `json:"expires"`
|
|
Unit string `json:"unit"`
|
|
}
|
|
|
|
// Link is the information needed to build a shareable link.
|
|
type Link struct {
|
|
Hash string `json:"hash" storm:"id,index"`
|
|
Path string `json:"path" storm:"index"`
|
|
UserID uint `json:"userID"`
|
|
Expire int64 `json:"expire"`
|
|
PasswordHash string `json:"password_hash,omitempty"`
|
|
// Token is a random value that will only be set when PasswordHash is set. It is
|
|
// URL-Safe and is used to download links in password-protected shares via a
|
|
// query arg.
|
|
Token string `json:"token,omitempty"`
|
|
}
|