GithubHelp home page GithubHelp logo

Gin framework support about golongpoll HOT 7 CLOSED

jcuga avatar jcuga commented on September 25, 2024 1
Gin framework support

from golongpoll.

Comments (7)

jcuga avatar jcuga commented on September 25, 2024 2

From a quick glance, I believe one can do the following with golongpoll + gin:

package main

import (
	"net/http"

	"github.com/gin-gonic/gin"

	"github.com/jcuga/golongpoll"
)

func main() {
	// Create longpoll manger with default opts
	manager, err := golongpoll.StartLongpoll(golongpoll.Options{})
	if err != nil {
		panic(err)
	}

	router := gin.Default()
	router.POST("/pub", wrapWithContext(manager.PublishHandler))
	router.GET("/sub", wrapWithContext(manager.SubscriptionHandler))
	router.Run(":8001")
}

func wrapWithContext(lpHandler func(http.ResponseWriter, *http.Request)) func(*gin.Context) {
	return func(c *gin.Context) {
		lpHandler(c.Writer, c.Request)
	}
}

This will let you stick the longpoll pub/sub handlers within a router.POST and router.GET handler.

Is this what you wanted, or something more?

I could make a gin-longpoll repo that provides some convenience functions for doing this... Is there anything more to it than this?

from golongpoll.

GwynethLlewelyn avatar GwynethLlewelyn commented on September 25, 2024 1

(Good, I'm so glad I'm not the only one thinking about the same!)

Er, +1 on this issue/question/suggestion!

from golongpoll.

jcuga avatar jcuga commented on September 25, 2024 1

Closing as README now has example of using with gin via: 958739a

from golongpoll.

jcuga avatar jcuga commented on September 25, 2024

I haven't used gin but I plan on taking a look into what sort of lift this would entail. Stay tuned!

from golongpoll.

jcuga avatar jcuga commented on September 25, 2024

I wonder if the above example would "just work" with any of gin middleware before/after it gets to the pub/sub handlers. I'd imagine it should?

from golongpoll.

hims1911 avatar hims1911 commented on September 25, 2024

@jcuga thanks for the solution which you've provided. I think its better if we create a separate repo so that later people can add more issues and enhancements to the same.

I wonder if the above example would "just work" with any of gin middleware before/after it gets to the pub/sub handlers. I'd imagine it should?

let me try I will update you on this.

from golongpoll.

jcuga avatar jcuga commented on September 25, 2024

I added the above gin example to the readme in 958739a

from golongpoll.

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.