feature/add-actions (#9)
Co-authored-by: kjuulh <contact@kjuulh.io> Reviewed-on: https://git.front.kjuulh.io/kjuulh/kraken/pulls/9
This commit is contained in:
@@ -2,15 +2,38 @@ package actions
|
||||
|
||||
import (
|
||||
"context"
|
||||
"errors"
|
||||
|
||||
"git.front.kjuulh.io/kjuulh/kraken/internal/actions/builders"
|
||||
"git.front.kjuulh.io/kjuulh/kraken/internal/schema"
|
||||
"git.front.kjuulh.io/kjuulh/kraken/internal/services/storage"
|
||||
"go.uber.org/zap"
|
||||
)
|
||||
|
||||
type Action struct {
|
||||
Schema *schema.KrakenSchema
|
||||
Schema *schema.KrakenSchema
|
||||
SchemaPath string
|
||||
}
|
||||
|
||||
func (a *Action) Execute(ctx context.Context, area *storage.Area) error {
|
||||
for _, action := range a.Schema.Actions {
|
||||
switch action.Type {
|
||||
case "go":
|
||||
exe, err := builders.NewGo(zap.L()).Build(ctx, a.SchemaPath, action.Entry)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
err = exe(ctx, area.Path)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
zap.L().Debug("Execution done")
|
||||
|
||||
default:
|
||||
return errors.New("could not determine action type")
|
||||
}
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
Reference in New Issue
Block a user