You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
podgrab/db/db.go

46 lines
823 B

4 years ago
package db
import (
"fmt"
4 years ago
"log"
4 years ago
"os"
"path"
4 years ago
"gorm.io/driver/sqlite"
"gorm.io/gorm"
)
//DB is
var DB *gorm.DB
//Init is used to Initialize Database
func Init() (*gorm.DB, error) {
// github.com/mattn/go-sqlite3
4 years ago
configPath := os.Getenv("CONFIG")
dbPath := path.Join(configPath, "podgrab.db")
log.Println(dbPath)
4 years ago
db, err := gorm.Open(sqlite.Open(dbPath), &gorm.Config{})
4 years ago
if err != nil {
fmt.Println("db err: ", err)
return nil, err
}
localDB, _ := db.DB()
localDB.SetMaxIdleConns(10)
//db.LogMode(true)
DB = db
return DB, nil
}
//Migrate Database
func Migrate() {
4 years ago
DB.AutoMigrate(&Podcast{}, &PodcastItem{}, &Setting{}, &Migration{}, &JobLock{}, &Tag{})
RunMigrations()
4 years ago
}
// Using this function to get a connection, you can create your connection pool here.
func GetDB() *gorm.DB {
return DB
}