-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathsqlite.go
75 lines (65 loc) · 1.19 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
71
72
73
74
75
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"
if _, err := os.Stat(dbDir); os.IsNotExist(err) {
os.Mkdir(dbDir, os.ModePerm)
}
ctx, err := sql.Open("sqlite3", dbDir+"/store.db")
if err != nil {
log.Fatalln(err)
}
_, err = ctx.Exec(`
CREATE TABLE IF NOT EXISTS entries (
id TEXT PRIMARY KEY,
creation_time TEXT,
contents TEXT
)`)
if err != nil {
log.Fatalln(err)
}
return &db{
ctx: ctx,
}
}
func (d db) GetEntry(id string) (string, error) {
stmt, err := d.ctx.Prepare("SELECT contents FROM entries WHERE id=?")
if err != nil {
return "", err
}
defer stmt.Close()
var contents string
err = stmt.QueryRow(id).Scan(&contents)
if err != nil {
return "", err
}
return contents, nil
}
func (d db) InsertEntry(id string, contents string) error {
stmt, err := d.ctx.Prepare(`
INSERT INTO entries(
id,
creation_time,
contents)
values(?,?,?)`)
if err != nil {
return err
}
defer stmt.Close()
t := time.Now().Format(time.RFC3339)
_, err = stmt.Exec(id, t, contents)
if err != nil {
return err
}
return nil
}