2019-03-29 18:54:35 +01:00
|
|
|
// Vikunja is a todo-list application to facilitate your life.
|
|
|
|
// Copyright 2019 Vikunja and contributors. All rights reserved.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
package db
|
|
|
|
|
|
|
|
import (
|
|
|
|
"code.vikunja.io/api/pkg/config"
|
|
|
|
"code.vikunja.io/api/pkg/log"
|
|
|
|
"fmt"
|
|
|
|
"github.com/go-xorm/core"
|
|
|
|
"github.com/go-xorm/xorm"
|
2019-05-25 07:49:52 +02:00
|
|
|
"strconv"
|
|
|
|
"time"
|
2019-03-29 18:54:35 +01:00
|
|
|
|
|
|
|
_ "github.com/go-sql-driver/mysql" // Because.
|
|
|
|
_ "github.com/mattn/go-sqlite3" // Because.
|
|
|
|
)
|
|
|
|
|
|
|
|
// CreateDBEngine initializes a db engine from the config
|
|
|
|
func CreateDBEngine() (engine *xorm.Engine, err error) {
|
|
|
|
// If the database type is not set, this likely means we need to initialize the config first
|
2019-07-06 22:12:26 +02:00
|
|
|
if config.DatabaseType.GetString() == "" {
|
2019-03-29 18:54:35 +01:00
|
|
|
config.InitConfig()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Use Mysql if set
|
2019-07-06 22:12:26 +02:00
|
|
|
if config.DatabaseType.GetString() == "mysql" {
|
2019-03-29 18:54:35 +01:00
|
|
|
engine, err = initMysqlEngine()
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Otherwise use sqlite
|
|
|
|
engine, err = initSqliteEngine()
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
engine.SetMapper(core.GonicMapper{})
|
2019-07-06 22:12:26 +02:00
|
|
|
engine.ShowSQL(config.LogDatabase.GetString() != "off")
|
2019-03-29 18:54:35 +01:00
|
|
|
engine.SetLogger(xorm.NewSimpleLogger(log.GetLogWriter("database")))
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func initMysqlEngine() (engine *xorm.Engine, err error) {
|
|
|
|
connStr := fmt.Sprintf(
|
|
|
|
"%s:%s@tcp(%s)/%s?charset=utf8&parseTime=true",
|
2019-07-06 22:12:26 +02:00
|
|
|
config.DatabaseUser.GetString(),
|
|
|
|
config.DatabasePassword.GetString(),
|
|
|
|
config.DatabaseHost.GetString(),
|
|
|
|
config.DatabaseDatabase.GetString())
|
2019-03-29 18:54:35 +01:00
|
|
|
engine, err = xorm.NewEngine("mysql", connStr)
|
2019-05-25 07:49:52 +02:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2019-07-06 22:12:26 +02:00
|
|
|
engine.SetMaxOpenConns(config.DatabaseMaxOpenConnections.GetInt())
|
|
|
|
engine.SetMaxIdleConns(config.DatabaseMaxIdleConnections.GetInt())
|
|
|
|
max, err := time.ParseDuration(strconv.Itoa(config.DatabaseMaxConnectionLifetime.GetInt()) + `ms`)
|
2019-05-25 07:49:52 +02:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
engine.SetConnMaxLifetime(max)
|
2019-03-29 18:54:35 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func initSqliteEngine() (engine *xorm.Engine, err error) {
|
2019-07-06 22:12:26 +02:00
|
|
|
path := config.DatabasePath.GetString()
|
2019-03-29 18:54:35 +01:00
|
|
|
if path == "" {
|
|
|
|
path = "./db.db"
|
|
|
|
}
|
|
|
|
|
|
|
|
return xorm.NewEngine("sqlite3", path)
|
|
|
|
}
|