forked from eclipse-ditto/ditto-clients-golang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.go
93 lines (81 loc) · 2.77 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
// Copyright (c) 2020 Contributors to the Eclipse Foundation
//
// See the NOTICE file(s) distributed with this work for additional
// information regarding copyright ownership.
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License 2.0 which is available at
// http://www.eclipse.org/legal/epl-2.0
//
// SPDX-License-Identifier: EPL-2.0
package ditto
import (
"crypto/tls"
"encoding/json"
"errors"
"fmt"
"reflect"
"regexp"
"runtime"
"github.com/eclipse/ditto-clients-golang/protocol"
)
var regexHonoMQTTTopicRequest, _ = regexp.Compile("^command///req/([^/]+)/([^/]+)$")
const (
honoMQTTTopicCommandResponseFormat = "command///res/%s/%d"
)
func extractHonoRequestID(honoTopic string) string {
if regexHonoMQTTTopicRequest.MatchString(honoTopic) {
reqIDInfo := regexHonoMQTTTopicRequest.FindStringSubmatch(honoTopic)
return reqIDInfo[1]
}
return ""
}
func generateHonoResponseTopic(requestID string, status int) string {
return fmt.Sprintf(honoMQTTTopicCommandResponseFormat, requestID, status)
}
func getEnvelope(mqttPayload []byte) (*protocol.Envelope, error) {
env := &protocol.Envelope{Headers: protocol.NewHeaders()}
if err := json.Unmarshal(mqttPayload, env); err != nil {
return nil, err
}
return env, nil
}
// Get the function name of a handler
func getHandlerName(handler Handler) string {
return runtime.FuncForPC(reflect.ValueOf(handler).Pointer()).Name()
}
func validateConfiguration(cfg *Configuration) error {
if cfg == nil {
return nil
}
if cfg.broker != "" {
return errors.New("broker is not expected when using external MQTT client")
} else if cfg.credentials != nil {
return errors.New("credentials are not expected when using external MQTT client")
} else if cfg.disconnectTimeout != defaultDisconnectTimeout && cfg.disconnectTimeout != 0 {
return errors.New("disconnectTimeout is not expected when using external MQTT client")
} else if cfg.keepAlive != defaultKeepAlive && cfg.keepAlive != 0 {
return errors.New("keepAlive is not expected when using external MQTT client")
} else if cfg.connectTimeout != defaultConnectTimeout && cfg.connectTimeout != 0 {
return errors.New("connectTimeout is not expected when using external MQTT client")
} else if cfg.tlsConfig != nil {
return errors.New("TLS configuration is not expected when using external MQTT client")
}
return nil
}
func supportedCipherSuites() []uint16 {
cs := tls.CipherSuites()
cid := make([]uint16, len(cs))
for i := range cs {
cid[i] = cs[i].ID
}
return cid
}
func initCipherSutesMinVersion(tlsConfig *tls.Config) {
if tlsConfig.CipherSuites == nil || len(tlsConfig.CipherSuites) == 0 {
tlsConfig.CipherSuites = supportedCipherSuites()
}
if tlsConfig.MinVersion == 0 {
tlsConfig.MinVersion = tls.VersionTLS12
}
}