2018-11-26 21:17:33 +01:00
|
|
|
// Vikunja is a todo-list application to facilitate your life.
|
|
|
|
// Copyright 2018 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/>.
|
|
|
|
|
2018-06-10 11:11:41 +02:00
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
2019-07-06 22:12:26 +02:00
|
|
|
"code.vikunja.io/api/pkg/config"
|
2019-03-29 18:54:35 +01:00
|
|
|
"code.vikunja.io/api/pkg/db"
|
2019-01-25 12:40:54 +01:00
|
|
|
"code.vikunja.io/api/pkg/log"
|
2018-12-12 23:50:35 +01:00
|
|
|
"encoding/gob"
|
2018-06-10 11:11:41 +02:00
|
|
|
_ "github.com/go-sql-driver/mysql" // Because.
|
|
|
|
"github.com/go-xorm/xorm"
|
2018-09-13 19:53:03 +02:00
|
|
|
xrc "github.com/go-xorm/xorm-redis-cache"
|
2018-09-13 22:14:53 +02:00
|
|
|
_ "github.com/mattn/go-sqlite3" // Because.
|
2018-06-10 11:11:41 +02:00
|
|
|
)
|
|
|
|
|
2018-06-10 14:14:10 +02:00
|
|
|
var (
|
|
|
|
x *xorm.Engine
|
|
|
|
)
|
2018-06-10 11:11:41 +02:00
|
|
|
|
2019-03-29 18:54:35 +01:00
|
|
|
// GetTables returns all structs which are also a table.
|
|
|
|
func GetTables() []interface{} {
|
|
|
|
return []interface{}{
|
2018-12-14 17:45:31 +01:00
|
|
|
&User{},
|
|
|
|
&List{},
|
|
|
|
&ListTask{},
|
|
|
|
&Team{},
|
|
|
|
&TeamMember{},
|
|
|
|
&TeamList{},
|
|
|
|
&TeamNamespace{},
|
|
|
|
&Namespace{},
|
|
|
|
&ListUser{},
|
|
|
|
&NamespaceUser{},
|
2018-12-29 15:29:50 +01:00
|
|
|
&ListTaskAssginee{},
|
2018-12-31 02:18:41 +01:00
|
|
|
&Label{},
|
|
|
|
&LabelTask{},
|
2019-05-25 09:33:57 +02:00
|
|
|
&TaskReminder{},
|
2019-03-29 18:54:35 +01:00
|
|
|
}
|
2018-06-10 14:14:10 +02:00
|
|
|
}
|
|
|
|
|
2018-06-10 11:11:41 +02:00
|
|
|
// SetEngine sets the xorm.Engine
|
|
|
|
func SetEngine() (err error) {
|
2019-03-29 18:54:35 +01:00
|
|
|
x, err = db.CreateDBEngine()
|
2018-06-10 11:11:41 +02:00
|
|
|
if err != nil {
|
2019-07-20 20:12:10 +02:00
|
|
|
log.Criticalf("Could not connect to db: %v", err.Error())
|
2019-03-29 18:54:35 +01:00
|
|
|
return
|
2018-06-10 11:11:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Cache
|
2019-03-29 18:54:35 +01:00
|
|
|
// We have to initialize the cache here to avoid import cycles
|
2019-07-06 22:12:26 +02:00
|
|
|
if config.CacheEnabled.GetBool() {
|
|
|
|
switch config.CacheType.GetString() {
|
2018-09-13 19:53:03 +02:00
|
|
|
case "memory":
|
2019-07-06 22:12:26 +02:00
|
|
|
cacher := xorm.NewLRUCacher(xorm.NewMemoryStore(), config.CacheMaxElementSize.GetInt())
|
2018-09-13 19:53:03 +02:00
|
|
|
x.SetDefaultCacher(cacher)
|
|
|
|
case "redis":
|
2019-07-06 22:12:26 +02:00
|
|
|
cacher := xrc.NewRedisCacher(config.RedisEnabled.GetString(), config.RedisPassword.GetString(), xrc.DEFAULT_EXPIRATION, x.Logger())
|
2018-09-13 19:53:03 +02:00
|
|
|
x.SetDefaultCacher(cacher)
|
2019-03-29 18:54:35 +01:00
|
|
|
gob.Register(GetTables())
|
2018-09-13 19:53:03 +02:00
|
|
|
default:
|
2019-07-20 20:12:10 +02:00
|
|
|
log.Info("Did not find a valid cache type. Caching disabled. Please refer to the docs for poosible cache types.")
|
2018-09-13 19:53:03 +02:00
|
|
|
}
|
|
|
|
}
|
2018-06-10 11:11:41 +02:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2018-11-09 11:30:17 +01:00
|
|
|
|
|
|
|
func getLimitFromPageIndex(page int) (limit, start int) {
|
|
|
|
|
|
|
|
// Get everything when page index is -1
|
|
|
|
if page < 0 {
|
|
|
|
return 0, 0
|
|
|
|
}
|
|
|
|
|
2019-07-06 22:12:26 +02:00
|
|
|
limit = config.ServicePageCount.GetInt()
|
2018-11-09 11:30:17 +01:00
|
|
|
start = limit * (page - 1)
|
|
|
|
return
|
|
|
|
}
|
2018-12-12 23:50:35 +01:00
|
|
|
|
|
|
|
// GetTotalCount returns the total amount of something
|
|
|
|
func GetTotalCount(counting interface{}) (count int64, err error) {
|
|
|
|
return x.Count(counting)
|
|
|
|
}
|