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
|
|
|
"time"
|
2017-11-28 06:30:04 +01:00
|
|
|
|
2018-08-25 06:51:50 +02:00
|
|
|
"miniflux.app/timer"
|
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) {
|
2018-01-03 04:15:08 +01:00
|
|
|
defer timer.ExecutionTime(time.Now(), "[Storage:Timezones]")
|
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 {
|
|
|
|
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-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
|
|
|
|
}
|