| 
									
										
										
										
											2019-08-09 12:05:47 -06:00
										 |  |  | // Copyright 2015 Matthew Holt and The Caddy Authors | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // 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 rewrite | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2019-12-12 15:46:13 -07:00
										 |  |  | 	"strconv" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-09 12:19:56 -06:00
										 |  |  | 	"github.com/caddyserver/caddy/v2/caddyconfig/httpcaddyfile" | 
					
						
							| 
									
										
										
										
											2019-08-21 10:46:35 -06:00
										 |  |  | 	"github.com/caddyserver/caddy/v2/modules/caddyhttp" | 
					
						
							| 
									
										
										
										
											2019-08-09 12:05:47 -06:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-21 10:46:35 -06:00
										 |  |  | func init() { | 
					
						
							| 
									
										
										
										
											2019-12-12 15:46:13 -07:00
										 |  |  | 	httpcaddyfile.RegisterHandlerDirective("rewrite", parseCaddyfileRewrite) | 
					
						
							|  |  |  | 	httpcaddyfile.RegisterHandlerDirective("strip_prefix", parseCaddyfileStripPrefix) | 
					
						
							|  |  |  | 	httpcaddyfile.RegisterHandlerDirective("strip_suffix", parseCaddyfileStripSuffix) | 
					
						
							|  |  |  | 	httpcaddyfile.RegisterHandlerDirective("uri_replace", parseCaddyfileURIReplace) | 
					
						
							| 
									
										
										
										
											2019-08-21 10:46:35 -06:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-12 15:46:13 -07:00
										 |  |  | // parseCaddyfileRewrite sets up a basic rewrite handler from Caddyfile tokens. Syntax: | 
					
						
							| 
									
										
										
										
											2019-08-09 12:05:47 -06:00
										 |  |  | // | 
					
						
							|  |  |  | //     rewrite [<matcher>] <to> | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // The <to> parameter becomes the new URI. | 
					
						
							| 
									
										
										
										
											2019-12-12 15:46:13 -07:00
										 |  |  | func parseCaddyfileRewrite(h httpcaddyfile.Helper) (caddyhttp.MiddlewareHandler, error) { | 
					
						
							| 
									
										
										
										
											2019-08-21 10:46:35 -06:00
										 |  |  | 	var rewr Rewrite | 
					
						
							|  |  |  | 	for h.Next() { | 
					
						
							| 
									
										
										
										
											2019-10-16 15:18:02 -06:00
										 |  |  | 		if !h.NextArg() { | 
					
						
							|  |  |  | 			return nil, h.ArgErr() | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-08-21 10:46:35 -06:00
										 |  |  | 		rewr.URI = h.Val() | 
					
						
							| 
									
										
										
										
											2019-10-06 20:46:10 -06:00
										 |  |  | 		if h.NextArg() { | 
					
						
							|  |  |  | 			return nil, h.ArgErr() | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-08-09 12:05:47 -06:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-09-10 14:13:52 -06:00
										 |  |  | 	rewr.Rehandle = true | 
					
						
							| 
									
										
										
										
											2019-08-21 10:46:35 -06:00
										 |  |  | 	return rewr, nil | 
					
						
							| 
									
										
										
										
											2019-08-09 12:05:47 -06:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2019-12-12 15:46:13 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | // parseCaddyfileStripPrefix sets up a handler from Caddyfile tokens. Syntax: | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | //     strip_prefix [<matcher>] <prefix> | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // The request path will be stripped its prefix if it matches <prefix>. | 
					
						
							|  |  |  | func parseCaddyfileStripPrefix(h httpcaddyfile.Helper) (caddyhttp.MiddlewareHandler, error) { | 
					
						
							|  |  |  | 	var rewr Rewrite | 
					
						
							|  |  |  | 	for h.Next() { | 
					
						
							|  |  |  | 		if !h.NextArg() { | 
					
						
							|  |  |  | 			return nil, h.ArgErr() | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		rewr.StripPathPrefix = h.Val() | 
					
						
							|  |  |  | 		if h.NextArg() { | 
					
						
							|  |  |  | 			return nil, h.ArgErr() | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return rewr, nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // parseCaddyfileStripSuffix sets up a handler from Caddyfile tokens. Syntax: | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | //     strip_suffix [<matcher>] <suffix> | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // The request path will be stripped its suffix if it matches <suffix>. | 
					
						
							|  |  |  | func parseCaddyfileStripSuffix(h httpcaddyfile.Helper) (caddyhttp.MiddlewareHandler, error) { | 
					
						
							|  |  |  | 	var rewr Rewrite | 
					
						
							|  |  |  | 	for h.Next() { | 
					
						
							|  |  |  | 		if !h.NextArg() { | 
					
						
							|  |  |  | 			return nil, h.ArgErr() | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		rewr.StripPathSuffix = h.Val() | 
					
						
							|  |  |  | 		if h.NextArg() { | 
					
						
							|  |  |  | 			return nil, h.ArgErr() | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return rewr, nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // parseCaddyfileURIReplace sets up a handler from Caddyfile tokens. Syntax: | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | //     uri_replace [<matcher>] <find> <replace> [<limit>] | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // Substring replacements will be performed on the request URI up to the | 
					
						
							|  |  |  | // number specified by limit, if any (default = 0, or no limit). | 
					
						
							|  |  |  | func parseCaddyfileURIReplace(h httpcaddyfile.Helper) (caddyhttp.MiddlewareHandler, error) { | 
					
						
							|  |  |  | 	var rewr Rewrite | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	var repls []replacer | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for h.Next() { | 
					
						
							|  |  |  | 		args := h.RemainingArgs() | 
					
						
							|  |  |  | 		var find, replace, lim string | 
					
						
							|  |  |  | 		switch len(args) { | 
					
						
							|  |  |  | 		case 3: | 
					
						
							|  |  |  | 			lim = args[2] | 
					
						
							|  |  |  | 			fallthrough | 
					
						
							|  |  |  | 		case 2: | 
					
						
							|  |  |  | 			find = args[0] | 
					
						
							|  |  |  | 			replace = args[1] | 
					
						
							|  |  |  | 		default: | 
					
						
							|  |  |  | 			return nil, h.ArgErr() | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		var limInt int | 
					
						
							|  |  |  | 		if lim != "" { | 
					
						
							|  |  |  | 			var err error | 
					
						
							|  |  |  | 			limInt, err = strconv.Atoi(lim) | 
					
						
							|  |  |  | 			if err != nil { | 
					
						
							|  |  |  | 				return nil, h.Errf("limit must be an integer; invalid: %v", err) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		repls = append(repls, replacer{ | 
					
						
							|  |  |  | 			Find:    find, | 
					
						
							|  |  |  | 			Replace: replace, | 
					
						
							|  |  |  | 			Limit:   limInt, | 
					
						
							|  |  |  | 		}) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	rewr.URISubstring = repls | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return rewr, nil | 
					
						
							|  |  |  | } |