Skip to content
Snippets Groups Projects
Select Git revision
  • 69400f0bc6de0f892fccc4e1fe089744f9f5062b
  • master default protected
  • greenkeeper/webpack-4.10.1
  • greenkeeper/webpack-4.10.0
  • greenkeeper/webpack-4.9.2
  • greenkeeper/promise-polyfill-8.0.0
  • greenkeeper/webpack-4.9.1
  • greenkeeper/webpack-4.9.0
  • greenkeeper/webpack-manifest-plugin-2.0.3
  • greenkeeper/update-to-node-10
  • gh-pages
  • greenkeeper/webpack-4.8.3
  • greenkeeper/webpack-4.8.2
  • greenkeeper/webpack-4.7.0
  • greenkeeper/webpack-manifest-plugin-2.0.2
  • greenkeeper/webpack-manifest-plugin-2.0.1
  • greenkeeper/style-loader-0.21.0
  • greenkeeper/webpack-4.6.0
  • greenkeeper/sass-loader-7.0.1
  • greenkeeper/sass-loader-7.0.0
  • greenkeeper/webpack-manifest-plugin-2.0.0
  • 2.7.3
  • 2.7.2
  • 2.7.1
  • 2.7.0
  • 2.6.6
  • 2.6.5
  • 2.6.4
  • 2.6.3
  • 2.6.2
  • 2.6.1
  • 2.6.0
  • 2.5.5
  • 2.5.4
  • 2.5.3
  • 2.5.2
  • 2.5.1
  • 2.5.0
  • 2.4.0
  • 2.3.0
  • 2.2.6
41 results

setup.py

Blame
  • middleware.go 12.44 KiB
    /*
    Copyright 2015 All rights reserved.
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package main
    
    import (
    	"fmt"
    	"net/http"
    	"regexp"
    	"strings"
    	"time"
    
    	"github.com/PuerkitoBio/purell"
    	log "github.com/Sirupsen/logrus"
    	"github.com/coreos/go-oidc/jose"
    	"github.com/labstack/echo"
    	"github.com/prometheus/client_golang/prometheus"
    	"github.com/unrolled/secure"
    )
    
    const normalizeFlags purell.NormalizationFlags = purell.FlagRemoveDotSegments | purell.FlagRemoveDuplicateSlashes
    
    // proxyRevokeMiddleware is just a helper to drop all requests proxying
    func (r *oauthProxy) proxyRevokeMiddleware() echo.MiddlewareFunc {
    	return func(next echo.HandlerFunc) echo.HandlerFunc {
    		return func(cx echo.Context) error {
    			r.revokeProxy(cx)
    			cx.NoContent(http.StatusForbidden)
    			return next(cx)
    		}
    	}
    }
    
    // filterMiddleware is custom filtering for incoming requests
    func (r *oauthProxy) filterMiddleware() echo.MiddlewareFunc {
    	return func(next echo.HandlerFunc) echo.HandlerFunc {
    		return func(cx echo.Context) error {
    			// step: keep a copy of the original
    			keep := cx.Request().URL.Path
    			purell.NormalizeURL(cx.Request().URL, normalizeFlags)
    			cx.Request().URL.RawPath = cx.Request().URL.Path
    			cx.Request().RequestURI = cx.Request().URL.Path
    			// step: continue the flow
    			next(cx)
    			// step: place back the original uri for proxying request
    			cx.Request().URL.Path = keep
    			cx.Request().URL.RawPath = keep
    			cx.Request().RequestURI = keep
    
    			return nil
    		}
    	}
    }
    
    // loggingMiddleware is a custom http logger
    func (r *oauthProxy) loggingMiddleware() echo.MiddlewareFunc {
    	return func(next echo.HandlerFunc) echo.HandlerFunc {
    		return func(cx echo.Context) error {