Move to Donetick Org, first commit

This commit is contained in:
Mo Tarbin 2024-06-30 21:41:41 -04:00
commit c13dd9addb
42 changed files with 7463 additions and 0 deletions

57
internal/thing/helper.go Normal file
View file

@ -0,0 +1,57 @@
package thing
import (
"strconv"
tModel "donetick.com/core/internal/thing/model"
)
func isValidThingState(thing *tModel.Thing) bool {
switch thing.Type {
case "number":
_, err := strconv.Atoi(thing.State)
return err == nil
case "text":
return true
case "boolean":
return thing.State == "true" || thing.State == "false"
default:
return false
}
}
func EvaluateThingChore(tchore *tModel.ThingChore, newState string) bool {
if tchore.Condition == "" {
return newState == tchore.TriggerState
}
switch tchore.Condition {
case "eq":
return newState == tchore.TriggerState
case "neq":
return newState != tchore.TriggerState
}
newStateInt, err := strconv.Atoi(newState)
if err != nil {
return false
}
TargetStateInt, err := strconv.Atoi(tchore.TriggerState)
if err != nil {
return false
}
switch tchore.Condition {
case "gt":
return newStateInt > TargetStateInt
case "lt":
return newStateInt < TargetStateInt
case "gte":
return newStateInt >= TargetStateInt
case "lte":
return newStateInt <= TargetStateInt
default:
return newState == tchore.TriggerState
}
}