(cherry picked from commit d7ff423e04ad0e2e66e1011c15c0eb42f8bb65ef) (cherry picked from commit 382a122847868c938ada4bcf5e2f6f8d331cb0d1)
24 lines
741 B
Go
24 lines
741 B
Go
package share
|
|
|
|
type CreateBody struct {
|
|
Password string `json:"password"`
|
|
Expires string `json:"expires"`
|
|
Unit string `json:"unit"`
|
|
|
|
Custom bool `json:"custom"`
|
|
CustomLink string `json:"customLink"`
|
|
}
|
|
|
|
// 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"`
|
|
}
|