Git Product home page Git Product logo

go-middleware's Introduction

go-middleware

Middleware for Go functions.

Works perfectly with socket.io event handlers โ€“ https://github.com/googollee/go-socket.io

Installation

go get github.com/fakundo/go-middleware

Usage

Create middleware

import (
  middleware "github.com/fakundo/go-middleware"
  socketio "github.com/googollee/go-socket.io"
)

var requireAuth = middleware.Create(func(s socketio.Conn, next func()) {
  if authorized(s) {
    next()
  } else {
    s.emit("error", AuthError)
  }
})

Use it

import socketio "github.com/googollee/go-socket.io"

io, _ = socketio.NewServer(nil)

io.OnEvent("/", "some-event", requireAuth(func(s socketio.Conn) {
  // some event handler code
}))


io.OnEvent("/", "another-event", requireAuth(func(s socketio.Conn, arg string) {
  // another event handler code
}))

Middleware composition

import middleware "github.com/fakundo/go-middleware"

...

io.OnEvent("/", "event", middleware.Use(someMiddleware, requireAuth, func(s socketio.Conn) {
  // event handler code
}))

About middleware behaviour

  • currently the decorated function type must be interface (exactly like socket.io event handlers)
  • the origin function and middleware can have different number of arguments, middleware will only take required arguments, and the last argument is always next
  • next() calls the origin function
  • the origin function may return something, so next() will return that too

License

MIT

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.