2020-02-07 17:27:45 +01:00
|
|
|
// Vikunja is a to-do list application to facilitate your life.
|
2020-01-09 18:33:22 +01:00
|
|
|
// Copyright 2018-2020 Vikunja and contributors. All rights reserved.
|
2018-12-12 23:50:35 +01:00
|
|
|
//
|
2019-12-04 20:39:56 +01:00
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
2018-12-12 23:50:35 +01:00
|
|
|
//
|
2019-12-04 20:39:56 +01:00
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
2018-12-12 23:50:35 +01:00
|
|
|
//
|
2019-12-04 20:39:56 +01:00
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2018-12-12 23:50:35 +01:00
|
|
|
|
|
|
|
package red
|
|
|
|
|
|
|
|
import (
|
2019-07-06 22:12:26 +02:00
|
|
|
"code.vikunja.io/api/pkg/config"
|
2018-12-12 23:50:35 +01:00
|
|
|
"code.vikunja.io/api/pkg/log"
|
2020-04-12 19:29:24 +02:00
|
|
|
"github.com/go-redis/redis/v7"
|
2018-12-12 23:50:35 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
var r *redis.Client
|
|
|
|
|
2019-05-12 16:49:16 +02:00
|
|
|
// InitRedis initializes a redis connection
|
|
|
|
func InitRedis() {
|
2019-07-06 22:12:26 +02:00
|
|
|
if !config.RedisEnabled.GetBool() {
|
2018-12-12 23:50:35 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-07-06 22:12:26 +02:00
|
|
|
if config.RedisHost.GetString() == "" {
|
2019-07-20 20:12:10 +02:00
|
|
|
log.Fatal("No redis host provided.")
|
2018-12-12 23:50:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
r = redis.NewClient(&redis.Options{
|
2019-07-06 22:12:26 +02:00
|
|
|
Addr: config.RedisHost.GetString(),
|
|
|
|
Password: config.RedisPassword.GetString(),
|
|
|
|
DB: config.RedisDB.GetInt(),
|
2018-12-12 23:50:35 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
err := r.Ping().Err()
|
|
|
|
if err != nil {
|
2019-07-20 20:12:10 +02:00
|
|
|
log.Fatal(err.Error())
|
2018-12-12 23:50:35 +01:00
|
|
|
}
|
2019-07-20 20:12:10 +02:00
|
|
|
log.Debug("Redis initialized")
|
2018-12-12 23:50:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetRedis returns a pointer to a redis client
|
|
|
|
func GetRedis() *redis.Client {
|
|
|
|
return r
|
|
|
|
}
|