clearcase/internal/setup/webui_handler.go

64 lines
1.9 KiB
Go

package setup
import (
"context"
"net/http"
"forge.cadoles.com/wpetit/clearcase/internal/config"
"forge.cadoles.com/wpetit/clearcase/internal/http/handler/webui"
"forge.cadoles.com/wpetit/clearcase/internal/http/handler/webui/common"
"github.com/pkg/errors"
)
func NewWebUIHandlerFromConfig(ctx context.Context, conf *config.Config) (*webui.Handler, error) {
opts := make([]webui.OptionFunc, 0)
// Configure auth handler
authHandler, err := NewAuthHandlerFromConfig(ctx, conf)
if err != nil {
return nil, errors.Wrap(err, "could not configure auth handler from config")
}
authMiddleware := authHandler.Middleware()
opts = append(opts, webui.WithMount("/auth/", authHandler))
// Configure index redirect
opts = append(opts, webui.WithMount("/", authMiddleware(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
http.Redirect(w, r, "/issue", http.StatusTemporaryRedirect)
}))))
// Configure issue handler
issueHandler, err := NewIssueHandlerFromConfig(ctx, conf)
if err != nil {
return nil, errors.Wrap(err, "could not configure issue handler from config")
}
opts = append(opts, webui.WithMount("/issue/", authMiddleware(issueHandler)))
// Configure pull request handler
pullRequestHandler, err := NewPullRequestHandlerFromConfig(ctx, conf)
if err != nil {
return nil, errors.Wrap(err, "could not configure pull request handler from config")
}
opts = append(opts, webui.WithMount("/pullrequest/", authMiddleware(pullRequestHandler)))
// Configure common handler
commonHandler, err := NewCommonHandlerFromConfig(ctx, conf)
if err != nil {
return nil, errors.Wrap(err, "could not configure common handler from config")
}
opts = append(opts, webui.WithMount("/assets/", commonHandler))
handler := webui.NewHandler(opts...)
return handler, nil
}
func NewCommonHandlerFromConfig(ctx context.Context, conf *config.Config) (*common.Handler, error) {
return common.NewHandler(), nil
}