-
Notifications
You must be signed in to change notification settings - Fork 0
/
mqtt.go
executable file
·226 lines (198 loc) · 6.63 KB
/
mqtt.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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
// Copyright 2015-2016 Zack Scholl. All rights reserved.
// Use of this source code is governed by a AGPL
// license that can be found in the LICENSE file.
// mqtt.go contains functions for performing MQTT transactions.
package main
import (
"fmt"
"io/ioutil"
"log"
"net/http"
"os"
"os/exec"
"path"
"strconv"
"strings"
"github.com/boltdb/bolt"
"github.com/gin-gonic/gin"
MQTT "github.com/schollz/org.eclipse.paho.mqtt.golang"
)
var adminClient *MQTT.Client
func setupMqtt() {
server := "tcp://" + RuntimeArgs.MqttServer
opts := MQTT.NewClientOptions()
if RuntimeArgs.MqttExisting {
opts.AddBroker(server).SetClientID(RandStringBytesMaskImprSrc(5)).SetCleanSession(true)
} else {
updateMosquittoConfig()
opts.AddBroker(server).SetClientID(RandStringBytesMaskImprSrc(5)).SetUsername(RuntimeArgs.MqttAdmin).SetPassword(RuntimeArgs.MqttAdminPassword).SetCleanSession(true)
}
opts.OnConnect = func(c *MQTT.Client) {
if token := c.Subscribe("#", 1, messageReceived); token.Wait() && token.Error() != nil {
panic(token.Error())
}
}
adminClient = MQTT.NewClient(opts)
if token := adminClient.Connect(); token.Wait() && token.Error() != nil {
Debug.Println(token.Error())
}
Debug.Println("Finished setup")
}
func putMQTT(c *gin.Context) {
group := strings.ToLower(c.DefaultQuery("group", "noneasdf"))
reset := strings.ToLower(c.DefaultQuery("reset", "noneasdf"))
if !RuntimeArgs.Mqtt {
c.JSON(http.StatusOK, gin.H{"success": false, "message": "MQTT is not enabled on this server"})
return
}
if group != "noneasdf" {
password, err := getMQTT(group)
if len(password) == 0 || reset == "true" {
password, err = setMQTT(group)
if err == nil {
c.JSON(http.StatusOK, gin.H{"success": true, "message": "You have successfuly set your password.", "password": password})
updateMosquittoConfig()
} else {
c.JSON(http.StatusOK, gin.H{"success": false, "message": err.Error()})
}
} else {
c.JSON(http.StatusOK, gin.H{"success": true, "message": "Your password exists.", "password": password})
}
} else {
c.JSON(http.StatusOK, gin.H{"success": false, "message": "Usage: PUT /mqtt?group=X or reset using PUT /mqtt?group=X&reset=true"})
}
}
func setMQTT(group string) (string, error) {
password := RandStringBytesMaskImprSrc(6)
db, err := bolt.Open(path.Join(RuntimeArgs.Cwd, "global.db"), 0600, nil)
if err != nil {
log.Fatal(err)
}
defer db.Close()
err = db.Update(func(tx *bolt.Tx) error {
bucket, err := tx.CreateBucketIfNotExists([]byte("mqtt"))
if err != nil {
return fmt.Errorf("create bucket: %s", err)
}
err = bucket.Put([]byte(group), []byte(password))
if err != nil {
return fmt.Errorf("could add to bucket: %s", err)
}
return err
})
return password, err
}
func getMQTT(group string) (string, error) {
password := ""
db, err := bolt.Open(path.Join(RuntimeArgs.Cwd, "global.db"), 0600, nil)
if err != nil {
Error.Println(err)
}
defer db.Close()
err = db.View(func(tx *bolt.Tx) error {
// Assume bucket exists and has keys
b := tx.Bucket([]byte("mqtt"))
if b == nil {
return fmt.Errorf("Resources dont exist")
}
v := b.Get([]byte(group))
password = string(v)
return nil
})
return password, nil
}
func updateMosquittoConfig() {
db, err := bolt.Open(path.Join(RuntimeArgs.Cwd, "global.db"), 0600, nil)
if err != nil {
Error.Println(err)
}
defer db.Close()
acl := "user " + RuntimeArgs.MqttAdmin + "\ntopic readwrite #\n\n"
passwd := "admin:" + RuntimeArgs.MqttAdminPassword + "\n"
conf := "allow_anonymous false\n\nacl_file " + path.Join(RuntimeArgs.Cwd, "mosquitto") + "/acl\n\npassword_file " + path.Join(RuntimeArgs.Cwd, "mosquitto") + "/passwd"
db.View(func(tx *bolt.Tx) error {
// Assume bucket exists and has keys
b := tx.Bucket([]byte("mqtt"))
if b == nil {
return fmt.Errorf("No such bucket yet")
}
c := b.Cursor()
for k, v := c.First(); k != nil; k, v = c.Next() {
group := string(k)
pass := string(v)
acl = acl + "user " + group + "\ntopic readwrite " + group + "/#\n\n"
passwd = passwd + group + ":" + pass + "\n"
}
return nil
})
os.MkdirAll(path.Join(RuntimeArgs.Cwd, "mosquitto"), 0644)
ioutil.WriteFile(path.Join(RuntimeArgs.Cwd, "mosquitto/acl"), []byte(acl), 0644)
ioutil.WriteFile(path.Join(RuntimeArgs.Cwd, "mosquitto/passwd"), []byte(passwd), 0644)
ioutil.WriteFile(path.Join(RuntimeArgs.Cwd, "mosquitto/mosquitto.conf"), []byte(conf), 0644)
cmd := "mosquitto_passwd"
args := []string{"-U", path.Join(RuntimeArgs.Cwd, "mosquitto/passwd")}
if err := exec.Command(cmd, args...).Run(); err != nil {
Warning.Println(err)
}
cmd = "kill"
args = []string{"-HUP", RuntimeArgs.MosquittoPID}
if err = exec.Command(cmd, args...).Run(); err != nil {
Warning.Println(err)
}
}
func sendMQTTLocation(message string, group string, user string) error {
pubTopic := strings.Join([]string{group, "/location/", user}, "")
if token := adminClient.Publish(pubTopic, 1, false, message); token.Wait() && token.Error() != nil {
return fmt.Errorf("Failed to send message")
}
return nil
}
func messageReceived(client *MQTT.Client, msg MQTT.Message) {
jsonFingerprint, route, err := mqttBuildFingerprint(msg.Topic(), msg.Payload())
if err != nil {
return
}
Debug.Println("Got valid MQTT request for group " + jsonFingerprint.Group + ", user " + jsonFingerprint.Username)
if route == "track" {
trackFingerprint(jsonFingerprint)
} else {
learnFingerprint(jsonFingerprint)
}
}
func mqttBuildFingerprint(topic string, message []byte) (jsonFingerprint Fingerprint, route string, err error) {
err = nil
route = "track"
topics := strings.Split(strings.ToLower(topic), "/")
jsonFingerprint.Location = ""
if len(topics) < 3 || (topics[1] != "track" && topics[1] != "learn") {
err = fmt.Errorf("Must define track or learn")
return
}
route = topics[1]
if route == "track" && len(topics) != 3 {
err = fmt.Errorf("Track needs a user name")
return
}
if route == "learn" {
if len(topics) != 4 {
err = fmt.Errorf("Track needs a user name and location")
return
} else {
jsonFingerprint.Location = topics[3]
}
}
jsonFingerprint.Group = topics[0]
jsonFingerprint.Username = topics[2]
routers := []Router{}
for i := 0; i < len(message); i += 14 {
if (i + 14) > len(message) {
break
}
mac := string(message[i:i+2]) + ":" + string(message[i+2:i+4]) + ":" + string(message[i+4:i+6]) + ":" + string(message[i+6:i+8]) + ":" + string(message[i+8:i+10]) + ":" + string(message[i+10:i+12])
val, _ := strconv.Atoi(string(message[i+12 : i+14]))
rssi := -1 * val
routers = append(routers, Router{Mac: mac, Rssi: rssi})
}
jsonFingerprint.WifiFingerprint = routers
return
}