60 lines
1.3 KiB
Go
60 lines
1.3 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"os"
|
|
"os/signal"
|
|
"syscall"
|
|
|
|
"github.com/logrusorgru/aurora"
|
|
|
|
mqtt "github.com/mochi-co/mqtt/server"
|
|
"github.com/mochi-co/mqtt/server/listeners"
|
|
)
|
|
|
|
func main() {
|
|
sigs := make(chan os.Signal, 1)
|
|
done := make(chan bool, 1)
|
|
signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
|
|
go func() {
|
|
<-sigs
|
|
done <- true
|
|
}()
|
|
|
|
fmt.Println(aurora.Magenta("Mochi MQTT Server initializing..."), aurora.Cyan("PAHO Testing Suite"))
|
|
|
|
server := mqtt.New()
|
|
tcp := listeners.NewTCP("t1", ":1883")
|
|
err := server.AddListener(tcp, &listeners.Config{
|
|
Auth: new(Auth),
|
|
})
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
go server.Serve()
|
|
fmt.Println(aurora.BgMagenta(" Started! "))
|
|
|
|
<-done
|
|
fmt.Println(aurora.BgRed(" Caught Signal "))
|
|
|
|
server.Close()
|
|
fmt.Println(aurora.BgGreen(" Finished "))
|
|
}
|
|
|
|
// Auth is an example auth provider for the server.
|
|
type Auth struct{}
|
|
|
|
// Authenticate returns true if a username and password are acceptable.
|
|
// Auth always returns true.
|
|
func (a *Auth) Authenticate(user, password []byte) bool {
|
|
return true
|
|
}
|
|
|
|
// ACL returns true if a user has access permissions to read or write on a topic.
|
|
// ACL is used to deny access to a specific topic to satisfy Test.test_subscribe_failure.
|
|
func (a *Auth) ACL(user []byte, topic string, write bool) bool {
|
|
return topic != "test/nosubscribe"
|
|
}
|