-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
db_publishkey_mgo.go
93 lines (85 loc) · 2.23 KB
/
db_publishkey_mgo.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
package main
import (
"errors"
"gopkg.in/mgo.v2"
"gopkg.in/mgo.v2/bson"
)
// SetPublishKey 함수는 PublishKey를 DB에 저장한다.
func SetPublishKey(session *mgo.Session, key PublishKey) error {
session.SetMode(mgo.Monotonic, true)
c := session.DB(*flagDBName).C("publishkey")
err := c.Update(bson.M{"id": key.ID}, key)
if err != nil {
if err == mgo.ErrNotFound {
err = c.Insert(key)
if err != nil {
return err
}
return nil
}
return err
}
return nil
}
// GetPublishKey 함수는 PublishKey를 DB에서 가지고 온다.
func GetPublishKey(session *mgo.Session, id string) (PublishKey, error) {
session.SetMode(mgo.Monotonic, true)
c := session.DB(*flagDBName).C("publishkey")
key := PublishKey{}
err := c.Find(bson.M{"id": id}).One(&key)
if err != nil {
return key, err
}
return key, nil
}
// HasPublishKey 함수는 PublishKey가 존재하는지 체크하는 함수이다.
func HasPublishKey(session *mgo.Session, id string) bool {
session.SetMode(mgo.Monotonic, true)
c := session.DB(*flagDBName).C("publishkey")
n, err := c.Find(bson.M{"id": id}).Count()
if err != nil {
return false
}
if n == 0 {
return false
}
return true
}
// AddPublishKey 함수는 PublishKey를 DB에 추가한다.
func AddPublishKey(session *mgo.Session, key PublishKey) error {
session.SetMode(mgo.Monotonic, true)
c := session.DB(*flagDBName).C("publishkey")
n, err := c.Find(bson.M{"id": key.ID}).Count()
if err != nil {
return err
}
if n > 0 {
return errors.New(key.ID + " PublishKey가 이미 존재합니다")
}
err = c.Insert(key)
if err != nil {
return err
}
return nil
}
// RmPublishKey 함수는 PublishKey를 DB에서 삭제한다.
func RmPublishKey(session *mgo.Session, id string) error {
session.SetMode(mgo.Monotonic, true)
c := session.DB(*flagDBName).C("publishkey")
err := c.Remove(bson.M{"id": id})
if err != nil {
return err
}
return nil
}
// AllPublishKeys 함수는 모든 PublishKey 값을 DB에서 가지고 온다.
func AllPublishKeys(session *mgo.Session) ([]PublishKey, error) {
session.SetMode(mgo.Monotonic, true)
c := session.DB(*flagDBName).C("publishkey")
keys := []PublishKey{}
err := c.Find(bson.M{}).Sort("id").All(&keys)
if err != nil {
return nil, err
}
return keys, nil
}