endpoint

package
v0.0.9 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 28, 2019 License: MIT Imports: 20 Imported by: 0

Documentation

Index

Constants

View Source
const (
	AdminId = 1
)

Variables

This section is empty.

Functions

func GetHmacToken

func GetHmacToken(data map[string]interface{}, key []byte) (tokenString string, err error)

Types

type AuthEndpoint

type AuthEndpoint struct {
	*CommonEndpoint
}

func NewAuthEndpoint

func NewAuthEndpoint(common *CommonEndpoint) *AuthEndpoint

func (*AuthEndpoint) AccessList

func (a *AuthEndpoint) AccessList(user *m.User, accessListService *access_list.AccessListService) (accessList *access_list.AccessList, err error)

func (*AuthEndpoint) Recovery

func (a *AuthEndpoint) Recovery()

func (*AuthEndpoint) Reset

func (a *AuthEndpoint) Reset()

func (*AuthEndpoint) SignIn

func (a *AuthEndpoint) SignIn(email, password string, ip string) (user *m.User, accessToken string, err error)

func (*AuthEndpoint) SignOut

func (a *AuthEndpoint) SignOut(user *m.User) (err error)

type CommonEndpoint

type CommonEndpoint struct {
	// contains filtered or unexported fields
}

func NewCommonEndpoint

func NewCommonEndpoint(adaptors *adaptors.Adaptors,
	core *core.Core,
	accessList *access_list.AccessListService,
	scriptService *scripts.ScriptService,
	gate *gate_client.GateClient) *CommonEndpoint

type DeviceActionEndpoint

type DeviceActionEndpoint struct {
	*CommonEndpoint
}

func NewDeviceActionEndpoint

func NewDeviceActionEndpoint(common *CommonEndpoint) *DeviceActionEndpoint

func (*DeviceActionEndpoint) Add

func (d *DeviceActionEndpoint) Add(params *m.DeviceAction) (action *m.DeviceAction, errs []*validation.Error, err error)

func (*DeviceActionEndpoint) Delete

func (d *DeviceActionEndpoint) Delete(id int64) (err error)

func (*DeviceActionEndpoint) GetById

func (d *DeviceActionEndpoint) GetById(id int64) (device *m.DeviceAction, err error)

func (*DeviceActionEndpoint) GetList

func (d *DeviceActionEndpoint) GetList(deviceId int64) (actions []*m.DeviceAction, err error)

func (*DeviceActionEndpoint) Search

func (d *DeviceActionEndpoint) Search(query string, limit, offset int) (actions []*m.DeviceAction, total int64, err error)

func (*DeviceActionEndpoint) Update

func (d *DeviceActionEndpoint) Update(params *m.DeviceAction) (result *m.DeviceAction, errs []*validation.Error, err error)

type DeviceEndpoint

type DeviceEndpoint struct {
	*CommonEndpoint
}

func NewDeviceEndpoint

func NewDeviceEndpoint(common *CommonEndpoint) *DeviceEndpoint

func (*DeviceEndpoint) Add

func (d *DeviceEndpoint) Add(params *m.Device) (device *m.Device, errs []*validation.Error, err error)

func (*DeviceEndpoint) Delete

func (d *DeviceEndpoint) Delete(deviceId int64) (err error)

func (*DeviceEndpoint) GetById

func (d *DeviceEndpoint) GetById(deviceId int64) (device *m.Device, err error)

func (*DeviceEndpoint) GetList

func (d *DeviceEndpoint) GetList(limit, offset int64, order, sortBy string) (devices []*m.Device, total int64, err error)

func (*DeviceEndpoint) Search

func (d *DeviceEndpoint) Search(query string, limit, offset int) (devices []*m.Device, total int64, err error)

func (*DeviceEndpoint) Update

func (d *DeviceEndpoint) Update(device *m.Device) (result *m.Device, errs []*validation.Error, err error)

type DeviceStateEndpoint

type DeviceStateEndpoint struct {
	*CommonEndpoint
}

func NewDeviceStateEndpoint

func NewDeviceStateEndpoint(common *CommonEndpoint) *DeviceStateEndpoint

func (*DeviceStateEndpoint) Add

func (d *DeviceStateEndpoint) Add(params *m.DeviceState) (state *m.DeviceState, id int64, errs []*validation.Error, err error)

func (*DeviceStateEndpoint) Delete

