Coder Social home page Coder Social logo

Comments (4)

mochi-co avatar mochi-co commented on May 18, 2024

I think so! Have a look at the OnProcessMessage event hook.

https://github.com/mochi-co/mqtt/blob/master/server/events/events.go#L49
https://github.com/mochi-co/mqtt/blob/master/examples/events/main.go

And then you could do something like this...

server.Events.OnProcessMessage = func(cl events.Client, pk events.Packet) (pkx events.Packet, err error) {
  // Check if pk.TopicName is 'someTopic'
  pkx = pk  
  // Modify pkx.TopicName to new topic
  return pkx, nil
}

I'm not sure how you could determine the wildcard domain for the client though. Open to throwing some ideas around. We expose the connecting client address in events.Client.Remote if that's any use.

from server.

torntrousers avatar torntrousers commented on May 18, 2024

Thanks. Thinking about it properly though it would be better to not have a topic prefix but to have a whole seperate instance per sub-domain. So foo.myserver.com and bar.myserver.com are issolated and topic "someTopic" in one is not visible to the other. I guess that means a speperate instance of the Mochi MQTT server for each.

The way I have it presently uses the Go TLS Config GetConfigForClient to get the client hello which has the server name the mqtt client is calling and so from that I can find the subdomain.

type Server struct {
 . . .
	mqttBroker *mqtt.Server
}

. . .

	mqttTlsConfig := &tls.Config{
		GetConfigForClient: s.getConfigForMqttClient,
	}

	s.mqttBroker = mqtt.NewServer(nil)
	tcp := listeners.NewTCP("myMQTT", "localhost:8883")
	err := s.mqttBroker.AddListener(tcp, &listeners.Config{
		Auth:      new(auth.Allow),
		TLSConfig: mqttTlsConfig,
	})
	if err != nil {
		log.Fatal(err)
	}

	go s.mqttBroker.Serve()
	log.Println("MQTT Broker Started!")

. . . 

func (s *Server) getConfigForMqttClient(hi *tls.ClientHelloInfo) (*tls.Config, error) {
	log.Println("Server.getConfigForMqttClient hostName:", hi.ServerName)

	ctx, err := s.GetContext(hi.ServerName)
	if err != nil {
		return nil, err
	}

. . .

but i need some way for that to use multiple instances of Mochi mqtt.Server instead of just the one.

Probably too much for this Github issue and I need to work it out myself...

from server.

mochi-co avatar mochi-co commented on May 18, 2024

@torntrousers Very interested to hear updates if you made any progress on this.

from server.

torntrousers avatar torntrousers commented on May 18, 2024

We ended up implementing our own TLS listener which managed a collection of Mochi MQTT Servers and our listener called the Server EstablishConnection function on the appropriate Server. Seems to work ok.

from server.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.