2020-03-28 15:29:17 +01:00
|
|
|
package form
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/ulule/deepcopier"
|
2021-11-26 14:28:50 +01:00
|
|
|
|
|
|
|
"github.com/photoprism/photoprism/internal/remote"
|
2020-03-28 15:29:17 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// Account represents a remote service account form for uploading, downloading or syncing media files.
|
|
|
|
type Account struct {
|
2020-04-04 17:19:34 +02:00
|
|
|
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"`
|
2022-03-27 21:37:11 +02:00
|
|
|
AccTimeout string `json:"AccTimeout"` // Request timeout: default, high, medium, low, none
|
2020-04-04 17:19:34 +02:00
|
|
|
AccError string `json:"AccError"`
|
2022-03-27 21:37:11 +02:00
|
|
|
AccShare bool `json:"AccShare"` // Manual upload enabled, see SharePath, ShareSize, and ShareExpires.
|
|
|
|
AccSync bool `json:"AccSync"` // Background sync enabled, see SyncDownload and SyncUpload.
|
|
|
|
RetryLimit int `json:"RetryLimit"` // Number of remote request retry attempts.
|
2020-04-04 17:19:34 +02:00
|
|
|
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"`
|
2020-03-28 15:29:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewAccount(m interface{}) (f Account, err error) {
|
|
|
|
err = deepcopier.Copy(m).To(&f)
|
|
|
|
|
|
|
|
return f, err
|
|
|
|
}
|
2020-03-29 12:02:01 +02:00
|
|
|
|
|
|
|
func (f *Account) ServiceDiscovery() error {
|
2020-04-05 22:26:53 +02:00
|
|
|
acc, err := remote.Discover(f.AccURL, f.AccUser, f.AccPass)
|
2020-03-29 12:02:01 +02:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = deepcopier.Copy(acc).To(f)
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|