mirror of https://github.com/grafana/grafana.git
28 lines
937 B
Go
28 lines
937 B
Go
package live
|
|
|
|
import (
|
|
"github.com/centrifugal/centrifuge"
|
|
"github.com/grafana/grafana/pkg/models"
|
|
"github.com/grafana/grafana/pkg/plugins"
|
|
)
|
|
|
|
// PluginHandler manages all the `grafana/dashboard/*` channels
|
|
type PluginHandler struct {
|
|
Plugin *plugins.PluginBase
|
|
}
|
|
|
|
// GetHandlerForPath called on init
|
|
func (h *PluginHandler) GetHandlerForPath(path string) (models.ChannelHandler, error) {
|
|
return h, nil // all dashboards share the same handler
|
|
}
|
|
|
|
// OnSubscribe for now allows anyone to subscribe
|
|
func (h *PluginHandler) OnSubscribe(c *centrifuge.Client, e centrifuge.SubscribeEvent) (centrifuge.SubscribeReply, error) {
|
|
return centrifuge.SubscribeReply{}, nil
|
|
}
|
|
|
|
// OnPublish checks if a message from the websocket can be broadcast on this channel
|
|
func (h *PluginHandler) OnPublish(c *centrifuge.Client, e centrifuge.PublishEvent) (centrifuge.PublishReply, error) {
|
|
return centrifuge.PublishReply{}, nil // broadcast any event
|
|
}
|