2018-04-27 23:38:46 -04:00
|
|
|
// Copyright 2018 Frédéric Guillot. All rights reserved.
|
|
|
|
// Use of this source code is governed by the Apache 2.0
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2018-08-25 00:51:50 -04:00
|
|
|
package middleware // import "miniflux.app/middleware"
|
2018-04-27 23:38:46 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/gorilla/mux"
|
2018-08-25 00:51:50 -04:00
|
|
|
"miniflux.app/config"
|
|
|
|
"miniflux.app/storage"
|
2018-04-27 23:38:46 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// Middleware handles different middleware handlers.
|
|
|
|
type Middleware struct {
|
|
|
|
cfg *config.Config
|
|
|
|
store *storage.Storage
|
|
|
|
router *mux.Router
|
|
|
|
}
|
|
|
|
|
|
|
|
// New returns a new middleware.
|
|
|
|
func New(cfg *config.Config, store *storage.Storage, router *mux.Router) *Middleware {
|
|
|
|
return &Middleware{cfg, store, router}
|
|
|
|
}
|