func (d *DeviceStateEndpoint) Delete(id int64) (err error)

func (*DeviceStateEndpoint) GetById

func (d *DeviceStateEndpoint) GetById(id int64) (device *m.DeviceState, err error)

func (*DeviceStateEndpoint) GetList

func (d *DeviceStateEndpoint) GetList(deviceId int64) (actions []*m.DeviceState, err error)

func (*DeviceStateEndpoint) Update

func (d *DeviceStateEndpoint) Update(params *m.DeviceState) (state *m.DeviceState, errs []*validation.Error, err error)

type Endpoint

type Endpoint struct {
	Auth             *AuthEndpoint
	Device           *DeviceEndpoint
	DeviceAction     *DeviceActionEndpoint
	DeviceState      *DeviceStateEndpoint
	Flow             *FlowEndpoint
	Image            *ImageEndpoint
	Log              *LogEndpoint
	Map              *MapEndpoint
	MapElement       *MapElementEndpoint
	MapLayer         *MapLayerEndpoint
	Node             *NodeEndpoint
	Role             *RoleEndpoint
	Script           *ScriptEndpoint
	Workflow         *WorkflowEndpoint
	WorkflowScenario *WorkflowScenarioEndpoint
	User             *UserEndpoint
	Gate             *GateEndpoint
}

func NewEndpoint

func NewEndpoint(adaptors *adaptors.Adaptors,
	core *core.Core,
	scriptService *scripts.ScriptService,
	accessList *access_list.AccessListService,
	gate *gate_client.GateClient) *Endpoint

type FlowEndpoint

type FlowEndpoint struct {
	*CommonEndpoint
}

func NewFlowEndpoint

func NewFlowEndpoint(common *CommonEndpoint) *FlowEndpoint

func (*FlowEndpoint) Add

func (f *FlowEndpoint) Add(params *m.Flow) (result *m.Flow, errs []*validation.Error, err error)

func (*FlowEndpoint) Delete

func (f *FlowEndpoint) Delete(flowId int64) (err error)

func (*FlowEndpoint) ExportToRedactor

func (n *FlowEndpoint) ExportToRedactor(f *m.Flow) (redactorFlow *m.RedactorFlow, err error)

func (*FlowEndpoint) GetById

func (f *FlowEndpoint) GetById(id int64) (flow *m.Flow, err error)

func (*FlowEndpoint) GetList

func (f *FlowEndpoint) GetList(limit, offset int64, order, sortBy string) (list []*m.Flow, total int64, err error)

func (*FlowEndpoint) GetRedactor

func (f *FlowEndpoint) GetRedactor(flowId int64) (redactorFlow *m.RedactorFlow, err error)

func (*FlowEndpoint) Search

func (f *FlowEndpoint) Search(query string, limit, offset int) (list []*m.Flow, total int64, err error)

func (*FlowEndpoint) Update

func (f *FlowEndpoint) Update(params *m.Flow) (result *m.Flow, errs []*validation.Error, err error)

func (*FlowEndpoint) UpdateRedactor

func (f *FlowEndpoint) UpdateRedactor(params *m.RedactorFlow) (result *m.RedactorFlow,
	errs []*validation.Error, err error)

type GateEndpoint added in v0.0.9

type GateEndpoint struct {
	*CommonEndpoint
}

func NewGateEndpoint added in v0.0.9

func NewGateEndpoint(common *CommonEndpoint) *GateEndpoint

func (*GateEndpoint) AddMobile added in v0.0.9

func (d *GateEndpoint) AddMobile() (list *gate_client.MobileList, err error)

func (*GateEndpoint) DeleteMobile added in v0.0.9

func (d *GateEndpoint) DeleteMobile(token string) (list *gate_client.MobileList, err error)

func (*GateEndpoint) GetMobileList added in v0.0.9

func (d *GateEndpoint) GetMobileList() (list *gate_client.MobileList, err error)

func (*GateEndpoint) GetSettings added in v0.0.9

func (d *GateEndpoint) GetSettings() (settings *gate_client.Settings, err error)

func (*GateEndpoint) UpdateSettings added in v0.0.9

func (d *GateEndpoint) UpdateSettings(settings *gate_client.Settings) (err error)

type ImageEndpoint

type ImageEndpoint struct {
	*CommonEndpoint
}

func NewImageEndpoint

func NewImageEndpoint(common *CommonEndpoint) *ImageEndpoint

