miniflux-v2/storage/timezone.go

34 lines
950 B
Go
Raw Normal View History

2017-11-20 06:10:04 +01:00
// Copyright 2017 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
2018-08-25 06:51:50 +02:00
package storage // import "miniflux.app/storage"
2017-11-20 06:10:04 +01:00
import (
"fmt"
2018-03-05 02:38:08 +01:00
"strings"
2017-11-20 06:10:04 +01:00
)
2017-11-28 06:30:04 +01:00
// Timezones returns all timezones supported by the database.
func (s *Storage) Timezones() (map[string]string, error) {
2017-11-20 06:10:04 +01:00
timezones := make(map[string]string)
2018-03-05 02:38:08 +01:00
rows, err := s.db.Query(`SELECT name FROM pg_timezone_names() ORDER BY name ASC`)
2017-11-20 06:10:04 +01:00
if err != nil {
2019-10-30 06:48:07 +01:00
return nil, fmt.Errorf(`store: unable to fetch timezones: %v`, err)
2017-11-20 06:10:04 +01:00
}
defer rows.Close()
for rows.Next() {
var timezone string
if err := rows.Scan(&timezone); err != nil {
2019-10-30 06:48:07 +01:00
return nil, fmt.Errorf(`store: unable to fetch timezones row: %v`, err)
2017-11-20 06:10:04 +01:00
}
2018-03-05 02:38:08 +01:00
if !strings.HasPrefix(timezone, "posix") && !strings.HasPrefix(timezone, "SystemV") && timezone != "localtime" {
timezones[timezone] = timezone
}
2017-11-20 06:10:04 +01:00
}
return timezones, nil
}