2024-09-30 07:34:40 +02:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"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-04 09:49:41 +01:00
|
|
|
type AddCmd struct {
|
|
|
|
localIDRepo storage.LocalID
|
|
|
|
eventRepo storage.Event
|
|
|
|
syncRepo storage.Sync
|
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-10-01 07:36:31 +02:00
|
|
|
}
|
2024-11-04 09:49:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (add *AddCmd) Do(args []string) (bool, error) {
|
2024-11-05 07:21:43 +01:00
|
|
|
if len(args) == 0 || args[0] != "add" {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
title, flags, err := ParseArgs(args[1:])
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
2024-09-30 07:34:40 +02:00
|
|
|
|
2024-10-01 07:36:31 +02:00
|
|
|
if nameStr == "" {
|
|
|
|
return fmt.Errorf("%w: name is required", ErrInvalidArg)
|
|
|
|
}
|
|
|
|
if onStr == "" {
|
|
|
|
return fmt.Errorf("%w: date is required", ErrInvalidArg)
|
|
|
|
}
|
|
|
|
if atStr == "" && frStr != "" {
|
|
|
|
return fmt.Errorf("%w: can not have duration without start time", ErrInvalidArg)
|
|
|
|
}
|
|
|
|
if atStr == "" && frStr == "" {
|
|
|
|
frStr = "24h"
|
|
|
|
}
|
2024-11-05 07:21:43 +01:00
|
|
|
if err := add.Action(title, flags); err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (add *AddCmd) Action(nameStr, onStr, atStr, frStr string) error {
|
2024-09-30 07:34:40 +02:00
|
|
|
|
2024-10-01 07:36:31 +02:00
|
|
|
startFormat := "2006-01-02"
|
|
|
|
startStr := onStr
|
|
|
|
if atStr != "" {
|
|
|
|
startFormat = fmt.Sprintf("%s 15:04", startFormat)
|
|
|
|
startStr = fmt.Sprintf("%s %s", startStr, atStr)
|
|
|
|
}
|
|
|
|
start, err := time.Parse(startFormat, startStr)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("%w: could not parse start time and date: %v", ErrInvalidArg, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
e := item.Event{
|
|
|
|
ID: uuid.New().String(),
|
|
|
|
EventBody: item.EventBody{
|
|
|
|
Title: nameStr,
|
|
|
|
Start: start,
|
|
|
|
},
|
|
|
|
}
|
2024-09-30 07:34:40 +02:00
|
|
|
|
2024-10-01 07:36:31 +02:00
|
|
|
if frStr != "" {
|
|
|
|
fr, err := time.ParseDuration(frStr)
|
|
|
|
if err != nil {
|
2024-10-06 11:28:05 +02:00
|
|
|
return fmt.Errorf("%w: could not parse duration: %s", ErrInvalidArg, err)
|
2024-10-01 07:36:31 +02:00
|
|
|
}
|
|
|
|
e.Duration = fr
|
2024-09-30 07:34:40 +02:00
|
|
|
}
|
2024-10-03 07:32:48 +02:00
|
|
|
if err := eventRepo.Store(e); err != nil {
|
2024-10-01 07:36:31 +02:00
|
|
|
return fmt.Errorf("could not store event: %v", err)
|
|
|
|
}
|
|
|
|
|
2024-10-03 07:32:48 +02:00
|
|
|
localID, err := localIDRepo.Next()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("could not create next local id: %v", err)
|
|
|
|
}
|
|
|
|
if err := localIDRepo.Store(e.ID, localID); err != nil {
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
if err := syncRepo.Store(it); err != nil {
|
|
|
|
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
|
|
|
}
|