planner/plan/command/add.go

71 lines
1.5 KiB
Go
Raw Normal View History

2024-09-30 07:34:40 +02:00
package command
import (
"fmt"
2024-10-29 07:22:04 +01:00
"strings"
2024-12-27 11:20:32 +01:00
"time"
2024-09-30 07:34:40 +02:00
2024-10-01 07:36:31 +02:00
"github.com/google/uuid"
2024-09-30 07:34:40 +02:00
"go-mod.ewintr.nl/planner/item"
)
2024-12-27 11:20:32 +01:00
func NewAdd(deps Dependencies, main []string, fields map[string]string) (Command, error) {
2024-10-29 07:22:04 +01:00
if len(main) == 0 || main[0] != "add" {
2024-12-27 11:20:32 +01:00
return nil, ErrWrongCommand
2024-10-29 07:22:04 +01:00
}
2024-12-27 11:20:32 +01:00
main = main[1:]
if len(main) == 0 {
return nil, fmt.Errorf("%w: title is required for add", ErrInvalidArg)
2024-10-29 07:22:04 +01:00
}
2024-12-27 11:20:32 +01:00
title := strings.Join(main, ",")
if val, ok := fields[FieldDate]; ok {
d := item.NewDateFromString(val)
if d.IsZero() {
return nil, fmt.Errorf("%w: could not parse date", ErrInvalidArg)
2024-10-29 07:22:04 +01:00
}
2024-12-27 11:20:32 +01:00
params.Date = d
2024-10-29 07:22:04 +01:00
}
2024-12-27 11:20:32 +01:00
if val, ok := fields[FieldTime]; ok {
t := item.NewTimeFromString(val)
if t.IsZero() {
return nil, fmt.Errorf("%w: could not parse time", ErrInvalidArg)
}
params.Time = t
2024-10-01 07:36:31 +02:00
}
2024-12-27 11:20:32 +01:00
if val, ok := fields[FieldDuration]; ok {
d, err := time.ParseDuration(val)
if err != nil {
return nil, fmt.Errorf("%w: could not parse duration", ErrInvalidArg)
2024-10-29 07:22:04 +01:00
}
2024-12-27 11:20:32 +01:00
params.Duration = d
2024-10-01 07:36:31 +02:00
}
2024-12-27 11:20:32 +01:00
if val, ok := fields[FieldRecurrer]; ok {
rec := item.NewRecurrer(val)
if rec == nil {
return nil, fmt.Errorf("%w: could not parse recurrer", ErrInvalidArg)
2024-10-29 07:22:04 +01:00
}
2024-12-27 11:20:32 +01:00
params.Recurrer = rec
2024-10-01 07:36:31 +02:00
}
2024-10-29 07:22:04 +01:00
2024-12-24 08:00:23 +01:00
tsk := item.Task{
2024-12-19 12:06:03 +01:00
ID: uuid.New().String(),
2024-12-27 11:20:32 +01:00
Date: store.params.Date,
Recurrer: store.params.Recurrer,
2024-12-24 08:00:23 +01:00
TaskBody: item.TaskBody{
2024-12-27 11:20:32 +01:00
Title: store.params.Title,
Time: store.params.Time,
Duration: store.params.Duration,
2024-10-01 07:36:31 +02:00
},
}
2024-12-27 11:20:32 +01:00
if tsk.Recurrer != nil {
tsk.RecurNext = tsk.Recurrer.First()
2024-10-07 11:11:18 +02:00
}
2024-12-27 11:20:32 +01:00
return &Store{
deps: deps,
params: params,
}, nil
2024-09-30 07:34:40 +02:00
}