forked from cadence/breezewiki
		
	Really fix semicolons in URL
This commit is contained in:
		
							parent
							
								
									040d9b94de
								
							
						
					
					
						commit
						a1bba22054
					
				
					 1 changed files with 37 additions and 20 deletions
				
			
		|  | @ -35,23 +35,40 @@ | ||||||
| 
 | 
 | ||||||
| (define (make-dispatcher-tree ds) | (define (make-dispatcher-tree ds) | ||||||
|   (define subdomain-dispatcher (hash-ref ds 'subdomain-dispatcher)) |   (define subdomain-dispatcher (hash-ref ds 'subdomain-dispatcher)) | ||||||
|   (sequencer:make |   (define tree | ||||||
|    subdomain-dispatcher |     (sequencer:make | ||||||
|    (pathprocedure:make "/" (hash-ref ds 'page-home)) |      subdomain-dispatcher | ||||||
|    (pathprocedure:make "/proxy" (hash-ref ds 'page-proxy)) |      (pathprocedure:make "/" (hash-ref ds 'page-home)) | ||||||
|    (pathprocedure:make "/search" (hash-ref ds 'page-global-search)) |      (pathprocedure:make "/proxy" (hash-ref ds 'page-proxy)) | ||||||
|    (pathprocedure:make "/set-user-settings" (hash-ref ds 'page-set-user-settings)) |      (pathprocedure:make "/search" (hash-ref ds 'page-global-search)) | ||||||
|    (pathprocedure:make "/buddyfight/wiki/It_Doesn't_Work!!" (hash-ref ds 'page-it-works)) |      (pathprocedure:make "/set-user-settings" (hash-ref ds 'page-set-user-settings)) | ||||||
|    (filter:make (pregexp (format "^/~a/wiki/Category:.+$" px-wikiname)) (lift:make (hash-ref ds 'page-category))) |      (pathprocedure:make "/buddyfight/wiki/It_Doesn't_Work!!" (hash-ref ds 'page-it-works)) | ||||||
|    (filter:make (pregexp (format "^/~a/wiki/File:.+$" px-wikiname)) (lift:make (hash-ref ds 'page-file))) |      (filter:make (pregexp (format "^/~a/wiki/Category:.+$" px-wikiname)) (lift:make (hash-ref ds 'page-category))) | ||||||
|    (if (config-true? 'feature_offline::enabled) |      (filter:make (pregexp (format "^/~a/wiki/File:.+$" px-wikiname)) (lift:make (hash-ref ds 'page-file))) | ||||||
|        (filter:make (pregexp (format "^/~a/wiki/.+$" px-wikiname)) (lift:make (hash-ref ds 'page-wiki-offline))) |      (if (config-true? 'feature_offline::enabled) | ||||||
|        (λ (_conn _req) (next-dispatcher))) |          (filter:make (pregexp (format "^/~a/wiki/.+$" px-wikiname)) (lift:make (hash-ref ds 'page-wiki-offline))) | ||||||
|    (filter:make (pregexp (format "^/~a/wiki/.+$" px-wikiname)) (lift:make (hash-ref ds 'page-wiki))) |          (λ (_conn _req) (next-dispatcher))) | ||||||
|    (filter:make (pregexp (format "^/~a/search$" px-wikiname)) (lift:make (hash-ref ds 'page-search))) |      (filter:make (pregexp (format "^/~a/wiki/.+$" px-wikiname)) (lift:make (hash-ref ds 'page-wiki))) | ||||||
|    (filter:make (pregexp (format "^/~a(/(wiki(/)?)?)?$" px-wikiname)) (lift:make (hash-ref ds 'redirect-wiki-home))) |      (filter:make (pregexp (format "^/~a/search$" px-wikiname)) (lift:make (hash-ref ds 'page-search))) | ||||||
|    (if (config-true? 'feature_offline::enabled) |      (filter:make (pregexp (format "^/~a(/(wiki(/)?)?)?$" px-wikiname)) (lift:make (hash-ref ds 'redirect-wiki-home))) | ||||||
|        (filter:make (pregexp (format "^/archive/~a/(styles|images)/.+$" px-wikiname)) (lift:make (hash-ref ds 'page-static-archive))) |      (if (config-true? 'feature_offline::enabled) | ||||||
|        (λ (_conn _req) (next-dispatcher))) |          (filter:make (pregexp (format "^/archive/~a/(styles|images)/.+$" px-wikiname)) (lift:make (hash-ref ds 'page-static-archive))) | ||||||
|    (hash-ref ds 'static-dispatcher) |          (λ (_conn _req) (next-dispatcher))) | ||||||
|    (lift:make (hash-ref ds 'page-not-found)))) |      (hash-ref ds 'static-dispatcher) | ||||||
|  |      (lift:make (hash-ref ds 'page-not-found)))) | ||||||
|  |   (make-semicolon-fixer-dispatcher tree)) | ||||||
|  | 
 | ||||||
|  | (define ((make-semicolon-fixer-dispatcher orig-dispatcher) conn orig-req) | ||||||
|  |   (define orig-uri (request-uri orig-req)) | ||||||
|  |   (define pps (url-path orig-uri)) ; list of path/param structs | ||||||
|  |   (define new-path | ||||||
|  |     (for/list ([pp pps]) | ||||||
|  |       (if (null? (path/param-param pp)) | ||||||
|  |           pp | ||||||
|  |           ;; path/param does have params, which need to be fixed into a semicolon. | ||||||
|  |           (path/param | ||||||
|  |            (string-append (path/param-path pp) ";" (string-join (path/param-param pp) ";")) | ||||||
|  |            null)))) | ||||||
|  |   (define new-uri (struct-copy url orig-uri [path new-path])) | ||||||
|  |   (define new-req (struct-copy request orig-req [uri new-uri])) | ||||||
|  |   (orig-dispatcher conn new-req)) | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue