46 lines
1.2 KiB
Go
46 lines
1.2 KiB
Go
package resources
|
|
|
|
import (
|
|
"cloud.o-forge.io/core/oc-lib/models/common/pricing"
|
|
"cloud.o-forge.io/core/oc-lib/tools"
|
|
)
|
|
|
|
// we don't have any information about the accessor
|
|
type abstractWorkflowResource struct {
|
|
WorkflowID string `bson:"workflow_id,omitempty" json:"workflow_id,omitempty"` // WorkflowID is the ID of the native workflow
|
|
}
|
|
|
|
type WorkflowResourcePricingProfile struct{}
|
|
|
|
// WorkflowResource is a struct that represents a workflow resource
|
|
// it defines the resource workflow
|
|
type WorkflowResource struct {
|
|
AbstractResource
|
|
abstractWorkflowResource
|
|
}
|
|
|
|
func (d *WorkflowResource) Trim() {
|
|
/* EMPTY */
|
|
}
|
|
func (abs *WorkflowResource) VerifyAuth(request *tools.APIRequest) bool {
|
|
return true
|
|
}
|
|
func (w *WorkflowResource) SetAllowedInstances(request *tools.APIRequest) {
|
|
/* EMPTY */
|
|
}
|
|
|
|
func (w *WorkflowResource) ConvertToPricedResource(
|
|
t tools.DataType, request *tools.APIRequest) pricing.PricedItemITF {
|
|
instances := map[string]string{}
|
|
profiles := map[string][]pricing.PricingProfileITF{}
|
|
return &PricedResource{
|
|
Name: w.Name,
|
|
Logo: w.Logo,
|
|
ResourceID: w.UUID,
|
|
ResourceType: t,
|
|
InstancesRefs: instances,
|
|
PricingProfiles: profiles,
|
|
CreatorID: w.CreatorID,
|
|
}
|
|
}
|