mirror of https://github.com/tidwall/tile38.git
parent
3573223b9a
commit
f8fc7645d1
|
@ -76,11 +76,14 @@ type Endpoint struct {
|
||||||
DeliveryMode uint8
|
DeliveryMode uint8
|
||||||
}
|
}
|
||||||
MQTT struct {
|
MQTT struct {
|
||||||
Host string
|
Host string
|
||||||
Port int
|
Port int
|
||||||
QueueName string
|
QueueName string
|
||||||
Qos byte
|
Qos byte
|
||||||
Retained bool
|
Retained bool
|
||||||
|
CACertFile string
|
||||||
|
CertFile string
|
||||||
|
KeyFile string
|
||||||
}
|
}
|
||||||
|
|
||||||
SQS struct {
|
SQS struct {
|
||||||
|
@ -406,6 +409,12 @@ func parseEndpoint(s string) (Endpoint, error) {
|
||||||
if n == 1 {
|
if n == 1 {
|
||||||
endpoint.MQTT.Retained = true
|
endpoint.MQTT.Retained = true
|
||||||
}
|
}
|
||||||
|
case "cacert":
|
||||||
|
endpoint.MQTT.CACertFile = val[0]
|
||||||
|
case "cert":
|
||||||
|
endpoint.MQTT.CertFile = val[0]
|
||||||
|
case "key":
|
||||||
|
endpoint.MQTT.KeyFile = val[0]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -469,7 +478,7 @@ func parseEndpoint(s string) (Endpoint, error) {
|
||||||
|
|
||||||
// Basic AMQP connection strings in HOOKS interface
|
// Basic AMQP connection strings in HOOKS interface
|
||||||
// amqp://guest:guest@localhost:5672/<queue_name>/?params=value
|
// amqp://guest:guest@localhost:5672/<queue_name>/?params=value
|
||||||
// or amqp://guest:guest@localhost:5672/<namespace>/<queue_name>/?params=value
|
// or amqp://guest:guest@localhost:5672/<namespace>/<queue_name>/?params=value
|
||||||
//
|
//
|
||||||
// Default params are:
|
// Default params are:
|
||||||
//
|
//
|
||||||
|
@ -487,15 +496,15 @@ func parseEndpoint(s string) (Endpoint, error) {
|
||||||
endpoint.AMQP.Durable = true
|
endpoint.AMQP.Durable = true
|
||||||
endpoint.AMQP.DeliveryMode = amqp.Transient
|
endpoint.AMQP.DeliveryMode = amqp.Transient
|
||||||
|
|
||||||
// Fix incase of namespace, e.g. example.com/namespace/queue
|
// Fix incase of namespace, e.g. example.com/namespace/queue
|
||||||
// but not example.com/queue/ - with an endslash.
|
// but not example.com/queue/ - with an endslash.
|
||||||
if len(sp) > 2 && len(sp[2]) > 0 {
|
if len(sp) > 2 && len(sp[2]) > 0 {
|
||||||
endpoint.AMQP.URI = endpoint.AMQP.URI + "/" + sp[1]
|
endpoint.AMQP.URI = endpoint.AMQP.URI + "/" + sp[1]
|
||||||
sp = append([]string{endpoint.AMQP.URI}, sp[2:]...)
|
sp = append([]string{endpoint.AMQP.URI}, sp[2:]...)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Bind queue name with no namespace
|
// Bind queue name with no namespace
|
||||||
if len(sp) > 1 {
|
if len(sp) > 1 {
|
||||||
var err error
|
var err error
|
||||||
endpoint.AMQP.QueueName, err = url.QueryUnescape(sp[1])
|
endpoint.AMQP.QueueName, err = url.QueryUnescape(sp[1])
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
package endpoint
|
package endpoint
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"crypto/tls"
|
||||||
|
"crypto/x509"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"io/ioutil"
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
@ -56,7 +59,31 @@ func (conn *MQTTConn) Send(msg string) error {
|
||||||
|
|
||||||
if conn.conn == nil {
|
if conn.conn == nil {
|
||||||
uri := fmt.Sprintf("tcp://%s:%d", conn.ep.MQTT.Host, conn.ep.MQTT.Port)
|
uri := fmt.Sprintf("tcp://%s:%d", conn.ep.MQTT.Host, conn.ep.MQTT.Port)
|
||||||
ops := paho.NewClientOptions().SetClientID("tile38").AddBroker(uri)
|
ops := paho.NewClientOptions()
|
||||||
|
if conn.ep.MQTT.CertFile != "" || conn.ep.MQTT.KeyFile != "" ||
|
||||||
|
conn.ep.MQTT.CACertFile != "" {
|
||||||
|
var config tls.Config
|
||||||
|
if conn.ep.MQTT.CertFile != "" || conn.ep.MQTT.KeyFile != "" {
|
||||||
|
cert, err := tls.LoadX509KeyPair(conn.ep.MQTT.CertFile,
|
||||||
|
conn.ep.MQTT.KeyFile)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
config.Certificates = append(config.Certificates, cert)
|
||||||
|
}
|
||||||
|
if conn.ep.MQTT.CACertFile != "" {
|
||||||
|
// Load CA cert
|
||||||
|
caCert, err := ioutil.ReadFile(conn.ep.MQTT.CACertFile)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
caCertPool := x509.NewCertPool()
|
||||||
|
caCertPool.AppendCertsFromPEM(caCert)
|
||||||
|
config.RootCAs = caCertPool
|
||||||
|
}
|
||||||
|
ops = ops.SetTLSConfig(&config)
|
||||||
|
}
|
||||||
|
ops = ops.SetClientID("tile38").AddBroker(uri)
|
||||||
c := paho.NewClient(ops)
|
c := paho.NewClient(ops)
|
||||||
|
|
||||||
if token := c.Connect(); token.Wait() && token.Error() != nil {
|
if token := c.Connect(); token.Wait() && token.Error() != nil {
|
||||||
|
@ -66,7 +93,8 @@ func (conn *MQTTConn) Send(msg string) error {
|
||||||
conn.conn = c
|
conn.conn = c
|
||||||
}
|
}
|
||||||
|
|
||||||
t := conn.conn.Publish(conn.ep.MQTT.QueueName, conn.ep.MQTT.Qos, conn.ep.MQTT.Retained, msg)
|
t := conn.conn.Publish(conn.ep.MQTT.QueueName, conn.ep.MQTT.Qos,
|
||||||
|
conn.ep.MQTT.Retained, msg)
|
||||||
t.Wait()
|
t.Wait()
|
||||||
|
|
||||||
if t.Error() != nil {
|
if t.Error() != nil {
|
||||||
|
|
Loading…
Reference in New Issue