This repository was archived by the owner on Jan 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.go
117 lines (109 loc) · 2.38 KB
/
db.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
package main
import (
"io"
"labix.org/v2/mgo"
"labix.org/v2/mgo/bson"
"os"
"path/filepath"
"time"
)
const PREFIX = "godm"
// File stores the file information from the GridFS file collection.
// The struct definition was copied from the mgo driver (type gfsFile
// in gridfs.go). It's not clear why this type was not exported.
type File struct {
Id interface{} "_id"
ChunkSize int "chunkSize"
UploadDate time.Time "uploadDate"
Length int64 ",minsize"
MD5 string
Filename string ",omitempty"
ContentType string "contentType,omitempty"
Metadata *bson.Raw ",omitempty"
}
type Db struct {
Address string
Database string
}
// Store puts the specified file into the database.
func (d *Db) Store(file string) error {
session, err := mgo.Dial(d.Address)
if err != nil {
return err
}
defer session.Close()
g := session.DB(d.Database).GridFS(PREFIX)
f, err := g.Create(filepath.Base(file))
if err != nil {
return err
}
source, err := os.Open(file)
if err != nil {
return err
}
defer source.Close()
_, err = io.Copy(f, source)
if err != nil {
return err
}
err = f.Close()
if err != nil {
return err
}
return nil
}
// Get retrieves the specified file from the database and saves it in the
// current working directory.
func (d *Db) Get(file string) error {
session, err := mgo.Dial(d.Address)
if err != nil {
return err
}
defer session.Close()
g := session.DB(d.Database).GridFS(PREFIX)
f, err := g.Open(file)
if err != nil {
return err
}
dest, err := os.Create(file)
if err != nil {
return err
}
defer dest.Close()
_, err = io.Copy(dest, f)
if err != nil {
return err
}
err = f.Close()
if err != nil {
return err
}
return nil
}
// Delete removes all files with the specified name from the database.
func (d *Db) Delete(file string) error {
session, err := mgo.Dial(d.Address)
if err != nil {
return err
}
defer session.Close()
g := session.DB(d.Database).GridFS(PREFIX)
err = g.Remove(file)
if err != nil {
return err
}
return nil
}
// List returns a slice containing all file descriptors matching the provided
// BSON query.
func (d *Db) List(query interface{}) ([]File, error) {
session, err := mgo.Dial(d.Address)
if err != nil {
return nil, err
}
defer session.Close()
g := session.DB(d.Database).GridFS(PREFIX)
var result []File
err = g.Find(query).All(&result)
return result, err
}