iris/middleware
2020-10-18 17:15:29 +03:00
..
accesslog accesslog: new HumanTime option as requested at #1661 2020-10-16 09:53:22 +03:00
basicauth Add Context.SetUser and Context.User methods 2020-10-12 15:52:53 +03:00
grpc add a full gRPC example as previously requested at: https://github.com/kataras/iris/issues/1449 2020-03-07 12:53:23 +02:00
hcaptcha (#1554) Add support for all common compressions (write and read) 2020-07-10 23:21:09 +03:00
jwt jwt: add the (last) helper: VerifyRefreshToken 2020-10-18 17:15:29 +03:00
logger add accesslog middleware (rel: #1601) 2020-09-06 10:38:48 +03:00
methodoverride version 12.1.5 2020-02-02 16:29:06 +02:00
pprof mvc: struct field and method dependency logs on debug level. Read HISTORY.md 2020-08-24 21:44:29 +03:00
rate (#1554) Add support for all common compressions (write and read) 2020-07-10 23:21:09 +03:00
recaptcha (#1554) Add support for all common compressions (write and read) 2020-07-10 23:21:09 +03:00
recover recover, accesslog middlewares: give more information to the stored error, accesslog: make use of that information and introduce panic log levels 2020-09-10 21:03:34 +03:00
requestid add HashGenerator on requestid middleware 2020-07-15 11:18:40 +03:00
rewrite update the subdomain redirect example using the rewrite middleware 2020-08-26 00:07:07 +03:00
README.md New JWT features and changes (examples updated). Improvements on the Context User and Private Error features 2020-10-17 06:40:17 +03:00

Builtin Handlers

Middleware Example
rewrite iris/_examples/routing/rewrite
basic authentication iris/_examples/auth/basicauth
request logger iris/_examples/logging/request-logger
HTTP method override iris/middleware/methodoverride/methodoverride_test.go
profiling (pprof) iris/_examples/pprof
Google reCAPTCHA iris/_examples/auth/recaptcha
hCaptcha iris/_examples/auth/recaptcha
recovery iris/_examples/recover
rate iris/_examples/request-ratelimit
jwt iris/_examples/auth/jwt
requestid iris/middleware/requestid/requestid_test.go

Community made

Most of the experimental handlers are ported to work with iris's handler form, from third-party sources.

Middleware Description Example
jwt Middleware checks for a JWT on the Authorization header on incoming requests and decodes it iris-contrib/middleware/jwt/_example
cors HTTP Access Control iris-contrib/middleware/cors/_example
secure Middleware that implements a few quick security wins iris-contrib/middleware/secure/_example
tollbooth Generic middleware to rate-limit HTTP requests iris-contrib/middleware/tollboothic/_examples/limit-handler
cloudwatch AWS cloudwatch metrics middleware iris-contrib/middleware/cloudwatch/_example
new relic Official New Relic Go Agent iris-contrib/middleware/newrelic/_example
prometheus Easily create metrics endpoint for the prometheus instrumentation tool iris-contrib/middleware/prometheus/_example
casbin An authorization library that supports access control models like ACL, RBAC, ABAC iris-contrib/middleware/casbin/_examples
sentry-go (ex. raven) Sentry client in Go sentry-go/example/iris
csrf Cross-Site Request Forgery Protection iris-contrib/middleware/csrf/_example
throttler Rate limiting access to HTTP endpoints iris-contrib/middleware/throttler/_example

Third-Party Handlers

Iris has its own middleware form of func(ctx iris.Context) but it's also compatible with all net/http middleware forms. See here.

Here's a small list of useful third-party handlers:

Middleware Description
goth OAuth, OAuth2 authentication. Example
permissions2 Cookies, users and permissions. Example
csp Content Security Policy (CSP) support
delay Add delays/latency to endpoints. Useful when testing effects of high latency
onthefly Generate TinySVG, HTML and CSS on the fly
RestGate Secure authentication for REST API endpoints
stats Store information about your web application (response time, etc.)
VanGoH Configurable AWS-Style HMAC authentication middleware
digits Middleware that handles Twitter Digits authentication

Feel free to put up your own middleware in this list!