2016-09-12 05:01:24 +03:00
|
|
|
package endpoint
|
2016-09-11 17:49:48 +03:00
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"net/url"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
"sync"
|
2016-09-12 05:01:24 +03:00
|
|
|
"time"
|
2018-04-18 00:56:43 +03:00
|
|
|
|
|
|
|
"github.com/streadway/amqp"
|
2016-09-11 17:49:48 +03:00
|
|
|
)
|
|
|
|
|
2017-02-10 15:27:02 +03:00
|
|
|
var errExpired = errors.New("expired")
|
|
|
|
|
2016-09-11 17:49:48 +03:00
|
|
|
// EndpointProtocol is the type of protocol that the endpoint represents.
|
|
|
|
type EndpointProtocol string
|
|
|
|
|
|
|
|
const (
|
|
|
|
HTTP = EndpointProtocol("http") // HTTP
|
|
|
|
Disque = EndpointProtocol("disque") // Disque
|
2016-09-12 07:09:02 +03:00
|
|
|
GRPC = EndpointProtocol("grpc") // GRPC
|
2017-01-13 18:01:34 +03:00
|
|
|
Redis = EndpointProtocol("redis") // Redis
|
2017-03-06 23:18:59 +03:00
|
|
|
Kafka = EndpointProtocol("kafka") // Kafka
|
2017-03-08 00:15:18 +03:00
|
|
|
MQTT = EndpointProtocol("mqtt") // MQTT
|
2017-03-15 20:45:35 +03:00
|
|
|
AMQP = EndpointProtocol("amqp") // AMQP
|
2017-10-06 00:08:03 +03:00
|
|
|
SQS = EndpointProtocol("sqs") // SQS
|
2016-09-11 17:49:48 +03:00
|
|
|
)
|
|
|
|
|
2016-09-12 05:01:24 +03:00
|
|
|
// Endpoint represents an endpoint.
|
|
|
|
type Endpoint struct {
|
|
|
|
Protocol EndpointProtocol
|
|
|
|
Original string
|
2016-09-12 07:09:02 +03:00
|
|
|
GRPC struct {
|
|
|
|
Host string
|
|
|
|
Port int
|
|
|
|
}
|
|
|
|
Disque struct {
|
2016-09-12 05:01:24 +03:00
|
|
|
Host string
|
|
|
|
Port int
|
|
|
|
QueueName string
|
|
|
|
Options struct {
|
|
|
|
Replicate int
|
|
|
|
}
|
|
|
|
}
|
2017-01-13 18:01:34 +03:00
|
|
|
Redis struct {
|
2017-02-10 15:27:02 +03:00
|
|
|
Host string
|
|
|
|
Port int
|
|
|
|
Channel string
|
2017-01-13 18:01:34 +03:00
|
|
|
}
|
2017-03-06 23:18:59 +03:00
|
|
|
Kafka struct {
|
|
|
|
Host string
|
|
|
|
Port int
|
|
|
|
QueueName string
|
|
|
|
}
|
2017-03-15 20:45:35 +03:00
|
|
|
AMQP struct {
|
2018-04-18 00:56:43 +03:00
|
|
|
URI string
|
|
|
|
SSL bool
|
|
|
|
QueueName string
|
|
|
|
RouteKey string
|
|
|
|
Type string
|
|
|
|
Durable bool
|
|
|
|
AutoDelete bool
|
|
|
|
Internal bool
|
|
|
|
NoWait bool
|
|
|
|
Mandatory bool
|
|
|
|
Immediate bool
|
|
|
|
DeliveryMode uint8
|
2017-03-15 20:45:35 +03:00
|
|
|
}
|
2017-03-08 00:15:18 +03:00
|
|
|
MQTT struct {
|
|
|
|
Host string
|
|
|
|
Port int
|
|
|
|
QueueName string
|
2017-03-08 00:39:49 +03:00
|
|
|
Qos byte
|
|
|
|
Retained bool
|
2017-03-08 00:15:18 +03:00
|
|
|
}
|
2017-10-06 00:08:03 +03:00
|
|
|
|
|
|
|
SQS struct {
|
|
|
|
QueueID string
|
|
|
|
Region string
|
|
|
|
CredPath string
|
|
|
|
CredProfile string
|
|
|
|
QueueName string
|
|
|
|
}
|
2016-09-12 05:01:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type EndpointConn interface {
|
|
|
|
Expired() bool
|
|
|
|
Send(val string) error
|
|
|
|
}
|
|
|
|
|
2016-09-11 17:49:48 +03:00
|
|
|
type EndpointManager struct {
|
2016-09-12 05:01:24 +03:00
|
|
|
mu sync.RWMutex // this is intentionally exposed
|
|
|
|
conns map[string]EndpointConn
|
2016-09-11 17:49:48 +03:00
|
|
|
}
|
|
|
|
|
2016-09-12 05:01:24 +03:00
|
|
|
func NewEndpointManager() *EndpointManager {
|
|
|
|
epc := &EndpointManager{
|
|
|
|
conns: make(map[string]EndpointConn),
|
|
|
|
}
|
|
|
|
go epc.Run()
|
|
|
|
return epc
|
|
|
|
}
|
2017-03-06 23:18:59 +03:00
|
|
|
|
|
|
|
// Manage connection at enpoints
|
|
|
|
// If some connection expired we should delete it
|
2016-09-12 05:01:24 +03:00
|
|
|
func (epc *EndpointManager) Run() {
|
|
|
|
for {
|
|
|
|
time.Sleep(time.Second)
|
|
|
|
func() {
|
|
|
|
epc.mu.Lock()
|
|
|
|
defer epc.mu.Unlock()
|
|
|
|
for endpoint, conn := range epc.conns {
|
|
|
|
if conn.Expired() {
|
|
|
|
delete(epc.conns, endpoint)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
2016-09-11 17:49:48 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get finds an endpoint based on its url. If the enpoint does not
|
|
|
|
// exist a new only is created.
|
|
|
|
func (epc *EndpointManager) Validate(url string) error {
|
|
|
|
_, err := parseEndpoint(url)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-09-12 05:01:24 +03:00
|
|
|
func (epc *EndpointManager) Send(endpoint, val string) error {
|
2017-02-10 15:27:02 +03:00
|
|
|
for {
|
|
|
|
epc.mu.Lock()
|
|
|
|
conn, ok := epc.conns[endpoint]
|
|
|
|
if !ok || conn.Expired() {
|
|
|
|
ep, err := parseEndpoint(endpoint)
|
|
|
|
if err != nil {
|
|
|
|
epc.mu.Unlock()
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
switch ep.Protocol {
|
|
|
|
default:
|
|
|
|
return errors.New("invalid protocol")
|
|
|
|
case HTTP:
|
|
|
|
conn = newHTTPEndpointConn(ep)
|
|
|
|
case Disque:
|
|
|
|
conn = newDisqueEndpointConn(ep)
|
|
|
|
case GRPC:
|
|
|
|
conn = newGRPCEndpointConn(ep)
|
|
|
|
case Redis:
|
|
|
|
conn = newRedisEndpointConn(ep)
|
2017-03-06 23:18:59 +03:00
|
|
|
case Kafka:
|
|
|
|
conn = newKafkaEndpointConn(ep)
|
2017-03-08 00:15:18 +03:00
|
|
|
case MQTT:
|
|
|
|
conn = newMQTTEndpointConn(ep)
|
2017-03-15 20:45:35 +03:00
|
|
|
case AMQP:
|
|
|
|
conn = newAMQPEndpointConn(ep)
|
2017-10-06 00:08:03 +03:00
|
|
|
case SQS:
|
|
|
|
conn = newSQSEndpointConn(ep)
|
2017-02-10 15:27:02 +03:00
|
|
|
}
|
|
|
|
epc.conns[endpoint] = conn
|
|
|
|
}
|
|
|
|
epc.mu.Unlock()
|
|
|
|
err := conn.Send(val)
|
2016-09-12 05:01:24 +03:00
|
|
|
if err != nil {
|
2017-02-10 15:27:02 +03:00
|
|
|
if err == errExpired {
|
|
|
|
// it's possible that the connection has expired in-between
|
|
|
|
// the last conn.Expired() check and now. If so, we should
|
|
|
|
// just try the send again.
|
|
|
|
continue
|
|
|
|
}
|
2016-09-12 05:01:24 +03:00
|
|
|
return err
|
2016-09-11 17:49:48 +03:00
|
|
|
}
|
2017-02-10 15:27:02 +03:00
|
|
|
return nil
|
2016-09-12 05:01:24 +03:00
|
|
|
}
|
2016-09-11 17:49:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func parseEndpoint(s string) (Endpoint, error) {
|
|
|
|
var endpoint Endpoint
|
|
|
|
endpoint.Original = s
|
|
|
|
switch {
|
|
|
|
default:
|
|
|
|
return endpoint, errors.New("unknown scheme")
|
|
|
|
case strings.HasPrefix(s, "http:"):
|
|
|
|
endpoint.Protocol = HTTP
|
|
|
|
case strings.HasPrefix(s, "https:"):
|
|
|
|
endpoint.Protocol = HTTP
|
|
|
|
case strings.HasPrefix(s, "disque:"):
|
|
|
|
endpoint.Protocol = Disque
|
2016-09-12 07:09:02 +03:00
|
|
|
case strings.HasPrefix(s, "grpc:"):
|
|
|
|
endpoint.Protocol = GRPC
|
2017-01-13 18:01:34 +03:00
|
|
|
case strings.HasPrefix(s, "redis:"):
|
|
|
|
endpoint.Protocol = Redis
|
2017-03-06 23:18:59 +03:00
|
|
|
case strings.HasPrefix(s, "kafka:"):
|
|
|
|
endpoint.Protocol = Kafka
|
2017-03-15 20:45:35 +03:00
|
|
|
case strings.HasPrefix(s, "amqp:"):
|
|
|
|
endpoint.Protocol = AMQP
|
|
|
|
case strings.HasPrefix(s, "amqps:"):
|
|
|
|
endpoint.Protocol = AMQP
|
2017-03-08 00:15:18 +03:00
|
|
|
case strings.HasPrefix(s, "mqtt:"):
|
|
|
|
endpoint.Protocol = MQTT
|
2017-10-06 00:08:03 +03:00
|
|
|
case strings.HasPrefix(s, "sqs:"):
|
|
|
|
endpoint.Protocol = SQS
|
2016-09-11 17:49:48 +03:00
|
|
|
}
|
2017-01-13 18:01:34 +03:00
|
|
|
|
2016-09-11 17:49:48 +03:00
|
|
|
s = s[strings.Index(s, ":")+1:]
|
|
|
|
if !strings.HasPrefix(s, "//") {
|
|
|
|
return endpoint, errors.New("missing the two slashes")
|
|
|
|
}
|
2017-01-13 18:01:34 +03:00
|
|
|
|
2016-09-11 17:49:48 +03:00
|
|
|
sqp := strings.Split(s[2:], "?")
|
|
|
|
sp := strings.Split(sqp[0], "/")
|
|
|
|
s = sp[0]
|
|
|
|
if s == "" {
|
|
|
|
return endpoint, errors.New("missing host")
|
|
|
|
}
|
2017-01-13 18:01:34 +03:00
|
|
|
|
2016-09-12 07:09:02 +03:00
|
|
|
if endpoint.Protocol == GRPC {
|
|
|
|
dp := strings.Split(s, ":")
|
|
|
|
switch len(dp) {
|
|
|
|
default:
|
|
|
|
return endpoint, errors.New("invalid grpc url")
|
|
|
|
case 1:
|
|
|
|
endpoint.GRPC.Host = dp[0]
|
|
|
|
endpoint.GRPC.Port = 80
|
|
|
|
case 2:
|
|
|
|
endpoint.GRPC.Host = dp[0]
|
|
|
|
n, err := strconv.ParseUint(dp[1], 10, 16)
|
|
|
|
if err != nil {
|
|
|
|
return endpoint, errors.New("invalid grpc url")
|
|
|
|
}
|
|
|
|
endpoint.GRPC.Port = int(n)
|
|
|
|
}
|
|
|
|
}
|
2017-01-13 18:01:34 +03:00
|
|
|
|
|
|
|
if endpoint.Protocol == Redis {
|
|
|
|
dp := strings.Split(s, ":")
|
|
|
|
switch len(dp) {
|
|
|
|
default:
|
|
|
|
return endpoint, errors.New("invalid redis url")
|
|
|
|
case 1:
|
|
|
|
endpoint.Redis.Host = dp[0]
|
|
|
|
endpoint.Redis.Port = 6379
|
|
|
|
case 2:
|
|
|
|
endpoint.Redis.Host = dp[0]
|
|
|
|
n, err := strconv.ParseUint(dp[1], 10, 16)
|
|
|
|
if err != nil {
|
|
|
|
return endpoint, errors.New("invalid redis url port")
|
|
|
|
}
|
|
|
|
endpoint.Redis.Port = int(n)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(sp) > 1 {
|
|
|
|
var err error
|
|
|
|
endpoint.Redis.Channel, err = url.QueryUnescape(sp[1])
|
|
|
|
if err != nil {
|
|
|
|
return endpoint, errors.New("invalid redis channel name")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-11 17:49:48 +03:00
|
|
|
if endpoint.Protocol == Disque {
|
|
|
|
dp := strings.Split(s, ":")
|
|
|
|
switch len(dp) {
|
|
|
|
default:
|
|
|
|
return endpoint, errors.New("invalid disque url")
|
|
|
|
case 1:
|
|
|
|
endpoint.Disque.Host = dp[0]
|
|
|
|
endpoint.Disque.Port = 7711
|
|
|
|
case 2:
|
|
|
|
endpoint.Disque.Host = dp[0]
|
|
|
|
n, err := strconv.ParseUint(dp[1], 10, 16)
|
|
|
|
if err != nil {
|
|
|
|
return endpoint, errors.New("invalid disque url")
|
|
|
|
}
|
|
|
|
endpoint.Disque.Port = int(n)
|
|
|
|
}
|
|
|
|
if len(sp) > 1 {
|
|
|
|
var err error
|
|
|
|
endpoint.Disque.QueueName, err = url.QueryUnescape(sp[1])
|
|
|
|
if err != nil {
|
|
|
|
return endpoint, errors.New("invalid disque queue name")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(sqp) > 1 {
|
|
|
|
m, err := url.ParseQuery(sqp[1])
|
|
|
|
if err != nil {
|
|
|
|
return endpoint, errors.New("invalid disque url")
|
|
|
|
}
|
|
|
|
for key, val := range m {
|
|
|
|
if len(val) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
switch key {
|
|
|
|
case "replicate":
|
|
|
|
n, err := strconv.ParseUint(val[0], 10, 8)
|
|
|
|
if err != nil {
|
|
|
|
return endpoint, errors.New("invalid disque replicate value")
|
|
|
|
}
|
|
|
|
endpoint.Disque.Options.Replicate = int(n)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if endpoint.Disque.QueueName == "" {
|
|
|
|
return endpoint, errors.New("missing disque queue name")
|
|
|
|
}
|
|
|
|
}
|
2017-01-13 18:01:34 +03:00
|
|
|
|
2017-03-06 23:18:59 +03:00
|
|
|
if endpoint.Protocol == Kafka {
|
|
|
|
// Parsing connection from URL string
|
|
|
|
hp := strings.Split(s, ":")
|
|
|
|
switch len(hp) {
|
|
|
|
default:
|
|
|
|
return endpoint, errors.New("invalid kafka url")
|
|
|
|
case 1:
|
|
|
|
endpoint.Kafka.Host = hp[0]
|
|
|
|
endpoint.Kafka.Port = 9092
|
|
|
|
case 2:
|
|
|
|
n, err := strconv.ParseUint(hp[1], 10, 16)
|
|
|
|
if err != nil {
|
|
|
|
return endpoint, errors.New("invalid kafka url port")
|
|
|
|
}
|
|
|
|
|
|
|
|
endpoint.Kafka.Host = hp[0]
|
|
|
|
endpoint.Kafka.Port = int(n)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parsing Kafka queue name
|
|
|
|
if len(sp) > 1 {
|
|
|
|
var err error
|
|
|
|
endpoint.Kafka.QueueName, err = url.QueryUnescape(sp[1])
|
|
|
|
if err != nil {
|
|
|
|
return endpoint, errors.New("invalid kafka topic name")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Throw error if we not provide any queue name
|
|
|
|
if endpoint.Kafka.QueueName == "" {
|
|
|
|
return endpoint, errors.New("missing kafka topic name")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-08 00:15:18 +03:00
|
|
|
if endpoint.Protocol == MQTT {
|
|
|
|
// Parsing connection from URL string
|
|
|
|
hp := strings.Split(s, ":")
|
|
|
|
switch len(hp) {
|
|
|
|
default:
|
|
|
|
return endpoint, errors.New("invalid MQTT url")
|
|
|
|
case 1:
|
|
|
|
endpoint.MQTT.Host = hp[0]
|
|
|
|
endpoint.MQTT.Port = 1883
|
|
|
|
case 2:
|
|
|
|
n, err := strconv.ParseUint(hp[1], 10, 16)
|
|
|
|
if err != nil {
|
|
|
|
return endpoint, errors.New("invalid MQTT url port")
|
|
|
|
}
|
|
|
|
|
|
|
|
endpoint.MQTT.Host = hp[0]
|
|
|
|
endpoint.MQTT.Port = int(n)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parsing MQTT queue name
|
|
|
|
if len(sp) > 1 {
|
|
|
|
var err error
|
|
|
|
endpoint.MQTT.QueueName, err = url.QueryUnescape(sp[1])
|
|
|
|
if err != nil {
|
|
|
|
return endpoint, errors.New("invalid MQTT topic name")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-08 00:39:49 +03:00
|
|
|
// Parsing additional params
|
|
|
|
if len(sqp) > 1 {
|
|
|
|
m, err := url.ParseQuery(sqp[1])
|
|
|
|
if err != nil {
|
|
|
|
return endpoint, errors.New("invalid MQTT url")
|
|
|
|
}
|
|
|
|
for key, val := range m {
|
|
|
|
if len(val) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
switch key {
|
|
|
|
case "qos":
|
|
|
|
n, err := strconv.ParseUint(val[0], 10, 8)
|
|
|
|
if err != nil {
|
|
|
|
return endpoint, errors.New("invalid MQTT qos value")
|
|
|
|
}
|
|
|
|
endpoint.MQTT.Qos = byte(n)
|
|
|
|
case "retained":
|
|
|
|
n, err := strconv.ParseUint(val[0], 10, 8)
|
|
|
|
if err != nil {
|
|
|
|
return endpoint, errors.New("invalid MQTT retained value")
|
|
|
|
}
|
|
|
|
|
|
|
|
if n != 1 && n != 0 {
|
|
|
|
return endpoint, errors.New("invalid MQTT retained, should be [0, 1]")
|
|
|
|
}
|
|
|
|
|
|
|
|
if n == 1 {
|
|
|
|
endpoint.MQTT.Retained = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-08 00:15:18 +03:00
|
|
|
// Throw error if we not provide any queue name
|
|
|
|
if endpoint.MQTT.QueueName == "" {
|
|
|
|
return endpoint, errors.New("missing MQTT topic name")
|
|
|
|
}
|
|
|
|
}
|
2017-10-06 00:08:03 +03:00
|
|
|
// Basic SQS connection strings in HOOKS interface
|
|
|
|
// sqs://<region>:<queue_id>/<queue_name>/?params=value
|
|
|
|
//
|
|
|
|
// params are:
|
|
|
|
//
|
|
|
|
// credpath - path where aws credentials are located
|
|
|
|
// credprofile - credential profile
|
|
|
|
if endpoint.Protocol == SQS {
|
|
|
|
// Parsing connection from URL string
|
|
|
|
hp := strings.Split(s, ":")
|
|
|
|
switch len(hp) {
|
|
|
|
default:
|
|
|
|
return endpoint, errors.New("invalid SQS url")
|
|
|
|
case 2:
|
|
|
|
endpoint.SQS.Region = hp[0]
|
|
|
|
endpoint.SQS.QueueID = hp[1]
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parsing SQS queue name
|
|
|
|
if len(sp) > 1 {
|
|
|
|
var err error
|
|
|
|
endpoint.SQS.QueueName, err = url.QueryUnescape(sp[1])
|
|
|
|
if err != nil {
|
|
|
|
return endpoint, errors.New("invalid SQS queue name")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parsing additional params
|
|
|
|
if len(sqp) > 1 {
|
|
|
|
m, err := url.ParseQuery(sqp[1])
|
|
|
|
if err != nil {
|
|
|
|
return endpoint, errors.New("invalid SQS url")
|
|
|
|
}
|
|
|
|
for key, val := range m {
|
|
|
|
if len(val) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
switch key {
|
|
|
|
case "credpath":
|
|
|
|
endpoint.SQS.CredPath = val[0]
|
|
|
|
case "credprofile":
|
|
|
|
endpoint.SQS.CredProfile = val[0]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Throw error if we not provide any queue name
|
|
|
|
if endpoint.SQS.QueueName == "" {
|
|
|
|
return endpoint, errors.New("missing SQS queue name")
|
|
|
|
}
|
|
|
|
}
|
2017-03-08 00:15:18 +03:00
|
|
|
|
2017-03-15 20:45:35 +03:00
|
|
|
// Basic AMQP connection strings in HOOKS interface
|
|
|
|
// amqp://guest:guest@localhost:5672/<queue_name>/?params=value
|
|
|
|
//
|
|
|
|
// Default params are:
|
|
|
|
//
|
|
|
|
// Mandatory - false
|
|
|
|
// Immeditate - false
|
|
|
|
// Durable - true
|
|
|
|
// Routing-Key - tile38
|
|
|
|
//
|
|
|
|
// - "route" - [string] routing key
|
|
|
|
//
|
|
|
|
if endpoint.Protocol == AMQP {
|
|
|
|
// Bind connection information
|
|
|
|
endpoint.AMQP.URI = s
|
2018-04-18 00:56:43 +03:00
|
|
|
endpoint.AMQP.Type = "direct"
|
|
|
|
endpoint.AMQP.Durable = true
|
|
|
|
endpoint.AMQP.DeliveryMode = amqp.Transient
|
2017-03-15 20:45:35 +03:00
|
|
|
|
|
|
|
// Bind queue name
|
|
|
|
if len(sp) > 1 {
|
|
|
|
var err error
|
|
|
|
endpoint.AMQP.QueueName, err = url.QueryUnescape(sp[1])
|
|
|
|
if err != nil {
|
|
|
|
return endpoint, errors.New("invalid AMQP queue name")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parsing additional attributes
|
|
|
|
if len(sqp) > 1 {
|
|
|
|
m, err := url.ParseQuery(sqp[1])
|
|
|
|
if err != nil {
|
|
|
|
return endpoint, errors.New("invalid AMQP url")
|
|
|
|
}
|
|
|
|
for key, val := range m {
|
|
|
|
if len(val) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
switch key {
|
|
|
|
case "route":
|
|
|
|
endpoint.AMQP.RouteKey = val[0]
|
2018-04-18 00:56:43 +03:00
|
|
|
case "type":
|
|
|
|
endpoint.AMQP.Type = val[0]
|
|
|
|
case "durable":
|
|
|
|
endpoint.AMQP.Durable = queryBool(val[0])
|
|
|
|
case "internal":
|
|
|
|
endpoint.AMQP.Internal = queryBool(val[0])
|
|
|
|
case "no_wait":
|
|
|
|
endpoint.AMQP.NoWait = queryBool(val[0])
|
|
|
|
case "auto_delete":
|
|
|
|
endpoint.AMQP.AutoDelete = queryBool(val[0])
|
|
|
|
case "immediate":
|
|
|
|
endpoint.AMQP.Immediate = queryBool(val[0])
|
|
|
|
case "mandatory":
|
|
|
|
endpoint.AMQP.Mandatory = queryBool(val[0])
|
|
|
|
case "delivery_mode":
|
|
|
|
endpoint.AMQP.DeliveryMode = uint8(queryInt(val[0]))
|
2017-03-15 20:45:35 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if strings.HasPrefix(endpoint.Original, "amqps:") {
|
|
|
|
endpoint.AMQP.SSL = true
|
|
|
|
}
|
|
|
|
|
|
|
|
if endpoint.AMQP.QueueName == "" {
|
|
|
|
return endpoint, errors.New("missing AMQP queue name")
|
|
|
|
}
|
|
|
|
|
|
|
|
if endpoint.AMQP.RouteKey == "" {
|
|
|
|
endpoint.AMQP.RouteKey = "tile38"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-11 17:49:48 +03:00
|
|
|
return endpoint, nil
|
|
|
|
}
|
2018-04-18 00:56:43 +03:00
|
|
|
|
|
|
|
func queryInt(s string) int {
|
|
|
|
x, _ := strconv.ParseInt(s, 10, 64)
|
|
|
|
return int(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func queryBool(s string) bool {
|
|
|
|
if len(s) > 0 {
|
|
|
|
if s[0] >= '1' && s[0] <= '9' {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
switch s[0] {
|
|
|
|
case 'Y', 'y', 'T', 't':
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|