This repository has been archived by the owner on Oct 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
db.go
152 lines (116 loc) · 3.43 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
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
146
147
148
149
150
151
152
// Copyright 2019 Christian Banse
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package issues
import (
"fmt"
"github.com/jinzhu/gorm"
_ "github.com/jinzhu/gorm/dialects/postgres"
"github.com/sirupsen/logrus"
)
type Database interface {
Init()
Insert(object interface{}) (err error)
Update(object interface{}) (rowsChanged int64, err error)
GetServiceToken(service string, userID int64) (*ServiceToken, error)
GetWorkspace(workspaceID int64) (*Workspace, error)
GetWorkspaces(query interface{}, args ...interface{}) ([]*Workspace, error)
GetRelationships(query interface{}, args ...interface{}) ([]*Relationship, error)
}
type MappedPostgreSQL struct {
host string
db *gorm.DB
}
func init() {
log = logrus.WithField("component", "db")
}
func NewMappedPostgreSQL(host string) Database {
return &MappedPostgreSQL{host: host}
}
func (p *MappedPostgreSQL) Init() {
var err error
if p.db, err = gorm.Open("postgres", fmt.Sprintf("postgres://postgres@%s/issues?sslmode=disable", p.host)); err != nil {
panic(err)
}
p.db.AutoMigrate(&Workspace{})
p.db.AutoMigrate(&ServiceToken{})
p.db.AutoMigrate(&Relationship{})
log.Infof("Using PostgreSQL @ %s", p.host)
}
// Insert inserts a suitable struct into our database. Only types that are registred in InitPostgreSQL are suitable.
func (p *MappedPostgreSQL) Insert(object interface{}) (err error) {
log.Debugf("Inserting %+v", object)
return p.db.Create(object).Error
}
func (p *MappedPostgreSQL) Update(object interface{}) (rowsChanged int64, err error) {
log.Debugf("Updating %+v", object)
scoped := p.db.Save(object)
rowsChanged = scoped.RowsAffected
err = scoped.Error
return
}
func (p *MappedPostgreSQL) Where(holder interface{}, query string, args ...interface{}) error {
return p.db.Where(query, args).Find(&holder).Error
}
func (p *MappedPostgreSQL) GetWorkspace(workspaceID int64) (*Workspace, error) {
var w Workspace
err := p.db.First(&w, workspaceID).Error
if gorm.IsRecordNotFoundError(err) {
return nil, nil
}
return &w, err
}
func (p *MappedPostgreSQL) GetWorkspaces(query interface{}, args ...interface{}) ([]*Workspace, error) {
var (
w []*Workspace
err error
db *gorm.DB
)
db = p.db
if query != nil {
db = db.Where(query, args)
}
err = db.Find(&w).Error
if gorm.IsRecordNotFoundError(err) {
return nil, nil
}
return w, err
}
func (p *MappedPostgreSQL) GetServiceToken(service string, userID int64) (*ServiceToken, error) {
t := ServiceToken{
Service: "GitHub",
UserID: userID,
}
var err error
err = p.db.Where(&t).First(&t).Error
if gorm.IsRecordNotFoundError(err) {
return nil, nil
}
return &t, err
}
func (p *MappedPostgreSQL) GetRelationships(query interface{}, args ...interface{}) ([]*Relationship, error) {
var (
r []*Relationship
err error
db *gorm.DB
)
db = p.db
if query != nil {
db = db.Where(query, args)
}
err = db.Find(&r).Error
if gorm.IsRecordNotFoundError(err) {
return nil, nil
}
return r, err
}