diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-10-31 18:09:45 +0100 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-11-06 10:18:00 +0100 |
commit | be13167b869161b6e19dc3e94835245cdc7911e5 (patch) | |
tree | c22fef52671c7e9a3f724acb02b8a62d64b3f94a /lib/agent/project-interface.go | |
parent | 459f46bc410c8641314d5f3eb39c871558b7d156 (diff) |
Moved all structs exposed by API into apiv1 package
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
Diffstat (limited to 'lib/agent/project-interface.go')
-rw-r--r-- | lib/agent/project-interface.go | 45 |
1 files changed, 8 insertions, 37 deletions
diff --git a/lib/agent/project-interface.go b/lib/agent/project-interface.go index 0a4a17e..c9e9ec5 100644 --- a/lib/agent/project-interface.go +++ b/lib/agent/project-interface.go @@ -1,43 +1,14 @@ package agent -// ProjectType definition -type ProjectType string - -const ( - TypePathMap = "PathMap" - TypeCloudSync = "CloudSync" - TypeCifsSmb = "CIFS" -) - -// Project Status definition -const ( - StatusErrorConfig = "ErrorConfig" - StatusDisable = "Disable" - StatusEnable = "Enable" - StatusPause = "Pause" - StatusSyncing = "Syncing" -) +import "github.com/iotbzh/xds-agent/lib/apiv1" // IPROJECT Project interface type IPROJECT interface { - Add(cfg ProjectConfig) (*ProjectConfig, error) // Add a new project - Delete() error // Delete a project - GetProject() *ProjectConfig // Get project public configuration - UpdateProject(prj ProjectConfig) (*ProjectConfig, error) // Update project configuration - GetServer() *XdsServer // Get XdsServer that holds this project - Sync() error // Force project files synchronization - IsInSync() (bool, error) // Check if project files are in-sync -} - -// ProjectConfig is the config for one project -type ProjectConfig struct { - ID string `json:"id"` - ServerID string `json:"serverId"` - Label string `json:"label"` - ClientPath string `json:"clientPath"` - ServerPath string `json:"serverPath"` - Type ProjectType `json:"type"` - Status string `json:"status"` - IsInSync bool `json:"isInSync"` - DefaultSdk string `json:"defaultSdk"` + Add(cfg apiv1.ProjectConfig) (*apiv1.ProjectConfig, error) // Add a new project + Delete() error // Delete a project + GetProject() *apiv1.ProjectConfig // Get project public configuration + UpdateProject(prj apiv1.ProjectConfig) (*apiv1.ProjectConfig, error) // Update project configuration + GetServer() *XdsServer // Get XdsServer that holds this project + Sync() error // Force project files synchronization + IsInSync() (bool, error) // Check if project files are in-sync } |