2022-08-23 09:57:42 +00:00
|
|
|
#lang racket/base
|
2022-09-08 02:05:47 +00:00
|
|
|
(require racket/string
|
2022-09-09 03:42:20 +00:00
|
|
|
(prefix-in easy: net/http-easy)
|
|
|
|
html-writing
|
|
|
|
web-server/http
|
2022-09-08 02:05:47 +00:00
|
|
|
"config.rkt"
|
2022-09-16 13:56:03 +00:00
|
|
|
"data.rkt"
|
2022-09-08 02:05:47 +00:00
|
|
|
"xexpr-utils.rkt"
|
|
|
|
"url-utils.rkt")
|
2022-08-23 09:57:42 +00:00
|
|
|
|
|
|
|
(provide
|
|
|
|
; timeout durations for http-easy requests
|
|
|
|
timeouts
|
2022-09-04 13:58:45 +00:00
|
|
|
; generates a consistent footer
|
|
|
|
application-footer
|
2022-08-23 09:57:42 +00:00
|
|
|
; generates a consistent template for wiki page content to sit in
|
2022-09-09 03:42:20 +00:00
|
|
|
generate-wiki-page
|
|
|
|
; generates a minimal but complete redirect to another page
|
|
|
|
generate-redirect)
|
2022-08-23 09:57:42 +00:00
|
|
|
|
|
|
|
(module+ test
|
|
|
|
(require rackunit
|
|
|
|
html-writing))
|
|
|
|
|
2022-09-09 03:42:20 +00:00
|
|
|
(define timeouts (easy:make-timeout-config #:lease 5 #:connect 5))
|
2022-08-23 09:57:42 +00:00
|
|
|
|
2022-09-16 13:56:03 +00:00
|
|
|
(define (application-footer source-url #:license [license-in #f])
|
|
|
|
(define license (or license-in license-default))
|
2022-09-04 13:58:45 +00:00
|
|
|
`(footer (@ (class "custom-footer"))
|
|
|
|
(div (@ (class ,(if source-url "custom-footer__cols" "internal-footer")))
|
|
|
|
(div (p
|
|
|
|
(img (@ (class "my-logo") (src "/static/breezewiki.svg"))))
|
|
|
|
(p
|
|
|
|
(a (@ (href "https://gitdab.com/cadence/breezewiki"))
|
|
|
|
,(format "~a source code" (config-get 'application_name))))
|
|
|
|
(p
|
|
|
|
(a (@ (href "https://docs.breezewiki.com"))
|
|
|
|
"Documentation and more information"))
|
|
|
|
(p
|
|
|
|
(a (@ (href "https://lists.sr.ht/~cadence/breezewiki-discuss"))
|
|
|
|
"Discussions / Bug reports / Feature requests"))
|
|
|
|
,(if (config-true? 'instance_is_official)
|
|
|
|
`(p ,(format "This instance is run by the ~a developer, " (config-get 'application_name))
|
|
|
|
(a (@ (href "https://cadence.moe/contact"))
|
|
|
|
"Cadence."))
|
|
|
|
`(p
|
|
|
|
,(format "This unofficial instance is based off the ~a source code, but is not controlled by the code developer." (config-get 'application_name)))))
|
|
|
|
,(if source-url
|
|
|
|
`(div (p "This page displays proxied content from "
|
|
|
|
(a (@ (href ,source-url) (rel "noreferrer")) ,source-url)
|
2022-09-16 13:56:03 +00:00
|
|
|
,(format ". Text content is available under the ~a license, " (license-text license))
|
|
|
|
(a (@ (href ,(license-url license))) "see license info.")
|
2022-09-04 13:58:45 +00:00
|
|
|
" Media files may have different copying restrictions.")
|
|
|
|
(p ,(format "Fandom is a trademark of Fandom, Inc. ~a is not affiliated with Fandom." (config-get 'application_name))))
|
|
|
|
`(div (p "Text content on wikis run by Fandom is available under the Creative Commons Attribution-Share Alike License 3.0 (Unported), "
|
|
|
|
(a (@ (href "https://www.fandom.com/licensing")) "see license info.")
|
|
|
|
" Media files and official Fandom documents have different copying restrictions.")
|
|
|
|
(p ,(format "Fandom is a trademark of Fandom, Inc. ~a is not affiliated with Fandom." (config-get 'application_name))))))))
|
|
|
|
|
2022-09-16 12:56:05 +00:00
|
|
|
(define (generate-wiki-page
|
|
|
|
content
|
|
|
|
#:source-url source-url
|
|
|
|
#:wikiname wikiname
|
|
|
|
#:title title
|
2022-09-16 13:56:03 +00:00
|
|
|
#:body-class [body-class-in #f]
|
|
|
|
#:license [license #f])
|
|
|
|
(define body-class (if (not body-class-in)
|
2022-09-16 12:56:05 +00:00
|
|
|
"skin-fandomdesktop"
|
|
|
|
body-class-in))
|
2022-08-23 09:57:42 +00:00
|
|
|
(define (required-styles origin)
|
2022-09-08 02:05:47 +00:00
|
|
|
(map (λ (dest-path)
|
|
|
|
(define url (format dest-path origin))
|
|
|
|
(if (config-true? 'strict_proxy)
|
|
|
|
(u-proxy-url url)
|
|
|
|
url))
|
2022-08-23 09:57:42 +00:00
|
|
|
'(#;"~a/load.php?lang=en&modules=skin.fandomdesktop.styles&only=styles&skin=fandomdesktop"
|
|
|
|
#;"~a/load.php?lang=en&modules=ext.gadget.dungeonsWiki%2CearthWiki%2Csite-styles%2Csound-styles&only=styles&skin=fandomdesktop"
|
|
|
|
#;"~a/load.php?lang=en&modules=site.styles&only=styles&skin=fandomdesktop"
|
|
|
|
; combine the above entries into a single request for potentially extra speed - fandom.com doesn't even do this!
|
2022-09-11 11:21:37 +00:00
|
|
|
"~a/wikia.php?controller=ThemeApi&method=themeVariables"
|
|
|
|
"~a/load.php?lang=en&modules=skin.fandomdesktop.styles%7Cext.fandom.PortableInfoboxFandomDesktop.css%7Cext.fandom.GlobalComponents.CommunityHeaderBackground.css%7Cext.gadget.site-styles%2Csound-styles%7Csite.styles&only=styles&skin=fandomdesktop")))
|
2022-08-23 09:57:42 +00:00
|
|
|
`(html
|
|
|
|
(head
|
|
|
|
(meta (@ (name "viewport") (content "width=device-width, initial-scale=1")))
|
2022-09-04 01:38:30 +00:00
|
|
|
(title ,(format "~a | ~a" title (config-get 'application_name)))
|
2022-08-23 09:57:42 +00:00
|
|
|
,@(map (λ (url)
|
|
|
|
`(link (@ (rel "stylesheet") (type "text/css") (href ,url))))
|
|
|
|
(required-styles (format "https://~a.fandom.com" wikiname)))
|
|
|
|
(link (@ (rel "stylesheet") (type "text/css") (href "/static/main.css"))))
|
2022-09-16 12:56:05 +00:00
|
|
|
(body (@ (class ,body-class))
|
2022-08-23 09:57:42 +00:00
|
|
|
(div (@ (class "main-container"))
|
|
|
|
(div (@ (class "fandom-community-header__background tileHorizontally header")))
|
|
|
|
(div (@ (class "page"))
|
|
|
|
(main (@ (class "page__main"))
|
|
|
|
(div (@ (class "custom-top"))
|
|
|
|
(h1 (@ (class "page-title")) ,title)
|
|
|
|
(nav (@ (class "sitesearch"))
|
|
|
|
(form (@ (action ,(format "/~a/search" wikiname)))
|
|
|
|
(label "Search "
|
|
|
|
(input (@ (type "text") (name "q")))))))
|
|
|
|
(div (@ (id "content") #;(class "page-content"))
|
|
|
|
(div (@ (id "mw-content-text"))
|
|
|
|
,content))
|
2022-09-16 13:56:03 +00:00
|
|
|
,(application-footer source-url #:license license)))))))
|
2022-08-23 09:57:42 +00:00
|
|
|
(module+ test
|
2022-09-08 02:05:47 +00:00
|
|
|
(define page
|
|
|
|
(parameterize ([(config-parameter 'strict_proxy) "true"])
|
2022-09-16 12:56:05 +00:00
|
|
|
(generate-wiki-page
|
|
|
|
'(template)
|
|
|
|
#:source-url ""
|
|
|
|
#:title "test"
|
|
|
|
#:wikiname "test")))
|
2022-09-08 02:05:47 +00:00
|
|
|
; check the page is a valid xexp
|
|
|
|
(check-not-false (xexp->html page))
|
|
|
|
; check the stylesheet is proxied
|
|
|
|
(check-true (string-prefix?
|
|
|
|
(get-attribute 'href
|
|
|
|
(bits->attributes
|
|
|
|
((query-selector
|
|
|
|
(λ (t a c) (eq? t 'link))
|
|
|
|
page))))
|
|
|
|
"/proxy?dest=https%3A%2F%2Ftest.fandom.com")))
|
2022-09-09 03:42:20 +00:00
|
|
|
|
|
|
|
(define (generate-redirect dest)
|
|
|
|
(define dest-bytes (string->bytes/utf-8 dest))
|
|
|
|
(response/output
|
|
|
|
#:code 302
|
|
|
|
#:headers (list (header #"Location" dest-bytes))
|
|
|
|
(λ (out)
|
|
|
|
(write-html
|
|
|
|
`(html
|
|
|
|
(head
|
|
|
|
(title "Redirecting..."))
|
|
|
|
(body
|
|
|
|
"Redirecting to "
|
|
|
|
(a (@ (href ,dest)) ,dest)
|
|
|
|
"..."))
|
|
|
|
out))))
|