1
0
Fork 0
miniflux/storage/timezone.go

38 lines
1,012 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.
package storage
import (
"fmt"
2018-03-04 20:38:08 -05:00
"strings"
2017-11-20 00:10:04 -05:00
"time"
2017-11-28 00:30:04 -05:00
2018-01-02 22:15:08 -05:00
"github.com/miniflux/miniflux/timer"
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) {
2018-01-02 22:15:08 -05:00
defer timer.ExecutionTime(time.Now(), "[Storage:Timezones]")
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 {
return nil, fmt.Errorf("unable to fetch timezones: %v", err)
}
defer rows.Close()
for rows.Next() {
var timezone string
if err := rows.Scan(&timezone); err != nil {
return nil, fmt.Errorf("unable to fetch timezones row: %v", err)
}
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
}