mirror of
https://github.com/usememos/memos.git
synced 2024-12-20 09:41:58 +03:00
71 lines
1.3 KiB
Go
71 lines
1.3 KiB
Go
package store
|
|
|
|
import (
|
|
"database/sql"
|
|
"errors"
|
|
"io/ioutil"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
_ "github.com/mattn/go-sqlite3"
|
|
)
|
|
|
|
/*
|
|
* Use a global variable to save the db connection: Quick and easy to setup.
|
|
* Reference: https://techinscribed.com/different-approaches-to-pass-database-connection-into-controllers-in-golang/
|
|
*/
|
|
var DB *sql.DB
|
|
|
|
func InitDBConn() {
|
|
// mounting point in docker is "/usr/local/memos/data"
|
|
dbFilePath := "./data/memos.db"
|
|
|
|
if _, err := os.Stat(dbFilePath); err != nil {
|
|
dbFilePath = "./resources/memos.db"
|
|
println("use the default database")
|
|
} else {
|
|
println("use the custom database")
|
|
}
|
|
|
|
db, err := sql.Open("sqlite3", dbFilePath)
|
|
|
|
if err != nil {
|
|
panic("db connect failed")
|
|
} else {
|
|
DB = db
|
|
println("connect to sqlite succeed")
|
|
}
|
|
|
|
if dbFilePath == "./resources/memos.db" {
|
|
resetDataInDefaultDatabase()
|
|
}
|
|
}
|
|
|
|
func FormatDBError(err error) error {
|
|
if err == nil {
|
|
return nil
|
|
}
|
|
|
|
switch err {
|
|
case sql.ErrNoRows:
|
|
return errors.New("data not found")
|
|
default:
|
|
return err
|
|
}
|
|
}
|
|
|
|
func resetDataInDefaultDatabase() {
|
|
initialSQLFilePath := filepath.Join("resources", "initial_db.sql")
|
|
c, err := ioutil.ReadFile(initialSQLFilePath)
|
|
|
|
if err != nil {
|
|
// do nth
|
|
return
|
|
}
|
|
|
|
sql := string(c)
|
|
DB.Exec(sql)
|
|
|
|
println("Initial data succeed")
|
|
}
|