func (*ImageEndpoint) Add

func (i *ImageEndpoint) Add(params *m.Image) (image *m.Image, errs []*validation.Error, err error)

func (*ImageEndpoint) Delete

func (i *ImageEndpoint) Delete(imageId int64) (err error)

func (*ImageEndpoint) GetById

func (i *ImageEndpoint) GetById(id int64) (image *m.Image, err error)

func (*ImageEndpoint) GetList

func (i *ImageEndpoint) GetList(limit, offset int64, order, sortBy string) (items []*m.Image, total int64, err error)

func (*ImageEndpoint) Update

func (i *ImageEndpoint) Update(params *m.Image) (result *m.Image, errs []*validation.Error, err error)

func (*ImageEndpoint) Upload

func (i *ImageEndpoint) Upload(files map[string][]*multipart.FileHeader) (fileList []*m.Image, errs []error)

type LogEndpoint

type LogEndpoint struct {
	*CommonEndpoint
}

func NewLogEndpoint

func NewLogEndpoint(common *CommonEndpoint) *LogEndpoint

func (*LogEndpoint) Add

func (l *LogEndpoint) Add(log *m.Log) (result *m.Log, errs []*validation.Error, err error)

func (*LogEndpoint) Delete

func (l *LogEndpoint) Delete(logId int64) (err error)

func (*LogEndpoint) GetById

func (l *LogEndpoint) GetById(id int64) (log *m.Log, err error)

func (*LogEndpoint) GetList

func (l *LogEndpoint) GetList(limit, offset int64, order, sortBy, query string) (list []*m.Log, total int64, err error)

func (*LogEndpoint) Search

func (l *LogEndpoint) Search(query string, limit, offset int) (list []*m.Log, total int64, err error)

type MapElementEndpoint

type MapElementEndpoint struct {
	*CommonEndpoint
}

func NewMapElementEndpoint

func NewMapElementEndpoint(common *CommonEndpoint) *MapElementEndpoint

func (*MapElementEndpoint) Add

func (n *MapElementEndpoint) Add(params *m.MapElement) (result *m.MapElement, errs []*validation.Error, err error)

func (*MapElementEndpoint) Delete

func (n *MapElementEndpoint) Delete(mId int64) (err error)

func (*MapElementEndpoint) GetById

func (n *MapElementEndpoint) GetById(mId int64) (result *m.MapElement, err error)

func (*MapElementEndpoint) GetList

func (n *MapElementEndpoint) GetList(limit, offset int64, order, sortBy string) (result []*m.MapElement, total int64, err error)

func (*MapElementEndpoint) Sort

func (n *MapElementEndpoint) Sort(params []*m.SortMapElement) (err error)

func (*MapElementEndpoint) Update

func (n *MapElementEndpoint) Update(params *m.MapElement) (result *m.MapElement, errs []*validation.Error, err error)

func (*MapElementEndpoint) UpdateElement

func (n *MapElementEndpoint) UpdateElement(params *m.MapElement) (result *m.MapElement, errs []*validation.Error, err error)

type MapEndpoint

type MapEndpoint struct {
	*CommonEndpoint
}

func NewMapEndpoint

func NewMapEndpoint(common *CommonEndpoint) *MapEndpoint

func (*MapEndpoint) Add

func (m *MapEndpoint) Add(params *m.Map) (result *m.Map, errs []*validation.Error, err error)

func (*MapEndpoint) Delete

func (n *MapEndpoint) Delete(mId int64) (err error)

func (*MapEndpoint) GetById

func (m *MapEndpoint) GetById(id int64) (result *m.Map, err error)

func (*MapEndpoint) GetFullById

func (m *MapEndpoint) GetFullById(mId int64) (result *m.Map, err error)

func (*MapEndpoint) GetList

func (n *MapEndpoint) GetList(limit, offset int64, order, sortBy string) (items []*m.Map, total int64, err error)

func (*MapEndpoint) Search

func (n *MapEndpoint) Search(query string, limit, offset int) (items []*m.Map, total int64, err error)

func (*MapEndpoint) Update

func (n *MapEndpoint) Update(params *m.Map) (result *m.Map, errs []*validation.Error, err error)

type MapLayerEndpoint

type MapLayerEndpoint struct {
	*CommonEndpoint
}

func NewMapLayerEndpoint

