-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathindex.go
145 lines (124 loc) · 4.14 KB
/
index.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
// Copyright 2020 Readium Foundation. All rights reserved.
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file exposed on Github (readium) in the project repository.
package index
import (
"database/sql"
"errors"
"log"
"github.com/readium/readium-lcp-server/config"
"github.com/readium/readium-lcp-server/dbutils"
)
// ErrNotFound signals content not found
var ErrNotFound = errors.New("Content not found")
// Index is an interface
type Index interface {
Get(id string) (Content, error)
Add(c Content) error
Update(c Content) error
Delete(id string) error
List() func() (Content, error)
}
// Content represents an encrypted resource
type Content struct {
ID string `json:"id"`
EncryptionKey []byte `json:"key,omitempty"` // warning, sensitive info
Location string `json:"location"`
Length int64 `json:"length"`
Sha256 string `json:"sha256"`
Type string `json:"type"`
}
type dbIndex struct {
db *sql.DB
dbGetByID *sql.Stmt
dbList *sql.Stmt
}
// Get returns a record by id
func (i dbIndex) Get(id string) (Content, error) {
row := i.dbGetByID.QueryRow(id)
var c Content
err := row.Scan(&c.ID, &c.EncryptionKey, &c.Location, &c.Length, &c.Sha256, &c.Type)
if err != nil {
err = ErrNotFound
}
return c, err
}
// Add inserts a record
func (i dbIndex) Add(c Content) error {
driver, _ := config.GetDatabase(config.Config.LcpServer.Database)
if driver == "postgres" {
_, err := i.db.Exec(dbutils.GetParamQuery(config.Config.LcpServer.Database, "INSERT INTO content (id,encryption_key,location,length,sha256,type) VALUES (?, ?::bytea, ?, ?, ?, ?)"),
c.ID, c.EncryptionKey, c.Location, c.Length, c.Sha256, c.Type)
return err
} else {
_, err := i.db.Exec("INSERT INTO content (id,encryption_key,location,length,sha256,type) VALUES (?, ?, ?, ?, ?, ?)",
c.ID, c.EncryptionKey, c.Location, c.Length, c.Sha256, c.Type)
return err
}
}
// Update updates a record
func (i dbIndex) Update(c Content) error {
driver, _ := config.GetDatabase(config.Config.LcpServer.Database)
if driver == "postgres" {
_, err := i.db.Exec(dbutils.GetParamQuery(config.Config.LcpServer.Database, "UPDATE content SET encryption_key=?::bytea , location=?, length=?, sha256=?, type=? WHERE id=?"),
c.EncryptionKey, c.Location, c.Length, c.Sha256, c.Type, c.ID)
return err
} else {
_, err := i.db.Exec("UPDATE content SET encryption_key=? , location=?, length=?, sha256=?, type=? WHERE id=?",
c.EncryptionKey, c.Location, c.Length, c.Sha256, c.Type, c.ID)
return err
}
}
// Delete deletes a record
func (i dbIndex) Delete(id string) error {
_, err := i.db.Exec("DELETE FROM content WHERE id=?", id)
return err
}
// List lists rows
func (i dbIndex) List() func() (Content, error) {
rows, err := i.dbList.Query()
if err != nil {
return func() (Content, error) { return Content{}, err }
}
return func() (Content, error) {
var c Content
var err error
if rows.Next() {
err = rows.Scan(&c.ID, &c.EncryptionKey, &c.Location, &c.Length, &c.Sha256, &c.Type)
} else {
rows.Close()
err = ErrNotFound
}
return c, err
}
}
// Open opens an SQL database and prepare db statements
func Open(db *sql.DB) (i Index, err error) {
driver, _ := config.GetDatabase(config.Config.LcpServer.Database)
// if sqlite, create the content table in the lcp db if it does not exist
if driver == "sqlite3" {
_, err = db.Exec(tableDef)
if err != nil {
log.Println("Error creating sqlite content table")
return
}
}
var dbGetByID *sql.Stmt
dbGetByID, err = db.Prepare(dbutils.GetParamQuery(config.Config.LcpServer.Database, "SELECT id,encryption_key,location,length,sha256,type FROM content WHERE id = ?"))
if err != nil {
return
}
dbList, err := db.Prepare("SELECT id,encryption_key,location,length,sha256,type FROM content")
if err != nil {
return
}
i = dbIndex{db, dbGetByID, dbList}
return
}
const tableDef = "CREATE TABLE IF NOT EXISTS content (" +
"id varchar(255) PRIMARY KEY," +
"encryption_key varchar(64) NOT NULL," +
"location text NOT NULL," +
"length bigint," +
"sha256 varchar(64)," +
"\"type\" varchar(255) NOT NULL default 'application/epub+zip')"