-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpicture.go
58 lines (50 loc) · 1.17 KB
/
picture.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
package tuvstu
import (
"os"
"path"
"strings"
"github.com/globalsign/mgo/bson"
"github.com/pkg/errors"
"github.com/satori/go.uuid"
)
type Picture struct {
Path string `json:"path" bson:"path"`
Name string `json:"name" bson:"name"`
Text string `json:"Text" bson:"text"`
Content string `json:"content" bson:"content"`
}
func NewPicture(origin, dir string) *Picture {
ext := path.Ext(origin)
id, _ := uuid.NewV4()
_, err := os.Stat(dir)
if err != nil {
os.MkdirAll(dir, os.ModePerm)
}
return &Picture{
Name: id.String() + ext,
Path: dir,
}
}
func (p *Picture) GetLocation() string {
return strings.TrimRight(p.Path, "/") + "/" + p.Name
}
func (p *Picture) Save() error {
session := GetMgo()
if session == nil {
return errors.New("connection failed")
}
_, err := session.DB("tuvstu").C("picture").Upsert(bson.M{"name": p.Name}, p)
return err
}
func FindPicture(name string) (*Picture, error) {
session := GetMgo()
if session == nil {
return nil, errors.New("connection failed")
}
picture := new(Picture)
err := session.DB("tuvstu").C("picture").Find(bson.M{"name": name}).One(picture)
if err != nil {
return nil, err
}
return picture, nil
}