func NewMapLayerEndpoint(common *CommonEndpoint) *MapLayerEndpoint

func (*MapLayerEndpoint) Add

func (n *MapLayerEndpoint) Add(params *m.MapLayer) (result *m.MapLayer, errs []*validation.Error, err error)

func (*MapLayerEndpoint) Delete

func (n *MapLayerEndpoint) Delete(mId int64) (err error)

func (*MapLayerEndpoint) GetById

func (n *MapLayerEndpoint) GetById(mId int64) (result *m.MapLayer, err error)

func (*MapLayerEndpoint) GetList

func (n *MapLayerEndpoint) GetList(limit, offset int64, order, sortBy string) (result []*m.MapLayer, total int64, err error)

func (*MapLayerEndpoint) Sort

func (n *MapLayerEndpoint) Sort(params []*m.SortMapLayer) (err error)

func (*MapLayerEndpoint) Update

func (n *MapLayerEndpoint) Update(params *m.MapLayer) (result *m.MapLayer, errs []*validation.Error, err error)

type NodeEndpoint

type NodeEndpoint struct {
	*CommonEndpoint
}

func NewNodeEndpoint

func NewNodeEndpoint(common *CommonEndpoint) *NodeEndpoint

func (*NodeEndpoint) Add

func (n *NodeEndpoint) Add(params *m.Node) (result *m.Node, errs []*validation.Error, err error)

func (*NodeEndpoint) Delete

func (n *NodeEndpoint) Delete(nodeId int64) (err error)

func (*NodeEndpoint) GetById

func (n *NodeEndpoint) GetById(nodeId int64) (result *m.Node, err error)

func (*NodeEndpoint) GetList

func (n *NodeEndpoint) GetList(limit, offset int64, order, sortBy string) (result []*m.Node, total int64, err error)

func (*NodeEndpoint) Search

func (n *NodeEndpoint) Search(query string, limit, offset int) (result []*m.Node, total int64, err error)

func (*NodeEndpoint) Update

func (n *NodeEndpoint) Update(params *m.Node) (result *m.Node, errs []*validation.Error, err error)

type RoleEndpoint

type RoleEndpoint struct {
	*CommonEndpoint
}

func NewRoleEndpoint

func NewRoleEndpoint(common *CommonEndpoint) *RoleEndpoint

func (*RoleEndpoint) Add

func (n *RoleEndpoint) Add(params *m.Role) (result *m.Role, errs []*validation.Error, err error)

func (*RoleEndpoint) Delete

func (n *RoleEndpoint) Delete(name string) (err error)

func (*RoleEndpoint) GetAccessList

func (n *RoleEndpoint) GetAccessList(roleName string,
	accessListService *access_list.AccessListService) (accessList access_list.AccessList, err error)

func (*RoleEndpoint) GetByName

func (n *RoleEndpoint) GetByName(name string) (result *m.Role, err error)

func (*RoleEndpoint) GetList

func (n *RoleEndpoint) GetList(limit, offset int64, order, sortBy string) (result []*m.Role, total int64, err error)

func (*RoleEndpoint) Search

func (n *RoleEndpoint) Search(query string, limit, offset int) (result []*m.Role, total int64, err error)

func (*RoleEndpoint) Update

func (n *RoleEndpoint) Update(params *m.Role) (result *m.Role, errs []*validation.Error, err error)

func (*RoleEndpoint) UpdateAccessList

func (n *RoleEndpoint) UpdateAccessList(roleName string, accessListDif map[string]map[string]bool) (err error)

type ScriptEndpoint

type ScriptEndpoint struct {
	*CommonEndpoint
}

func NewScriptEndpoint

func NewScriptEndpoint(common *CommonEndpoint) *ScriptEndpoint

func (*ScriptEndpoint) Add

func (n *ScriptEndpoint) Add(params *m.Script) (result *m.Script, errs []*validation.Error, err error)

func (*ScriptEndpoint) DeleteScriptById

func (n *ScriptEndpoint) DeleteScriptById(scriptId int64) (err error)

func (*ScriptEndpoint) Execute

func (n *ScriptEndpoint) Execute(scriptId int64) (result string, err error)

func (*ScriptEndpoint) ExecuteSource

func (n *ScriptEndpoint) ExecuteSource(script *m.Script) (result string, err error)

func (*ScriptEndpoint) GetById

