-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathsqlite.go
70 lines (59 loc) · 1.3 KB
/
sqlite.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package sqlite
import (
"database/sql"
"log"
"os"
"time"
_ "github.com/mattn/go-sqlite3"
"github.com/mtlynch/logpaste/store"
)
type db struct {
ctx *sql.DB
}
func New() store.Store {
dbDir := "data"
ensureDirExists(dbDir)
ctx, err := sql.Open("sqlite3", dbDir+"/store.db")
if err != nil {
log.Fatalln(err)
}
if _, err := ctx.Exec(`
-- Apply Litestream recommendations: https://litestream.io/tips/
PRAGMA busy_timeout = 5000;
PRAGMA synchronous = NORMAL;
PRAGMA journal_mode = WAL;
PRAGMA wal_autocheckpoint = 0;
`); err != nil {
log.Fatalf("failed to set pragmas: %v", err)
}
applyMigrations(ctx)
return &db{
ctx: ctx,
}
}
func (d db) GetEntry(id string) (string, error) {
var contents string
if err := d.ctx.QueryRow("SELECT contents FROM entries WHERE id=?", id).Scan(&contents); err != nil {
if err == sql.ErrNoRows {
return "", store.EntryNotFoundError{ID: id}
}
return "", err
}
return contents, nil
}
func (d db) InsertEntry(id string, contents string) error {
_, err := d.ctx.Exec(`
INSERT INTO entries(
id,
creation_time,
contents)
values(?,?,?)`, id, time.Now().Format(time.RFC3339), contents)
return err
}
func ensureDirExists(dir string) {
if _, err := os.Stat(dir); os.IsNotExist(err) {
if err := os.Mkdir(dir, os.ModePerm); err != nil {
panic(err)
}
}
}