Blob


1 {!
2 /*
3 * Copyright (c) 2022 Omar Polo <op@omarpolo.com>
4 *
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */
18 #include <sys/queue.h>
19 #include <sys/tree.h>
21 #include <netinet/in.h>
22 #include <arpa/inet.h>
24 #include <event.h>
25 #include <limits.h>
26 #include <stdint.h>
27 #include <stdio.h>
28 #include <string.h>
30 #include "galileo.h"
32 !}
34 {{ define tp_head(struct template *tp, const char *lang,
35 const char *title) }}
36 {! struct client *clt = tp->tp_arg; !}
37 {! struct proxy_config *pc = clt->clt_pc; !}
38 {! const char *stylesheet = pc->stylesheet; !}
39 {! const char *path = clt->clt_path_info; !}
40 <!doctype html>
41 <html{{ if *lang != '\0' }}lang="{{ lang }}"{{ end }}>
42 <head>
43 <meta name="viewport" content="initial-scale=1" />
44 {{ if *stylesheet != '\0' }}
45 <link rel="stylesheet" href="{{ stylesheet|urlescape }}" />
46 {{ end }}
47 <title>
48 {{ if title }}
49 {{ title }}
50 {{ else }}
51 gemini://{{ pc->proxy_name }}{{ path }}
52 {{ end }}
53 </title>
54 </head>
55 <body>
56 {{ end }}
58 {{ define tp_foot(struct template *tp) }}
59 {! struct client *clt = tp->tp_arg; !}
60 {! struct proxy_config *pc = clt->clt_pc; !}
61 {! const char *host = pc->proxy_name; !}
62 {! const char *path = clt->clt_path_info; !}
64 <footer>
65 <hr />
66 <dl>
67 <dt>Original URL:</dt>
68 <dd>
69 <a href="gemini://{{ host | urlescape }}{{ path | urlescape }}">
70 gemini://{{ host }}{{ path }}
71 </a>
72 </dd>
73 </dl>
74 </footer>
75 </body>
76 </html>
77 {{ end }}
79 {{ define tp_figure(struct template *tp, const char *url,
80 const char *label) }}
81 {!
82 struct client *clt = tp->tp_arg;
83 const char *path = "";
84 int relativify;
86 relativify = *url == '/' || strstr(url, "//") == NULL;
87 if (relativify) {
88 path = clt->clt_script_name;
89 url++; /* skip leading / */
90 }
91 !}
92 <figure>
93 <a href="{{ path | urlescape }}{{ url | urlescape }}">
94 <img src="{{ path | urlescape }}{{ url | urlescape }}" />
95 </a>
96 <figcaption>
97 {{ label }}
98 </figcaption>
99 </figure>
100 {{ end }}
102 {{ define tp_error(struct template *tp, int code, const char *reason) }}
103 {!
104 char scode[32];
105 int r;
107 r = snprintf(scode, sizeof(code), "%d", code);
108 if (r < 0 || (size_t)r >= sizeof(code))
109 return 0;
111 !}
112 {{ render tp_head(tp, "en", "Proxy error") }}
113 <main>
114 <h1>Proxy error</h1>
115 {{ if code != -1 }}
116 <p>Request failed with code: <code>{{ scode }}</code>.</p>
117 <p>The server says: {{ reason }}.</p>
118 {{ else }}
119 <p>Unable to serve the page due to: {{ reason }}.</p>
120 {{ end }}
121 </main>
122 {{ render tp_foot(tp) }}
123 {{ end }}
125 {{ define tp_inputpage(struct template *tp, const char *prompt) }}
126 {{ render tp_head(tp, "en", "input request") }}
127 <p>The server ask for input: <q>{{ prompt }}</q>.</p>
128 <form method="post" enctype="{{ FORM_URLENCODED }}">
129 <label for="reply">{{ "response " }}</label>
130 <input type="text" value="" id="reply" name="q" />
131 {{ " " }}
132 <button type="submit">Submit!</button>
133 </form>
134 {{ render tp_foot(tp) }}
135 {{ end }}