2024-07-18 11:51:12 +02:00
|
|
|
package resources
|
|
|
|
|
2024-07-19 10:54:58 +02:00
|
|
|
import (
|
2024-07-19 13:15:51 +02:00
|
|
|
"encoding/json"
|
|
|
|
|
2024-07-19 10:54:58 +02:00
|
|
|
"cloud.o-forge.io/core/oc-lib/models/utils"
|
|
|
|
)
|
|
|
|
|
2024-07-18 11:51:12 +02:00
|
|
|
// AbstractResource is the struct containing all of the attributes commons to all ressources
|
|
|
|
|
|
|
|
// Resource is the interface to be implemented by all classes inheriting from Resource to have the same behavior
|
|
|
|
|
|
|
|
//http://www.inanzzz.com/index.php/post/wqbs/a-basic-usage-of-int-and-string-enum-types-in-golang
|
|
|
|
|
|
|
|
type Resource interface {
|
2024-07-19 10:54:58 +02:00
|
|
|
GetType() utils.DataType
|
2024-07-18 11:51:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type AbstractResource struct {
|
2024-07-19 10:54:58 +02:00
|
|
|
utils.AbstractObject
|
2024-07-19 09:32:58 +02:00
|
|
|
ShortDescription string `json:"short_description" required:"true" bson:"short_description" validate:"required"`
|
2024-07-18 11:51:12 +02:00
|
|
|
Description string `json:"description,omitempty" bson:"description"`
|
2024-07-19 09:32:58 +02:00
|
|
|
Logo string `json:"logo" required:"true" bson:"logo" validate:"required"`
|
|
|
|
Owner string `json:"owner" required:"true" bson:"owner" validate:"required"`
|
2024-07-18 11:51:12 +02:00
|
|
|
OwnerLogo string `json:"owner_logo" required:"true" bson:"owner_logo"`
|
2024-07-19 09:32:58 +02:00
|
|
|
SourceUrl string `json:"source_url" required:"true" bson:"source_url" validate:"required"`
|
2024-07-18 11:51:12 +02:00
|
|
|
}
|
|
|
|
|
2024-07-19 13:15:51 +02:00
|
|
|
func (dma *AbstractResource) ObjDeserialize(j map[string]interface{}) *AbstractResource {
|
|
|
|
b, err := json.Marshal(j)
|
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
json.Unmarshal(b, dma)
|
|
|
|
dma.AbstractObject.ObjDeserialize(j)
|
|
|
|
return dma
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dma *AbstractResource) ObjSerialize() map[string]interface{} {
|
|
|
|
var m map[string]interface{}
|
|
|
|
b, err := json.Marshal(dma)
|
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
json.Unmarshal(b, dma)
|
|
|
|
dma.AbstractObject.ObjSerialize()
|
|
|
|
return m
|
|
|
|
}
|
|
|
|
|
2024-07-18 11:51:12 +02:00
|
|
|
func (r *AbstractResource) GetID() string {
|
2024-07-19 10:54:58 +02:00
|
|
|
return r.UUID
|
2024-07-18 11:51:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (r *AbstractResource) GetName() string {
|
|
|
|
return r.Name
|
|
|
|
}
|