717b47ca2c
Signed-off-by: Tiger Wang <tigerwang@outlook.com>
54 lines
1.4 KiB
Go
54 lines
1.4 KiB
Go
/*
|
|
* @Author: LinkLeong link@icewhale.com
|
|
* @Date: 2022-05-13 18:15:46
|
|
* @LastEditors: LinkLeong
|
|
* @LastEditTime: 2022-08-31 13:39:24
|
|
* @FilePath: /CasaOS/pkg/sqlite/db.go
|
|
* @Description:
|
|
* @Website: https://www.casaos.io
|
|
* Copyright (c) 2022 by icewhale, All Rights Reserved.
|
|
*/
|
|
package sqlite
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/IceWhaleTech/CasaOS/pkg/utils/file"
|
|
model2 "github.com/IceWhaleTech/CasaOS/service/model"
|
|
"github.com/glebarez/sqlite"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
var gdb *gorm.DB
|
|
|
|
func GetDb(dbPath string) *gorm.DB {
|
|
if gdb != nil {
|
|
return gdb
|
|
}
|
|
// Refer https://github.com/go-sql-driver/mysql#dsn-data-source-name
|
|
// dsn := fmt.Sprintf("%v:%v@tcp(%v:%v)/%v?charset=utf8mb4&parseTime=True&loc=Local", m.User, m.PWD, m.IP, m.Port, m.DBName)
|
|
// db, err := gorm.Open(mysql2.Open(dsn), &gorm.Config{})
|
|
file.IsNotExistMkDir(dbPath)
|
|
db, err := gorm.Open(sqlite.Open(dbPath+"/casaOS.db"), &gorm.Config{})
|
|
if err != nil {
|
|
panic("sqlite connect error")
|
|
}
|
|
|
|
c, _ := db.DB()
|
|
c.SetMaxIdleConns(10)
|
|
c.SetMaxOpenConns(1)
|
|
c.SetConnMaxIdleTime(time.Second * 1000)
|
|
gdb = db
|
|
|
|
err = db.AutoMigrate(&model2.AppNotify{}, model2.SharesDBModel{}, model2.ConnectionsDBModel{}, model2.PeerDriveDBModel{})
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
}
|
|
|
|
db.Exec("DROP TABLE IF EXISTS o_application")
|
|
db.Exec("DROP TABLE IF EXISTS o_friend")
|
|
db.Exec("DROP TABLE IF EXISTS o_person_download")
|
|
db.Exec("DROP TABLE IF EXISTS o_person_down_record")
|
|
return db
|
|
}
|