UNfunny/unfunny/templates.scm

109 lines
3.6 KiB
Scheme

;; Copyright (C) 2024 Skylar Widulski <cobra@vern.cc>
;;
;; This file is part of UNfunny
;;
;; UNfunny is free software: you can redistribute it and/or modify it under the
;; terms of the GNU Affero General Public License as published by the Free
;; Software Foundation, either version 3 of the License, or (at your option) any
;; later version.
;;
;; This program is distributed in the hope that it will be useful, but WITHOUT
;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License
;; for more details.
;;
;; You should have received a copy of the GNU Affero General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(define-module (unfunny templates)
#:use-module (unfunny scraping)
#:use-module (libxml2)
#:use-module (htmlprag)
#:use-module (rnrs)
#:use-module (ice-9 string-fun)
#:use-module (system foreign)
#:export (error-template
index-template
picture-template
picture->sxml))
(define (html-head title)
`(head (title ,title)
(meta (@ (charset "UTF-8")))
(meta (@ (name "viewport") (content "width=device-width")))
(link (@ (rel "stylesheet") (href "/style.css")))
(link (@ (rel "icon") (type "image/png") (href "/favicon.png")))))
(define heading
`(header))
(define footer
`(footer
(p (a (@ (href "http://git.vern.cc/cobra/UNfunny"))
"Source Code"))
,(if (getenv "PATCHES_URL")
`(p (a (@ (href ,(getenv "PATCHES_URL")))
"Patches"))
`())))
(define (picture->sxml picture)
`(div
(h1 ,(cadr picture))
(img (@ (alt ,(cadr picture))
(src ,(proxy (car picture)))))))
(define (index-template host)
(shtml->html
`(html ,(html-head "UNfunny")
(body
,heading
(h1 "UNfunny")
(h4 "iFunny? more like UNfunny!!!!")
(p "UNfunny is a privacy-respecting front-end to iFunny.")
(br)
(h2 "Usage")
(p "You can use UNfunny by replacing " (code "ifunny.com")
" with this website's domain")
(h3 "Example")
(pre (code
,(string-append
"https://ifunny.co/picture/get-how-the-"
"orangutans-have-gun-in-their-exhibit-why-aPrZa5Al9")))
(p "becomes")
(pre (code
,(string-append
"https://" host "/picture/get-how-the-"
"orangutans-have-gun-in-their-exhibit-why-aPrZa5Al9")))
(br)
(p "For iFunny Brazil links, replace the domain as usual, but"
"add /br to the beginning of the path")
(h3 "Example")
(pre (code "https://br.ifunny.co/picture/WEatpqh3B"))
(p "becomes")
(pre (code ,(string-append
"https://" host "/br/picture/WEatpqh3B")))
,footer))))
(define (picture-template d)
(let ((picture (get-picture d)))
(shtml->html
`(html ,(html-head
(string-append
(cadr picture)
" - UNfunny"))
(body
,heading
,(picture->sxml picture)
,footer)))))
(define (error-template code)
(shtml->html
`(html ,(html-head
(string-append
(number->string code)
" - UNfunny"))
(body
,heading
(h1 ,(number->string code))
,footer))))