fix(caldav): properly parse durations when returning VTODOs
Resolves https://github.com/go-vikunja/frontend/issues/55
This commit is contained in:
parent
f5a4c136fb
commit
2b074c60a7
1 changed files with 12 additions and 4 deletions
|
@ -17,7 +17,6 @@
|
||||||
package caldav
|
package caldav
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
|
||||||
"regexp"
|
"regexp"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
@ -150,6 +149,15 @@ END:VCALENDAR` // Need a line break
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func formatDuration(duration time.Duration) string {
|
||||||
|
seconds := duration.Seconds() - duration.Minutes()*60
|
||||||
|
minutes := duration.Minutes() - duration.Hours()*60
|
||||||
|
|
||||||
|
return strconv.FormatFloat(duration.Hours(), 'f', 0, 64) + `H` +
|
||||||
|
strconv.FormatFloat(minutes, 'f', 0, 64) + `M` +
|
||||||
|
strconv.FormatFloat(seconds, 'f', 0, 64) + `S`
|
||||||
|
}
|
||||||
|
|
||||||
// ParseTodos returns a caldav vcalendar string with todos
|
// ParseTodos returns a caldav vcalendar string with todos
|
||||||
func ParseTodos(config *Config, todos []*Todo) (caldavtodos string) {
|
func ParseTodos(config *Config, todos []*Todo) (caldavtodos string) {
|
||||||
caldavtodos = `BEGIN:VCALENDAR
|
caldavtodos = `BEGIN:VCALENDAR
|
||||||
|
@ -172,11 +180,11 @@ SUMMARY:` + t.Summary + getCaldavColor(t.Color)
|
||||||
|
|
||||||
if t.Start.Unix() > 0 {
|
if t.Start.Unix() > 0 {
|
||||||
caldavtodos += `
|
caldavtodos += `
|
||||||
DTSTART: ` + makeCalDavTimeFromTimeStamp(t.Start)
|
DTSTART:` + makeCalDavTimeFromTimeStamp(t.Start)
|
||||||
}
|
}
|
||||||
if t.End.Unix() > 0 {
|
if t.End.Unix() > 0 {
|
||||||
caldavtodos += `
|
caldavtodos += `
|
||||||
DTEND: ` + makeCalDavTimeFromTimeStamp(t.End)
|
DTEND:` + makeCalDavTimeFromTimeStamp(t.End)
|
||||||
}
|
}
|
||||||
if t.Description != "" {
|
if t.Description != "" {
|
||||||
re := regexp.MustCompile(`\r?\n`)
|
re := regexp.MustCompile(`\r?\n`)
|
||||||
|
@ -211,7 +219,7 @@ CREATED:` + makeCalDavTimeFromTimeStamp(t.Created)
|
||||||
|
|
||||||
if t.Duration != 0 {
|
if t.Duration != 0 {
|
||||||
caldavtodos += `
|
caldavtodos += `
|
||||||
DURATION:PT` + fmt.Sprintf("%.6f", t.Duration.Hours()) + `H` + fmt.Sprintf("%.6f", t.Duration.Minutes()) + `M` + fmt.Sprintf("%.6f", t.Duration.Seconds()) + `S`
|
DURATION:PT` + formatDuration(t.Duration)
|
||||||
}
|
}
|
||||||
|
|
||||||
if t.Priority != 0 {
|
if t.Priority != 0 {
|
||||||
|
|
Loading…
Reference in a new issue