104 lines
2.6 KiB
Go
104 lines
2.6 KiB
Go
package validator_controller
|
|
|
|
import (
|
|
"context"
|
|
|
|
api "git.itzana.me/strafesnet/maps-service/pkg/internal"
|
|
"git.itzana.me/strafesnet/maps-service/pkg/model"
|
|
"git.itzana.me/strafesnet/maps-service/pkg/service"
|
|
)
|
|
|
|
// CreateScript implements createScript operation.
|
|
//
|
|
// Create a new script.
|
|
//
|
|
// POST /scripts
|
|
func (svc *Controller) CreateScript(ctx context.Context, req *api.ScriptCreate) (*api.ScriptID, error) {
|
|
script, err := svc.inner.CreateScript(ctx, model.Script{
|
|
ID: 0,
|
|
Name: req.Name,
|
|
Hash: int64(model.HashSource(req.Source)),
|
|
Source: req.Source,
|
|
ResourceType: model.ResourceType(req.ResourceType),
|
|
ResourceID: req.ResourceID.Or(0),
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &api.ScriptID{
|
|
ScriptID: script.ID,
|
|
}, nil
|
|
}
|
|
|
|
// ListScripts implements listScripts operation.
|
|
//
|
|
// Get list of scripts.
|
|
//
|
|
// GET /scripts
|
|
func (svc *Controller) ListScripts(ctx context.Context, params api.ListScriptsParams) ([]api.Script, error) {
|
|
filter := service.NewScriptFilter()
|
|
if hash_hex, ok := params.Hash.Get(); ok{
|
|
hash_parsed, err := model.HashParse(hash_hex)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
filter.SetHash(int64(hash_parsed))
|
|
}
|
|
if name, name_ok := params.Name.Get(); name_ok{
|
|
filter.SetName(name)
|
|
}
|
|
if source, source_ok := params.Source.Get(); source_ok{
|
|
filter.SetSource(source)
|
|
}
|
|
if resource_type, resource_type_ok := params.ResourceType.Get(); resource_type_ok{
|
|
filter.SetResourceType(resource_type)
|
|
}
|
|
if resource_id, resource_id_ok := params.ResourceID.Get(); resource_id_ok{
|
|
filter.SetResourceID(resource_id)
|
|
}
|
|
|
|
items, err := svc.inner.ListScripts(ctx, filter, model.Page{
|
|
Number: params.Page,
|
|
Size: params.Limit,
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var resp []api.Script
|
|
for _, item := range items {
|
|
resp = append(resp, api.Script{
|
|
ID: item.ID,
|
|
Name: item.Name,
|
|
Hash: model.HashFormat(uint64(item.Hash)),
|
|
Source: item.Source,
|
|
ResourceType: int32(item.ResourceType),
|
|
ResourceID: item.ResourceID,
|
|
})
|
|
}
|
|
|
|
return resp, nil
|
|
}
|
|
|
|
// GetScript implements getScript operation.
|
|
//
|
|
// Get the specified script by ID.
|
|
//
|
|
// GET /scripts/{ScriptID}
|
|
func (svc *Controller) GetScript(ctx context.Context, params api.GetScriptParams) (*api.Script, error) {
|
|
script, err := svc.inner.GetScript(ctx, params.ScriptID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &api.Script{
|
|
ID: script.ID,
|
|
Name: script.Name,
|
|
Hash: model.HashFormat(uint64(script.Hash)),
|
|
Source: script.Source,
|
|
ResourceType: int32(script.ResourceType),
|
|
ResourceID: script.ResourceID,
|
|
}, nil
|
|
}
|