72 lines
2.4 KiB
Go
72 lines
2.4 KiB
Go
package resource_model
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"cloud.o-forge.io/core/oc-lib/models/utils"
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
type AbstractResource struct {
|
|
utils.AbstractObject
|
|
ShortDescription string `json:"short_description,omitempty" bson:"short_description,omitempty" validate:"required"`
|
|
Description string `json:"description,omitempty" bson:"description,omitempty"`
|
|
Logo string `json:"logo,omitempty" bson:"logo,omitempty" validate:"required"`
|
|
Owner string `json:"owner,omitempty" bson:"owner,omitempty" validate:"required"`
|
|
OwnerLogo string `json:"owner_logo,omitempty" bson:"owner_logo,omitempty"`
|
|
SourceUrl string `json:"source_url,omitempty" bson:"source_url,omitempty" validate:"required"`
|
|
Price string `json:"price,omitempty" bson:"price,omitempty"`
|
|
License string `json:"license,omitempty" bson:"license,omitempty"`
|
|
ResourceModel *ResourceModel `json:"resource_model,omitempty" bson:"resource_model,omitempty"`
|
|
//Proxy *ResourceProxy `json:"proxy,omitempty" bson:"proxy,omitempty"`
|
|
}
|
|
|
|
type Model struct {
|
|
Type string `json:"type,omitempty" bson:"type,omitempty"`
|
|
Value interface{} `json:"value,omitempty" bson:"value,omitempty"`
|
|
ReadOnly bool `json:"readonly,omitempty" bson:"readonly,omitempty"`
|
|
}
|
|
|
|
type ResourceModel struct {
|
|
UUID string `json:"id,omitempty" bson:"id,omitempty" validate:"required"`
|
|
ResourceType string `json:"resource_type,omitempty" bson:"resource_type,omitempty" validate:"required"`
|
|
Model map[string]Model `json:"model,omitempty" bson:"model,omitempty"`
|
|
}
|
|
|
|
func (ao *ResourceModel) GetID() string {
|
|
return ao.UUID
|
|
}
|
|
|
|
func (r *ResourceModel) GenerateID() {
|
|
r.UUID = uuid.New().String()
|
|
}
|
|
|
|
func (d *ResourceModel) GetName() string {
|
|
return d.UUID
|
|
}
|
|
|
|
func (d *ResourceModel) GetAccessor() utils.Accessor {
|
|
data := &ResourceModelMongoAccessor{}
|
|
data.SetLogger(utils.RESOURCE_MODEL)
|
|
return data
|
|
}
|
|
|
|
func (dma *ResourceModel) Deserialize(j map[string]interface{}) utils.DBObject {
|
|
b, err := json.Marshal(j)
|
|
if err != nil {
|
|
return nil
|
|
}
|
|
json.Unmarshal(b, dma)
|
|
return dma
|
|
}
|
|
|
|
func (dma *ResourceModel) Serialize() map[string]interface{} {
|
|
var m map[string]interface{}
|
|
b, err := json.Marshal(dma)
|
|
if err != nil {
|
|
return nil
|
|
}
|
|
json.Unmarshal(b, &m)
|
|
return m
|
|
}
|