Blame


1 ed619ca0 2022-12-14 op {!
2 ed619ca0 2022-12-14 op /*
3 ed619ca0 2022-12-14 op * Copyright (c) 2022 Omar Polo <op@openbsd.org>
4 ed619ca0 2022-12-14 op * Copyright (c) 2016, 2019, 2020-2022 Tracey Emery <tracey@traceyemery.net>
5 ed619ca0 2022-12-14 op *
6 ed619ca0 2022-12-14 op * Permission to use, copy, modify, and distribute this software for any
7 ed619ca0 2022-12-14 op * purpose with or without fee is hereby granted, provided that the above
8 ed619ca0 2022-12-14 op * copyright notice and this permission notice appear in all copies.
9 ed619ca0 2022-12-14 op *
10 ed619ca0 2022-12-14 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 ed619ca0 2022-12-14 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 ed619ca0 2022-12-14 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 ed619ca0 2022-12-14 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 ed619ca0 2022-12-14 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 ed619ca0 2022-12-14 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 ed619ca0 2022-12-14 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 ed619ca0 2022-12-14 op */
18 ed619ca0 2022-12-14 op
19 ed619ca0 2022-12-14 op #include <sys/types.h>
20 ed619ca0 2022-12-14 op #include <sys/queue.h>
21 43d421de 2023-01-05 op #include <sys/stat.h>
22 ed619ca0 2022-12-14 op
23 1abb18e1 2022-12-20 op #include <ctype.h>
24 ed619ca0 2022-12-14 op #include <event.h>
25 ed619ca0 2022-12-14 op #include <stdint.h>
26 43d421de 2023-01-05 op #include <stdio.h>
27 ed619ca0 2022-12-14 op #include <stdlib.h>
28 ed619ca0 2022-12-14 op #include <string.h>
29 43d421de 2023-01-05 op #include <sha1.h>
30 ed619ca0 2022-12-14 op #include <imsg.h>
31 ed619ca0 2022-12-14 op
32 43d421de 2023-01-05 op #include "got_object.h"
33 43d421de 2023-01-05 op
34 ed619ca0 2022-12-14 op #include "proc.h"
35 ed619ca0 2022-12-14 op
36 ed619ca0 2022-12-14 op #include "gotwebd.h"
37 ed619ca0 2022-12-14 op #include "tmpl.h"
38 ed619ca0 2022-12-14 op
39 298f95fb 2023-01-05 op static int gotweb_render_blob_line(struct template *, const char *, size_t);
40 43d421de 2023-01-05 op static int gotweb_render_tree_item(struct template *, struct got_tree_entry *);
41 298f95fb 2023-01-05 op
42 1abb18e1 2022-12-20 op static inline int rss_tag_item(struct template *, struct repo_tag *);
43 1abb18e1 2022-12-20 op static inline int rss_author(struct template *, char *);
44 1abb18e1 2022-12-20 op
45 ed619ca0 2022-12-14 op static int
46 ed619ca0 2022-12-14 op gotweb_render_age(struct template *tp, time_t time, int ref_tm)
47 ed619ca0 2022-12-14 op {
48 ed619ca0 2022-12-14 op const struct got_error *err;
49 ed619ca0 2022-12-14 op char *age;
50 ed619ca0 2022-12-14 op int r;
51 ed619ca0 2022-12-14 op
52 ed619ca0 2022-12-14 op err = gotweb_get_time_str(&age, time, ref_tm);
53 ed619ca0 2022-12-14 op if (err)
54 ed619ca0 2022-12-14 op return 0;
55 ed619ca0 2022-12-14 op r = tp->tp_puts(tp, age);
56 ed619ca0 2022-12-14 op free(age);
57 ed619ca0 2022-12-14 op return r;
58 ed619ca0 2022-12-14 op }
59 ed619ca0 2022-12-14 op
60 ed619ca0 2022-12-14 op !}
61 ed619ca0 2022-12-14 op
62 ed619ca0 2022-12-14 op {{ define gotweb_render_header(struct template *tp) }}
63 ed619ca0 2022-12-14 op {!
64 ed619ca0 2022-12-14 op struct request *c = tp->tp_arg;
65 ed619ca0 2022-12-14 op struct server *srv = c->srv;
66 ed619ca0 2022-12-14 op struct querystring *qs = c->t->qs;
67 ed619ca0 2022-12-14 op struct gotweb_url u_path;
68 d19d9fce 2022-12-20 op const char *prfx = c->document_uri;
69 ed619ca0 2022-12-14 op const char *css = srv->custom_css;
70 ed619ca0 2022-12-14 op
71 ed619ca0 2022-12-14 op memset(&u_path, 0, sizeof(u_path));
72 ed619ca0 2022-12-14 op u_path.index_page = -1;
73 ed619ca0 2022-12-14 op u_path.page = -1;
74 ed619ca0 2022-12-14 op u_path.action = SUMMARY;
75 ed619ca0 2022-12-14 op !}
76 ed619ca0 2022-12-14 op <!doctype html>
77 ed619ca0 2022-12-14 op <html>
78 ed619ca0 2022-12-14 op <head>
79 ed619ca0 2022-12-14 op <meta charset="utf-8" />
80 ed619ca0 2022-12-14 op <title>{{ srv->site_name }}</title>
81 ed619ca0 2022-12-14 op <meta name="viewport" content="initial-scale=.75" />
82 ed619ca0 2022-12-14 op <meta name="msapplication-TileColor" content="#da532c" />
83 ed619ca0 2022-12-14 op <meta name="theme-color" content="#ffffff"/>
84 ed619ca0 2022-12-14 op <link rel="apple-touch-icon" sizes="180x180" href="{{ prfx }}apple-touch-icon.png" />
85 ed619ca0 2022-12-14 op <link rel="icon" type="image/png" sizes="32x32" href="{{ prfx }}favicon-32x32.png" />
86 ed619ca0 2022-12-14 op <link rel="icon" type="image/png" sizes="16x16" href="{{ prfx }}favicon-16x16.png" />
87 ed619ca0 2022-12-14 op <link rel="manifest" href="{{ prfx }}site.webmanifest"/>
88 ed619ca0 2022-12-14 op <link rel="mask-icon" href="{{ prfx }}safari-pinned-tab.svg" />
89 ed619ca0 2022-12-14 op <link rel="stylesheet" type="text/css" href="{{ prfx }}{{ css }}" />
90 ed619ca0 2022-12-14 op </head>
91 ed619ca0 2022-12-14 op <body>
92 ed619ca0 2022-12-14 op <div id="gw_body">
93 ed619ca0 2022-12-14 op <div id="header">
94 ed619ca0 2022-12-14 op <div id="got_link">
95 ed619ca0 2022-12-14 op <a href="{{ srv->logo_url }}" target="_blank">
96 ed619ca0 2022-12-14 op <img src="{{ prfx }}{{ srv->logo }}" />
97 ed619ca0 2022-12-14 op </a>
98 ed619ca0 2022-12-14 op </div>
99 ed619ca0 2022-12-14 op </div>
100 ed619ca0 2022-12-14 op <div id="site_path">
101 ed619ca0 2022-12-14 op <div id="site_link">
102 ed619ca0 2022-12-14 op <a href="?index_page={{ printf "%d", qs->index_page }}">
103 ed619ca0 2022-12-14 op {{ srv->site_link }}
104 ed619ca0 2022-12-14 op </a>
105 ed619ca0 2022-12-14 op {{ if qs->path }}
106 ed619ca0 2022-12-14 op {! u_path.path = qs->path; !}
107 ed619ca0 2022-12-14 op {{ " / " }}
108 ed619ca0 2022-12-14 op <a href="{{ render gotweb_render_url(tp->tp_arg, &u_path)}}">
109 ed619ca0 2022-12-14 op {{ qs->path }}
110 ed619ca0 2022-12-14 op </a>
111 ed619ca0 2022-12-14 op {{ end }}
112 ed619ca0 2022-12-14 op {{ if qs->action != INDEX }}
113 ed619ca0 2022-12-14 op {{ " / " }}{{ gotweb_action_name(qs->action) }}
114 ed619ca0 2022-12-14 op {{ end }}
115 ed619ca0 2022-12-14 op </div>
116 ed619ca0 2022-12-14 op </div>
117 ed619ca0 2022-12-14 op <div id="content">
118 ed619ca0 2022-12-14 op {{ end }}
119 ed619ca0 2022-12-14 op
120 ed619ca0 2022-12-14 op {{ define gotweb_render_footer(struct template *tp) }}
121 ed619ca0 2022-12-14 op {!
122 ed619ca0 2022-12-14 op struct request *c = tp->tp_arg;
123 ed619ca0 2022-12-14 op struct server *srv = c->srv;
124 ed619ca0 2022-12-14 op !}
125 ed619ca0 2022-12-14 op <div id="site_owner_wrapper">
126 ed619ca0 2022-12-14 op <div id="site_owner">
127 ed619ca0 2022-12-14 op {{ if srv->show_site_owner }}
128 ed619ca0 2022-12-14 op {{ srv->site_owner }}
129 ed619ca0 2022-12-14 op {{ end }}
130 ed619ca0 2022-12-14 op </div>
131 ed619ca0 2022-12-14 op </div>
132 ed619ca0 2022-12-14 op </div>
133 ed619ca0 2022-12-14 op </div>
134 ed619ca0 2022-12-14 op </body>
135 ed619ca0 2022-12-14 op </html>
136 ed619ca0 2022-12-14 op {{ end }}
137 ed619ca0 2022-12-14 op
138 ed619ca0 2022-12-14 op {{ define gotweb_render_repo_table_hdr(struct template *tp) }}
139 ed619ca0 2022-12-14 op {!
140 ed619ca0 2022-12-14 op struct request *c = tp->tp_arg;
141 ed619ca0 2022-12-14 op struct server *srv = c->srv;
142 ed619ca0 2022-12-14 op !}
143 ed619ca0 2022-12-14 op <div id="index_header">
144 ed619ca0 2022-12-14 op <div id="index_header_project">
145 ed619ca0 2022-12-14 op Project
146 ed619ca0 2022-12-14 op </div>
147 ed619ca0 2022-12-14 op {{ if srv->show_repo_description }}
148 ed619ca0 2022-12-14 op <div id="index_header_description">
149 ed619ca0 2022-12-14 op Description
150 ed619ca0 2022-12-14 op </div>
151 ed619ca0 2022-12-14 op {{ end }}
152 ed619ca0 2022-12-14 op {{ if srv->show_repo_owner }}
153 ed619ca0 2022-12-14 op <div id="index_header_owner">
154 ed619ca0 2022-12-14 op Owner
155 ed619ca0 2022-12-14 op </div>
156 ed619ca0 2022-12-14 op {{ end }}
157 ed619ca0 2022-12-14 op {{ if srv->show_repo_age }}
158 ed619ca0 2022-12-14 op <div id="index_header_age">
159 ed619ca0 2022-12-14 op Last Change
160 ed619ca0 2022-12-14 op </div>
161 ed619ca0 2022-12-14 op {{ end }}
162 ed619ca0 2022-12-14 op </div>
163 ed619ca0 2022-12-14 op {{ end }}
164 ed619ca0 2022-12-14 op
165 ed619ca0 2022-12-14 op {{ define gotweb_render_repo_fragment(struct template *tp, struct repo_dir *repo_dir) }}
166 ed619ca0 2022-12-14 op {!
167 ed619ca0 2022-12-14 op struct request *c = tp->tp_arg;
168 ed619ca0 2022-12-14 op struct server *srv = c->srv;
169 ed619ca0 2022-12-14 op struct gotweb_url summary = {
170 ed619ca0 2022-12-14 op .action = SUMMARY,
171 ed619ca0 2022-12-14 op .index_page = -1,
172 ed619ca0 2022-12-14 op .page = -1,
173 ed619ca0 2022-12-14 op .path = repo_dir->name,
174 ed619ca0 2022-12-14 op }, briefs = {
175 ed619ca0 2022-12-14 op .action = BRIEFS,
176 ed619ca0 2022-12-14 op .index_page = -1,
177 ed619ca0 2022-12-14 op .page = -1,
178 ed619ca0 2022-12-14 op .path = repo_dir->name,
179 ed619ca0 2022-12-14 op }, commits = {
180 ed619ca0 2022-12-14 op .action = COMMITS,
181 ed619ca0 2022-12-14 op .index_page = -1,
182 ed619ca0 2022-12-14 op .page = -1,
183 ed619ca0 2022-12-14 op .path = repo_dir->name,
184 ed619ca0 2022-12-14 op }, tags = {
185 ed619ca0 2022-12-14 op .action = TAGS,
186 ed619ca0 2022-12-14 op .index_page = -1,
187 ed619ca0 2022-12-14 op .page = -1,
188 ed619ca0 2022-12-14 op .path = repo_dir->name,
189 ed619ca0 2022-12-14 op }, tree = {
190 ed619ca0 2022-12-14 op .action = TREE,
191 ed619ca0 2022-12-14 op .index_page = -1,
192 ed619ca0 2022-12-14 op .page = -1,
193 ed619ca0 2022-12-14 op .path = repo_dir->name,
194 1abb18e1 2022-12-20 op }, rss = {
195 1abb18e1 2022-12-20 op .action = RSS,
196 1abb18e1 2022-12-20 op .index_page = -1,
197 1abb18e1 2022-12-20 op .page = -1,
198 1abb18e1 2022-12-20 op .path = repo_dir->name,
199 ed619ca0 2022-12-14 op };
200 ed619ca0 2022-12-14 op !}
201 ed619ca0 2022-12-14 op <div class="index_wrapper">
202 ed619ca0 2022-12-14 op <div class="index_project">
203 ed619ca0 2022-12-14 op <a href="{{ render gotweb_render_url(tp->tp_arg, &summary) }}">{{ repo_dir->name }}</a>
204 ed619ca0 2022-12-14 op </div>
205 ed619ca0 2022-12-14 op {{ if srv->show_repo_description }}
206 ed619ca0 2022-12-14 op <div class="index_project_description">
207 ed619ca0 2022-12-14 op {{ repo_dir->description }}
208 ed619ca0 2022-12-14 op </div>
209 ed619ca0 2022-12-14 op {{ end }}
210 ed619ca0 2022-12-14 op {{ if srv->show_repo_owner }}
211 ed619ca0 2022-12-14 op <div class="index_project_owner">
212 ed619ca0 2022-12-14 op {{ repo_dir->owner }}
213 ed619ca0 2022-12-14 op </div>
214 ed619ca0 2022-12-14 op {{ end }}
215 ed619ca0 2022-12-14 op {{ if srv->show_repo_age }}
216 ed619ca0 2022-12-14 op <div class="index_project_age">
217 ed619ca0 2022-12-14 op {{ repo_dir->age }}
218 ed619ca0 2022-12-14 op </div>
219 ed619ca0 2022-12-14 op {{ end }}
220 ed619ca0 2022-12-14 op <div class="navs_wrapper">
221 ed619ca0 2022-12-14 op <div class="navs">
222 ed619ca0 2022-12-14 op <a href="{{ render gotweb_render_url(tp->tp_arg, &summary) }}">summary</a>
223 ed619ca0 2022-12-14 op {{ " | " }}
224 ed619ca0 2022-12-14 op <a href="{{ render gotweb_render_url(tp->tp_arg, &briefs) }}">briefs</a>
225 ed619ca0 2022-12-14 op {{ " | " }}
226 ed619ca0 2022-12-14 op <a href="{{ render gotweb_render_url(tp->tp_arg, &commits) }}">commits</a>
227 ed619ca0 2022-12-14 op {{ " | " }}
228 ed619ca0 2022-12-14 op <a href="{{ render gotweb_render_url(tp->tp_arg, &tags) }}">tags</a>
229 ed619ca0 2022-12-14 op {{ " | " }}
230 ed619ca0 2022-12-14 op <a href="{{ render gotweb_render_url(tp->tp_arg, &tree) }}">tree</a>
231 1abb18e1 2022-12-20 op {{ " | " }}
232 1abb18e1 2022-12-20 op <a href="{{ render gotweb_render_url(tp->tp_arg, &rss) }}">rss</a>
233 ed619ca0 2022-12-14 op </div>
234 ed619ca0 2022-12-14 op <div class="dotted_line"></div>
235 ed619ca0 2022-12-14 op </div>
236 ed619ca0 2022-12-14 op </div>
237 ed619ca0 2022-12-14 op {{ end }}
238 ed619ca0 2022-12-14 op
239 ed619ca0 2022-12-14 op {{ define gotweb_render_briefs(struct template *tp) }}
240 ed619ca0 2022-12-14 op {!
241 ed619ca0 2022-12-14 op const struct got_error *error;
242 ed619ca0 2022-12-14 op struct request *c = tp->tp_arg;
243 ed619ca0 2022-12-14 op struct server *srv = c->srv;
244 ed619ca0 2022-12-14 op struct transport *t = c->t;
245 ed619ca0 2022-12-14 op struct querystring *qs = c->t->qs;
246 ed619ca0 2022-12-14 op struct repo_commit *rc;
247 ed619ca0 2022-12-14 op struct repo_dir *repo_dir = t->repo_dir;
248 ed619ca0 2022-12-14 op struct gotweb_url diff_url, tree_url;
249 ed619ca0 2022-12-14 op char *tmp;
250 ed619ca0 2022-12-14 op
251 ed619ca0 2022-12-14 op diff_url = (struct gotweb_url){
252 ed619ca0 2022-12-14 op .action = DIFF,
253 ed619ca0 2022-12-14 op .index_page = -1,
254 ed619ca0 2022-12-14 op .page = -1,
255 ed619ca0 2022-12-14 op .path = repo_dir->name,
256 ed619ca0 2022-12-14 op .headref = qs->headref,
257 ed619ca0 2022-12-14 op };
258 ed619ca0 2022-12-14 op tree_url = (struct gotweb_url){
259 ed619ca0 2022-12-14 op .action = TREE,
260 ed619ca0 2022-12-14 op .index_page = -1,
261 ed619ca0 2022-12-14 op .page = -1,
262 ed619ca0 2022-12-14 op .path = repo_dir->name,
263 ed619ca0 2022-12-14 op .headref = qs->headref,
264 ed619ca0 2022-12-14 op };
265 ed619ca0 2022-12-14 op
266 ed619ca0 2022-12-14 op if (qs->action == SUMMARY) {
267 ed619ca0 2022-12-14 op qs->action = BRIEFS;
268 ed619ca0 2022-12-14 op error = got_get_repo_commits(c, D_MAXSLCOMMDISP);
269 ed619ca0 2022-12-14 op } else
270 ed619ca0 2022-12-14 op error = got_get_repo_commits(c, srv->max_commits_display);
271 ed619ca0 2022-12-14 op if (error)
272 ed619ca0 2022-12-14 op return -1;
273 ed619ca0 2022-12-14 op !}
274 ed619ca0 2022-12-14 op <div id="briefs_title_wrapper">
275 ed619ca0 2022-12-14 op <div id="briefs_title">Commit Briefs</div>
276 ed619ca0 2022-12-14 op </div>
277 ed619ca0 2022-12-14 op <div id="briefs_content">
278 ed619ca0 2022-12-14 op {{ tailq-foreach rc &t->repo_commits entry }}
279 ed619ca0 2022-12-14 op {!
280 ed619ca0 2022-12-14 op diff_url.commit = rc->commit_id;
281 ed619ca0 2022-12-14 op tree_url.commit = rc->commit_id;
282 ed619ca0 2022-12-14 op
283 ed619ca0 2022-12-14 op tmp = strchr(rc->author, '<');
284 ed619ca0 2022-12-14 op if (tmp)
285 ed619ca0 2022-12-14 op *tmp = '\0';
286 ed619ca0 2022-12-14 op
287 ed619ca0 2022-12-14 op tmp = strchr(rc->commit_msg, '\n');
288 ed619ca0 2022-12-14 op if (tmp)
289 ed619ca0 2022-12-14 op *tmp = '\0';
290 ed619ca0 2022-12-14 op !}
291 ed619ca0 2022-12-14 op <div class="briefs_age">
292 ed619ca0 2022-12-14 op {{ render gotweb_render_age(tp, rc->committer_time, TM_DIFF) }}
293 ed619ca0 2022-12-14 op </div>
294 ed619ca0 2022-12-14 op <div class="briefs_author">
295 ed619ca0 2022-12-14 op {{ rc->author }}
296 ed619ca0 2022-12-14 op </div>
297 ed619ca0 2022-12-14 op <div class="briefs_log">
298 ed619ca0 2022-12-14 op <a href="{{ render gotweb_render_url(tp->tp_arg, &diff_url) }}">
299 ed619ca0 2022-12-14 op {{ rc->commit_msg }}
300 ed619ca0 2022-12-14 op </a>
301 ed619ca0 2022-12-14 op {{ if rc->refs_str }}
302 ed619ca0 2022-12-14 op {{ " " }} <span class="refs_str">({{ rc->refs_str }})</span>
303 ed619ca0 2022-12-14 op {{ end }}
304 ed619ca0 2022-12-14 op </a>
305 ed619ca0 2022-12-14 op </div>
306 ed619ca0 2022-12-14 op <div class="navs_wrapper">
307 ed619ca0 2022-12-14 op <div class="navs">
308 ed619ca0 2022-12-14 op <a href="{{ render gotweb_render_url(tp->tp_arg, &diff_url) }}">diff</a>
309 ed619ca0 2022-12-14 op {{ " | " }}
310 ed619ca0 2022-12-14 op <a href="{{ render gotweb_render_url(tp->tp_arg, &tree_url) }}">tree</a>
311 ed619ca0 2022-12-14 op </div>
312 ed619ca0 2022-12-14 op </div>
313 ed619ca0 2022-12-14 op <div class="dotted_line"></div>
314 ed619ca0 2022-12-14 op {{ end }}
315 ed619ca0 2022-12-14 op {{ if t->next_id || t->prev_id }}
316 b4c0bd72 2022-12-17 op {{ render gotweb_render_navs(tp) }}
317 ed619ca0 2022-12-14 op {{ end }}
318 b4c0bd72 2022-12-17 op </div>
319 b4c0bd72 2022-12-17 op {{ end }}
320 b4c0bd72 2022-12-17 op
321 b4c0bd72 2022-12-17 op {{ define gotweb_render_navs(struct template *tp) }}
322 b4c0bd72 2022-12-17 op {!
323 b4c0bd72 2022-12-17 op struct request *c = tp->tp_arg;
324 b4c0bd72 2022-12-17 op struct transport *t = c->t;
325 b4c0bd72 2022-12-17 op struct gotweb_url prev, next;
326 b4c0bd72 2022-12-17 op int have_prev, have_next;
327 b4c0bd72 2022-12-17 op
328 b4c0bd72 2022-12-17 op gotweb_get_navs(c, &prev, &have_prev, &next, &have_next);
329 b4c0bd72 2022-12-17 op !}
330 b4c0bd72 2022-12-17 op <div id="np_wrapper">
331 b4c0bd72 2022-12-17 op <div id="nav_prev">
332 b4c0bd72 2022-12-17 op {{ if have_prev }}
333 b4c0bd72 2022-12-17 op <a href="{{ render gotweb_render_url(c, &prev) }}">
334 b4c0bd72 2022-12-17 op Previous
335 b4c0bd72 2022-12-17 op </a>
336 b4c0bd72 2022-12-17 op {{ end }}
337 b4c0bd72 2022-12-17 op </div>
338 b4c0bd72 2022-12-17 op <div id="nav_next">
339 b4c0bd72 2022-12-17 op {{ if have_next }}
340 b4c0bd72 2022-12-17 op <a href="{{ render gotweb_render_url(c, &next) }}">
341 b4c0bd72 2022-12-17 op Next
342 b4c0bd72 2022-12-17 op </a>
343 b4c0bd72 2022-12-17 op {{ end }}
344 b4c0bd72 2022-12-17 op </div>
345 ed619ca0 2022-12-14 op </div>
346 b4c0bd72 2022-12-17 op {{ finally }}
347 b4c0bd72 2022-12-17 op {!
348 b4c0bd72 2022-12-17 op free(t->next_id);
349 b4c0bd72 2022-12-17 op t->next_id = NULL;
350 b4c0bd72 2022-12-17 op free(t->prev_id);
351 b4c0bd72 2022-12-17 op t->prev_id = NULL;
352 b4c0bd72 2022-12-17 op !}
353 ed619ca0 2022-12-14 op {{ end }}
354 156a1144 2022-12-17 op
355 156a1144 2022-12-17 op {{ define gotweb_render_commits(struct template *tp) }}
356 156a1144 2022-12-17 op {!
357 156a1144 2022-12-17 op struct request *c = tp->tp_arg;
358 156a1144 2022-12-17 op struct transport *t = c->t;
359 156a1144 2022-12-17 op struct repo_dir *repo_dir = t->repo_dir;
360 156a1144 2022-12-17 op struct repo_commit *rc;
361 156a1144 2022-12-17 op struct gotweb_url diff, tree;
362 156a1144 2022-12-17 op
363 156a1144 2022-12-17 op diff = (struct gotweb_url){
364 156a1144 2022-12-17 op .action = DIFF,
365 156a1144 2022-12-17 op .index_page = -1,
366 156a1144 2022-12-17 op .page = -1,
367 156a1144 2022-12-17 op .path = repo_dir->name,
368 156a1144 2022-12-17 op };
369 156a1144 2022-12-17 op tree = (struct gotweb_url){
370 156a1144 2022-12-17 op .action = TREE,
371 156a1144 2022-12-17 op .index_page = -1,
372 156a1144 2022-12-17 op .page = -1,
373 156a1144 2022-12-17 op .path = repo_dir->name,
374 156a1144 2022-12-17 op };
375 156a1144 2022-12-17 op !}
376 156a1144 2022-12-17 op <div class="commits_title_wrapper">
377 156a1144 2022-12-17 op <div class="commits_title">Commits</div>
378 156a1144 2022-12-17 op </div>
379 156a1144 2022-12-17 op <div class="commits_content">
380 156a1144 2022-12-17 op {{ tailq-foreach rc &t->repo_commits entry }}
381 156a1144 2022-12-17 op {!
382 156a1144 2022-12-17 op diff.commit = rc->commit_id;
383 156a1144 2022-12-17 op tree.commit = rc->commit_id;
384 156a1144 2022-12-17 op !}
385 156a1144 2022-12-17 op <div class="commits_header_wrapper">
386 156a1144 2022-12-17 op <div class="commits_header">
387 156a1144 2022-12-17 op <div class="header_commit_title">Commit:</div>
388 156a1144 2022-12-17 op <div class="header_commit">{{ rc->commit_id }}</div>
389 156a1144 2022-12-17 op <div class="header_author_title">Author:</div>
390 156a1144 2022-12-17 op <div class="header_author">{{ rc->author }}</div>
391 156a1144 2022-12-17 op <div class="header_age_title">Date:</div>
392 156a1144 2022-12-17 op <div class="header_age">
393 156a1144 2022-12-17 op {{ render gotweb_render_age(tp, rc->committer_time, TM_LONG) }}
394 156a1144 2022-12-17 op </div>
395 156a1144 2022-12-17 op </div>
396 156a1144 2022-12-17 op </div>
397 cf536071 2022-12-31 op <div class="dotted_line"></div>
398 cf536071 2022-12-31 op <div class="commit">
399 cf536071 2022-12-31 op {{ "\n" }}
400 cf536071 2022-12-31 op {{ rc->commit_msg }}
401 cf536071 2022-12-31 op </div>
402 156a1144 2022-12-17 op <div class="navs_wrapper">
403 156a1144 2022-12-17 op <div class="navs">
404 156a1144 2022-12-17 op <a href="{{ render gotweb_render_url(c, &diff) }}">diff</a>
405 156a1144 2022-12-17 op {{ " | " }}
406 156a1144 2022-12-17 op <a href="{{ render gotweb_render_url(c, &tree) }}">tree</a>
407 156a1144 2022-12-17 op </div>
408 156a1144 2022-12-17 op </div>
409 156a1144 2022-12-17 op <div class="dotted_line"></div>
410 156a1144 2022-12-17 op {{ end }}
411 156a1144 2022-12-17 op {{ if t->next_id || t->prev_id }}
412 156a1144 2022-12-17 op {{ render gotweb_render_navs(tp) }}
413 156a1144 2022-12-17 op {{ end }}
414 298f95fb 2023-01-05 op </div>
415 298f95fb 2023-01-05 op {{ end }}
416 298f95fb 2023-01-05 op
417 298f95fb 2023-01-05 op {{ define gotweb_render_blob(struct template *tp,
418 298f95fb 2023-01-05 op struct got_blob_object *blob) }}
419 298f95fb 2023-01-05 op {!
420 298f95fb 2023-01-05 op struct request *c = tp->tp_arg;
421 298f95fb 2023-01-05 op struct transport *t = c->t;
422 298f95fb 2023-01-05 op struct repo_commit *rc = TAILQ_FIRST(&t->repo_commits);
423 298f95fb 2023-01-05 op !}
424 298f95fb 2023-01-05 op <div id="blob_title_wrapper">
425 298f95fb 2023-01-05 op <div id="blob_title">Blob</div>
426 298f95fb 2023-01-05 op </div>
427 298f95fb 2023-01-05 op <div id="blob_content">
428 298f95fb 2023-01-05 op <div id="blob_header_wrapper">
429 298f95fb 2023-01-05 op <div id="blob_header">
430 298f95fb 2023-01-05 op <div class="header_age_title">Date:</div>
431 298f95fb 2023-01-05 op <div class="header_age">
432 298f95fb 2023-01-05 op {{ render gotweb_render_age(tp, rc->committer_time, TM_LONG) }}
433 298f95fb 2023-01-05 op </div>
434 298f95fb 2023-01-05 op <div id="header_commit_msg_title">Message:</div>
435 298f95fb 2023-01-05 op <div id="header_commit_msg">{{ rc->commit_msg }}</div>
436 298f95fb 2023-01-05 op </div>
437 298f95fb 2023-01-05 op </div>
438 298f95fb 2023-01-05 op <div class="dotted_line"></div>
439 298f95fb 2023-01-05 op <div id="blob">
440 298f95fb 2023-01-05 op <pre>
441 298f95fb 2023-01-05 op {{ render got_output_blob_by_lines(tp, blob, gotweb_render_blob_line) }}
442 298f95fb 2023-01-05 op </pre>
443 298f95fb 2023-01-05 op </div>
444 156a1144 2022-12-17 op </div>
445 1abb18e1 2022-12-20 op {{ end }}
446 1abb18e1 2022-12-20 op
447 298f95fb 2023-01-05 op {{ define gotweb_render_blob_line(struct template *tp, const char *line,
448 298f95fb 2023-01-05 op size_t no) }}
449 298f95fb 2023-01-05 op {!
450 298f95fb 2023-01-05 op char lineno[16];
451 298f95fb 2023-01-05 op int r;
452 298f95fb 2023-01-05 op
453 298f95fb 2023-01-05 op r = snprintf(lineno, sizeof(lineno), "%zu", no);
454 298f95fb 2023-01-05 op if (r < 0 || (size_t)r >= sizeof(lineno))
455 298f95fb 2023-01-05 op return -1;
456 298f95fb 2023-01-05 op !}
457 298f95fb 2023-01-05 op <div class="blob_line" id="line{{ lineno }}">
458 298f95fb 2023-01-05 op <div class="blob_number">
459 298f95fb 2023-01-05 op <a href="#line{{ lineno }}">{{ lineno }}</a>
460 298f95fb 2023-01-05 op </div>
461 298f95fb 2023-01-05 op <div class="blob_code">{{ line }}</div>
462 43d421de 2023-01-05 op </div>
463 43d421de 2023-01-05 op {{ end }}
464 43d421de 2023-01-05 op
465 43d421de 2023-01-05 op {{ define gotweb_render_tree(struct template *tp) }}
466 43d421de 2023-01-05 op {!
467 43d421de 2023-01-05 op struct request *c = tp->tp_arg;
468 43d421de 2023-01-05 op struct transport *t = c->t;
469 43d421de 2023-01-05 op struct repo_commit *rc = TAILQ_FIRST(&t->repo_commits);
470 43d421de 2023-01-05 op !}
471 43d421de 2023-01-05 op <div id="tree_title_wrapper">
472 43d421de 2023-01-05 op <div id="tree_title">Tree</div>
473 43d421de 2023-01-05 op </div>
474 43d421de 2023-01-05 op <div id="tree_content">
475 43d421de 2023-01-05 op <div id="tree_header_wrapper">
476 43d421de 2023-01-05 op <div id="tree_header">
477 43d421de 2023-01-05 op <div id="header_tree_title">Tree:</div>
478 43d421de 2023-01-05 op <div id="header_tree">{{ rc->tree_id }}</div>
479 43d421de 2023-01-05 op <div class="header_age_title">Date:</div>
480 43d421de 2023-01-05 op <div class="header_age">
481 43d421de 2023-01-05 op {{ render gotweb_render_age(tp, rc->committer_time, TM_LONG) }}
482 43d421de 2023-01-05 op </div>
483 43d421de 2023-01-05 op <div id="header_commit_msg_title">Message:</div>
484 43d421de 2023-01-05 op <div id="header_commit_msg">{{ rc->commit_msg }}</div>
485 43d421de 2023-01-05 op </div>
486 43d421de 2023-01-05 op </div>
487 43d421de 2023-01-05 op <div class="dotted_line"></div>
488 43d421de 2023-01-05 op <div id="tree">
489 43d421de 2023-01-05 op {{ render got_output_repo_tree(c, gotweb_render_tree_item) }}
490 43d421de 2023-01-05 op </div>
491 43d421de 2023-01-05 op </div>
492 43d421de 2023-01-05 op {{ end }}
493 43d421de 2023-01-05 op
494 43d421de 2023-01-05 op {{ define gotweb_render_tree_item(struct template *tp,
495 43d421de 2023-01-05 op struct got_tree_entry *te) }}
496 43d421de 2023-01-05 op {!
497 43d421de 2023-01-05 op struct request *c = tp->tp_arg;
498 43d421de 2023-01-05 op struct transport *t = c->t;
499 43d421de 2023-01-05 op struct querystring *qs = t->qs;
500 43d421de 2023-01-05 op struct repo_commit *rc = TAILQ_FIRST(&t->repo_commits);
501 43d421de 2023-01-05 op const char *modestr = "";
502 43d421de 2023-01-05 op const char *name;
503 43d421de 2023-01-05 op const char *folder;
504 43d421de 2023-01-05 op char *dir = NULL;
505 43d421de 2023-01-05 op mode_t mode;
506 43d421de 2023-01-05 op struct gotweb_url url = {
507 43d421de 2023-01-05 op .index_page = -1,
508 43d421de 2023-01-05 op .page = -1,
509 43d421de 2023-01-05 op .commit = rc->commit_id,
510 43d421de 2023-01-05 op .path = qs->path,
511 43d421de 2023-01-05 op };
512 43d421de 2023-01-05 op
513 43d421de 2023-01-05 op name = got_tree_entry_get_name(te);
514 43d421de 2023-01-05 op mode = got_tree_entry_get_mode(te);
515 43d421de 2023-01-05 op
516 43d421de 2023-01-05 op folder = qs->folder ? qs->folder : "";
517 43d421de 2023-01-05 op if (S_ISDIR(mode)) {
518 43d421de 2023-01-05 op if (asprintf(&dir, "%s/%s", folder, name) == -1)
519 43d421de 2023-01-05 op return (-1);
520 43d421de 2023-01-05 op
521 43d421de 2023-01-05 op url.action = TREE;
522 43d421de 2023-01-05 op url.folder = dir;
523 43d421de 2023-01-05 op } else {
524 43d421de 2023-01-05 op url.action = BLOB;
525 43d421de 2023-01-05 op url.folder = folder;
526 43d421de 2023-01-05 op url.file = name;
527 43d421de 2023-01-05 op }
528 43d421de 2023-01-05 op
529 43d421de 2023-01-05 op if (got_object_tree_entry_is_submodule(te))
530 43d421de 2023-01-05 op modestr = "$";
531 43d421de 2023-01-05 op else if (S_ISLNK(mode))
532 43d421de 2023-01-05 op modestr = "@";
533 43d421de 2023-01-05 op else if (S_ISDIR(mode))
534 43d421de 2023-01-05 op modestr = "/";
535 43d421de 2023-01-05 op else if (mode & S_IXUSR)
536 43d421de 2023-01-05 op modestr = "*";
537 43d421de 2023-01-05 op !}
538 43d421de 2023-01-05 op <div class="tree_wrapper">
539 43d421de 2023-01-05 op {{ if S_ISDIR(mode) }}
540 43d421de 2023-01-05 op <div class="tree_line">
541 43d421de 2023-01-05 op <a href="{{ render gotweb_render_url(c, &url) }}">
542 43d421de 2023-01-05 op {{ name }}{{ modestr }}
543 43d421de 2023-01-05 op </a>
544 43d421de 2023-01-05 op </div>
545 43d421de 2023-01-05 op <div class="tree_line_blank">&nbsp;</div>
546 43d421de 2023-01-05 op {{ else }}
547 43d421de 2023-01-05 op <div class="tree_line">
548 43d421de 2023-01-05 op <a href="{{ render gotweb_render_url(c, &url) }}">
549 43d421de 2023-01-05 op {{ name }}{{ modestr }}
550 43d421de 2023-01-05 op </a>
551 43d421de 2023-01-05 op </div>
552 43d421de 2023-01-05 op <div class="tree_line_blank">
553 43d421de 2023-01-05 op {! url.action = COMMITS; !}
554 43d421de 2023-01-05 op <a href="{{ render gotweb_render_url(c, &url) }}">
555 43d421de 2023-01-05 op commits
556 43d421de 2023-01-05 op </a>
557 43d421de 2023-01-05 op {{ " | " }}
558 43d421de 2023-01-05 op {! url.action = BLAME; !}
559 43d421de 2023-01-05 op <a href="{{ render gotweb_render_url(c, &url) }}">
560 43d421de 2023-01-05 op blame
561 43d421de 2023-01-05 op </a>
562 43d421de 2023-01-05 op </div>
563 43d421de 2023-01-05 op {{ end }}
564 298f95fb 2023-01-05 op </div>
565 43d421de 2023-01-05 op {{ finally }}
566 43d421de 2023-01-05 op {!
567 43d421de 2023-01-05 op free(dir);
568 43d421de 2023-01-05 op !}
569 298f95fb 2023-01-05 op {{ end }}
570 298f95fb 2023-01-05 op
571 1abb18e1 2022-12-20 op {{ define gotweb_render_rss(struct template *tp) }}
572 1abb18e1 2022-12-20 op {!
573 1abb18e1 2022-12-20 op struct request *c = tp->tp_arg;
574 1abb18e1 2022-12-20 op struct server *srv = c->srv;
575 1abb18e1 2022-12-20 op struct transport *t = c->t;
576 1abb18e1 2022-12-20 op struct repo_dir *repo_dir = t->repo_dir;
577 1abb18e1 2022-12-20 op struct repo_tag *rt;
578 1abb18e1 2022-12-20 op struct gotweb_url summary = {
579 1abb18e1 2022-12-20 op .action = SUMMARY,
580 1abb18e1 2022-12-20 op .index_page = -1,
581 1abb18e1 2022-12-20 op .page = -1,
582 1abb18e1 2022-12-20 op .path = repo_dir->name,
583 1abb18e1 2022-12-20 op };
584 1abb18e1 2022-12-20 op !}
585 1abb18e1 2022-12-20 op <?xml version="1.0" encoding="UTF-8"?>
586 1abb18e1 2022-12-20 op <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
587 1abb18e1 2022-12-20 op <channel>
588 1abb18e1 2022-12-20 op <title>Tags of {{ repo_dir->name }}</title>
589 1abb18e1 2022-12-20 op <link>
590 1abb18e1 2022-12-20 op <![CDATA[
591 1abb18e1 2022-12-20 op {{ render gotweb_render_absolute_url(c, &summary) }}
592 1abb18e1 2022-12-20 op ]]>
593 1abb18e1 2022-12-20 op </link>
594 1abb18e1 2022-12-20 op {{ if srv->show_repo_description }}
595 1abb18e1 2022-12-20 op <description>{{ repo_dir->description }}</description>
596 1abb18e1 2022-12-20 op {{ end }}
597 1abb18e1 2022-12-20 op {{ tailq-foreach rt &t->repo_tags entry }}
598 1abb18e1 2022-12-20 op {{ render rss_tag_item(tp, rt) }}
599 1abb18e1 2022-12-20 op {{ end }}
600 1abb18e1 2022-12-20 op </channel>
601 1abb18e1 2022-12-20 op </rss>
602 1abb18e1 2022-12-20 op {{ end }}
603 1abb18e1 2022-12-20 op
604 1abb18e1 2022-12-20 op {{ define rss_tag_item(struct template *tp, struct repo_tag *rt) }}
605 1abb18e1 2022-12-20 op {!
606 1abb18e1 2022-12-20 op struct request *c = tp->tp_arg;
607 1abb18e1 2022-12-20 op struct transport *t = c->t;
608 1abb18e1 2022-12-20 op struct repo_dir *repo_dir = t->repo_dir;
609 1abb18e1 2022-12-20 op char *tag_name = rt->tag_name;
610 1abb18e1 2022-12-20 op struct gotweb_url tag = {
611 1abb18e1 2022-12-20 op .action = TAG,
612 1abb18e1 2022-12-20 op .index_page = -1,
613 1abb18e1 2022-12-20 op .page = -1,
614 1abb18e1 2022-12-20 op .path = repo_dir->name,
615 1abb18e1 2022-12-20 op .commit = rt->commit_id,
616 1abb18e1 2022-12-20 op };
617 1abb18e1 2022-12-20 op
618 1abb18e1 2022-12-20 op if (strncmp(tag_name, "refs/tags/", 10) == 0)
619 1abb18e1 2022-12-20 op tag_name += 10;
620 1abb18e1 2022-12-20 op !}
621 1abb18e1 2022-12-20 op <item>
622 1abb18e1 2022-12-20 op <title>{{ repo_dir->name }} {{" "}} {{ tag_name }}</title>
623 1abb18e1 2022-12-20 op <link>
624 1abb18e1 2022-12-20 op <![CDATA[
625 1abb18e1 2022-12-20 op {{ render gotweb_render_absolute_url(c, &tag) }}
626 1abb18e1 2022-12-20 op ]]>
627 1abb18e1 2022-12-20 op </link>
628 1abb18e1 2022-12-20 op <description>
629 1abb18e1 2022-12-20 op <![CDATA[<pre>{{ rt->tag_commit }}</pre>]]>
630 1abb18e1 2022-12-20 op </description>
631 1abb18e1 2022-12-20 op {{ render rss_author(tp, rt->tagger) }}
632 1abb18e1 2022-12-20 op <guid isPermaLink="false">{{ rt->commit_id }}</guid>
633 1abb18e1 2022-12-20 op <pubDate>
634 1abb18e1 2022-12-20 op {{ render gotweb_render_age(tp, rt->tagger_time, TM_RFC822) }}
635 1abb18e1 2022-12-20 op </pubDate>
636 1abb18e1 2022-12-20 op </item>
637 156a1144 2022-12-17 op {{ end }}
638 1abb18e1 2022-12-20 op
639 1abb18e1 2022-12-20 op {{ define rss_author(struct template *tp, char *author) }}
640 1abb18e1 2022-12-20 op {!
641 1abb18e1 2022-12-20 op char *t, *mail;
642 1abb18e1 2022-12-20 op
643 1abb18e1 2022-12-20 op /* what to do if the author name contains a paren? */
644 1abb18e1 2022-12-20 op if (strchr(author, '(') != NULL || strchr(author, ')') != NULL)
645 1abb18e1 2022-12-20 op return 0;
646 1abb18e1 2022-12-20 op
647 1abb18e1 2022-12-20 op t = strchr(author, '<');
648 1abb18e1 2022-12-20 op if (t == NULL)
649 1abb18e1 2022-12-20 op return 0;
650 1abb18e1 2022-12-20 op *t = '\0';
651 1abb18e1 2022-12-20 op mail = t+1;
652 1abb18e1 2022-12-20 op
653 1abb18e1 2022-12-20 op while (isspace((unsigned char)*--t))
654 1abb18e1 2022-12-20 op *t = '\0';
655 1abb18e1 2022-12-20 op
656 1abb18e1 2022-12-20 op t = strchr(mail, '>');
657 1abb18e1 2022-12-20 op if (t == NULL)
658 1abb18e1 2022-12-20 op return 0;
659 1abb18e1 2022-12-20 op *t = '\0';
660 1abb18e1 2022-12-20 op !}
661 1abb18e1 2022-12-20 op <author>
662 1abb18e1 2022-12-20 op {{ mail }} {{" "}} ({{ author }})
663 1abb18e1 2022-12-20 op </author>
664 1abb18e1 2022-12-20 op {{ end }}