2024-11-28 16:49:41 +01:00
|
|
|
package resources
|
2024-07-18 11:51:12 +02:00
|
|
|
|
|
|
|
import (
|
2025-01-13 11:24:07 +01:00
|
|
|
"cloud.o-forge.io/core/oc-lib/models/common/pricing"
|
2025-01-15 09:20:26 +01:00
|
|
|
"cloud.o-forge.io/core/oc-lib/models/utils"
|
2024-08-12 16:11:25 +02:00
|
|
|
"cloud.o-forge.io/core/oc-lib/tools"
|
2024-07-18 11:51:12 +02:00
|
|
|
)
|
|
|
|
|
2024-12-12 16:25:47 +01:00
|
|
|
// 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
|
|
|
|
}
|
|
|
|
|
2025-01-14 09:15:50 +01:00
|
|
|
type WorkflowResourcePricingProfile struct{}
|
|
|
|
|
2024-08-30 14:50:48 +02:00
|
|
|
// WorkflowResource is a struct that represents a workflow resource
|
|
|
|
// it defines the resource workflow
|
2024-07-19 10:54:58 +02:00
|
|
|
type WorkflowResource struct {
|
2025-01-14 09:15:50 +01:00
|
|
|
AbstractResource
|
2024-12-12 16:25:47 +01:00
|
|
|
abstractWorkflowResource
|
|
|
|
}
|
|
|
|
|
2025-01-15 09:20:26 +01:00
|
|
|
func (d *WorkflowResource) GetAccessor(request *tools.APIRequest) utils.Accessor {
|
|
|
|
return NewAccessor[*ComputeResource](tools.WORKFLOW_RESOURCE, request, func() utils.DBObject { return &WorkflowResource{} })
|
|
|
|
}
|
|
|
|
|
2025-01-14 09:15:50 +01:00
|
|
|
func (d *WorkflowResource) Trim() {
|
|
|
|
/* EMPTY */
|
2025-01-13 14:52:41 +01:00
|
|
|
}
|
2025-01-14 09:15:50 +01:00
|
|
|
func (abs *WorkflowResource) VerifyAuth(request *tools.APIRequest) bool {
|
|
|
|
return true
|
2025-01-13 14:52:41 +01:00
|
|
|
}
|
2025-01-13 11:24:07 +01:00
|
|
|
func (w *WorkflowResource) SetAllowedInstances(request *tools.APIRequest) {
|
2025-01-14 09:15:50 +01:00
|
|
|
/* EMPTY */
|
2024-07-18 11:51:12 +02:00
|
|
|
}
|
|
|
|
|
2025-01-13 11:24:07 +01:00
|
|
|
func (w *WorkflowResource) ConvertToPricedResource(
|
|
|
|
t tools.DataType, request *tools.APIRequest) pricing.PricedItemITF {
|
|
|
|
return &PricedResource{
|
2025-01-14 11:28:16 +01:00
|
|
|
Name: w.Name,
|
|
|
|
Logo: w.Logo,
|
|
|
|
ResourceID: w.UUID,
|
|
|
|
ResourceType: t,
|
|
|
|
CreatorID: w.CreatorID,
|
2024-12-12 16:25:47 +01:00
|
|
|
}
|
2024-07-18 11:51:12 +02:00
|
|
|
}
|