-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathutils.go
207 lines (180 loc) · 4.61 KB
/
utils.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
206
207
package tgbot
import (
"encoding/json"
"errors"
"fmt"
"net/url"
"os"
"path"
"path/filepath"
"reflect"
"regexp"
"sort"
"strings"
"github.com/fatih/camelcase"
"github.com/go-martini/martini"
"github.com/martini-contrib/binding"
"github.com/martini-contrib/gorelic"
"github.com/oleiade/reflections"
"github.com/rockneurotiko/gorequest"
)
func convertToCommand(reg string) string {
if !strings.HasSuffix(reg, "$") {
reg = reg + "$"
}
if !strings.HasPrefix(reg, "^/") {
if strings.HasPrefix(reg, "/") {
reg = "^" + reg
} else {
reg = "^/" + reg
}
}
return reg
}
func findStringSubmatchMap(r *regexp.Regexp, s string) map[string]string {
captures := make(map[string]string)
match := r.FindStringSubmatch(s)
if match == nil {
return captures
}
for i, name := range r.SubexpNames() {
// Ignore the whole regexp match and unnamed groups
if i == 0 || name == "" {
continue
}
captures[name] = match[i]
}
return captures
}
func looksLikePath(p string) bool {
p = filepath.Clean(p)
if len(strings.Split(p, ".")) > 1 {
// The IDS don't have dots :P
// But let's check if exist, anyway
_, err := os.Stat(p)
return err == nil
}
return false
}
func isZeroOfUnderlyingType(x interface{}) bool {
return x == reflect.Zero(reflect.TypeOf(x)).Interface()
}
func isInList(v string, l []string) bool {
sort.Strings(l)
i := sort.SearchStrings(l, v)
return i < len(l) && l[i] == v
}
func convertInterfaceMap(p interface{}, except []string) map[string]string {
nint := map[string]string{}
var structItems map[string]interface{}
structItems, _ = reflections.Items(p)
for v, v2 := range structItems {
if isZeroOfUnderlyingType(v2) || isInList(v, except) {
continue
}
v = strings.ToLower(strings.Join(camelcase.Split(v), "_"))
switch val := v2.(type) {
case interface{}:
sv, _ := json.Marshal(val)
nint[v] = string(sv)
default:
nint[v] = fmt.Sprintf("%+v", v2)
}
}
return nint
}
func StartServerMultiplesBotsHostPort(uri string, pathl string, host string, port string, newrelic *RelicConfig, bots ...*TgBot) {
var puri *url.URL
if uri != "" {
tmpuri, err := url.Parse(uri)
if err != nil {
fmt.Printf("Bad URL %s", uri)
return
}
puri = tmpuri
}
botsmap := make(map[string]*TgBot)
for _, bot := range bots {
tokendiv := strings.Split(bot.Token, ":")
if len(tokendiv) != 2 {
return
}
tokenpath := fmt.Sprintf("%s%s", tokendiv[0], tokendiv[1])
botpathl := path.Join(pathl, tokenpath)
nuri, _ := puri.Parse(botpathl)
remoteuri := nuri.String()
res, error := bot.SetWebhook(remoteuri)
if error != nil {
ec := res.ErrorCode
fmt.Printf("Error setting the webhook: \nError code: %d\nDescription: %s\n", &ec, res.Description)
continue
}
if bot.MainListener == nil {
bot.StartMainListener()
}
botsmap[tokenpath] = bot
}
pathtolisten := path.Join(pathl, "(?P<token>[a-zA-Z0-9-_]+)")
m := martini.Classic()
m.Post(pathtolisten, binding.Json(MessageWithUpdateID{}), func(params martini.Params, msg MessageWithUpdateID) {
bot, ok := botsmap[params["token"]]
if ok && msg.UpdateID > 0 && msg.Msg.ID > 0 {
bot.MainListener <- msg
} else {
fmt.Println("Someone tried with: ", params["token"], msg)
}
})
if newrelic != nil {
gorelic.InitNewrelicAgent(newrelic.Token, newrelic.Name, false)
m.Use(gorelic.Handler)
}
if host == "" || port == "" {
m.Run()
} else {
m.RunOnAddr(host + ":" + port)
}
}
// StartServerMultiplesBots ...
func StartServerMultiplesBots(uri string, pathl string, newrelic *RelicConfig, bots ...*TgBot) {
StartServerMultiplesBotsHostPort(uri, pathl, "", "", newrelic, bots...)
}
func splitResultInMessageError(ressm ResultWithMessage) (res Message, err error) {
if ressm.Ok && ressm.Result != nil {
res = *ressm.Result
err = nil
} else {
res = Message{}
err = fmt.Errorf("Error in petition.\nError code: %d\nDescription: %s", *ressm.ErrorCode, *ressm.Description)
}
return
}
func postPetition(url string, payload interface{}, ctype *string) (string, error) {
request := gorequest.New().
DisableKeepAlives(true).
CloseRequest(true).
Post(url).
Send(payload)
request.TargetType = "form"
if ctype != nil {
request.Set("Content-Type", *ctype)
}
_, body, err := request.End()
if err != nil {
return "", errors.New("Some error happened")
}
return body, nil
}
func getPetition(url string, queries []string) (string, error) {
req := gorequest.New().
DisableKeepAlives(true).
CloseRequest(true).
Get(url)
for _, q := range queries {
req.Query(q)
}
_, body, errq := req.End()
if errq != nil {
return "", errors.New("There were some error trying to do the petition")
}
return body, nil
}