Stop redirecting pages if there's a redirect=no parameter

This commit is contained in:
blankie 2022-11-29 20:28:28 +07:00
parent a661ddb313
commit c29ae48ba5
Signed by: blankie
GPG Key ID: CC15FC822C7F61F5
1 changed files with 4 additions and 1 deletions

View File

@ -317,10 +317,13 @@
#:head-data head-data
#:siteinfo siteinfo))
(define redirect-msg ((query-selector (attribute-selector 'class "redirectMsg") body)))
(define redirect-query-parameter (dict-ref (url-query (request-uri req)) 'redirect "yes"))
(define headers
(build-headers
always-headers
(when redirect-msg
; no need to check for any other possible string value since only "no" is interpreted
; https://github.com/Wikia/app/blob/fe60579a53f16816d65dad1644363160a63206a6/includes/Wiki.php#L367
(when (and redirect-msg (not (equal? redirect-query-parameter "no")))
(let* ([dest (get-attribute 'href (bits->attributes ((query-selector (λ (t a c) (eq? t 'a)) redirect-msg))))]
[value (bytes-append #"0;url=" (string->bytes/utf-8 dest))])
(header #"Refresh" value)))))