mirror of
https://gitea.com/gitea/tea.git
synced 2025-09-02 18:08:30 +02:00
Return RFC3339 UTC timestamps for machine-readable output (#470)
### ⚠️ breaking changes ⚠️ - unset timestamps will not be printed as `"0001-01-01 00:00"`, but as empty value `""` - output formats `csv`, `tsv`, `yaml` output timestamps in UTC instead of local time, and adhere to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) Co-authored-by: Norwin <git@nroo.de> Co-authored-by: 6543 <6543@obermui.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/470 Reviewed-by: 6543 <6543@obermui.de> Reviewed-by: John Olheiser <john.olheiser@gmail.com> Co-authored-by: Norwin <noerw@noreply.gitea.io> Co-committed-by: Norwin <noerw@noreply.gitea.io>
This commit is contained in:
@ -36,8 +36,18 @@ func formatSize(kb int64) string {
|
||||
return fmt.Sprintf("%d Tb", gb/1024)
|
||||
}
|
||||
|
||||
// FormatTime give a date-time in local timezone if available
|
||||
func FormatTime(t time.Time) string {
|
||||
// FormatTime provides a string for the given time value.
|
||||
// If machineReadable is set, a UTC RFC3339 string is returned,
|
||||
// otherwise a simplified string in local time is used.
|
||||
func FormatTime(t time.Time, machineReadable bool) string {
|
||||
if t.IsZero() {
|
||||
return ""
|
||||
}
|
||||
|
||||
if machineReadable {
|
||||
return t.UTC().Format(time.RFC3339)
|
||||
}
|
||||
|
||||
location, err := time.LoadLocation("Local")
|
||||
if err != nil {
|
||||
return t.Format("2006-01-02 15:04 UTC")
|
||||
|
Reference in New Issue
Block a user