Blame


1 a80e4b65 2022-09-19 op {!
2 a80e4b65 2022-09-19 op /*
3 a80e4b65 2022-09-19 op * Copyright (c) 2022 Omar Polo <op@omarpolo.com>
4 a80e4b65 2022-09-19 op *
5 a80e4b65 2022-09-19 op * Permission to use, copy, modify, and distribute this software for any
6 a80e4b65 2022-09-19 op * purpose with or without fee is hereby granted, provided that the above
7 a80e4b65 2022-09-19 op * copyright notice and this permission notice appear in all copies.
8 a80e4b65 2022-09-19 op *
9 a80e4b65 2022-09-19 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 a80e4b65 2022-09-19 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 a80e4b65 2022-09-19 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 a80e4b65 2022-09-19 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 a80e4b65 2022-09-19 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 a80e4b65 2022-09-19 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 a80e4b65 2022-09-19 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 a80e4b65 2022-09-19 op */
17 a80e4b65 2022-09-19 op
18 a80e4b65 2022-09-19 op #include <sys/queue.h>
19 a80e4b65 2022-09-19 op #include <sys/tree.h>
20 a80e4b65 2022-09-19 op
21 a80e4b65 2022-09-19 op #include <netinet/in.h>
22 a80e4b65 2022-09-19 op #include <arpa/inet.h>
23 a80e4b65 2022-09-19 op
24 a80e4b65 2022-09-19 op #include <event.h>
25 9707cd87 2023-03-02 op #include <libgen.h>
26 a80e4b65 2022-09-19 op #include <limits.h>
27 a80e4b65 2022-09-19 op #include <stdint.h>
28 abe17781 2022-09-20 op #include <stdio.h>
29 54acddc9 2022-09-19 op #include <string.h>
30 a80e4b65 2022-09-19 op
31 a80e4b65 2022-09-19 op #include "galileo.h"
32 8442fa67 2022-12-04 op #include "tmpl.h"
33 a80e4b65 2022-09-19 op
34 9707cd87 2023-03-02 op static int tp_navigation(struct template *);
35 9707cd87 2023-03-02 op
36 a80e4b65 2022-09-19 op !}
37 a80e4b65 2022-09-19 op
38 a80e4b65 2022-09-19 op {{ define tp_head(struct template *tp, const char *lang,
39 e3c1cbab 2022-09-20 op const char *title) }}
40 7b11f549 2022-09-23 op {!
41 7b11f549 2022-09-23 op struct client *clt = tp->tp_arg;
42 7b11f549 2022-09-23 op struct proxy_config *pc = clt->clt_pc;
43 f267a4be 2022-09-30 op const char *stylesheet = pc ? pc->stylesheet : "";
44 7905878b 2022-09-23 op const char *prfx = clt->clt_script_name;
45 7b11f549 2022-09-23 op const char *path = clt->clt_path_info;
46 7b11f549 2022-09-23 op !}
47 a80e4b65 2022-09-19 op <!doctype html>
48 db3f5b3d 2022-09-23 op <html{{ if *lang != '\0' }}{{ " " }}lang="{{ lang }}"{{ end }}>
49 a80e4b65 2022-09-19 op <head>
50 a80e4b65 2022-09-19 op <meta name="viewport" content="initial-scale=1" />
51 5188543c 2022-09-23 op
52 44ec372b 2022-09-23 op {{ if *stylesheet == 0 }}
53 44ec372b 2022-09-23 op <link rel="stylesheet" href="{{ prfx }}galileo.css" />
54 5188543c 2022-09-23 op {{ else }}
55 a80e4b65 2022-09-19 op <link rel="stylesheet" href="{{ stylesheet|urlescape }}" />
56 a80e4b65 2022-09-19 op {{ end }}
57 5188543c 2022-09-23 op
58 e3c1cbab 2022-09-20 op <title>
59 e3c1cbab 2022-09-20 op {{ if title }}
60 e3c1cbab 2022-09-20 op {{ title }}
61 f267a4be 2022-09-30 op {{ else if pc }}
62 e3c1cbab 2022-09-20 op gemini://{{ pc->proxy_name }}{{ path }}
63 e3c1cbab 2022-09-20 op {{ end }}
64 e3c1cbab 2022-09-20 op </title>
65 a80e4b65 2022-09-19 op </head>
66 a80e4b65 2022-09-19 op <body>
67 9707cd87 2023-03-02 op {{ if path }}
68 9707cd87 2023-03-02 op {{ render tp_navigation(tp) }}
69 9707cd87 2023-03-02 op {{ end }}
70 a80e4b65 2022-09-19 op {{ end }}
71 a80e4b65 2022-09-19 op
72 a80e4b65 2022-09-19 op {{ define tp_foot(struct template *tp) }}
73 7b11f549 2022-09-23 op {!
74 7b11f549 2022-09-23 op struct client *clt = tp->tp_arg;
75 7b11f549 2022-09-23 op struct proxy_config *pc = clt->clt_pc;
76 7b11f549 2022-09-23 op const char *path = clt->clt_path_info;
77 7b11f549 2022-09-23 op !}
78 f267a4be 2022-09-30 op {{ if pc }}
79 a80e4b65 2022-09-19 op <footer>
80 a80e4b65 2022-09-19 op <hr />
81 a80e4b65 2022-09-19 op <dl>
82 a80e4b65 2022-09-19 op <dt>Original URL:</dt>
83 a80e4b65 2022-09-19 op <dd>
84 f267a4be 2022-09-30 op <a href="gemini://{{ pc->proxy_name | urlescape }}{{ path | urlescape }}">
85 f267a4be 2022-09-30 op gemini://{{ pc->proxy_name }}{{ path }}
86 a80e4b65 2022-09-19 op </a>
87 a80e4b65 2022-09-19 op </dd>
88 a80e4b65 2022-09-19 op </dl>
89 a80e4b65 2022-09-19 op </footer>
90 f267a4be 2022-09-30 op {{ end }}
91 a80e4b65 2022-09-19 op </body>
92 a80e4b65 2022-09-19 op </html>
93 a80e4b65 2022-09-19 op {{ end }}
94 a80e4b65 2022-09-19 op
95 9707cd87 2023-03-02 op {{ define tp_navigation(struct template *tp) }}
96 9707cd87 2023-03-02 op {!
97 9707cd87 2023-03-02 op struct client *clt = tp->tp_arg;
98 9707cd87 2023-03-02 op const char *prfx = clt->clt_script_name;
99 9707cd87 2023-03-02 op char *path = clt->clt_path_info;
100 9707cd87 2023-03-02 op char *tilde, *t, home[GEMINI_MAXLEN], up[GEMINI_MAXLEN];
101 9707cd87 2023-03-02 op char *dname;
102 9707cd87 2023-03-02 op char c;
103 9707cd87 2023-03-02 op
104 9707cd87 2023-03-02 op *home = '\0';
105 9707cd87 2023-03-02 op if ((tilde = strstr(path, "/~")) != NULL &&
106 9707cd87 2023-03-02 op (t = strchr(tilde + 1, '/')) != NULL) {
107 9707cd87 2023-03-02 op c = *++t;
108 9707cd87 2023-03-02 op *t = '\0';
109 9707cd87 2023-03-02 op (void) strlcpy(home, path + 1, sizeof(home));
110 9707cd87 2023-03-02 op *t = c;
111 9707cd87 2023-03-02 op }
112 9707cd87 2023-03-02 op
113 9707cd87 2023-03-02 op (void) strlcpy(up, path + 1, sizeof(up));
114 9707cd87 2023-03-02 op dname = dirname(up);
115 9707cd87 2023-03-02 op !}
116 9707cd87 2023-03-02 op <header>
117 9707cd87 2023-03-02 op <nav>
118 9707cd87 2023-03-02 op <ul>
119 23971b9c 2023-03-02 op <li><a href="{{ prfx }}">/ Root</a></li>
120 9707cd87 2023-03-02 op
121 9707cd87 2023-03-02 op {{ if *home != '\0' }}
122 23971b9c 2023-03-02 op <li><a href="{{ prfx }}{{ home }}">🏠 Home</a></li>
123 9707cd87 2023-03-02 op {{ end }}
124 9707cd87 2023-03-02 op
125 9707cd87 2023-03-02 op {{ if strcmp(dname, ".") != 0 }}
126 23971b9c 2023-03-02 op <li><a href="{{ prfx }}{{ dname }}/">↑ Up</a></li>
127 9707cd87 2023-03-02 op {{ end }}
128 9707cd87 2023-03-02 op </ul>
129 9707cd87 2023-03-02 op </nav>
130 9707cd87 2023-03-02 op </header>
131 9707cd87 2023-03-02 op {{ end }}
132 9707cd87 2023-03-02 op
133 1a52bb7c 2022-12-04 op {{ define tp_figure(struct template *tp, const char *url, const char *label) }}
134 a80e4b65 2022-09-19 op <figure>
135 1d31253b 2022-11-11 op <a href="{{ url | urlescape }}">
136 1d31253b 2022-11-11 op <img src="{{ url | urlescape }}" />
137 a80e4b65 2022-09-19 op </a>
138 a80e4b65 2022-09-19 op <figcaption>
139 a80e4b65 2022-09-19 op {{ label }}
140 a80e4b65 2022-09-19 op </figcaption>
141 a80e4b65 2022-09-19 op </figure>
142 a80e4b65 2022-09-19 op {{ end }}
143 e3c1cbab 2022-09-20 op
144 ceb3f79c 2022-09-29 op {{ define tp_pre_open(struct template *tp, const char *label) }}
145 ceb3f79c 2022-09-29 op <figure>
146 ceb3f79c 2022-09-29 op {{ if label && *label != '\0' }}
147 ceb3f79c 2022-09-29 op <figcaption>{{ label }}</figcaption>
148 ceb3f79c 2022-09-29 op {{ end }}
149 ceb3f79c 2022-09-29 op <pre>
150 ceb3f79c 2022-09-29 op {{ end }}
151 ceb3f79c 2022-09-29 op
152 ceb3f79c 2022-09-29 op {{ define tp_pre_close(struct template *tp) }}
153 ceb3f79c 2022-09-29 op </pre>
154 ceb3f79c 2022-09-29 op </figure>
155 ceb3f79c 2022-09-29 op {{ end }}
156 ceb3f79c 2022-09-29 op
157 abe17781 2022-09-20 op {{ define tp_error(struct template *tp, int code, const char *reason) }}
158 abe17781 2022-09-20 op {!
159 abe17781 2022-09-20 op char scode[32];
160 abe17781 2022-09-20 op int r;
161 abe17781 2022-09-20 op
162 abe17781 2022-09-20 op r = snprintf(scode, sizeof(code), "%d", code);
163 abe17781 2022-09-20 op if (r < 0 || (size_t)r >= sizeof(code))
164 c9e6d547 2022-09-23 op return (0);
165 abe17781 2022-09-20 op
166 abe17781 2022-09-20 op !}
167 e3c1cbab 2022-09-20 op {{ render tp_head(tp, "en", "Proxy error") }}
168 e3c1cbab 2022-09-20 op <main>
169 e3c1cbab 2022-09-20 op <h1>Proxy error</h1>
170 abe17781 2022-09-20 op {{ if code != -1 }}
171 abe17781 2022-09-20 op <p>Request failed with code: <code>{{ scode }}</code>.</p>
172 abe17781 2022-09-20 op <p>The server says: {{ reason }}.</p>
173 abe17781 2022-09-20 op {{ else }}
174 abe17781 2022-09-20 op <p>Unable to serve the page due to: {{ reason }}.</p>
175 abe17781 2022-09-20 op {{ end }}
176 e3c1cbab 2022-09-20 op </main>
177 e3c1cbab 2022-09-20 op {{ render tp_foot(tp) }}
178 e3c1cbab 2022-09-20 op {{ end }}
179 8857131d 2022-09-20 op
180 8857131d 2022-09-20 op {{ define tp_inputpage(struct template *tp, const char *prompt) }}
181 8857131d 2022-09-20 op {{ render tp_head(tp, "en", "input request") }}
182 9c83d68a 2022-09-22 op <p>The server ask for input: <q>{{ prompt }}</q>.</p>
183 8857131d 2022-09-20 op <form method="post" enctype="{{ FORM_URLENCODED }}">
184 9c83d68a 2022-09-22 op <label for="reply">{{ "response " }}</label>
185 58b5d440 2022-11-11 op <input type="text" value="" id="reply" name="q" autofocus />
186 9c83d68a 2022-09-22 op {{ " " }}
187 9c83d68a 2022-09-22 op <button type="submit">Submit!</button>
188 8857131d 2022-09-20 op </form>
189 8857131d 2022-09-20 op {{ render tp_foot(tp) }}
190 8857131d 2022-09-20 op {{ end }}