This repository has been archived by the owner on Oct 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdatabase.go
205 lines (175 loc) Β· 3.88 KB
/
database.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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
// KeepMeBot - database
// 2020-08-20 22:01
// Benny <[email protected]>
package main
import (
"fmt"
"github.com/jinzhu/gorm"
log "github.com/sirupsen/logrus"
"gopkg.in/tucnak/telebot.v2"
"os"
"time"
)
// SQLite
// all the support keep alive service are bundle with database.
var DB *gorm.DB
type BaseModel struct {
gorm.Model
}
type Service struct {
BaseModel
Name string `gorm:"unique"`
Max int
ServiceType string `gorm:"default: external"`
Template string
Interval float64 `gorm:"default: 86400"` // seconds
}
type Queue struct {
BaseModel
UserID int
UserName string
Parameter string
Command string
Service Service
ServiceID int
}
type History struct {
BaseModel
UserID int
UserName string
Command string
Output string
Service Service
ServiceID int
}
type Session struct {
BaseModel
UserID int `gorm:"unique"`
Next string
}
var supportedService []Service
func deferInit() {
supportedService = []Service{
{
Name: "Docker Hub",
Max: 5,
ServiceType: "external",
Template: "docker pull %s && docker rmi %s",
},
{
Name: "GitHub",
Max: 3,
ServiceType: "external",
Template: "git clone %s && rm -rf %s",
},
{
Name: "get",
Max: 10,
ServiceType: "internal",
Template: "get %s",
Interval: time.Second.Seconds() * 10,
},
}
var err error
var dbFile string
switch os.Getenv("test") {
case "true":
dbFile = "test.db"
default:
dbFile = "keep.db"
}
log.Infof("Using %s as database", dbFile)
DB, err = gorm.Open("sqlite3", dbFile)
if err != nil {
log.Panicf("failed to connect database %v", err)
}
// Migrate the schema
DB.AutoMigrate(&Service{}, &Queue{}, &History{}, &Session{})
for _, v := range supportedService {
DB.FirstOrCreate(&v, v)
}
}
func getServiceArray() (supportedService []Service, err error) {
if err = DB.Find(&supportedService).Error; err != nil {
return
}
return
}
func getQueueList(userid int) (q []Queue) {
DB.Where("user_id=?", userid).Find(&q)
return
}
func deleteQueue(qid string) {
DB.Where("id=?", qid).Delete(&Queue{})
}
func getServiceMap() map[string]Service {
var a = make(map[string]Service)
arr, _ := getServiceArray()
for _, v := range arr {
a[v.Name] = v
}
return a
}
func addQueue(m telebot.Message, serviceName string, inputs ...interface{}) (message string) {
// user id, commands
s := getServiceMap()
service := s[serviceName]
realCommand := fmt.Sprintf(service.Template, inputs...)
// max than 5
count := 0
DB.Model(&Queue{}).Where("user_id=?", m.Sender.ID).Count(&count)
log.Infof("Check for %v, current %d", m.Sender.ID, count)
if count > service.Max-1 {
message = fmt.Sprintf("Your limit is %d, you are using %d", service.Max, count)
} else {
d := Queue{
UserID: m.Sender.ID,
UserName: m.Sender.Username,
Parameter: m.Text,
Command: realCommand,
Service: service,
}
DB.Create(&d)
message = fmt.Sprintf("%s Your command is `%s`", "Success\\!", realCommand)
}
return
}
func setSession(id int, next string) {
// create or update
session := Session{
UserID: id,
Next: next,
}
DB.Save(&session)
}
func getSession(id int) string {
session := Session{}
DB.Where("user_id=?", id).First(&session)
return session.Next
}
func deleteSession(id int) {
session := Session{
UserID: id,
}
DB.Unscoped().Delete(&session)
}
func historyRecorder(v Queue, message string) {
log.Infoln("Recording history ", message)
h := History{
BaseModel: BaseModel{},
UserID: v.UserID,
UserName: v.UserName,
Command: v.Command,
Output: message,
ServiceID: v.ServiceID,
}
DB.Create(&h)
}
func getNewestHistory(userId int) (h []History) {
//select *, max(created_at)
//from histories
//where user_id = 260260121
//group by service_id
DB.Where("user_id=?", userId).Group("service_id").Having("max(created_at)").Find(&h)
return h
}