planner/plan/command/add.go

119 lines
2.5 KiB
Go
Raw Normal View History

2024-09-30 07:34:40 +02:00
package command
import (
"fmt"
2024-11-10 15:04:14 +01:00
"strings"
2024-09-30 07:34:40 +02:00
"time"
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"
"go-mod.ewintr.nl/planner/plan/storage"
)
2024-11-06 07:29:29 +01:00
const (
FlagOn = "on"
FlagAt = "at"
FlagFor = "for"
)
2024-11-04 09:49:41 +01:00
type AddCmd struct {
localIDRepo storage.LocalID
eventRepo storage.Event
syncRepo storage.Sync
2024-11-11 09:23:30 +01:00
argSet *ArgSet
2024-09-30 07:34:40 +02:00
}
2024-11-04 09:49:41 +01:00
func NewAddCmd(localRepo storage.LocalID, eventRepo storage.Event, syncRepo storage.Sync) Command {
return &AddCmd{
localIDRepo: localRepo,
eventRepo: eventRepo,
syncRepo: syncRepo,
2024-11-11 09:23:30 +01:00
argSet: &ArgSet{
Flags: map[string]Flag{
FlagOn: &FlagDate{},
FlagAt: &FlagTime{},
FlagFor: &FlagDuration{},
},
2024-11-10 15:04:14 +01:00
},
2024-10-01 07:36:31 +02:00
}
2024-11-04 09:49:41 +01:00
}
2024-11-11 09:23:30 +01:00
func (add *AddCmd) Parse(main []string, flags map[string]string) error {
2024-11-15 07:25:23 +01:00
if len(main) == 0 || main[0] != "add" {
2024-11-10 15:04:14 +01:00
return ErrWrongCommand
2024-11-05 07:21:43 +01:00
}
2024-11-11 09:23:30 +01:00
as := add.argSet
2024-11-15 07:25:23 +01:00
if len(main) > 1 {
as.Main = strings.Join(main[1:], " ")
}
2024-11-11 09:23:30 +01:00
for k := range as.Flags {
2024-11-18 07:31:49 +01:00
v, ok := flags[k]
if !ok {
continue
}
if err := as.Set(k, v); err != nil {
2024-11-10 15:04:14 +01:00
return fmt.Errorf("could not set %s: %v", k, err)
}
2024-11-05 07:21:43 +01:00
}
2024-11-11 09:23:30 +01:00
if as.Main == "" {
2024-11-10 15:04:14 +01:00
return fmt.Errorf("%w: title is required", ErrInvalidArg)
2024-10-01 07:36:31 +02:00
}
2024-11-11 09:23:30 +01:00
if !as.IsSet(FlagOn) {
2024-11-10 15:04:14 +01:00
return fmt.Errorf("%w: date is required", ErrInvalidArg)
2024-10-01 07:36:31 +02:00
}
2024-11-11 09:23:30 +01:00
if !as.IsSet(FlagAt) && as.IsSet(FlagFor) {
2024-11-10 15:04:14 +01:00
return fmt.Errorf("%w: can not have duration without start time", ErrInvalidArg)
2024-10-01 07:36:31 +02:00
}
2024-11-11 09:23:30 +01:00
if !as.IsSet(FlagAt) && !as.IsSet(FlagFor) {
if err := as.Flags[FlagFor].Set("24h"); err != nil {
2024-11-10 15:04:14 +01:00
return fmt.Errorf("could not set duration to 24 hours")
}
2024-10-01 07:36:31 +02:00
}
2024-11-05 07:21:43 +01:00
2024-11-10 15:04:14 +01:00
return nil
2024-11-05 07:21:43 +01:00
}
2024-11-10 15:04:14 +01:00
func (add *AddCmd) Do() error {
2024-11-11 09:23:30 +01:00
as := add.argSet
start := as.GetTime(FlagOn)
if as.IsSet(FlagAt) {
at := as.GetTime(FlagAt)
h := time.Duration(at.Hour()) * time.Hour
m := time.Duration(at.Minute()) * time.Minute
start = start.Add(h).Add(m)
2024-10-01 07:36:31 +02:00
}
e := item.Event{
ID: uuid.New().String(),
EventBody: item.EventBody{
2024-11-07 07:25:02 +01:00
Title: as.Main,
2024-10-01 07:36:31 +02:00
Start: start,
},
}
2024-09-30 07:34:40 +02:00
2024-11-11 09:23:30 +01:00
if as.IsSet(FlagFor) {
e.Duration = as.GetDuration(FlagFor)
2024-09-30 07:34:40 +02:00
}
2024-11-06 07:29:29 +01:00
if err := add.eventRepo.Store(e); err != nil {
2024-10-01 07:36:31 +02:00
return fmt.Errorf("could not store event: %v", err)
}
2024-11-06 07:29:29 +01:00
localID, err := add.localIDRepo.Next()
2024-10-03 07:32:48 +02:00
if err != nil {
return fmt.Errorf("could not create next local id: %v", err)
}
2024-11-06 07:29:29 +01:00
if err := add.localIDRepo.Store(e.ID, localID); err != nil {
2024-10-03 07:32:48 +02:00
return fmt.Errorf("could not store local id: %v", err)
}
2024-10-07 11:11:18 +02:00
it, err := e.Item()
if err != nil {
return fmt.Errorf("could not convert event to sync item: %v", err)
}
2024-11-06 07:29:29 +01:00
if err := add.syncRepo.Store(it); err != nil {
2024-10-07 11:11:18 +02:00
return fmt.Errorf("could not store sync item: %v", err)
}
2024-10-01 07:36:31 +02:00
return nil
2024-09-30 07:34:40 +02:00
}