func (n *ScriptEndpoint) GetById(scriptId int64) (result *m.Script, err error)

func (*ScriptEndpoint) GetList

func (n *ScriptEndpoint) GetList(limit, offset int64, order, sortBy string) (result []*m.Script, total int64, err error)

func (*ScriptEndpoint) Search

func (n *ScriptEndpoint) Search(query string, limit, offset int) (devices []*m.Script, total int64, err error)

func (*ScriptEndpoint) Update

func (n *ScriptEndpoint) Update(params *m.Script) (result *m.Script, errs []*validation.Error, err error)

type UserEndpoint

type UserEndpoint struct {
	*CommonEndpoint
}

func NewUserEndpoint

func NewUserEndpoint(common *CommonEndpoint) *UserEndpoint

func (*UserEndpoint) Add

func (n *UserEndpoint) Add(params *m.User,
	currentUser *m.User) (result *m.User, errs []*validation.Error, err error)

func (*UserEndpoint) Delete

func (n *UserEndpoint) Delete(userId int64) (err error)

func (*UserEndpoint) GetById

func (n *UserEndpoint) GetById(userId int64) (result *m.User, err error)

func (*UserEndpoint) GetList

func (n *UserEndpoint) GetList(limit, offset int, order, sortBy string) (result []*m.User, total int64, err error)

func (*UserEndpoint) Update

func (n *UserEndpoint) Update(params *m.User) (result *m.User, errs []*validation.Error, err error)

func (*UserEndpoint) UpdateStatus

func (n *UserEndpoint) UpdateStatus(userId int64, newStatus string) (err error)

type WorkflowEndpoint

type WorkflowEndpoint struct {
	*CommonEndpoint
}

func NewWorkflowEndpoint

func NewWorkflowEndpoint(common *CommonEndpoint) *WorkflowEndpoint

func (*WorkflowEndpoint) Add

func (n *WorkflowEndpoint) Add(params *m.Workflow) (result *m.Workflow, errs []*validation.Error, err error)

func (*WorkflowEndpoint) Delete

func (n *WorkflowEndpoint) Delete(workflowId int64) (err error)

func (*WorkflowEndpoint) GetById

func (n *WorkflowEndpoint) GetById(workflowId int64) (result *m.Workflow, err error)

func (*WorkflowEndpoint) GetList

func (n *WorkflowEndpoint) GetList(limit, offset int64, order, sortBy string) (result []*m.Workflow, total int64, err error)

func (*WorkflowEndpoint) Search

func (n *WorkflowEndpoint) Search(query string, limit, offset int) (result []*m.Workflow, total int64, err error)

func (*WorkflowEndpoint) Update

func (n *WorkflowEndpoint) Update(params *m.Workflow,
) (result *m.Workflow, errs []*validation.Error, err error)

func (*WorkflowEndpoint) UpdateScenario

func (n *WorkflowEndpoint) UpdateScenario(workflowId int64, workflowScenarioId int64) (err error)

type WorkflowScenarioEndpoint

type WorkflowScenarioEndpoint struct {
	*CommonEndpoint
}

func NewWorkflowScenarioEndpoint

func NewWorkflowScenarioEndpoint(common *CommonEndpoint) *WorkflowScenarioEndpoint

func (*WorkflowScenarioEndpoint) Add

func (n *WorkflowScenarioEndpoint) Add(params *m.WorkflowScenario) (result *m.WorkflowScenario, errs []*validation.Error, err error)

func (*WorkflowScenarioEndpoint) Delete

func (n *WorkflowScenarioEndpoint) Delete(workflowScenarioId int64) (err error)

func (*WorkflowScenarioEndpoint) GetById

func (n *WorkflowScenarioEndpoint) GetById(workflowId, scenarioId int64) (result *m.WorkflowScenario, err error)

func (*WorkflowScenarioEndpoint) GetList

func (n *WorkflowScenarioEndpoint) GetList(workflowId int64) (result []*m.WorkflowScenario, total int64, err error)

func (*WorkflowScenarioEndpoint) Search

func (n *WorkflowScenarioEndpoint) Search(query string, limit, offset int) (result []*m.WorkflowScenario, total int64, err error)

func (*WorkflowScenarioEndpoint) Update

func (n *WorkflowScenarioEndpoint) Update(params *m.WorkflowScenario) (result *m.WorkflowScenario,
	errs []*validation.Error, err error)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL