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 3a808745 2023-03-02 op const char *dname, *dsufx = "/", *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 3a808745 2023-03-02 op char usr[64];
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 3a808745 2023-03-02 op
112 3a808745 2023-03-02 op c = *--t;
113 3a808745 2023-03-02 op *t = '\0';
114 3a808745 2023-03-02 op (void) strlcpy(usr, tilde + 2, sizeof(usr));
115 3a808745 2023-03-02 op *t = c;
116 9707cd87 2023-03-02 op }
117 9707cd87 2023-03-02 op
118 9707cd87 2023-03-02 op (void) strlcpy(up, path + 1, sizeof(up));
119 9707cd87 2023-03-02 op dname = dirname(up);
120 3a808745 2023-03-02 op if (!strcmp(dname, ".")) {
121 3a808745 2023-03-02 op dname = "";
122 3a808745 2023-03-02 op dsufx = "";
123 3a808745 2023-03-02 op }
124 9707cd87 2023-03-02 op !}
125 9707cd87 2023-03-02 op <header>
126 9707cd87 2023-03-02 op <nav>
127 9707cd87 2023-03-02 op <ul>
128 23971b9c 2023-03-02 op <li><a href="{{ prfx }}">/ Root</a></li>
129 9707cd87 2023-03-02 op
130 3a808745 2023-03-02 op <li><a href="{{ prfx }}{{ dname }}{{ dsufx }}">
131 3a808745 2023-03-02 op ↑ Up
132 3a808745 2023-03-02 op </a></li>
133 3a808745 2023-03-02 op
134 9707cd87 2023-03-02 op {{ if *home != '\0' }}
135 3a808745 2023-03-02 op <li><a href="{{ prfx }}{{ home }}">
136 3a808745 2023-03-02 op 🏠 {{usr}}' home
137 3a808745 2023-03-02 op </a></li>
138 9707cd87 2023-03-02 op {{ end }}
139 9707cd87 2023-03-02 op </ul>
140 9707cd87 2023-03-02 op </nav>
141 9707cd87 2023-03-02 op </header>
142 9707cd87 2023-03-02 op {{ end }}
143 9707cd87 2023-03-02 op
144 1a52bb7c 2022-12-04 op {{ define tp_figure(struct template *tp, const char *url, const char *label) }}
145 a80e4b65 2022-09-19 op <figure>
146 1d31253b 2022-11-11 op <a href="{{ url | urlescape }}">
147 1d31253b 2022-11-11 op <img src="{{ url | urlescape }}" />
148 a80e4b65 2022-09-19 op </a>
149 a80e4b65 2022-09-19 op <figcaption>
150 a80e4b65 2022-09-19 op {{ label }}
151 a80e4b65 2022-09-19 op </figcaption>
152 a80e4b65 2022-09-19 op </figure>
153 a80e4b65 2022-09-19 op {{ end }}
154 e3c1cbab 2022-09-20 op
155 ceb3f79c 2022-09-29 op {{ define tp_pre_open(struct template *tp, const char *label) }}
156 ceb3f79c 2022-09-29 op <figure>
157 ceb3f79c 2022-09-29 op {{ if label && *label != '\0' }}
158 ceb3f79c 2022-09-29 op <figcaption>{{ label }}</figcaption>
159 ceb3f79c 2022-09-29 op {{ end }}
160 ceb3f79c 2022-09-29 op <pre>
161 ceb3f79c 2022-09-29 op {{ end }}
162 ceb3f79c 2022-09-29 op
163 ceb3f79c 2022-09-29 op {{ define tp_pre_close(struct template *tp) }}
164 ceb3f79c 2022-09-29 op </pre>
165 ceb3f79c 2022-09-29 op </figure>
166 ceb3f79c 2022-09-29 op {{ end }}
167 ceb3f79c 2022-09-29 op
168 abe17781 2022-09-20 op {{ define tp_error(struct template *tp, int code, const char *reason) }}
169 abe17781 2022-09-20 op {!
170 abe17781 2022-09-20 op char scode[32];
171 abe17781 2022-09-20 op int r;
172 abe17781 2022-09-20 op
173 abe17781 2022-09-20 op r = snprintf(scode, sizeof(code), "%d", code);
174 abe17781 2022-09-20 op if (r < 0 || (size_t)r >= sizeof(code))
175 c9e6d547 2022-09-23 op return (0);
176 abe17781 2022-09-20 op
177 abe17781 2022-09-20 op !}
178 e3c1cbab 2022-09-20 op {{ render tp_head(tp, "en", "Proxy error") }}
179 e3c1cbab 2022-09-20 op <main>
180 e3c1cbab 2022-09-20 op <h1>Proxy error</h1>
181 abe17781 2022-09-20 op {{ if code != -1 }}
182 abe17781 2022-09-20 op <p>Request failed with code: <code>{{ scode }}</code>.</p>
183 abe17781 2022-09-20 op <p>The server says: {{ reason }}.</p>
184 abe17781 2022-09-20 op {{ else }}
185 abe17781 2022-09-20 op <p>Unable to serve the page due to: {{ reason }}.</p>
186 abe17781 2022-09-20 op {{ end }}
187 e3c1cbab 2022-09-20 op </main>
188 e3c1cbab 2022-09-20 op {{ render tp_foot(tp) }}
189 e3c1cbab 2022-09-20 op {{ end }}
190 8857131d 2022-09-20 op
191 8857131d 2022-09-20 op {{ define tp_inputpage(struct template *tp, const char *prompt) }}
192 8857131d 2022-09-20 op {{ render tp_head(tp, "en", "input request") }}
193 9c83d68a 2022-09-22 op <p>The server ask for input: <q>{{ prompt }}</q>.</p>
194 8857131d 2022-09-20 op <form method="post" enctype="{{ FORM_URLENCODED }}">
195 9c83d68a 2022-09-22 op <label for="reply">{{ "response " }}</label>
196 58b5d440 2022-11-11 op <input type="text" value="" id="reply" name="q" autofocus />
197 9c83d68a 2022-09-22 op {{ " " }}
198 9c83d68a 2022-09-22 op <button type="submit">Submit!</button>
199 8857131d 2022-09-20 op </form>
200 8857131d 2022-09-20 op {{ render tp_foot(tp) }}
201 8857131d 2022-09-20 op {{ end }}