b020b4e415
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
48 lines
1.3 KiB
Go
48 lines
1.3 KiB
Go
package form
|
|
|
|
import (
|
|
"github.com/photoprism/photoprism/internal/remote"
|
|
"github.com/ulule/deepcopier"
|
|
)
|
|
|
|
// Account represents a remote service account form for uploading, downloading or syncing media files.
|
|
type Account struct {
|
|
AccName string `json:"AccName"`
|
|
AccOwner string `json:"AccOwner"`
|
|
AccURL string `json:"AccURL"`
|
|
AccType string `json:"AccType"`
|
|
AccKey string `json:"AccKey"`
|
|
AccUser string `json:"AccUser"`
|
|
AccPass string `json:"AccPass"`
|
|
AccError string `json:"AccError"`
|
|
AccShare bool `json:"AccShare"`
|
|
AccSync bool `json:"AccSync"`
|
|
RetryLimit int `json:"RetryLimit"`
|
|
SharePath string `json:"SharePath"`
|
|
ShareSize string `json:"ShareSize"`
|
|
ShareExpires int `json:"ShareExpires"`
|
|
SyncPath string `json:"SyncPath"`
|
|
SyncInterval int `json:"SyncInterval"`
|
|
SyncUpload bool `json:"SyncUpload"`
|
|
SyncDownload bool `json:"SyncDownload"`
|
|
SyncFilenames bool `json:"SyncFilenames"`
|
|
SyncRaw bool `json:"SyncRaw"`
|
|
}
|
|
|
|
func NewAccount(m interface{}) (f Account, err error) {
|
|
err = deepcopier.Copy(m).To(&f)
|
|
|
|
return f, err
|
|
}
|
|
|
|
func (f *Account) ServiceDiscovery() error {
|
|
acc, err := remote.Discover(f.AccURL, f.AccUser, f.AccPass)
|
|
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = deepcopier.Copy(acc).To(f)
|
|
|
|
return err
|
|
}
|