mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 06:47:20 +08:00
66 lines
1.8 KiB
Go
66 lines
1.8 KiB
Go
package middleware
|
|
|
|
import (
|
|
"log/slog"
|
|
"net/http"
|
|
"path/filepath"
|
|
|
|
"github.com/acepanel/panel/internal/app"
|
|
"github.com/go-chi/chi/v5"
|
|
"github.com/go-chi/chi/v5/middleware"
|
|
"github.com/golang-cz/httplog"
|
|
"github.com/google/wire"
|
|
"github.com/knadh/koanf/v2"
|
|
"github.com/leonelquinteros/gotext"
|
|
"github.com/libtnb/sessions"
|
|
sessionmiddleware "github.com/libtnb/sessions/middleware"
|
|
"gopkg.in/natefinch/lumberjack.v2"
|
|
|
|
"github.com/acepanel/panel/internal/biz"
|
|
)
|
|
|
|
var ProviderSet = wire.NewSet(NewMiddlewares)
|
|
|
|
type Middlewares struct {
|
|
conf *koanf.Koanf
|
|
log *slog.Logger
|
|
session *sessions.Manager
|
|
appRepo biz.AppRepo
|
|
userToken biz.UserTokenRepo
|
|
}
|
|
|
|
func NewMiddlewares(conf *koanf.Koanf, session *sessions.Manager, appRepo biz.AppRepo, userToken biz.UserTokenRepo) *Middlewares {
|
|
ljLogger := &lumberjack.Logger{
|
|
Filename: filepath.Join(app.Root, "panel/storage/logs/http.log"),
|
|
MaxSize: 10,
|
|
MaxAge: 30,
|
|
Compress: true,
|
|
}
|
|
|
|
return &Middlewares{
|
|
conf: conf,
|
|
log: slog.New(slog.NewJSONHandler(ljLogger, &slog.HandlerOptions{Level: slog.LevelInfo})),
|
|
session: session,
|
|
appRepo: appRepo,
|
|
userToken: userToken,
|
|
}
|
|
}
|
|
|
|
// Globals is a collection of global middleware that will be applied to every request.
|
|
func (r *Middlewares) Globals(t *gotext.Locale, mux *chi.Mux) []func(http.Handler) http.Handler {
|
|
return []func(http.Handler) http.Handler{
|
|
middleware.Recoverer,
|
|
//middleware.SupressNotFound(mux),// bug https://github.com/go-chi/chi/pull/940
|
|
httplog.RequestLogger(r.log, &httplog.Options{
|
|
Level: slog.LevelInfo,
|
|
LogRequestHeaders: []string{"User-Agent"},
|
|
}),
|
|
middleware.Compress(5),
|
|
sessionmiddleware.StartSession(r.session),
|
|
Status(t),
|
|
Entrance(t, r.conf, r.session),
|
|
MustLogin(t, r.session, r.userToken),
|
|
MustInstall(t, r.appRepo),
|
|
}
|
|
}
|