# Writing a Middleware

RoadRunner provides a flexible and extensible architecture that allows developers to build custom middleware for `http` and custom interceptors for the `grpc` and `temporal` plugins. Moving highly loaded parts of an application, such as authentication, to middleware written in Go can provide a significant performance boost. By leveraging the speed and efficiency of Go, developers can improve the overall performance of their application and handle spikes in traffic more effectively.

The middleware architecture allows developers to create custom middleware for their specific needs. The HTTP middleware can be used to intercept and modify HTTP requests and responses, while a gRPC interceptor can be used to intercept and modify gRPC requests and responses. This allows developers to add functionality to their applications without having to modify the core application logic.

## HTTP

The HTTP middleware intercepts incoming HTTP requests and can be used to perform additional processing, such as authentication, rate limiting, and logging.

To create custom middleware for HTTP requests in RoadRunner, follow these steps:

1. Define a struct that implements the `Init()`, `Middleware()`, and `Name()` methods. The `Init()` method is called when the plugin is initialized, the `Middleware()` method is called for each incoming HTTP request, and the `Name()` method returns the name of the middleware/plugin.
2. In the `Middleware()` method, perform any necessary processing on the incoming HTTP request, and then call the next middleware in the pipeline using the `next.ServeHTTP()` method.

Here is an example:

{% code title="middleware.go" %}

```go
package middleware

import (
    "net/http"
)

const PluginName = "middleware"

type Plugin struct{}

// to declare plugin
func (p *Plugin) Init() error {
    return nil
}

func (p *Plugin) Middleware(next http.Handler) http.Handler {
    return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
        // do something
        // ...
        // continue request through the middleware pipeline
        next.ServeHTTP(w, r)
    })
}

// Middleware/plugin name.
func (p *Plugin) Name() string {
    return PluginName
}
```

{% endcode %}

{% hint style="info" %}
Middleware must correspond to the following [interface](https://github.com/roadrunner-server/http/blob/master/common/interfaces.go#L33) and be [named](https://github.com/roadrunner-server/endure/blob/master/container.go#L47).
{% endhint %}

## gRPC

The interceptor intercepts incoming gRPC requests and can be used to perform additional processing, such as authentication, rate limiting, and logging.

To create a custom interceptor for gRPC requests in RoadRunner, follow these steps:

1. Define a struct that implements the `Init()`, `Interceptor()`, and `Name()` methods. The `Init()` method is called when the plugin is initialized, the `Interceptor()` method is called for each incoming gRPC request, and the `Name()` method returns the name of the middleware/plugin.
2. In the `Interceptor()` method, perform any necessary processing on the incoming gRPC request, and then call the next interceptor in the pipeline using the `handler(ctx, req)` method.

{% hint style="warning" %}
RoadRunner supports `gRPC` interceptors since version `v2023.2.0`.
{% endhint %}

Here is an example:

{% code title="middleware.go" %}

```go
package middleware

import (
    "net/http"
)

const PluginName = "interceptor"

type Plugin struct{}

// to declare plugin
func (p *Plugin) Init() error {
    return nil
}

func (p *Plugin) UnaryServerInterceptor() grpc.UnaryServerInterceptor {
        // Do something and return interceptor
}

// Middleware/plugin name.
func (p *Plugin) Name() string {
    return PluginName
}
```

{% endcode %}

{% hint style="info" %}
Interceptor must correspond to the following [interface](https://github.com/roadrunner-server/grpc/blob/master/common/interfaces.go#L14) and be [named](https://github.com/roadrunner-server/endure/blob/master/container.go#L47).
{% endhint %}

You can find a lot of examples here: [link](https://github.com/grpc-ecosystem/go-grpc-middleware). Keep in mind that, at the moment, RR supports only `UnaryServerInterceptor` gRPC interceptors.

## PSR7 Attributes

PSR7 attributes are a way of attaching metadata to an incoming HTTP request or response. The PSR7 specification defines a standard interface for HTTP messages, which includes the ability to set and retrieve attributes on both requests and responses.

Attributes can be used to store any kind of metadata that might be useful for processing the request or response. For example, you might use attributes to store information about the authenticated user, the user's IP address, or any other custom data that you want to attach to the request.

The `Psr\Http\Message\ServerRequestInterface->getAttributes()` method can be used to retrieve attributes from an incoming HTTP request, while the `ResponseInterface->withAttribute()` method can be used to set attributes on an outgoing HTTP response.

You can safely pass values to a PHP application and retrieve attributes on the PHP side using the `Psr\Http\Message\ServerRequestInterface->getAttributes()` method through the [attributes](https://github.com/roadrunner-server/http/blob/master/attributes/attributes.go) package:

{% code title="middleware.go" %}

```go
func (s *Service) Middleware(next http.HandlerFunc) http.HandlerFunc {
    return func(w http.ResponseWriter, r *http.Request) {
        r = attributes.Init(r)
        attributes.Set(r, "key", "value")
        next.ServeHTTP(w, r)
    }
}
```

{% endcode %}

{% hint style="info" %}
To retrieve the attributes in a PHP application, you would need to use a PSR-7 implementation that supports the `getAttributes()` method. For example, the `nyholm/psr7` package provides a PSR-7 implementation that supports it.
{% endhint %}

## Registering middleware

You must register this service in the [container/plugins.go](https://github.com/roadrunner-server/roadrunner/blob/master/container/plugins.go) file to properly resolve dependencies:

{% code title="plugin.go" %}

```go
package roadrunner

import (
    "middleware"
)

func Plugins() []any {
    return []any {
    // ...
    
    // middleware
    &middleware.Plugin{},
    
    // ...
}
```

{% endcode %}

Or you can use the Velox tool to [build the RR binary](https://docs.roadrunner.dev/docs/customization/build).

You should also make sure you configure the middleware to be used via the [config or the command line](https://docs.roadrunner.dev/docs/general/config). Otherwise, the plugin will be loaded, but the middleware will not be used with incoming requests.

{% code title=".rr.yaml" %}

```yaml
http:
  # Provide the plugin name (in this example, "middleware")
  middleware: [ "middleware" ]
```

{% endcode %}

## Video tutorial

### Writing a middleware for HTTP

{% embed url="<https://www.youtube.com/watch?v=f5fUSYaDKxo>" %}
