1
0
Fork 0
miniflux/storage/timezone.go

34 lines
950 B
Go
Raw Normal View History

2017-11-20 00:10:04 -05: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 00:51:50 -04:00
package storage // import "miniflux.app/storage"
2017-11-20 00:10:04 -05:00
import (
"fmt"
2018-03-04 20:38:08 -05:00
"strings"
2017-11-20 00:10:04 -05:00
)
2017-11-28 00:30:04 -05:00
// Timezones returns all timezones supported by the database.
func (s *Storage) Timezones() (map[string]string, error) {
2017-11-20 00:10:04 -05:00
timezones := make(map[string]string)
2018-03-04 20:38:08 -05:00
rows, err := s.db.Query(`SELECT name FROM pg_timezone_names() ORDER BY name ASC`)
2017-11-20 00:10:04 -05:00
if err != nil {
2019-10-30 01:48:07 -04:00
return nil, fmt.Errorf(`store: unable to fetch timezones: %v`, err)
2017-11-20 00:10:04 -05:00
}
defer rows.Close()
for rows.Next() {
var timezone string
if err := rows.Scan(&timezone); err != nil {
2019-10-30 01:48:07 -04:00
return nil, fmt.Errorf(`store: unable to fetch timezones row: %v`, err)
2017-11-20 00:10:04 -05:00
}
2018-03-04 20:38:08 -05:00
if !strings.HasPrefix(timezone, "posix") && !strings.HasPrefix(timezone, "SystemV") && timezone != "localtime" {
timezones[timezone] = timezone
}
2017-11-20 00:10:04 -05:00
}
return timezones, nil
}