mirror of
https://github.com/go-shiori/shiori.git
synced 2024-11-16 14:16:29 +08:00
45 lines
831 B
Go
45 lines
831 B
Go
//go:generate fileb0x filebox.json
|
|
package main
|
|
|
|
import (
|
|
"os"
|
|
"os/user"
|
|
fp "path/filepath"
|
|
|
|
"github.com/RadhiFadlillah/shiori/cmd"
|
|
db "github.com/RadhiFadlillah/shiori/database"
|
|
_ "github.com/mattn/go-sqlite3"
|
|
)
|
|
|
|
func main() {
|
|
databasePath := fp.Join(getHomeDir(), ".shiori.db")
|
|
if value, found := os.LookupEnv("ENV_SHIORI_DB"); found {
|
|
// If ENV_SHIORI_DB is directory, append ".shiori.db" as filename
|
|
if f1, err := os.Stat(value); err == nil && f1.IsDir() {
|
|
value = fp.Join(value, ".shiori.db")
|
|
}
|
|
|
|
databasePath = value
|
|
}
|
|
|
|
sqliteDB, err := db.OpenSQLiteDatabase(databasePath)
|
|
checkError(err)
|
|
|
|
cmd.DB = sqliteDB
|
|
cmd.Execute()
|
|
}
|
|
|
|
func getHomeDir() string {
|
|
user, err := user.Current()
|
|
if err != nil {
|
|
return ""
|
|
}
|
|
|
|
return user.HomeDir
|
|
}
|
|
|
|
func checkError(err error) {
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|