2020-09-06 13:15:46 +03:00
|
|
|
package v1
|
|
|
|
|
2020-09-12 00:24:51 +03:00
|
|
|
import (
|
|
|
|
"github.com/muety/wakapi/models"
|
|
|
|
"github.com/muety/wakapi/utils"
|
|
|
|
)
|
|
|
|
|
2020-09-06 13:15:46 +03:00
|
|
|
// https://wakatime.com/developers#all_time_since_today
|
|
|
|
|
2020-09-12 17:09:23 +03:00
|
|
|
type AllTimeViewModel struct {
|
2021-02-05 20:47:28 +03:00
|
|
|
Data *AllTimeData `json:"data"`
|
2020-09-12 00:24:51 +03:00
|
|
|
}
|
|
|
|
|
2021-02-05 20:47:28 +03:00
|
|
|
type AllTimeData struct {
|
2021-02-11 00:08:00 +03:00
|
|
|
TotalSeconds float32 `json:"total_seconds"` // total number of seconds logged since account created
|
|
|
|
Text string `json:"text"` // total time logged since account created as human readable string>
|
|
|
|
IsUpToDate bool `json:"is_up_to_date"` // true if the stats are up to date; when false, a 202 response code is returned and stats will be refreshed soon>
|
|
|
|
Range *AllTimeRange `json:"range"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type AllTimeRange struct {
|
|
|
|
End string `json:"end"`
|
|
|
|
EndDate string `json:"end_date"`
|
|
|
|
Start string `json:"start"`
|
|
|
|
StartDate string `json:"start_date"`
|
|
|
|
Timezone string `json:"timezone"`
|
2020-09-06 18:20:37 +03:00
|
|
|
}
|
|
|
|
|
2021-12-26 19:02:14 +03:00
|
|
|
func NewAllTimeFrom(summary *models.Summary) *AllTimeViewModel {
|
|
|
|
total := summary.TotalTime()
|
2020-09-12 17:09:23 +03:00
|
|
|
return &AllTimeViewModel{
|
2021-02-05 20:47:28 +03:00
|
|
|
Data: &AllTimeData{
|
2020-09-12 00:24:51 +03:00
|
|
|
TotalSeconds: float32(total.Seconds()),
|
|
|
|
Text: utils.FmtWakatimeDuration(total),
|
|
|
|
IsUpToDate: true,
|
|
|
|
},
|
|
|
|
}
|
2020-09-06 13:15:46 +03:00
|
|
|
}
|