mirror of
https://github.com/FloatTech/ZeroBot-Plugin.git
synced 2025-12-19 22:00:11 +08:00
36 lines
732 B
Go
36 lines
732 B
Go
package plugin_book_review
|
|
|
|
import (
|
|
"os"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
"github.com/FloatTech/ZeroBot-Plugin/utils/file"
|
|
"github.com/FloatTech/ZeroBot-Plugin/utils/process"
|
|
"github.com/FloatTech/ZeroBot-Plugin/utils/sql"
|
|
)
|
|
|
|
const dbpath = "data/BookReview/"
|
|
const dbfile = dbpath + "bookreview.db"
|
|
|
|
var db = &sql.Sqlite{DBPath: dbfile}
|
|
|
|
// 加载数据库
|
|
func init() {
|
|
go func() {
|
|
process.SleepAbout1sTo2s()
|
|
// os.RemoveAll(dbpath)
|
|
_ = os.MkdirAll(dbpath, 0755)
|
|
_, _ = file.GetLazyData(dbfile, false, true)
|
|
err := db.Create("bookreview", &book{})
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
n, err := db.Count("bookreview")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
log.Printf("[bookreview]读取%d条书评", n)
|
|
}()
|
|
}
|