Blame


1 2c251c14 2020-01-15 tracey /*
2 9460dac0 2020-01-15 tracey * Copyright (c) 2019, 2020 Tracey Emery <tracey@traceyemery.net>
3 2c251c14 2020-01-15 tracey * Copyright (c) 2018, 2019 Stefan Sperling <stsp@openbsd.org>
4 2c251c14 2020-01-15 tracey *
5 2c251c14 2020-01-15 tracey * Permission to use, copy, modify, and distribute this software for any
6 2c251c14 2020-01-15 tracey * purpose with or without fee is hereby granted, provided that the above
7 2c251c14 2020-01-15 tracey * copyright notice and this permission notice appear in all copies.
8 2c251c14 2020-01-15 tracey *
9 2c251c14 2020-01-15 tracey * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 2c251c14 2020-01-15 tracey * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 2c251c14 2020-01-15 tracey * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 2c251c14 2020-01-15 tracey * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 2c251c14 2020-01-15 tracey * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 2c251c14 2020-01-15 tracey * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 2c251c14 2020-01-15 tracey * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 2c251c14 2020-01-15 tracey */
17 2c251c14 2020-01-15 tracey
18 2c251c14 2020-01-15 tracey #include <sys/stat.h>
19 2c251c14 2020-01-15 tracey #include <sys/types.h>
20 2c251c14 2020-01-15 tracey
21 017d6da3 2020-01-29 tracey #include <ctype.h>
22 2c251c14 2020-01-15 tracey #include <dirent.h>
23 2c251c14 2020-01-15 tracey #include <err.h>
24 c25c2314 2020-01-28 stsp #include <errno.h>
25 474370cb 2020-01-15 tracey #include <regex.h>
26 ec242592 2022-04-22 thomas #include <sha1.h>
27 2c251c14 2020-01-15 tracey #include <stdarg.h>
28 2c251c14 2020-01-15 tracey #include <stdint.h>
29 2c251c14 2020-01-15 tracey #include <stdio.h>
30 2c251c14 2020-01-15 tracey #include <stdlib.h>
31 2c251c14 2020-01-15 tracey #include <string.h>
32 2c251c14 2020-01-15 tracey #include <unistd.h>
33 2c251c14 2020-01-15 tracey
34 c34ec417 2020-06-22 tracey #include <got_error.h>
35 2c251c14 2020-01-15 tracey #include <got_object.h>
36 2c251c14 2020-01-15 tracey #include <got_reference.h>
37 2c251c14 2020-01-15 tracey #include <got_repository.h>
38 2c251c14 2020-01-15 tracey #include <got_path.h>
39 2c251c14 2020-01-15 tracey #include <got_cancel.h>
40 2c251c14 2020-01-15 tracey #include <got_worktree.h>
41 2c251c14 2020-01-15 tracey #include <got_diff.h>
42 2c251c14 2020-01-15 tracey #include <got_commit_graph.h>
43 2c251c14 2020-01-15 tracey #include <got_blame.h>
44 2c251c14 2020-01-15 tracey #include <got_privsep.h>
45 2c251c14 2020-01-15 tracey #include <got_opentemp.h>
46 2c251c14 2020-01-15 tracey
47 2c251c14 2020-01-15 tracey #include <kcgi.h>
48 2c251c14 2020-01-15 tracey #include <kcgihtml.h>
49 2c251c14 2020-01-15 tracey
50 2c251c14 2020-01-15 tracey #include "gotweb.h"
51 2c251c14 2020-01-15 tracey
52 2c251c14 2020-01-15 tracey #ifndef nitems
53 2c251c14 2020-01-15 tracey #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
54 2c251c14 2020-01-15 tracey #endif
55 2c251c14 2020-01-15 tracey
56 54415d85 2020-01-15 tracey struct gw_trans {
57 f2f46662 2020-01-23 tracey TAILQ_HEAD(headers, gw_header) gw_headers;
58 f2f46662 2020-01-23 tracey TAILQ_HEAD(dirs, gw_dir) gw_dirs;
59 deac617c 2020-02-14 tracey struct got_repository *repo;
60 46b9c89b 2020-01-15 tracey struct gw_dir *gw_dir;
61 c34ec417 2020-06-22 tracey struct gotweb_config *gw_conf;
62 2c251c14 2020-01-15 tracey struct ktemplate *gw_tmpl;
63 2c251c14 2020-01-15 tracey struct khtmlreq *gw_html_req;
64 2c251c14 2020-01-15 tracey struct kreq *gw_req;
65 f1200fe3 2020-02-13 tracey const struct got_error *error;
66 f652ec0c 2020-02-13 stsp const char *repo_name;
67 2c251c14 2020-01-15 tracey char *repo_path;
68 56997cd3 2020-02-14 tracey char *commit_id;
69 55e46400 2020-02-18 tracey char *next_id;
70 55e46400 2020-02-18 tracey char *prev_id;
71 4d6abe2b 2020-02-13 stsp const char *repo_file;
72 ec46ccd7 2020-01-15 tracey char *repo_folder;
73 742ba378 2020-02-14 stsp const char *headref;
74 2c251c14 2020-01-15 tracey unsigned int action;
75 2c251c14 2020-01-15 tracey unsigned int page;
76 2c251c14 2020-01-15 tracey unsigned int repos_total;
77 387a29ba 2020-01-15 tracey enum kmime mime;
78 2c251c14 2020-01-15 tracey };
79 2c251c14 2020-01-15 tracey
80 f2f46662 2020-01-23 tracey struct gw_header {
81 f2f46662 2020-01-23 tracey TAILQ_ENTRY(gw_header) entry;
82 f2f46662 2020-01-23 tracey struct got_reflist_head refs;
83 f2f46662 2020-01-23 tracey char *path;
84 f2f46662 2020-01-23 tracey
85 f2f46662 2020-01-23 tracey char *refs_str;
86 f2f46662 2020-01-23 tracey char *commit_id; /* id_str1 */
87 f2f46662 2020-01-23 tracey char *parent_id; /* id_str2 */
88 f2f46662 2020-01-23 tracey char *tree_id;
89 4e8d6e3e 2020-02-14 tracey char *author;
90 4e8d6e3e 2020-02-14 tracey char *committer;
91 f2f46662 2020-01-23 tracey char *commit_msg;
92 f2f46662 2020-01-23 tracey time_t committer_time;
93 2c251c14 2020-01-15 tracey };
94 2c251c14 2020-01-15 tracey
95 2c251c14 2020-01-15 tracey struct gw_dir {
96 2c251c14 2020-01-15 tracey TAILQ_ENTRY(gw_dir) entry;
97 2c251c14 2020-01-15 tracey char *name;
98 2c251c14 2020-01-15 tracey char *owner;
99 2c251c14 2020-01-15 tracey char *description;
100 2c251c14 2020-01-15 tracey char *url;
101 2c251c14 2020-01-15 tracey char *age;
102 2c251c14 2020-01-15 tracey char *path;
103 2c251c14 2020-01-15 tracey };
104 2c251c14 2020-01-15 tracey
105 f2f46662 2020-01-23 tracey enum gw_key {
106 f2f46662 2020-01-23 tracey KEY_ACTION,
107 f2f46662 2020-01-23 tracey KEY_COMMIT_ID,
108 f2f46662 2020-01-23 tracey KEY_FILE,
109 f2f46662 2020-01-23 tracey KEY_FOLDER,
110 f2f46662 2020-01-23 tracey KEY_HEADREF,
111 f2f46662 2020-01-23 tracey KEY_PAGE,
112 f2f46662 2020-01-23 tracey KEY_PATH,
113 55e46400 2020-02-18 tracey KEY_PREV_ID,
114 f2f46662 2020-01-23 tracey KEY__ZMAX
115 f2f46662 2020-01-23 tracey };
116 f2f46662 2020-01-23 tracey
117 54415d85 2020-01-15 tracey enum gw_tmpl {
118 f2f46662 2020-01-23 tracey TEMPL_CONTENT,
119 2c251c14 2020-01-15 tracey TEMPL_HEAD,
120 2c251c14 2020-01-15 tracey TEMPL_HEADER,
121 f2f46662 2020-01-23 tracey TEMPL_SEARCH,
122 2c251c14 2020-01-15 tracey TEMPL_SITEPATH,
123 2c251c14 2020-01-15 tracey TEMPL_SITEOWNER,
124 2c251c14 2020-01-15 tracey TEMPL_TITLE,
125 2c251c14 2020-01-15 tracey TEMPL__MAX
126 2c251c14 2020-01-15 tracey };
127 2c251c14 2020-01-15 tracey
128 54415d85 2020-01-15 tracey enum gw_ref_tm {
129 387a29ba 2020-01-15 tracey TM_DIFF,
130 387a29ba 2020-01-15 tracey TM_LONG,
131 387a29ba 2020-01-15 tracey };
132 387a29ba 2020-01-15 tracey
133 ff4bb25f 2020-02-19 tracey enum gw_tags_type {
134 87f9ebf5 2020-01-15 tracey TAGBRIEF,
135 87f9ebf5 2020-01-15 tracey TAGFULL,
136 87f9ebf5 2020-01-15 tracey };
137 87f9ebf5 2020-01-15 tracey
138 54415d85 2020-01-15 tracey static const char *const gw_templs[TEMPL__MAX] = {
139 f2f46662 2020-01-23 tracey "content",
140 2c251c14 2020-01-15 tracey "head",
141 2c251c14 2020-01-15 tracey "header",
142 f2f46662 2020-01-23 tracey "search",
143 2c251c14 2020-01-15 tracey "sitepath",
144 2c251c14 2020-01-15 tracey "siteowner",
145 2c251c14 2020-01-15 tracey "title",
146 2c251c14 2020-01-15 tracey };
147 2c251c14 2020-01-15 tracey
148 ec46ccd7 2020-01-15 tracey static const struct kvalid gw_keys[KEY__ZMAX] = {
149 2c251c14 2020-01-15 tracey { kvalid_stringne, "action" },
150 2c251c14 2020-01-15 tracey { kvalid_stringne, "commit" },
151 2c251c14 2020-01-15 tracey { kvalid_stringne, "file" },
152 ec46ccd7 2020-01-15 tracey { kvalid_stringne, "folder" },
153 8087c3c5 2020-01-15 tracey { kvalid_stringne, "headref" },
154 ec46ccd7 2020-01-15 tracey { kvalid_int, "page" },
155 ec46ccd7 2020-01-15 tracey { kvalid_stringne, "path" },
156 55e46400 2020-02-18 tracey { kvalid_stringne, "prev" },
157 2c251c14 2020-01-15 tracey };
158 2c251c14 2020-01-15 tracey
159 f2f46662 2020-01-23 tracey static struct gw_header *gw_init_header(void);
160 2c251c14 2020-01-15 tracey
161 b0a1bc86 2020-02-14 stsp static void gw_free_header(struct gw_header *);
162 00f13350 2020-02-10 tracey
163 00f13350 2020-02-10 tracey static int gw_template(size_t, void *);
164 00f13350 2020-02-10 tracey
165 f1200fe3 2020-02-13 tracey static const struct got_error *gw_error(struct gw_trans *);
166 f1200fe3 2020-02-13 tracey static const struct got_error *gw_init_gw_dir(struct gw_dir **, const char *);
167 185ba3ba 2020-02-04 tracey static const struct got_error *gw_get_repo_description(char **,
168 185ba3ba 2020-02-04 tracey struct gw_trans *, char *);
169 9a1cc63f 2020-02-03 stsp static const struct got_error *gw_get_repo_owner(char **, struct gw_trans *,
170 2c251c14 2020-01-15 tracey char *);
171 55ccf528 2020-02-03 stsp static const struct got_error *gw_get_time_str(char **, time_t, int);
172 d126c1b7 2020-01-29 stsp static const struct got_error *gw_get_repo_age(char **, struct gw_trans *,
173 2011c142 2020-02-14 stsp char *, const char *, int);
174 84de9106 2020-12-26 stsp static const struct got_error *gw_output_file_blame(struct gw_trans *,
175 84de9106 2020-12-26 stsp struct gw_header *);
176 84de9106 2020-12-26 stsp static const struct got_error *gw_output_blob_buf(struct gw_trans *,
177 84de9106 2020-12-26 stsp struct gw_header *);
178 84de9106 2020-12-26 stsp static const struct got_error *gw_output_repo_tree(struct gw_trans *,
179 84de9106 2020-12-26 stsp struct gw_header *);
180 38b240fb 2020-02-06 tracey static const struct got_error *gw_output_diff(struct gw_trans *,
181 f2f46662 2020-01-23 tracey struct gw_header *);
182 38b240fb 2020-02-06 tracey static const struct got_error *gw_output_repo_tags(struct gw_trans *,
183 4ff7391f 2020-01-28 tracey struct gw_header *, int, int);
184 9eed6f10 2020-02-08 tracey static const struct got_error *gw_output_repo_heads(struct gw_trans *);
185 4ae179a2 2020-02-08 tracey static const struct got_error *gw_output_site_link(struct gw_trans *);
186 185ba3ba 2020-02-04 tracey static const struct got_error *gw_get_clone_url(char **, struct gw_trans *,
187 185ba3ba 2020-02-04 tracey char *);
188 f7cc9480 2020-02-05 tracey static const struct got_error *gw_colordiff_line(struct gw_trans *, char *);
189 2c251c14 2020-01-15 tracey
190 21a55cc7 2020-02-04 tracey static const struct got_error *gw_gen_commit_header(struct gw_trans *, char *,
191 21a55cc7 2020-02-04 tracey char*);
192 f7cc9480 2020-02-05 tracey static const struct got_error *gw_gen_diff_header(struct gw_trans *, char *,
193 f7cc9480 2020-02-05 tracey char*);
194 21a55cc7 2020-02-04 tracey static const struct got_error *gw_gen_author_header(struct gw_trans *,
195 21a55cc7 2020-02-04 tracey const char *);
196 21a55cc7 2020-02-04 tracey static const struct got_error *gw_gen_age_header(struct gw_trans *,
197 21a55cc7 2020-02-04 tracey const char *);
198 21a55cc7 2020-02-04 tracey static const struct got_error *gw_gen_committer_header(struct gw_trans *,
199 21a55cc7 2020-02-04 tracey const char *);
200 f7cc9480 2020-02-05 tracey static const struct got_error *gw_gen_commit_msg_header(struct gw_trans*,
201 f7cc9480 2020-02-05 tracey char *);
202 f7cc9480 2020-02-05 tracey static const struct got_error *gw_gen_tree_header(struct gw_trans *, char *);
203 00f13350 2020-02-10 tracey static const struct got_error *gw_display_open(struct gw_trans *, enum khttp,
204 2c251c14 2020-01-15 tracey enum kmime);
205 00f13350 2020-02-10 tracey static const struct got_error *gw_display_index(struct gw_trans *);
206 00f13350 2020-02-10 tracey static const struct got_error *gw_get_header(struct gw_trans *,
207 f2f46662 2020-01-23 tracey struct gw_header *, int);
208 00f13350 2020-02-10 tracey static const struct got_error *gw_get_commits(struct gw_trans *,
209 3c245a0e 2020-02-14 tracey struct gw_header *, int,
210 3c245a0e 2020-02-14 tracey struct got_object_id *);
211 00f13350 2020-02-10 tracey static const struct got_error *gw_get_commit(struct gw_trans *,
212 4e8d6e3e 2020-02-14 tracey struct gw_header *,
213 4e8d6e3e 2020-02-14 tracey struct got_commit_object *,
214 3c245a0e 2020-02-14 tracey struct got_object_id *);
215 d4159696 2020-02-13 stsp static const struct got_error *gw_apply_unveil(const char *);
216 00f13350 2020-02-10 tracey static const struct got_error *gw_blame_cb(void *, int, int,
217 10f173fe 2022-04-16 thomas struct got_commit_object *,
218 ec46ccd7 2020-01-15 tracey struct got_object_id *);
219 00f13350 2020-02-10 tracey static const struct got_error *gw_load_got_paths(struct gw_trans *);
220 00f13350 2020-02-10 tracey static const struct got_error *gw_load_got_path(struct gw_trans *,
221 2c251c14 2020-01-15 tracey struct gw_dir *);
222 00f13350 2020-02-10 tracey static const struct got_error *gw_parse_querystring(struct gw_trans *);
223 00f13350 2020-02-10 tracey static const struct got_error *gw_blame(struct gw_trans *);
224 00f13350 2020-02-10 tracey static const struct got_error *gw_blob(struct gw_trans *);
225 00f13350 2020-02-10 tracey static const struct got_error *gw_diff(struct gw_trans *);
226 00f13350 2020-02-10 tracey static const struct got_error *gw_index(struct gw_trans *);
227 00f13350 2020-02-10 tracey static const struct got_error *gw_commits(struct gw_trans *);
228 00f13350 2020-02-10 tracey static const struct got_error *gw_briefs(struct gw_trans *);
229 00f13350 2020-02-10 tracey static const struct got_error *gw_summary(struct gw_trans *);
230 00f13350 2020-02-10 tracey static const struct got_error *gw_tree(struct gw_trans *);
231 00f13350 2020-02-10 tracey static const struct got_error *gw_tag(struct gw_trans *);
232 ff4bb25f 2020-02-19 tracey static const struct got_error *gw_tags(struct gw_trans *);
233 2c251c14 2020-01-15 tracey
234 2c251c14 2020-01-15 tracey struct gw_query_action {
235 2c251c14 2020-01-15 tracey unsigned int func_id;
236 2c251c14 2020-01-15 tracey const char *func_name;
237 54415d85 2020-01-15 tracey const struct got_error *(*func_main)(struct gw_trans *);
238 2c251c14 2020-01-15 tracey char *template;
239 2c251c14 2020-01-15 tracey };
240 2c251c14 2020-01-15 tracey
241 2c251c14 2020-01-15 tracey enum gw_query_actions {
242 2c251c14 2020-01-15 tracey GW_BLAME,
243 e46f587c 2020-01-29 tracey GW_BLOB,
244 f2f46662 2020-01-23 tracey GW_BRIEFS,
245 f2f46662 2020-01-23 tracey GW_COMMITS,
246 f2f46662 2020-01-23 tracey GW_DIFF,
247 2c251c14 2020-01-15 tracey GW_ERR,
248 2c251c14 2020-01-15 tracey GW_INDEX,
249 2c251c14 2020-01-15 tracey GW_SUMMARY,
250 4ff7391f 2020-01-28 tracey GW_TAG,
251 ff4bb25f 2020-02-19 tracey GW_TAGS,
252 b772de24 2020-01-15 tracey GW_TREE,
253 2c251c14 2020-01-15 tracey };
254 2c251c14 2020-01-15 tracey
255 fa8129f7 2022-03-22 thomas static const struct gw_query_action gw_query_funcs[] = {
256 f2f46662 2020-01-23 tracey { GW_BLAME, "blame", gw_blame, "gw_tmpl/blame.tmpl" },
257 017d6da3 2020-01-29 tracey { GW_BLOB, "blob", NULL, NULL },
258 f2f46662 2020-01-23 tracey { GW_BRIEFS, "briefs", gw_briefs, "gw_tmpl/briefs.tmpl" },
259 f2f46662 2020-01-23 tracey { GW_COMMITS, "commits", gw_commits, "gw_tmpl/commit.tmpl" },
260 f2f46662 2020-01-23 tracey { GW_DIFF, "diff", gw_diff, "gw_tmpl/diff.tmpl" },
261 f1200fe3 2020-02-13 tracey { GW_ERR, "error", gw_error, "gw_tmpl/err.tmpl" },
262 f2f46662 2020-01-23 tracey { GW_INDEX, "index", gw_index, "gw_tmpl/index.tmpl" },
263 f2f46662 2020-01-23 tracey { GW_SUMMARY, "summary", gw_summary, "gw_tmpl/summry.tmpl" },
264 4ff7391f 2020-01-28 tracey { GW_TAG, "tag", gw_tag, "gw_tmpl/tag.tmpl" },
265 ff4bb25f 2020-02-19 tracey { GW_TAGS, "tags", gw_tags, "gw_tmpl/tags.tmpl" },
266 f2f46662 2020-01-23 tracey { GW_TREE, "tree", gw_tree, "gw_tmpl/tree.tmpl" },
267 2c251c14 2020-01-15 tracey };
268 5d1296de 2020-02-13 stsp
269 5d1296de 2020-02-13 stsp static const char *
270 5d1296de 2020-02-13 stsp gw_get_action_name(struct gw_trans *gw_trans)
271 5d1296de 2020-02-13 stsp {
272 5d1296de 2020-02-13 stsp return gw_query_funcs[gw_trans->action].func_name;
273 5d1296de 2020-02-13 stsp }
274 c25c2314 2020-01-28 stsp
275 c25c2314 2020-01-28 stsp static const struct got_error *
276 c25c2314 2020-01-28 stsp gw_kcgi_error(enum kcgi_err kerr)
277 c25c2314 2020-01-28 stsp {
278 c25c2314 2020-01-28 stsp if (kerr == KCGI_OK)
279 c25c2314 2020-01-28 stsp return NULL;
280 c25c2314 2020-01-28 stsp
281 c25c2314 2020-01-28 stsp if (kerr == KCGI_EXIT || kerr == KCGI_HUP)
282 c25c2314 2020-01-28 stsp return got_error(GOT_ERR_CANCELLED);
283 c25c2314 2020-01-28 stsp
284 c25c2314 2020-01-28 stsp if (kerr == KCGI_ENOMEM)
285 f7cc9480 2020-02-05 tracey return got_error_set_errno(ENOMEM,
286 7afec891 2020-02-06 stsp kcgi_strerror(kerr));
287 2c251c14 2020-01-15 tracey
288 c25c2314 2020-01-28 stsp if (kerr == KCGI_ENFILE)
289 f7cc9480 2020-02-05 tracey return got_error_set_errno(ENFILE,
290 7afec891 2020-02-06 stsp kcgi_strerror(kerr));
291 c25c2314 2020-01-28 stsp
292 c25c2314 2020-01-28 stsp if (kerr == KCGI_EAGAIN)
293 f7cc9480 2020-02-05 tracey return got_error_set_errno(EAGAIN,
294 7afec891 2020-02-06 stsp kcgi_strerror(kerr));
295 c25c2314 2020-01-28 stsp
296 c25c2314 2020-01-28 stsp if (kerr == KCGI_FORM)
297 f7cc9480 2020-02-05 tracey return got_error_msg(GOT_ERR_IO,
298 7afec891 2020-02-06 stsp kcgi_strerror(kerr));
299 c25c2314 2020-01-28 stsp
300 7afec891 2020-02-06 stsp return got_error_from_errno(kcgi_strerror(kerr));
301 c25c2314 2020-01-28 stsp }
302 c25c2314 2020-01-28 stsp
303 2c251c14 2020-01-15 tracey static const struct got_error *
304 d4159696 2020-02-13 stsp gw_apply_unveil(const char *repo_path)
305 2c251c14 2020-01-15 tracey {
306 2c251c14 2020-01-15 tracey const struct got_error *err;
307 2c251c14 2020-01-15 tracey
308 245c7240 2021-06-17 stsp #ifdef PROFILE
309 245c7240 2021-06-17 stsp if (unveil("gmon.out", "rwc") != 0)
310 245c7240 2021-06-17 stsp return got_error_from_errno2("unveil", "gmon.out");
311 245c7240 2021-06-17 stsp #endif
312 2c251c14 2020-01-15 tracey if (repo_path && unveil(repo_path, "r") != 0)
313 2c251c14 2020-01-15 tracey return got_error_from_errno2("unveil", repo_path);
314 2c251c14 2020-01-15 tracey
315 bb63914a 2020-02-17 stsp if (unveil(GOT_TMPDIR_STR, "rwc") != 0)
316 bb63914a 2020-02-17 stsp return got_error_from_errno2("unveil", GOT_TMPDIR_STR);
317 2c251c14 2020-01-15 tracey
318 2c251c14 2020-01-15 tracey err = got_privsep_unveil_exec_helpers();
319 2c251c14 2020-01-15 tracey if (err != NULL)
320 2c251c14 2020-01-15 tracey return err;
321 2c251c14 2020-01-15 tracey
322 2c251c14 2020-01-15 tracey if (unveil(NULL, NULL) != 0)
323 2c251c14 2020-01-15 tracey return got_error_from_errno("unveil");
324 65b95fb2 2020-01-15 tracey
325 32cd4d18 2020-02-03 stsp return NULL;
326 5894d523 2020-02-03 stsp }
327 5894d523 2020-02-03 stsp
328 5894d523 2020-02-03 stsp static int
329 e0857cfe 2020-02-06 tracey isbinary(const uint8_t *buf, size_t n)
330 5894d523 2020-02-03 stsp {
331 e0857cfe 2020-02-06 tracey size_t i;
332 e0857cfe 2020-02-06 tracey
333 e0857cfe 2020-02-06 tracey for (i = 0; i < n; i++)
334 e0857cfe 2020-02-06 tracey if (buf[i] == 0)
335 e0857cfe 2020-02-06 tracey return 1;
336 e0857cfe 2020-02-06 tracey return 0;
337 32cd4d18 2020-02-03 stsp }
338 5894d523 2020-02-03 stsp
339 32cd4d18 2020-02-03 stsp static const struct got_error *
340 54415d85 2020-01-15 tracey gw_blame(struct gw_trans *gw_trans)
341 2c251c14 2020-01-15 tracey {
342 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
343 f2f46662 2020-01-23 tracey struct gw_header *header = NULL;
344 78a9dab5 2020-02-07 tracey char *age = NULL;
345 1b33afc0 2020-02-14 tracey enum kcgi_err kerr = KCGI_OK;
346 2c251c14 2020-01-15 tracey
347 7a6dddae 2021-06-18 stsp #ifndef PROFILE
348 6bee13de 2020-01-16 tracey if (pledge("stdio rpath wpath cpath proc exec sendfd unveil",
349 f2f46662 2020-01-23 tracey NULL) == -1)
350 f2f46662 2020-01-23 tracey return got_error_from_errno("pledge");
351 7a6dddae 2021-06-18 stsp #endif
352 f2f46662 2020-01-23 tracey if ((header = gw_init_header()) == NULL)
353 f2f46662 2020-01-23 tracey return got_error_from_errno("malloc");
354 f2f46662 2020-01-23 tracey
355 d4159696 2020-02-13 stsp error = gw_apply_unveil(gw_trans->gw_dir->path);
356 ec46ccd7 2020-01-15 tracey if (error)
357 5ddf0079 2020-01-29 stsp goto done;
358 ec46ccd7 2020-01-15 tracey
359 1b33afc0 2020-02-14 tracey /* check querystring */
360 1b33afc0 2020-02-14 tracey if (gw_trans->repo_file == NULL) {
361 1b33afc0 2020-02-14 tracey error = got_error_msg(GOT_ERR_QUERYSTRING,
362 1b33afc0 2020-02-14 tracey "file required in querystring");
363 1b33afc0 2020-02-14 tracey goto done;
364 1b33afc0 2020-02-14 tracey }
365 1b33afc0 2020-02-14 tracey if (gw_trans->commit_id == NULL) {
366 1b33afc0 2020-02-14 tracey error = got_error_msg(GOT_ERR_QUERYSTRING,
367 1b33afc0 2020-02-14 tracey "commit required in querystring");
368 1b33afc0 2020-02-14 tracey goto done;
369 1b33afc0 2020-02-14 tracey }
370 1b33afc0 2020-02-14 tracey
371 f2f46662 2020-01-23 tracey error = gw_get_header(gw_trans, header, 1);
372 f2f46662 2020-01-23 tracey if (error)
373 5ddf0079 2020-01-29 stsp goto done;
374 9a9d12ca 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
375 9a9d12ca 2020-02-06 tracey "blame_header_wrapper", KATTR__MAX);
376 9a9d12ca 2020-02-06 tracey if (kerr != KCGI_OK)
377 9a9d12ca 2020-02-06 tracey goto done;
378 9a9d12ca 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
379 9a9d12ca 2020-02-06 tracey "blame_header", KATTR__MAX);
380 9a9d12ca 2020-02-06 tracey if (kerr != KCGI_OK)
381 9a9d12ca 2020-02-06 tracey goto done;
382 9a9d12ca 2020-02-06 tracey error = gw_get_time_str(&age, header->committer_time,
383 9a9d12ca 2020-02-06 tracey TM_LONG);
384 a81f3554 2020-02-03 stsp if (error)
385 a81f3554 2020-02-03 stsp goto done;
386 9a9d12ca 2020-02-06 tracey error = gw_gen_age_header(gw_trans, age ?age : "");
387 55ccf528 2020-02-03 stsp if (error)
388 55ccf528 2020-02-03 stsp goto done;
389 9a9d12ca 2020-02-06 tracey error = gw_gen_commit_msg_header(gw_trans, header->commit_msg);
390 9a9d12ca 2020-02-06 tracey if (error)
391 6d9fc692 2020-01-28 stsp goto done;
392 9a9d12ca 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
393 9a9d12ca 2020-02-06 tracey if (kerr != KCGI_OK)
394 6d9fc692 2020-01-28 stsp goto done;
395 9a9d12ca 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
396 9a9d12ca 2020-02-06 tracey "dotted_line", KATTR__MAX);
397 c25c2314 2020-01-28 stsp if (kerr != KCGI_OK)
398 9a9d12ca 2020-02-06 tracey goto done;
399 9a9d12ca 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
400 9a9d12ca 2020-02-06 tracey if (kerr != KCGI_OK)
401 9a9d12ca 2020-02-06 tracey goto done;
402 9a9d12ca 2020-02-06 tracey
403 9a9d12ca 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
404 9a9d12ca 2020-02-06 tracey "blame", KATTR__MAX);
405 9a9d12ca 2020-02-06 tracey if (kerr != KCGI_OK)
406 9a9d12ca 2020-02-06 tracey goto done;
407 84de9106 2020-12-26 stsp error = gw_output_file_blame(gw_trans, header);
408 9a9d12ca 2020-02-06 tracey if (error)
409 9a9d12ca 2020-02-06 tracey goto done;
410 9a9d12ca 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
411 6d9fc692 2020-01-28 stsp done:
412 b0a1bc86 2020-02-14 stsp gw_free_header(header);
413 9a9d12ca 2020-02-06 tracey if (error == NULL && kerr != KCGI_OK)
414 9a9d12ca 2020-02-06 tracey error = gw_kcgi_error(kerr);
415 2c251c14 2020-01-15 tracey return error;
416 2c251c14 2020-01-15 tracey }
417 2c251c14 2020-01-15 tracey
418 2c251c14 2020-01-15 tracey static const struct got_error *
419 e46f587c 2020-01-29 tracey gw_blob(struct gw_trans *gw_trans)
420 e46f587c 2020-01-29 tracey {
421 3b7fdcf4 2020-02-14 tracey const struct got_error *error = NULL, *err = NULL;
422 e46f587c 2020-01-29 tracey struct gw_header *header = NULL;
423 3b7fdcf4 2020-02-14 tracey enum kcgi_err kerr = KCGI_OK;
424 e46f587c 2020-01-29 tracey
425 7a6dddae 2021-06-18 stsp #ifndef PROFILE
426 e46f587c 2020-01-29 tracey if (pledge("stdio rpath wpath cpath proc exec sendfd unveil",
427 e46f587c 2020-01-29 tracey NULL) == -1)
428 e46f587c 2020-01-29 tracey return got_error_from_errno("pledge");
429 7a6dddae 2021-06-18 stsp #endif
430 e46f587c 2020-01-29 tracey if ((header = gw_init_header()) == NULL)
431 e46f587c 2020-01-29 tracey return got_error_from_errno("malloc");
432 e46f587c 2020-01-29 tracey
433 d4159696 2020-02-13 stsp error = gw_apply_unveil(gw_trans->gw_dir->path);
434 e46f587c 2020-01-29 tracey if (error)
435 e46f587c 2020-01-29 tracey goto done;
436 e46f587c 2020-01-29 tracey
437 3b7fdcf4 2020-02-14 tracey /* check querystring */
438 3b7fdcf4 2020-02-14 tracey if (gw_trans->repo_file == NULL) {
439 3b7fdcf4 2020-02-14 tracey error = got_error_msg(GOT_ERR_QUERYSTRING,
440 3b7fdcf4 2020-02-14 tracey "file required in querystring");
441 3b7fdcf4 2020-02-14 tracey goto done;
442 3b7fdcf4 2020-02-14 tracey }
443 3b7fdcf4 2020-02-14 tracey if (gw_trans->commit_id == NULL) {
444 3b7fdcf4 2020-02-14 tracey error = got_error_msg(GOT_ERR_QUERYSTRING,
445 3b7fdcf4 2020-02-14 tracey "commit required in querystring");
446 3b7fdcf4 2020-02-14 tracey goto done;
447 3b7fdcf4 2020-02-14 tracey }
448 e46f587c 2020-01-29 tracey error = gw_get_header(gw_trans, header, 1);
449 e46f587c 2020-01-29 tracey if (error)
450 e46f587c 2020-01-29 tracey goto done;
451 e46f587c 2020-01-29 tracey
452 84de9106 2020-12-26 stsp error = gw_output_blob_buf(gw_trans, header);
453 e46f587c 2020-01-29 tracey done:
454 3b7fdcf4 2020-02-14 tracey
455 3b7fdcf4 2020-02-14 tracey if (error) {
456 3b7fdcf4 2020-02-14 tracey gw_trans->mime = KMIME_TEXT_PLAIN;
457 3b7fdcf4 2020-02-14 tracey err = gw_display_index(gw_trans);
458 3b7fdcf4 2020-02-14 tracey if (err) {
459 3b7fdcf4 2020-02-14 tracey error = err;
460 3b7fdcf4 2020-02-14 tracey goto errored;
461 3b7fdcf4 2020-02-14 tracey }
462 3b7fdcf4 2020-02-14 tracey kerr = khttp_puts(gw_trans->gw_req, error->msg);
463 3b7fdcf4 2020-02-14 tracey }
464 3b7fdcf4 2020-02-14 tracey errored:
465 b0a1bc86 2020-02-14 stsp gw_free_header(header);
466 3b7fdcf4 2020-02-14 tracey if (error == NULL && kerr != KCGI_OK)
467 3b7fdcf4 2020-02-14 tracey error = gw_kcgi_error(kerr);
468 e46f587c 2020-01-29 tracey return error;
469 e46f587c 2020-01-29 tracey }
470 e46f587c 2020-01-29 tracey
471 e46f587c 2020-01-29 tracey static const struct got_error *
472 f2f46662 2020-01-23 tracey gw_diff(struct gw_trans *gw_trans)
473 2c251c14 2020-01-15 tracey {
474 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
475 f2f46662 2020-01-23 tracey struct gw_header *header = NULL;
476 78a9dab5 2020-02-07 tracey char *age = NULL;
477 f7cc9480 2020-02-05 tracey enum kcgi_err kerr = KCGI_OK;
478 2c251c14 2020-01-15 tracey
479 7a6dddae 2021-06-18 stsp #ifndef PROFILE
480 f2f46662 2020-01-23 tracey if (pledge("stdio rpath wpath cpath proc exec sendfd unveil",
481 f2f46662 2020-01-23 tracey NULL) == -1)
482 f2f46662 2020-01-23 tracey return got_error_from_errno("pledge");
483 7a6dddae 2021-06-18 stsp #endif
484 ae36ed87 2020-01-28 stsp if ((header = gw_init_header()) == NULL)
485 f2f46662 2020-01-23 tracey return got_error_from_errno("malloc");
486 f2f46662 2020-01-23 tracey
487 d4159696 2020-02-13 stsp error = gw_apply_unveil(gw_trans->gw_dir->path);
488 8087c3c5 2020-01-15 tracey if (error)
489 390d412c 2020-01-28 stsp goto done;
490 8087c3c5 2020-01-15 tracey
491 f2f46662 2020-01-23 tracey error = gw_get_header(gw_trans, header, 1);
492 f2f46662 2020-01-23 tracey if (error)
493 55ccf528 2020-02-03 stsp goto done;
494 f7cc9480 2020-02-05 tracey
495 f7cc9480 2020-02-05 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
496 f7cc9480 2020-02-05 tracey "diff_header_wrapper", KATTR__MAX);
497 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
498 f7cc9480 2020-02-05 tracey goto done;
499 f7cc9480 2020-02-05 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
500 f7cc9480 2020-02-05 tracey "diff_header", KATTR__MAX);
501 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
502 f7cc9480 2020-02-05 tracey goto done;
503 f7cc9480 2020-02-05 tracey error = gw_gen_diff_header(gw_trans, header->parent_id,
504 f7cc9480 2020-02-05 tracey header->commit_id);
505 f7cc9480 2020-02-05 tracey if (error)
506 f7cc9480 2020-02-05 tracey goto done;
507 f7cc9480 2020-02-05 tracey error = gw_gen_commit_header(gw_trans, header->commit_id,
508 f7cc9480 2020-02-05 tracey header->refs_str);
509 f7cc9480 2020-02-05 tracey if (error)
510 f7cc9480 2020-02-05 tracey goto done;
511 f7cc9480 2020-02-05 tracey error = gw_gen_tree_header(gw_trans, header->tree_id);
512 f7cc9480 2020-02-05 tracey if (error)
513 f7cc9480 2020-02-05 tracey goto done;
514 f7cc9480 2020-02-05 tracey error = gw_gen_author_header(gw_trans, header->author);
515 f7cc9480 2020-02-05 tracey if (error)
516 f7cc9480 2020-02-05 tracey goto done;
517 f7cc9480 2020-02-05 tracey error = gw_gen_committer_header(gw_trans, header->author);
518 f7cc9480 2020-02-05 tracey if (error)
519 f7cc9480 2020-02-05 tracey goto done;
520 f7cc9480 2020-02-05 tracey error = gw_get_time_str(&age, header->committer_time,
521 f7cc9480 2020-02-05 tracey TM_LONG);
522 f7cc9480 2020-02-05 tracey if (error)
523 f7cc9480 2020-02-05 tracey goto done;
524 f7cc9480 2020-02-05 tracey error = gw_gen_age_header(gw_trans, age ?age : "");
525 070fee27 2020-02-03 stsp if (error)
526 070fee27 2020-02-03 stsp goto done;
527 f7cc9480 2020-02-05 tracey error = gw_gen_commit_msg_header(gw_trans, header->commit_msg);
528 f7cc9480 2020-02-05 tracey if (error)
529 390d412c 2020-01-28 stsp goto done;
530 f7cc9480 2020-02-05 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
531 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
532 390d412c 2020-01-28 stsp goto done;
533 f7cc9480 2020-02-05 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
534 f7cc9480 2020-02-05 tracey "dotted_line", KATTR__MAX);
535 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
536 f7cc9480 2020-02-05 tracey goto done;
537 f7cc9480 2020-02-05 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
538 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
539 f7cc9480 2020-02-05 tracey goto done;
540 87f9ebf5 2020-01-15 tracey
541 f7cc9480 2020-02-05 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
542 f7cc9480 2020-02-05 tracey "diff", KATTR__MAX);
543 c25c2314 2020-01-28 stsp if (kerr != KCGI_OK)
544 f7cc9480 2020-02-05 tracey goto done;
545 38b240fb 2020-02-06 tracey error = gw_output_diff(gw_trans, header);
546 f7cc9480 2020-02-05 tracey if (error)
547 f7cc9480 2020-02-05 tracey goto done;
548 f7cc9480 2020-02-05 tracey
549 b4fba448 2020-02-05 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
550 390d412c 2020-01-28 stsp done:
551 b0a1bc86 2020-02-14 stsp gw_free_header(header);
552 55ccf528 2020-02-03 stsp free(age);
553 f7cc9480 2020-02-05 tracey if (error == NULL && kerr != KCGI_OK)
554 2447adad 2020-02-06 stsp error = gw_kcgi_error(kerr);
555 2204c934 2020-01-15 tracey return error;
556 2204c934 2020-01-15 tracey }
557 2204c934 2020-01-15 tracey
558 2204c934 2020-01-15 tracey static const struct got_error *
559 54415d85 2020-01-15 tracey gw_index(struct gw_trans *gw_trans)
560 2c251c14 2020-01-15 tracey {
561 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
562 46b9c89b 2020-01-15 tracey struct gw_dir *gw_dir = NULL;
563 b3f1f953 2020-02-09 tracey char *href_next = NULL, *href_prev = NULL, *href_summary = NULL;
564 b3f1f953 2020-02-09 tracey char *href_briefs = NULL, *href_commits = NULL, *href_tree = NULL;
565 ff4bb25f 2020-02-19 tracey char *href_tags = NULL;
566 387a29ba 2020-01-15 tracey unsigned int prev_disp = 0, next_disp = 1, dir_c = 0;
567 795c10a4 2020-02-20 tracey enum kcgi_err kerr = KCGI_OK;
568 2c251c14 2020-01-15 tracey
569 7a6dddae 2021-06-18 stsp #ifndef PROFILE
570 6bee13de 2020-01-16 tracey if (pledge("stdio rpath proc exec sendfd unveil",
571 6bee13de 2020-01-16 tracey NULL) == -1) {
572 6bee13de 2020-01-16 tracey error = got_error_from_errno("pledge");
573 6bee13de 2020-01-16 tracey return error;
574 6bee13de 2020-01-16 tracey }
575 7a6dddae 2021-06-18 stsp #endif
576 d4159696 2020-02-13 stsp error = gw_apply_unveil(gw_trans->gw_conf->got_repos_path);
577 46b9c89b 2020-01-15 tracey if (error)
578 46b9c89b 2020-01-15 tracey return error;
579 46b9c89b 2020-01-15 tracey
580 2c251c14 2020-01-15 tracey error = gw_load_got_paths(gw_trans);
581 46b9c89b 2020-01-15 tracey if (error)
582 2c251c14 2020-01-15 tracey return error;
583 2c251c14 2020-01-15 tracey
584 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
585 b3f1f953 2020-02-09 tracey "index_header", KATTR__MAX);
586 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
587 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
588 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
589 b3f1f953 2020-02-09 tracey "index_header_project", KATTR__MAX);
590 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
591 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
592 b3f1f953 2020-02-09 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Project");
593 c25c2314 2020-01-28 stsp if (kerr != KCGI_OK)
594 2447adad 2020-02-06 stsp return gw_kcgi_error(kerr);
595 b3f1f953 2020-02-09 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
596 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
597 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
598 2c251c14 2020-01-15 tracey
599 b3f1f953 2020-02-09 tracey if (gw_trans->gw_conf->got_show_repo_description) {
600 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
601 b3f1f953 2020-02-09 tracey "index_header_description", KATTR__MAX);
602 c25c2314 2020-01-28 stsp if (kerr != KCGI_OK)
603 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
604 b3f1f953 2020-02-09 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Description");
605 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
606 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
607 b3f1f953 2020-02-09 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
608 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
609 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
610 b3f1f953 2020-02-09 tracey }
611 b3f1f953 2020-02-09 tracey
612 b3f1f953 2020-02-09 tracey if (gw_trans->gw_conf->got_show_repo_owner) {
613 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
614 b3f1f953 2020-02-09 tracey "index_header_owner", KATTR__MAX);
615 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
616 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
617 b3f1f953 2020-02-09 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Owner");
618 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
619 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
620 b3f1f953 2020-02-09 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
621 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
622 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
623 b3f1f953 2020-02-09 tracey }
624 b3f1f953 2020-02-09 tracey
625 b3f1f953 2020-02-09 tracey if (gw_trans->gw_conf->got_show_repo_age) {
626 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
627 b3f1f953 2020-02-09 tracey "index_header_age", KATTR__MAX);
628 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
629 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
630 b3f1f953 2020-02-09 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Last Change");
631 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
632 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
633 b3f1f953 2020-02-09 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
634 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
635 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
636 b3f1f953 2020-02-09 tracey }
637 b3f1f953 2020-02-09 tracey
638 b3f1f953 2020-02-09 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
639 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
640 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
641 b3f1f953 2020-02-09 tracey
642 b3f1f953 2020-02-09 tracey if (TAILQ_EMPTY(&gw_trans->gw_dirs)) {
643 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
644 b3f1f953 2020-02-09 tracey "index_wrapper", KATTR__MAX);
645 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
646 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
647 32b9f7ed 2020-04-14 tracey kerr = khtml_printf(gw_trans->gw_html_req,
648 32b9f7ed 2020-04-14 tracey "No repositories found in %s",
649 b3f1f953 2020-02-09 tracey gw_trans->gw_conf->got_repos_path);
650 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
651 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
652 b3f1f953 2020-02-09 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
653 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
654 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
655 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
656 b3f1f953 2020-02-09 tracey "dotted_line", KATTR__MAX);
657 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
658 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
659 b3f1f953 2020-02-09 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
660 b3f1f953 2020-02-09 tracey if (kerr != KCGI_OK)
661 b3f1f953 2020-02-09 tracey return gw_kcgi_error(kerr);
662 c25c2314 2020-01-28 stsp return error;
663 bce5dac1 2020-01-28 stsp }
664 bce5dac1 2020-01-28 stsp
665 46b9c89b 2020-01-15 tracey TAILQ_FOREACH(gw_dir, &gw_trans->gw_dirs, entry)
666 2c251c14 2020-01-15 tracey dir_c++;
667 2c251c14 2020-01-15 tracey
668 46b9c89b 2020-01-15 tracey TAILQ_FOREACH(gw_dir, &gw_trans->gw_dirs, entry) {
669 2c251c14 2020-01-15 tracey if (gw_trans->page > 0 && (gw_trans->page *
670 2c251c14 2020-01-15 tracey gw_trans->gw_conf->got_max_repos_display) > prev_disp) {
671 2c251c14 2020-01-15 tracey prev_disp++;
672 2c251c14 2020-01-15 tracey continue;
673 2c251c14 2020-01-15 tracey }
674 2c251c14 2020-01-15 tracey
675 2c251c14 2020-01-15 tracey prev_disp++;
676 f2f46662 2020-01-23 tracey
677 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
678 b3f1f953 2020-02-09 tracey "index_wrapper", KATTR__MAX);
679 c25c2314 2020-01-28 stsp if (kerr != KCGI_OK)
680 a02d5f81 2020-02-13 stsp goto done;
681 b3f1f953 2020-02-09 tracey
682 2796ac23 2020-04-14 tracey href_summary = khttp_urlpart(NULL, NULL, "gotweb", "path",
683 2796ac23 2020-04-14 tracey gw_dir->name, "action", "summary", NULL);
684 19ff7638 2020-04-14 tracey if (href_summary == NULL) {
685 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpart");
686 19ff7638 2020-04-14 tracey goto done;
687 19ff7638 2020-04-14 tracey }
688 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
689 b3f1f953 2020-02-09 tracey "index_project", KATTR__MAX);
690 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
691 b3f1f953 2020-02-09 tracey goto done;
692 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF,
693 b3f1f953 2020-02-09 tracey href_summary, KATTR__MAX);
694 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
695 b3f1f953 2020-02-09 tracey goto done;
696 b3f1f953 2020-02-09 tracey kerr = khtml_puts(gw_trans->gw_html_req, gw_dir->name);
697 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
698 b3f1f953 2020-02-09 tracey goto done;
699 b3f1f953 2020-02-09 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
700 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
701 b3f1f953 2020-02-09 tracey goto done;
702 b3f1f953 2020-02-09 tracey if (gw_trans->gw_conf->got_show_repo_description) {
703 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
704 b3f1f953 2020-02-09 tracey KATTR_ID, "index_project_description", KATTR__MAX);
705 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
706 b3f1f953 2020-02-09 tracey goto done;
707 b3f1f953 2020-02-09 tracey kerr = khtml_puts(gw_trans->gw_html_req,
708 b3f1f953 2020-02-09 tracey gw_dir->description ? gw_dir->description : "");
709 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
710 b3f1f953 2020-02-09 tracey goto done;
711 b3f1f953 2020-02-09 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
712 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
713 b3f1f953 2020-02-09 tracey goto done;
714 b3f1f953 2020-02-09 tracey }
715 b3f1f953 2020-02-09 tracey if (gw_trans->gw_conf->got_show_repo_owner) {
716 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
717 b3f1f953 2020-02-09 tracey KATTR_ID, "index_project_owner", KATTR__MAX);
718 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
719 b3f1f953 2020-02-09 tracey goto done;
720 b3f1f953 2020-02-09 tracey kerr = khtml_puts(gw_trans->gw_html_req,
721 b3f1f953 2020-02-09 tracey gw_dir->owner ? gw_dir->owner : "");
722 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
723 b3f1f953 2020-02-09 tracey goto done;
724 b3f1f953 2020-02-09 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
725 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
726 b3f1f953 2020-02-09 tracey goto done;
727 b3f1f953 2020-02-09 tracey }
728 b3f1f953 2020-02-09 tracey if (gw_trans->gw_conf->got_show_repo_age) {
729 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
730 b3f1f953 2020-02-09 tracey KATTR_ID, "index_project_age", KATTR__MAX);
731 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
732 b3f1f953 2020-02-09 tracey goto done;
733 b3f1f953 2020-02-09 tracey kerr = khtml_puts(gw_trans->gw_html_req,
734 b3f1f953 2020-02-09 tracey gw_dir->age ? gw_dir->age : "");
735 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
736 b3f1f953 2020-02-09 tracey goto done;
737 b3f1f953 2020-02-09 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
738 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
739 b3f1f953 2020-02-09 tracey goto done;
740 b3f1f953 2020-02-09 tracey }
741 b3f1f953 2020-02-09 tracey
742 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
743 b3f1f953 2020-02-09 tracey "navs_wrapper", KATTR__MAX);
744 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
745 b3f1f953 2020-02-09 tracey goto done;
746 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
747 b3f1f953 2020-02-09 tracey "navs", KATTR__MAX);
748 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
749 b3f1f953 2020-02-09 tracey goto done;
750 b3f1f953 2020-02-09 tracey
751 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF,
752 b3f1f953 2020-02-09 tracey href_summary, KATTR__MAX);
753 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
754 b3f1f953 2020-02-09 tracey goto done;
755 b3f1f953 2020-02-09 tracey kerr = khtml_puts(gw_trans->gw_html_req, "summary");
756 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
757 b3f1f953 2020-02-09 tracey goto done;
758 b3f1f953 2020-02-09 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
759 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
760 b3f1f953 2020-02-09 tracey goto done;
761 2c251c14 2020-01-15 tracey
762 b3f1f953 2020-02-09 tracey kerr = khtml_puts(gw_trans->gw_html_req, " | ");
763 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
764 b3f1f953 2020-02-09 tracey goto done;
765 b3f1f953 2020-02-09 tracey
766 2796ac23 2020-04-14 tracey href_briefs = khttp_urlpart(NULL, NULL, "gotweb", "path",
767 2796ac23 2020-04-14 tracey gw_dir->name, "action", "briefs", NULL);
768 19ff7638 2020-04-14 tracey if (href_briefs == NULL) {
769 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpart");
770 19ff7638 2020-04-14 tracey goto done;
771 19ff7638 2020-04-14 tracey }
772 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF,
773 b3f1f953 2020-02-09 tracey href_briefs, KATTR__MAX);
774 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
775 b3f1f953 2020-02-09 tracey goto done;
776 b3f1f953 2020-02-09 tracey kerr = khtml_puts(gw_trans->gw_html_req, "commit briefs");
777 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
778 b3f1f953 2020-02-09 tracey goto done;
779 b3f1f953 2020-02-09 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
780 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
781 b3f1f953 2020-02-09 tracey error = gw_kcgi_error(kerr);
782 b3f1f953 2020-02-09 tracey
783 b3f1f953 2020-02-09 tracey kerr = khtml_puts(gw_trans->gw_html_req, " | ");
784 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
785 b3f1f953 2020-02-09 tracey goto done;
786 b3f1f953 2020-02-09 tracey
787 2796ac23 2020-04-14 tracey href_commits = khttp_urlpart(NULL, NULL, "gotweb", "path",
788 2796ac23 2020-04-14 tracey gw_dir->name, "action", "commits", NULL);
789 19ff7638 2020-04-14 tracey if (href_commits == NULL) {
790 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpart");
791 19ff7638 2020-04-14 tracey goto done;
792 19ff7638 2020-04-14 tracey }
793 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF,
794 b3f1f953 2020-02-09 tracey href_commits, KATTR__MAX);
795 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
796 b3f1f953 2020-02-09 tracey goto done;
797 b3f1f953 2020-02-09 tracey kerr = khtml_puts(gw_trans->gw_html_req, "commits");
798 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
799 b3f1f953 2020-02-09 tracey goto done;
800 b3f1f953 2020-02-09 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
801 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
802 b3f1f953 2020-02-09 tracey goto done;
803 b3f1f953 2020-02-09 tracey
804 b3f1f953 2020-02-09 tracey kerr = khtml_puts(gw_trans->gw_html_req, " | ");
805 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
806 b3f1f953 2020-02-09 tracey goto done;
807 b3f1f953 2020-02-09 tracey
808 2796ac23 2020-04-14 tracey href_tags = khttp_urlpart(NULL, NULL, "gotweb", "path",
809 2796ac23 2020-04-14 tracey gw_dir->name, "action", "tags", NULL);
810 19ff7638 2020-04-14 tracey if (href_tags == NULL) {
811 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpart");
812 19ff7638 2020-04-14 tracey goto done;
813 19ff7638 2020-04-14 tracey }
814 ff4bb25f 2020-02-19 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF,
815 ff4bb25f 2020-02-19 tracey href_tags, KATTR__MAX);
816 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
817 ff4bb25f 2020-02-19 tracey goto done;
818 ff4bb25f 2020-02-19 tracey kerr = khtml_puts(gw_trans->gw_html_req, "tags");
819 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
820 ff4bb25f 2020-02-19 tracey goto done;
821 ff4bb25f 2020-02-19 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
822 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
823 ff4bb25f 2020-02-19 tracey goto done;
824 ff4bb25f 2020-02-19 tracey
825 ff4bb25f 2020-02-19 tracey kerr = khtml_puts(gw_trans->gw_html_req, " | ");
826 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
827 ff4bb25f 2020-02-19 tracey goto done;
828 ff4bb25f 2020-02-19 tracey
829 2796ac23 2020-04-14 tracey href_tree = khttp_urlpart(NULL, NULL, "gotweb", "path",
830 2796ac23 2020-04-14 tracey gw_dir->name, "action", "tree", NULL);
831 19ff7638 2020-04-14 tracey if (href_tree == NULL) {
832 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpart");
833 19ff7638 2020-04-14 tracey goto done;
834 19ff7638 2020-04-14 tracey }
835 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF,
836 b3f1f953 2020-02-09 tracey href_tree, KATTR__MAX);
837 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
838 b3f1f953 2020-02-09 tracey goto done;
839 b3f1f953 2020-02-09 tracey kerr = khtml_puts(gw_trans->gw_html_req, "tree");
840 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
841 b3f1f953 2020-02-09 tracey goto done;
842 b3f1f953 2020-02-09 tracey
843 b3f1f953 2020-02-09 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 4);
844 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
845 b3f1f953 2020-02-09 tracey goto done;
846 b3f1f953 2020-02-09 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
847 b3f1f953 2020-02-09 tracey "dotted_line", KATTR__MAX);
848 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
849 b3f1f953 2020-02-09 tracey goto done;
850 b3f1f953 2020-02-09 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
851 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
852 b3f1f953 2020-02-09 tracey goto done;
853 b3f1f953 2020-02-09 tracey
854 b3f1f953 2020-02-09 tracey free(href_summary);
855 b3f1f953 2020-02-09 tracey href_summary = NULL;
856 b3f1f953 2020-02-09 tracey free(href_briefs);
857 b3f1f953 2020-02-09 tracey href_briefs = NULL;
858 b3f1f953 2020-02-09 tracey free(href_commits);
859 b3f1f953 2020-02-09 tracey href_commits = NULL;
860 ff4bb25f 2020-02-19 tracey free(href_tags);
861 ff4bb25f 2020-02-19 tracey href_tags = NULL;
862 b3f1f953 2020-02-09 tracey free(href_tree);
863 b3f1f953 2020-02-09 tracey href_tree = NULL;
864 b3f1f953 2020-02-09 tracey
865 2c251c14 2020-01-15 tracey if (gw_trans->gw_conf->got_max_repos_display == 0)
866 2c251c14 2020-01-15 tracey continue;
867 2c251c14 2020-01-15 tracey
868 75f21c89 2020-02-18 tracey if ((next_disp == gw_trans->gw_conf->got_max_repos_display) ||
869 75f21c89 2020-02-18 tracey ((gw_trans->gw_conf->got_max_repos_display > 0) &&
870 2c251c14 2020-01-15 tracey (gw_trans->page > 0) &&
871 2c251c14 2020-01-15 tracey (next_disp == gw_trans->gw_conf->got_max_repos_display ||
872 75f21c89 2020-02-18 tracey prev_disp == gw_trans->repos_total))) {
873 63ee0dca 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
874 63ee0dca 2020-02-08 tracey KATTR_ID, "np_wrapper", KATTR__MAX);
875 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
876 b3f1f953 2020-02-09 tracey goto done;
877 63ee0dca 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
878 63ee0dca 2020-02-08 tracey KATTR_ID, "nav_prev", KATTR__MAX);
879 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
880 b3f1f953 2020-02-09 tracey goto done;
881 c25c2314 2020-01-28 stsp }
882 2c251c14 2020-01-15 tracey
883 2c251c14 2020-01-15 tracey if ((gw_trans->gw_conf->got_max_repos_display > 0) &&
884 2c251c14 2020-01-15 tracey (gw_trans->page > 0) &&
885 2c251c14 2020-01-15 tracey (next_disp == gw_trans->gw_conf->got_max_repos_display ||
886 2c251c14 2020-01-15 tracey prev_disp == gw_trans->repos_total)) {
887 2796ac23 2020-04-14 tracey href_prev = khttp_urlpartx(NULL, NULL, "gotweb", "page",
888 2796ac23 2020-04-14 tracey KATTRX_INT, (int64_t)(gw_trans->page - 1), NULL);
889 19ff7638 2020-04-14 tracey if (href_prev == NULL) {
890 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpartx");
891 19ff7638 2020-04-14 tracey goto done;
892 19ff7638 2020-04-14 tracey }
893 63ee0dca 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
894 63ee0dca 2020-02-08 tracey KATTR_HREF, href_prev, KATTR__MAX);
895 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
896 565d9dcb 2020-02-09 tracey goto done;
897 63ee0dca 2020-02-08 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Previous");
898 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
899 b3f1f953 2020-02-09 tracey goto done;
900 63ee0dca 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
901 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
902 b3f1f953 2020-02-09 tracey goto done;
903 2c251c14 2020-01-15 tracey }
904 2c251c14 2020-01-15 tracey
905 63ee0dca 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
906 c25c2314 2020-01-28 stsp if (kerr != KCGI_OK)
907 2447adad 2020-02-06 stsp return gw_kcgi_error(kerr);
908 2c251c14 2020-01-15 tracey
909 2c251c14 2020-01-15 tracey if (gw_trans->gw_conf->got_max_repos_display > 0 &&
910 2c251c14 2020-01-15 tracey next_disp == gw_trans->gw_conf->got_max_repos_display &&
911 2c251c14 2020-01-15 tracey dir_c != (gw_trans->page + 1) *
912 2c251c14 2020-01-15 tracey gw_trans->gw_conf->got_max_repos_display) {
913 63ee0dca 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
914 63ee0dca 2020-02-08 tracey KATTR_ID, "nav_next", KATTR__MAX);
915 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
916 b3f1f953 2020-02-09 tracey goto done;
917 2796ac23 2020-04-14 tracey href_next = khttp_urlpartx(NULL, NULL, "gotweb", "page",
918 2796ac23 2020-04-14 tracey KATTRX_INT, (int64_t)(gw_trans->page + 1), NULL);
919 19ff7638 2020-04-14 tracey if (href_next == NULL) {
920 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpartx");
921 19ff7638 2020-04-14 tracey goto done;
922 19ff7638 2020-04-14 tracey }
923 63ee0dca 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
924 63ee0dca 2020-02-08 tracey KATTR_HREF, href_next, KATTR__MAX);
925 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
926 b3f1f953 2020-02-09 tracey goto done;
927 63ee0dca 2020-02-08 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Next");
928 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
929 b3f1f953 2020-02-09 tracey goto done;
930 63ee0dca 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 3);
931 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
932 b3f1f953 2020-02-09 tracey goto done;
933 2c251c14 2020-01-15 tracey next_disp = 0;
934 2c251c14 2020-01-15 tracey break;
935 2c251c14 2020-01-15 tracey }
936 2c251c14 2020-01-15 tracey
937 2c251c14 2020-01-15 tracey if ((gw_trans->gw_conf->got_max_repos_display > 0) &&
938 2c251c14 2020-01-15 tracey (gw_trans->page > 0) &&
939 2c251c14 2020-01-15 tracey (next_disp == gw_trans->gw_conf->got_max_repos_display ||
940 c25c2314 2020-01-28 stsp prev_disp == gw_trans->repos_total)) {
941 63ee0dca 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
942 565d9dcb 2020-02-09 tracey if (kerr != KCGI_OK)
943 b3f1f953 2020-02-09 tracey goto done;
944 c25c2314 2020-01-28 stsp }
945 2c251c14 2020-01-15 tracey next_disp++;
946 2c251c14 2020-01-15 tracey }
947 b3f1f953 2020-02-09 tracey done:
948 00f13350 2020-02-10 tracey free(href_prev);
949 00f13350 2020-02-10 tracey free(href_next);
950 b3f1f953 2020-02-09 tracey free(href_summary);
951 b3f1f953 2020-02-09 tracey free(href_briefs);
952 b3f1f953 2020-02-09 tracey free(href_commits);
953 ff4bb25f 2020-02-19 tracey free(href_tags);
954 b3f1f953 2020-02-09 tracey free(href_tree);
955 565d9dcb 2020-02-09 tracey if (error == NULL && kerr != KCGI_OK)
956 565d9dcb 2020-02-09 tracey error = gw_kcgi_error(kerr);
957 2c251c14 2020-01-15 tracey return error;
958 2c251c14 2020-01-15 tracey }
959 2c251c14 2020-01-15 tracey
960 2c251c14 2020-01-15 tracey static const struct got_error *
961 f2f46662 2020-01-23 tracey gw_commits(struct gw_trans *gw_trans)
962 2c251c14 2020-01-15 tracey {
963 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
964 f2f46662 2020-01-23 tracey struct gw_header *header = NULL, *n_header = NULL;
965 038dfa29 2020-04-14 tracey char *age = NULL, *href_diff = NULL, *href_tree = NULL;
966 55e46400 2020-02-18 tracey char *href_prev = NULL, *href_next = NULL;
967 21a55cc7 2020-02-04 tracey enum kcgi_err kerr = KCGI_OK;
968 5a911940 2021-06-25 tracey int commit_found = 0;
969 6bee13de 2020-01-16 tracey
970 ae36ed87 2020-01-28 stsp if ((header = gw_init_header()) == NULL)
971 f2f46662 2020-01-23 tracey return got_error_from_errno("malloc");
972 f2f46662 2020-01-23 tracey
973 7a6dddae 2021-06-18 stsp #ifndef PROFILE
974 6bee13de 2020-01-16 tracey if (pledge("stdio rpath proc exec sendfd unveil",
975 6bee13de 2020-01-16 tracey NULL) == -1) {
976 6bee13de 2020-01-16 tracey error = got_error_from_errno("pledge");
977 5ddf0079 2020-01-29 stsp goto done;
978 6bee13de 2020-01-16 tracey }
979 7a6dddae 2021-06-18 stsp #endif
980 d4159696 2020-02-13 stsp error = gw_apply_unveil(gw_trans->gw_dir->path);
981 8087c3c5 2020-01-15 tracey if (error)
982 5ddf0079 2020-01-29 stsp goto done;
983 2c251c14 2020-01-15 tracey
984 f2f46662 2020-01-23 tracey error = gw_get_header(gw_trans, header,
985 f2f46662 2020-01-23 tracey gw_trans->gw_conf->got_max_commits_display);
986 18da9978 2020-01-29 stsp if (error)
987 18da9978 2020-01-29 stsp goto done;
988 4ceb8155 2020-01-15 tracey
989 f2f46662 2020-01-23 tracey TAILQ_FOREACH(n_header, &gw_trans->gw_headers, entry) {
990 5a911940 2021-06-25 tracey if (commit_found == 0 && gw_trans->commit_id != NULL) {
991 5a911940 2021-06-25 tracey if (strcmp(gw_trans->commit_id,
992 5a911940 2021-06-25 tracey n_header->commit_id) != 0)
993 5a911940 2021-06-25 tracey continue;
994 5a911940 2021-06-25 tracey else
995 5a911940 2021-06-25 tracey commit_found = 1;
996 5a911940 2021-06-25 tracey }
997 21a55cc7 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
998 21a55cc7 2020-02-04 tracey "commits_line_wrapper", KATTR__MAX);
999 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1000 18da9978 2020-01-29 stsp goto done;
1001 21a55cc7 2020-02-04 tracey error = gw_gen_commit_header(gw_trans, n_header->commit_id,
1002 21a55cc7 2020-02-04 tracey n_header->refs_str);
1003 f7cc9480 2020-02-05 tracey if (error)
1004 f7cc9480 2020-02-05 tracey goto done;
1005 21a55cc7 2020-02-04 tracey error = gw_gen_author_header(gw_trans, n_header->author);
1006 21a55cc7 2020-02-04 tracey if (error)
1007 21a55cc7 2020-02-04 tracey goto done;
1008 21a55cc7 2020-02-04 tracey error = gw_gen_committer_header(gw_trans, n_header->author);
1009 21a55cc7 2020-02-04 tracey if (error)
1010 21a55cc7 2020-02-04 tracey goto done;
1011 55ccf528 2020-02-03 stsp error = gw_get_time_str(&age, n_header->committer_time,
1012 55ccf528 2020-02-03 stsp TM_LONG);
1013 55ccf528 2020-02-03 stsp if (error)
1014 55ccf528 2020-02-03 stsp goto done;
1015 21a55cc7 2020-02-04 tracey error = gw_gen_age_header(gw_trans, age ?age : "");
1016 21a55cc7 2020-02-04 tracey if (error)
1017 55ccf528 2020-02-03 stsp goto done;
1018 21a55cc7 2020-02-04 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
1019 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1020 21a55cc7 2020-02-04 tracey goto done;
1021 21a55cc7 2020-02-04 tracey
1022 21a55cc7 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1023 21a55cc7 2020-02-04 tracey "dotted_line", KATTR__MAX);
1024 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1025 21a55cc7 2020-02-04 tracey goto done;
1026 21a55cc7 2020-02-04 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1027 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1028 21a55cc7 2020-02-04 tracey goto done;
1029 21a55cc7 2020-02-04 tracey
1030 21a55cc7 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1031 21a55cc7 2020-02-04 tracey "commit", KATTR__MAX);
1032 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1033 21a55cc7 2020-02-04 tracey goto done;
1034 78a9dab5 2020-02-07 tracey kerr = khttp_puts(gw_trans->gw_req, n_header->commit_msg);
1035 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1036 21a55cc7 2020-02-04 tracey goto done;
1037 21a55cc7 2020-02-04 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1038 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1039 21a55cc7 2020-02-04 tracey goto done;
1040 21a55cc7 2020-02-04 tracey
1041 038dfa29 2020-04-14 tracey href_diff = khttp_urlpart(NULL, NULL, "gotweb", "path",
1042 038dfa29 2020-04-14 tracey gw_trans->repo_name, "action", "diff", "commit",
1043 038dfa29 2020-04-14 tracey n_header->commit_id, NULL);
1044 19ff7638 2020-04-14 tracey if (href_diff == NULL) {
1045 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpart");
1046 19ff7638 2020-04-14 tracey goto done;
1047 19ff7638 2020-04-14 tracey }
1048 21a55cc7 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1049 21a55cc7 2020-02-04 tracey KATTR_ID, "navs_wrapper", KATTR__MAX);
1050 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1051 21a55cc7 2020-02-04 tracey goto done;
1052 21a55cc7 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1053 21a55cc7 2020-02-04 tracey KATTR_ID, "navs", KATTR__MAX);
1054 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1055 21a55cc7 2020-02-04 tracey goto done;
1056 21a55cc7 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
1057 21a55cc7 2020-02-04 tracey KATTR_HREF, href_diff, KATTR__MAX);
1058 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1059 21a55cc7 2020-02-04 tracey goto done;
1060 21a55cc7 2020-02-04 tracey kerr = khtml_puts(gw_trans->gw_html_req, "diff");
1061 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1062 21a55cc7 2020-02-04 tracey goto done;
1063 21a55cc7 2020-02-04 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1064 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1065 21a55cc7 2020-02-04 tracey goto done;
1066 21a55cc7 2020-02-04 tracey
1067 21a55cc7 2020-02-04 tracey kerr = khtml_puts(gw_trans->gw_html_req, " | ");
1068 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1069 21a55cc7 2020-02-04 tracey goto done;
1070 21a55cc7 2020-02-04 tracey
1071 038dfa29 2020-04-14 tracey href_tree = khttp_urlpart(NULL, NULL, "gotweb", "path",
1072 038dfa29 2020-04-14 tracey gw_trans->repo_name, "action", "tree", "commit",
1073 19ff7638 2020-04-14 tracey n_header->commit_id, NULL);
1074 19ff7638 2020-04-14 tracey if (href_tree == NULL) {
1075 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpart");
1076 19ff7638 2020-04-14 tracey goto done;
1077 19ff7638 2020-04-14 tracey }
1078 21a55cc7 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
1079 038dfa29 2020-04-14 tracey KATTR_HREF, href_tree, KATTR__MAX);
1080 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1081 21a55cc7 2020-02-04 tracey goto done;
1082 21a55cc7 2020-02-04 tracey khtml_puts(gw_trans->gw_html_req, "tree");
1083 21a55cc7 2020-02-04 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1084 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1085 21a55cc7 2020-02-04 tracey goto done;
1086 21a55cc7 2020-02-04 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1087 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1088 21a55cc7 2020-02-04 tracey goto done;
1089 21a55cc7 2020-02-04 tracey
1090 21a55cc7 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1091 21a55cc7 2020-02-04 tracey "solid_line", KATTR__MAX);
1092 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1093 21a55cc7 2020-02-04 tracey goto done;
1094 b4fba448 2020-02-05 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
1095 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1096 21a55cc7 2020-02-04 tracey goto done;
1097 21a55cc7 2020-02-04 tracey
1098 55ccf528 2020-02-03 stsp free(age);
1099 55ccf528 2020-02-03 stsp age = NULL;
1100 55e46400 2020-02-18 tracey }
1101 55e46400 2020-02-18 tracey
1102 5a911940 2021-06-25 tracey if (gw_trans->next_id || gw_trans->prev_id) {
1103 55e46400 2020-02-18 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1104 55e46400 2020-02-18 tracey KATTR_ID, "np_wrapper", KATTR__MAX);
1105 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1106 55e46400 2020-02-18 tracey goto done;
1107 55e46400 2020-02-18 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1108 55e46400 2020-02-18 tracey KATTR_ID, "nav_prev", KATTR__MAX);
1109 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1110 55e46400 2020-02-18 tracey goto done;
1111 f2f46662 2020-01-23 tracey }
1112 55e46400 2020-02-18 tracey
1113 5a911940 2021-06-25 tracey if (gw_trans->prev_id) {
1114 038dfa29 2020-04-14 tracey href_prev = khttp_urlpartx(NULL, NULL, "gotweb", "path",
1115 038dfa29 2020-04-14 tracey KATTRX_STRING, gw_trans->repo_name, "page",
1116 038dfa29 2020-04-14 tracey KATTRX_INT, (int64_t) (gw_trans->page - 1), "action",
1117 038dfa29 2020-04-14 tracey KATTRX_STRING, "commits", "commit", KATTRX_STRING,
1118 5a911940 2021-06-25 tracey gw_trans->prev_id ? gw_trans->prev_id : "", NULL);
1119 19ff7638 2020-04-14 tracey if (href_prev == NULL) {
1120 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpartx");
1121 19ff7638 2020-04-14 tracey goto done;
1122 19ff7638 2020-04-14 tracey }
1123 55e46400 2020-02-18 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
1124 55e46400 2020-02-18 tracey KATTR_HREF, href_prev, KATTR__MAX);
1125 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1126 55e46400 2020-02-18 tracey goto done;
1127 55e46400 2020-02-18 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Previous");
1128 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1129 55e46400 2020-02-18 tracey goto done;
1130 55e46400 2020-02-18 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1131 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1132 55e46400 2020-02-18 tracey goto done;
1133 55e46400 2020-02-18 tracey }
1134 55e46400 2020-02-18 tracey
1135 55e46400 2020-02-18 tracey if (gw_trans->next_id || gw_trans->page > 0) {
1136 55e46400 2020-02-18 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1137 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1138 55e46400 2020-02-18 tracey return gw_kcgi_error(kerr);
1139 55e46400 2020-02-18 tracey }
1140 55e46400 2020-02-18 tracey
1141 55e46400 2020-02-18 tracey if (gw_trans->next_id) {
1142 55e46400 2020-02-18 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1143 55e46400 2020-02-18 tracey KATTR_ID, "nav_next", KATTR__MAX);
1144 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1145 55e46400 2020-02-18 tracey goto done;
1146 038dfa29 2020-04-14 tracey href_next = khttp_urlpartx(NULL, NULL, "gotweb", "path",
1147 038dfa29 2020-04-14 tracey KATTRX_STRING, gw_trans->repo_name, "page",
1148 038dfa29 2020-04-14 tracey KATTRX_INT, (int64_t) (gw_trans->page + 1), "action",
1149 038dfa29 2020-04-14 tracey KATTRX_STRING, "commits", "commit", KATTRX_STRING,
1150 5a911940 2021-06-25 tracey gw_trans->next_id, NULL);
1151 19ff7638 2020-04-14 tracey if (href_next == NULL) {
1152 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpartx");
1153 19ff7638 2020-04-14 tracey goto done;
1154 19ff7638 2020-04-14 tracey }
1155 55e46400 2020-02-18 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
1156 55e46400 2020-02-18 tracey KATTR_HREF, href_next, KATTR__MAX);
1157 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1158 55e46400 2020-02-18 tracey goto done;
1159 55e46400 2020-02-18 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Next");
1160 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1161 55e46400 2020-02-18 tracey goto done;
1162 55e46400 2020-02-18 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 3);
1163 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1164 55e46400 2020-02-18 tracey goto done;
1165 55e46400 2020-02-18 tracey }
1166 55e46400 2020-02-18 tracey
1167 55e46400 2020-02-18 tracey if (gw_trans->next_id || gw_trans->page > 0) {
1168 55e46400 2020-02-18 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
1169 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1170 55e46400 2020-02-18 tracey goto done;
1171 55e46400 2020-02-18 tracey }
1172 18da9978 2020-01-29 stsp done:
1173 b0a1bc86 2020-02-14 stsp gw_free_header(header);
1174 f2f46662 2020-01-23 tracey TAILQ_FOREACH(n_header, &gw_trans->gw_headers, entry)
1175 b0a1bc86 2020-02-14 stsp gw_free_header(n_header);
1176 55ccf528 2020-02-03 stsp free(age);
1177 55e46400 2020-02-18 tracey free(href_next);
1178 55e46400 2020-02-18 tracey free(href_prev);
1179 21a55cc7 2020-02-04 tracey free(href_diff);
1180 038dfa29 2020-04-14 tracey free(href_tree);
1181 21a55cc7 2020-02-04 tracey if (error == NULL && kerr != KCGI_OK)
1182 2447adad 2020-02-06 stsp error = gw_kcgi_error(kerr);
1183 2c251c14 2020-01-15 tracey return error;
1184 2c251c14 2020-01-15 tracey }
1185 2c251c14 2020-01-15 tracey
1186 2c251c14 2020-01-15 tracey static const struct got_error *
1187 f2f46662 2020-01-23 tracey gw_briefs(struct gw_trans *gw_trans)
1188 2c251c14 2020-01-15 tracey {
1189 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
1190 bd275801 2020-02-03 tracey struct gw_header *header = NULL, *n_header = NULL;
1191 9ba68833 2020-04-14 tracey char *age = NULL, *href_diff = NULL, *href_tree = NULL;
1192 55e46400 2020-02-18 tracey char *href_prev = NULL, *href_next = NULL;
1193 bd275801 2020-02-03 tracey char *newline, *smallerthan;
1194 ef72fe2c 2020-02-04 stsp enum kcgi_err kerr = KCGI_OK;
1195 5a911940 2021-06-25 tracey int commit_found = 0;
1196 17a96b9f 2020-01-15 tracey
1197 ae36ed87 2020-01-28 stsp if ((header = gw_init_header()) == NULL)
1198 f2f46662 2020-01-23 tracey return got_error_from_errno("malloc");
1199 f2f46662 2020-01-23 tracey
1200 7a6dddae 2021-06-18 stsp #ifndef PROFILE
1201 6bee13de 2020-01-16 tracey if (pledge("stdio rpath proc exec sendfd unveil",
1202 6bee13de 2020-01-16 tracey NULL) == -1) {
1203 6bee13de 2020-01-16 tracey error = got_error_from_errno("pledge");
1204 5ddf0079 2020-01-29 stsp goto done;
1205 6bee13de 2020-01-16 tracey }
1206 7a6dddae 2021-06-18 stsp #endif
1207 85993e64 2020-02-17 tracey if (gw_trans->action != GW_SUMMARY) {
1208 85993e64 2020-02-17 tracey error = gw_apply_unveil(gw_trans->gw_dir->path);
1209 85993e64 2020-02-17 tracey if (error)
1210 85993e64 2020-02-17 tracey goto done;
1211 85993e64 2020-02-17 tracey }
1212 9d84e7dd 2020-01-15 tracey
1213 f2f46662 2020-01-23 tracey if (gw_trans->action == GW_SUMMARY)
1214 f2f46662 2020-01-23 tracey error = gw_get_header(gw_trans, header, D_MAXSLCOMMDISP);
1215 f2f46662 2020-01-23 tracey else
1216 f2f46662 2020-01-23 tracey error = gw_get_header(gw_trans, header,
1217 f2f46662 2020-01-23 tracey gw_trans->gw_conf->got_max_commits_display);
1218 c25c2314 2020-01-28 stsp if (error)
1219 0e00e8f4 2020-01-29 stsp goto done;
1220 c25c2314 2020-01-28 stsp
1221 f2f46662 2020-01-23 tracey TAILQ_FOREACH(n_header, &gw_trans->gw_headers, entry) {
1222 5a911940 2021-06-25 tracey if (commit_found == 0 && gw_trans->commit_id != NULL) {
1223 5a911940 2021-06-25 tracey if (strcmp(gw_trans->commit_id,
1224 5a911940 2021-06-25 tracey n_header->commit_id) != 0)
1225 5a911940 2021-06-25 tracey continue;
1226 5a911940 2021-06-25 tracey else
1227 5a911940 2021-06-25 tracey commit_found = 1;
1228 5a911940 2021-06-25 tracey }
1229 bd275801 2020-02-03 tracey error = gw_get_time_str(&age, n_header->committer_time,
1230 bd275801 2020-02-03 tracey TM_DIFF);
1231 bd275801 2020-02-03 tracey if (error)
1232 bd275801 2020-02-03 tracey goto done;
1233 bd275801 2020-02-03 tracey
1234 bd275801 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1235 bd275801 2020-02-03 tracey KATTR_ID, "briefs_wrapper", KATTR__MAX);
1236 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1237 bd275801 2020-02-03 tracey goto done;
1238 bd275801 2020-02-03 tracey
1239 bd275801 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1240 bd275801 2020-02-03 tracey KATTR_ID, "briefs_age", KATTR__MAX);
1241 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1242 bd275801 2020-02-03 tracey goto done;
1243 53e81e48 2020-02-13 tracey kerr = khtml_puts(gw_trans->gw_html_req, age ? age : "");
1244 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1245 bd275801 2020-02-03 tracey goto done;
1246 bd275801 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1247 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1248 bd275801 2020-02-03 tracey goto done;
1249 bd275801 2020-02-03 tracey
1250 bd275801 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1251 bd275801 2020-02-03 tracey KATTR_ID, "briefs_author", KATTR__MAX);
1252 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1253 bd275801 2020-02-03 tracey goto done;
1254 bd275801 2020-02-03 tracey smallerthan = strchr(n_header->author, '<');
1255 bd275801 2020-02-03 tracey if (smallerthan)
1256 bd275801 2020-02-03 tracey *smallerthan = '\0';
1257 bd275801 2020-02-03 tracey kerr = khtml_puts(gw_trans->gw_html_req, n_header->author);
1258 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1259 bd275801 2020-02-03 tracey goto done;
1260 bd275801 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1261 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1262 bd275801 2020-02-03 tracey goto done;
1263 bd275801 2020-02-03 tracey
1264 9ba68833 2020-04-14 tracey href_diff = khttp_urlpart(NULL, NULL, "gotweb", "path",
1265 9ba68833 2020-04-14 tracey gw_trans->repo_name, "action", "diff", "commit",
1266 9ba68833 2020-04-14 tracey n_header->commit_id, NULL);
1267 19ff7638 2020-04-14 tracey if (href_diff == NULL) {
1268 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpart");
1269 19ff7638 2020-04-14 tracey goto done;
1270 19ff7638 2020-04-14 tracey }
1271 bd275801 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1272 bd275801 2020-02-03 tracey KATTR_ID, "briefs_log", KATTR__MAX);
1273 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1274 bd275801 2020-02-03 tracey goto done;
1275 f2f46662 2020-01-23 tracey newline = strchr(n_header->commit_msg, '\n');
1276 f2f46662 2020-01-23 tracey if (newline)
1277 f2f46662 2020-01-23 tracey *newline = '\0';
1278 52f8346c 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
1279 52f8346c 2020-02-03 tracey KATTR_HREF, href_diff, KATTR__MAX);
1280 52f8346c 2020-02-03 tracey if (kerr != KCGI_OK)
1281 52f8346c 2020-02-03 tracey goto done;
1282 bd275801 2020-02-03 tracey kerr = khtml_puts(gw_trans->gw_html_req, n_header->commit_msg);
1283 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1284 55ccf528 2020-02-03 stsp goto done;
1285 bf93a5c0 2020-02-15 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1286 bf93a5c0 2020-02-15 tracey if (kerr != KCGI_OK)
1287 bf93a5c0 2020-02-15 tracey goto done;
1288 bf93a5c0 2020-02-15 tracey
1289 bf93a5c0 2020-02-15 tracey if (n_header->refs_str) {
1290 bf93a5c0 2020-02-15 tracey kerr = khtml_puts(gw_trans->gw_html_req, " ");
1291 bf93a5c0 2020-02-15 tracey if (kerr != KCGI_OK)
1292 bf93a5c0 2020-02-15 tracey goto done;
1293 bf93a5c0 2020-02-15 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_SPAN,
1294 bf93a5c0 2020-02-15 tracey KATTR_ID, "refs_str", KATTR__MAX);
1295 bf93a5c0 2020-02-15 tracey if (kerr != KCGI_OK)
1296 bf93a5c0 2020-02-15 tracey goto done;
1297 32b9f7ed 2020-04-14 tracey kerr = khtml_printf(gw_trans->gw_html_req, "(%s)",
1298 bf93a5c0 2020-02-15 tracey n_header->refs_str);
1299 bf93a5c0 2020-02-15 tracey if (kerr != KCGI_OK)
1300 bf93a5c0 2020-02-15 tracey goto done;
1301 bf93a5c0 2020-02-15 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1302 bf93a5c0 2020-02-15 tracey if (kerr != KCGI_OK)
1303 bf93a5c0 2020-02-15 tracey goto done;
1304 bf93a5c0 2020-02-15 tracey }
1305 bf93a5c0 2020-02-15 tracey
1306 bf93a5c0 2020-02-15 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1307 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1308 bd275801 2020-02-03 tracey goto done;
1309 bd275801 2020-02-03 tracey
1310 bd275801 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1311 bd275801 2020-02-03 tracey KATTR_ID, "navs_wrapper", KATTR__MAX);
1312 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1313 bd275801 2020-02-03 tracey goto done;
1314 bd275801 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1315 bd275801 2020-02-03 tracey KATTR_ID, "navs", KATTR__MAX);
1316 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1317 bd275801 2020-02-03 tracey goto done;
1318 bd275801 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
1319 bd275801 2020-02-03 tracey KATTR_HREF, href_diff, KATTR__MAX);
1320 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1321 070fee27 2020-02-03 stsp goto done;
1322 bd275801 2020-02-03 tracey kerr = khtml_puts(gw_trans->gw_html_req, "diff");
1323 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1324 bd275801 2020-02-03 tracey goto done;
1325 bd275801 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1326 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1327 bd275801 2020-02-03 tracey goto done;
1328 bd275801 2020-02-03 tracey
1329 bd275801 2020-02-03 tracey kerr = khtml_puts(gw_trans->gw_html_req, " | ");
1330 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1331 bd275801 2020-02-03 tracey goto done;
1332 bd275801 2020-02-03 tracey
1333 9ba68833 2020-04-14 tracey href_tree = khttp_urlpart(NULL, NULL, "gotweb", "path",
1334 9ba68833 2020-04-14 tracey gw_trans->repo_name, "action", "tree", "commit",
1335 9ba68833 2020-04-14 tracey n_header->commit_id, NULL);
1336 19ff7638 2020-04-14 tracey if (href_tree == NULL) {
1337 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpart");
1338 19ff7638 2020-04-14 tracey goto done;
1339 19ff7638 2020-04-14 tracey }
1340 bd275801 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
1341 9ba68833 2020-04-14 tracey KATTR_HREF, href_tree, KATTR__MAX);
1342 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1343 bd275801 2020-02-03 tracey goto done;
1344 bd275801 2020-02-03 tracey khtml_puts(gw_trans->gw_html_req, "tree");
1345 bd275801 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1346 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1347 bd275801 2020-02-03 tracey goto done;
1348 bd275801 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1349 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1350 bd275801 2020-02-03 tracey goto done;
1351 bd275801 2020-02-03 tracey
1352 bd275801 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1353 bd275801 2020-02-03 tracey KATTR_ID, "dotted_line", KATTR__MAX);
1354 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1355 bd275801 2020-02-03 tracey goto done;
1356 bd275801 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 3);
1357 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
1358 bd275801 2020-02-03 tracey goto done;
1359 bd275801 2020-02-03 tracey
1360 55ccf528 2020-02-03 stsp free(age);
1361 55ccf528 2020-02-03 stsp age = NULL;
1362 bd275801 2020-02-03 tracey free(href_diff);
1363 bd275801 2020-02-03 tracey href_diff = NULL;
1364 9ba68833 2020-04-14 tracey free(href_tree);
1365 9ba68833 2020-04-14 tracey href_tree = NULL;
1366 55e46400 2020-02-18 tracey }
1367 55e46400 2020-02-18 tracey
1368 5a911940 2021-06-25 tracey if (gw_trans->next_id || gw_trans->prev_id) {
1369 55e46400 2020-02-18 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1370 55e46400 2020-02-18 tracey KATTR_ID, "np_wrapper", KATTR__MAX);
1371 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1372 55e46400 2020-02-18 tracey goto done;
1373 55e46400 2020-02-18 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1374 55e46400 2020-02-18 tracey KATTR_ID, "nav_prev", KATTR__MAX);
1375 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1376 55e46400 2020-02-18 tracey goto done;
1377 55e46400 2020-02-18 tracey }
1378 55e46400 2020-02-18 tracey
1379 5a911940 2021-06-25 tracey if (gw_trans->prev_id) {
1380 9ba68833 2020-04-14 tracey href_prev = khttp_urlpartx(NULL, NULL, "gotweb", "path",
1381 9ba68833 2020-04-14 tracey KATTRX_STRING, gw_trans->repo_name, "page",
1382 9ba68833 2020-04-14 tracey KATTRX_INT, (int64_t) (gw_trans->page - 1), "action",
1383 9ba68833 2020-04-14 tracey KATTRX_STRING, "briefs", "commit", KATTRX_STRING,
1384 5a911940 2021-06-25 tracey gw_trans->prev_id ? gw_trans->prev_id : "", NULL);
1385 19ff7638 2020-04-14 tracey if (href_prev == NULL) {
1386 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpartx");
1387 19ff7638 2020-04-14 tracey goto done;
1388 19ff7638 2020-04-14 tracey }
1389 55e46400 2020-02-18 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
1390 55e46400 2020-02-18 tracey KATTR_HREF, href_prev, KATTR__MAX);
1391 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1392 55e46400 2020-02-18 tracey goto done;
1393 55e46400 2020-02-18 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Previous");
1394 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1395 55e46400 2020-02-18 tracey goto done;
1396 55e46400 2020-02-18 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1397 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1398 55e46400 2020-02-18 tracey goto done;
1399 9d84e7dd 2020-01-15 tracey }
1400 55e46400 2020-02-18 tracey
1401 55e46400 2020-02-18 tracey if (gw_trans->next_id || gw_trans->page > 0) {
1402 55e46400 2020-02-18 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1403 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1404 55e46400 2020-02-18 tracey return gw_kcgi_error(kerr);
1405 55e46400 2020-02-18 tracey }
1406 55e46400 2020-02-18 tracey
1407 55e46400 2020-02-18 tracey if (gw_trans->next_id) {
1408 55e46400 2020-02-18 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1409 55e46400 2020-02-18 tracey KATTR_ID, "nav_next", KATTR__MAX);
1410 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1411 55e46400 2020-02-18 tracey goto done;
1412 9ba68833 2020-04-14 tracey
1413 9ba68833 2020-04-14 tracey href_next = khttp_urlpartx(NULL, NULL, "gotweb", "path",
1414 9ba68833 2020-04-14 tracey KATTRX_STRING, gw_trans->repo_name, "page",
1415 9ba68833 2020-04-14 tracey KATTRX_INT, (int64_t) (gw_trans->page + 1), "action",
1416 9ba68833 2020-04-14 tracey KATTRX_STRING, "briefs", "commit", KATTRX_STRING,
1417 5a911940 2021-06-25 tracey gw_trans->next_id, NULL);
1418 19ff7638 2020-04-14 tracey if (href_next == NULL) {
1419 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpartx");
1420 19ff7638 2020-04-14 tracey goto done;
1421 19ff7638 2020-04-14 tracey }
1422 55e46400 2020-02-18 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
1423 55e46400 2020-02-18 tracey KATTR_HREF, href_next, KATTR__MAX);
1424 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1425 55e46400 2020-02-18 tracey goto done;
1426 55e46400 2020-02-18 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Next");
1427 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1428 55e46400 2020-02-18 tracey goto done;
1429 55e46400 2020-02-18 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 3);
1430 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1431 55e46400 2020-02-18 tracey goto done;
1432 55e46400 2020-02-18 tracey }
1433 55e46400 2020-02-18 tracey
1434 55e46400 2020-02-18 tracey if (gw_trans->next_id || gw_trans->page > 0) {
1435 55e46400 2020-02-18 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
1436 55e46400 2020-02-18 tracey if (kerr != KCGI_OK)
1437 55e46400 2020-02-18 tracey goto done;
1438 55e46400 2020-02-18 tracey }
1439 0e00e8f4 2020-01-29 stsp done:
1440 b0a1bc86 2020-02-14 stsp gw_free_header(header);
1441 f2f46662 2020-01-23 tracey TAILQ_FOREACH(n_header, &gw_trans->gw_headers, entry)
1442 b0a1bc86 2020-02-14 stsp gw_free_header(n_header);
1443 55ccf528 2020-02-03 stsp free(age);
1444 55e46400 2020-02-18 tracey free(href_next);
1445 55e46400 2020-02-18 tracey free(href_prev);
1446 bd275801 2020-02-03 tracey free(href_diff);
1447 9ba68833 2020-04-14 tracey free(href_tree);
1448 ef72fe2c 2020-02-04 stsp if (error == NULL && kerr != KCGI_OK)
1449 2447adad 2020-02-06 stsp error = gw_kcgi_error(kerr);
1450 2c251c14 2020-01-15 tracey return error;
1451 2c251c14 2020-01-15 tracey }
1452 2c251c14 2020-01-15 tracey
1453 2c251c14 2020-01-15 tracey static const struct got_error *
1454 54415d85 2020-01-15 tracey gw_summary(struct gw_trans *gw_trans)
1455 387a29ba 2020-01-15 tracey {
1456 387a29ba 2020-01-15 tracey const struct got_error *error = NULL;
1457 9eed6f10 2020-02-08 tracey char *age = NULL;
1458 21a55cc7 2020-02-04 tracey enum kcgi_err kerr = KCGI_OK;
1459 387a29ba 2020-01-15 tracey
1460 7a6dddae 2021-06-18 stsp #ifndef PROFILE
1461 f4df82f9 2020-01-29 stsp if (pledge("stdio rpath proc exec sendfd unveil", NULL) == -1)
1462 f4df82f9 2020-01-29 stsp return got_error_from_errno("pledge");
1463 7a6dddae 2021-06-18 stsp #endif
1464 85993e64 2020-02-17 tracey error = gw_apply_unveil(gw_trans->gw_dir->path);
1465 85993e64 2020-02-17 tracey if (error)
1466 85993e64 2020-02-17 tracey goto done;
1467 46b9c89b 2020-01-15 tracey
1468 783ec107 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1469 783ec107 2020-02-03 tracey "summary_wrapper", KATTR__MAX);
1470 c25c2314 2020-01-28 stsp if (kerr != KCGI_OK)
1471 2447adad 2020-02-06 stsp return gw_kcgi_error(kerr);
1472 c25c2314 2020-01-28 stsp
1473 783ec107 2020-02-03 tracey if (gw_trans->gw_conf->got_show_repo_description &&
1474 783ec107 2020-02-03 tracey gw_trans->gw_dir->description != NULL &&
1475 783ec107 2020-02-03 tracey (strcmp(gw_trans->gw_dir->description, "") != 0)) {
1476 783ec107 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1477 783ec107 2020-02-03 tracey KATTR_ID, "description_title", KATTR__MAX);
1478 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1479 783ec107 2020-02-03 tracey goto done;
1480 783ec107 2020-02-03 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Description: ");
1481 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1482 783ec107 2020-02-03 tracey goto done;
1483 783ec107 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1484 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1485 783ec107 2020-02-03 tracey goto done;
1486 783ec107 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1487 783ec107 2020-02-03 tracey KATTR_ID, "description", KATTR__MAX);
1488 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1489 783ec107 2020-02-03 tracey goto done;
1490 783ec107 2020-02-03 tracey kerr = khtml_puts(gw_trans->gw_html_req,
1491 783ec107 2020-02-03 tracey gw_trans->gw_dir->description);
1492 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1493 783ec107 2020-02-03 tracey goto done;
1494 783ec107 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1495 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1496 783ec107 2020-02-03 tracey goto done;
1497 46b9c89b 2020-01-15 tracey }
1498 46b9c89b 2020-01-15 tracey
1499 9a1cc63f 2020-02-03 stsp if (gw_trans->gw_conf->got_show_repo_owner &&
1500 a942aa37 2020-02-10 tracey gw_trans->gw_dir->owner != NULL &&
1501 a942aa37 2020-02-10 tracey (strcmp(gw_trans->gw_dir->owner, "") != 0)) {
1502 783ec107 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1503 783ec107 2020-02-03 tracey KATTR_ID, "repo_owner_title", KATTR__MAX);
1504 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1505 9a1cc63f 2020-02-03 stsp goto done;
1506 783ec107 2020-02-03 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Owner: ");
1507 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1508 9a1cc63f 2020-02-03 stsp goto done;
1509 783ec107 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1510 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1511 783ec107 2020-02-03 tracey goto done;
1512 783ec107 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1513 783ec107 2020-02-03 tracey KATTR_ID, "repo_owner", KATTR__MAX);
1514 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1515 783ec107 2020-02-03 tracey goto done;
1516 783ec107 2020-02-03 tracey kerr = khtml_puts(gw_trans->gw_html_req,
1517 62d463ca 2020-10-20 naddy gw_trans->gw_dir->owner);
1518 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1519 783ec107 2020-02-03 tracey goto done;
1520 783ec107 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1521 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1522 783ec107 2020-02-03 tracey goto done;
1523 46b9c89b 2020-01-15 tracey }
1524 46b9c89b 2020-01-15 tracey
1525 46b9c89b 2020-01-15 tracey if (gw_trans->gw_conf->got_show_repo_age) {
1526 d126c1b7 2020-01-29 stsp error = gw_get_repo_age(&age, gw_trans, gw_trans->gw_dir->path,
1527 2011c142 2020-02-14 stsp NULL, TM_LONG);
1528 d126c1b7 2020-01-29 stsp if (error)
1529 20f34652 2020-01-29 stsp goto done;
1530 55ccf528 2020-02-03 stsp if (age != NULL) {
1531 783ec107 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1532 783ec107 2020-02-03 tracey KATTR_ID, "last_change_title", KATTR__MAX);
1533 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1534 20f34652 2020-01-29 stsp goto done;
1535 783ec107 2020-02-03 tracey kerr = khtml_puts(gw_trans->gw_html_req,
1536 783ec107 2020-02-03 tracey "Last Change: ");
1537 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1538 20f34652 2020-01-29 stsp goto done;
1539 783ec107 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1540 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1541 20f34652 2020-01-29 stsp goto done;
1542 783ec107 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1543 783ec107 2020-02-03 tracey KATTR_ID, "last_change", KATTR__MAX);
1544 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1545 20f34652 2020-01-29 stsp goto done;
1546 783ec107 2020-02-03 tracey kerr = khtml_puts(gw_trans->gw_html_req, age);
1547 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1548 783ec107 2020-02-03 tracey goto done;
1549 783ec107 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1550 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1551 783ec107 2020-02-03 tracey goto done;
1552 46b9c89b 2020-01-15 tracey }
1553 46b9c89b 2020-01-15 tracey }
1554 783ec107 2020-02-03 tracey
1555 783ec107 2020-02-03 tracey if (gw_trans->gw_conf->got_show_repo_cloneurl &&
1556 783ec107 2020-02-03 tracey gw_trans->gw_dir->url != NULL &&
1557 783ec107 2020-02-03 tracey (strcmp(gw_trans->gw_dir->url, "") != 0)) {
1558 783ec107 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1559 783ec107 2020-02-03 tracey KATTR_ID, "cloneurl_title", KATTR__MAX);
1560 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1561 783ec107 2020-02-03 tracey goto done;
1562 783ec107 2020-02-03 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Clone URL: ");
1563 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1564 783ec107 2020-02-03 tracey goto done;
1565 783ec107 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1566 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1567 783ec107 2020-02-03 tracey goto done;
1568 783ec107 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1569 783ec107 2020-02-03 tracey KATTR_ID, "cloneurl", KATTR__MAX);
1570 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1571 783ec107 2020-02-03 tracey goto done;
1572 783ec107 2020-02-03 tracey kerr = khtml_puts(gw_trans->gw_html_req, gw_trans->gw_dir->url);
1573 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1574 21a55cc7 2020-02-04 tracey goto done;
1575 783ec107 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1576 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1577 783ec107 2020-02-03 tracey goto done;
1578 783ec107 2020-02-03 tracey }
1579 783ec107 2020-02-03 tracey
1580 783ec107 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1581 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1582 bd275801 2020-02-03 tracey goto done;
1583 bd275801 2020-02-03 tracey
1584 bd275801 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1585 bd275801 2020-02-03 tracey "briefs_title_wrapper", KATTR__MAX);
1586 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1587 bd275801 2020-02-03 tracey goto done;
1588 bd275801 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1589 bd275801 2020-02-03 tracey "briefs_title", KATTR__MAX);
1590 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1591 20f34652 2020-01-29 stsp goto done;
1592 bd275801 2020-02-03 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Commit Briefs");
1593 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1594 bd275801 2020-02-03 tracey goto done;
1595 bd275801 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
1596 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
1597 bd275801 2020-02-03 tracey goto done;
1598 f2f46662 2020-01-23 tracey error = gw_briefs(gw_trans);
1599 f2f46662 2020-01-23 tracey if (error)
1600 20f34652 2020-01-29 stsp goto done;
1601 f2f46662 2020-01-23 tracey
1602 ff4bb25f 2020-02-19 tracey error = gw_tags(gw_trans);
1603 6eccd105 2020-02-03 stsp if (error)
1604 6eccd105 2020-02-03 stsp goto done;
1605 8d4d2453 2020-01-15 tracey
1606 9eed6f10 2020-02-08 tracey error = gw_output_repo_heads(gw_trans);
1607 20f34652 2020-01-29 stsp done:
1608 20f34652 2020-01-29 stsp free(age);
1609 f7cc9480 2020-02-05 tracey if (error == NULL && kerr != KCGI_OK)
1610 2447adad 2020-02-06 stsp error = gw_kcgi_error(kerr);
1611 2204c934 2020-01-15 tracey return error;
1612 2204c934 2020-01-15 tracey }
1613 2204c934 2020-01-15 tracey
1614 2204c934 2020-01-15 tracey static const struct got_error *
1615 f2f46662 2020-01-23 tracey gw_tree(struct gw_trans *gw_trans)
1616 b772de24 2020-01-15 tracey {
1617 b772de24 2020-01-15 tracey const struct got_error *error = NULL;
1618 f2f46662 2020-01-23 tracey struct gw_header *header = NULL;
1619 f2f46662 2020-01-23 tracey char *tree = NULL, *tree_html = NULL, *tree_html_disp = NULL;
1620 53e81e48 2020-02-13 tracey char *age = NULL;
1621 795c10a4 2020-02-20 tracey enum kcgi_err kerr = KCGI_OK;
1622 6bee13de 2020-01-16 tracey
1623 7a6dddae 2021-06-18 stsp #ifndef PROFILE
1624 f2f46662 2020-01-23 tracey if (pledge("stdio rpath proc exec sendfd unveil", NULL) == -1)
1625 f2f46662 2020-01-23 tracey return got_error_from_errno("pledge");
1626 7a6dddae 2021-06-18 stsp #endif
1627 ae36ed87 2020-01-28 stsp if ((header = gw_init_header()) == NULL)
1628 f2f46662 2020-01-23 tracey return got_error_from_errno("malloc");
1629 f2f46662 2020-01-23 tracey
1630 d4159696 2020-02-13 stsp error = gw_apply_unveil(gw_trans->gw_dir->path);
1631 b772de24 2020-01-15 tracey if (error)
1632 5ddf0079 2020-01-29 stsp goto done;
1633 b772de24 2020-01-15 tracey
1634 f2f46662 2020-01-23 tracey error = gw_get_header(gw_trans, header, 1);
1635 f2f46662 2020-01-23 tracey if (error)
1636 42281175 2020-01-29 stsp goto done;
1637 b772de24 2020-01-15 tracey
1638 626b25b6 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1639 626b25b6 2020-02-06 tracey "tree_header_wrapper", KATTR__MAX);
1640 626b25b6 2020-02-06 tracey if (kerr != KCGI_OK)
1641 55ccf528 2020-02-03 stsp goto done;
1642 626b25b6 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1643 626b25b6 2020-02-06 tracey "tree_header", KATTR__MAX);
1644 626b25b6 2020-02-06 tracey if (kerr != KCGI_OK)
1645 55ccf528 2020-02-03 stsp goto done;
1646 626b25b6 2020-02-06 tracey error = gw_gen_tree_header(gw_trans, header->tree_id);
1647 626b25b6 2020-02-06 tracey if (error)
1648 626b25b6 2020-02-06 tracey goto done;
1649 626b25b6 2020-02-06 tracey error = gw_get_time_str(&age, header->committer_time,
1650 626b25b6 2020-02-06 tracey TM_LONG);
1651 626b25b6 2020-02-06 tracey if (error)
1652 626b25b6 2020-02-06 tracey goto done;
1653 626b25b6 2020-02-06 tracey error = gw_gen_age_header(gw_trans, age ?age : "");
1654 070fee27 2020-02-03 stsp if (error)
1655 070fee27 2020-02-03 stsp goto done;
1656 626b25b6 2020-02-06 tracey error = gw_gen_commit_msg_header(gw_trans, header->commit_msg);
1657 626b25b6 2020-02-06 tracey if (error)
1658 42281175 2020-01-29 stsp goto done;
1659 626b25b6 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
1660 626b25b6 2020-02-06 tracey if (kerr != KCGI_OK)
1661 42281175 2020-01-29 stsp goto done;
1662 626b25b6 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1663 626b25b6 2020-02-06 tracey "dotted_line", KATTR__MAX);
1664 c25c2314 2020-01-28 stsp if (kerr != KCGI_OK)
1665 626b25b6 2020-02-06 tracey goto done;
1666 626b25b6 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1667 626b25b6 2020-02-06 tracey if (kerr != KCGI_OK)
1668 626b25b6 2020-02-06 tracey goto done;
1669 626b25b6 2020-02-06 tracey
1670 626b25b6 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1671 626b25b6 2020-02-06 tracey "tree", KATTR__MAX);
1672 626b25b6 2020-02-06 tracey if (kerr != KCGI_OK)
1673 626b25b6 2020-02-06 tracey goto done;
1674 84de9106 2020-12-26 stsp error = gw_output_repo_tree(gw_trans, header);
1675 626b25b6 2020-02-06 tracey if (error)
1676 626b25b6 2020-02-06 tracey goto done;
1677 626b25b6 2020-02-06 tracey
1678 626b25b6 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1679 4ff7391f 2020-01-28 tracey done:
1680 b0a1bc86 2020-02-14 stsp gw_free_header(header);
1681 f2f46662 2020-01-23 tracey free(tree_html_disp);
1682 f2f46662 2020-01-23 tracey free(tree_html);
1683 f2f46662 2020-01-23 tracey free(tree);
1684 55ccf528 2020-02-03 stsp free(age);
1685 ff4bb25f 2020-02-19 tracey if (error == NULL && kerr != KCGI_OK)
1686 ff4bb25f 2020-02-19 tracey error = gw_kcgi_error(kerr);
1687 ff4bb25f 2020-02-19 tracey return error;
1688 ff4bb25f 2020-02-19 tracey }
1689 ff4bb25f 2020-02-19 tracey
1690 ff4bb25f 2020-02-19 tracey static const struct got_error *
1691 ff4bb25f 2020-02-19 tracey gw_tags(struct gw_trans *gw_trans)
1692 ff4bb25f 2020-02-19 tracey {
1693 ff4bb25f 2020-02-19 tracey const struct got_error *error = NULL;
1694 ff4bb25f 2020-02-19 tracey struct gw_header *header = NULL;
1695 ff4bb25f 2020-02-19 tracey char *href_next = NULL, *href_prev = NULL;
1696 ff4bb25f 2020-02-19 tracey enum kcgi_err kerr = KCGI_OK;
1697 ff4bb25f 2020-02-19 tracey
1698 7a6dddae 2021-06-18 stsp #ifndef PROFILE
1699 ff4bb25f 2020-02-19 tracey if (pledge("stdio rpath proc exec sendfd unveil", NULL) == -1)
1700 ff4bb25f 2020-02-19 tracey return got_error_from_errno("pledge");
1701 7a6dddae 2021-06-18 stsp #endif
1702 ff4bb25f 2020-02-19 tracey if ((header = gw_init_header()) == NULL)
1703 ff4bb25f 2020-02-19 tracey return got_error_from_errno("malloc");
1704 ff4bb25f 2020-02-19 tracey
1705 ff4bb25f 2020-02-19 tracey if (gw_trans->action != GW_SUMMARY) {
1706 ff4bb25f 2020-02-19 tracey error = gw_apply_unveil(gw_trans->gw_dir->path);
1707 ff4bb25f 2020-02-19 tracey if (error)
1708 ff4bb25f 2020-02-19 tracey goto done;
1709 ff4bb25f 2020-02-19 tracey }
1710 ff4bb25f 2020-02-19 tracey
1711 ff4bb25f 2020-02-19 tracey error = gw_get_header(gw_trans, header, 1);
1712 ff4bb25f 2020-02-19 tracey if (error)
1713 ff4bb25f 2020-02-19 tracey goto done;
1714 ff4bb25f 2020-02-19 tracey
1715 ff4bb25f 2020-02-19 tracey if (gw_trans->action == GW_SUMMARY) {
1716 7b1f04a6 2020-03-11 tracey gw_trans->next_id = NULL;
1717 ff4bb25f 2020-02-19 tracey error = gw_output_repo_tags(gw_trans, header,
1718 ff4bb25f 2020-02-19 tracey D_MAXSLCOMMDISP, TAGBRIEF);
1719 ff4bb25f 2020-02-19 tracey if (error)
1720 ff4bb25f 2020-02-19 tracey goto done;
1721 ff4bb25f 2020-02-19 tracey } else {
1722 ff4bb25f 2020-02-19 tracey error = gw_output_repo_tags(gw_trans, header,
1723 ff4bb25f 2020-02-19 tracey gw_trans->gw_conf->got_max_commits_display, TAGBRIEF);
1724 ff4bb25f 2020-02-19 tracey if (error)
1725 ff4bb25f 2020-02-19 tracey goto done;
1726 ff4bb25f 2020-02-19 tracey }
1727 ff4bb25f 2020-02-19 tracey
1728 ff4bb25f 2020-02-19 tracey if (gw_trans->next_id || gw_trans->page > 0) {
1729 ff4bb25f 2020-02-19 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1730 ff4bb25f 2020-02-19 tracey KATTR_ID, "np_wrapper", KATTR__MAX);
1731 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
1732 ff4bb25f 2020-02-19 tracey goto done;
1733 ff4bb25f 2020-02-19 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1734 ff4bb25f 2020-02-19 tracey KATTR_ID, "nav_prev", KATTR__MAX);
1735 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
1736 ff4bb25f 2020-02-19 tracey goto done;
1737 ff4bb25f 2020-02-19 tracey }
1738 ff4bb25f 2020-02-19 tracey
1739 5a911940 2021-06-25 tracey if (gw_trans->prev_id) {
1740 f7632464 2020-04-14 tracey href_prev = khttp_urlpartx(NULL, NULL, "gotweb", "path",
1741 f7632464 2020-04-14 tracey KATTRX_STRING, gw_trans->repo_name, "page",
1742 f7632464 2020-04-14 tracey KATTRX_INT, (int64_t) (gw_trans->page - 1), "action",
1743 f7632464 2020-04-14 tracey KATTRX_STRING, "tags", "commit", KATTRX_STRING,
1744 5a911940 2021-06-25 tracey gw_trans->prev_id ? gw_trans->prev_id : "", NULL);
1745 19ff7638 2020-04-14 tracey if (href_prev == NULL) {
1746 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpartx");
1747 19ff7638 2020-04-14 tracey goto done;
1748 19ff7638 2020-04-14 tracey }
1749 ff4bb25f 2020-02-19 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
1750 ff4bb25f 2020-02-19 tracey KATTR_HREF, href_prev, KATTR__MAX);
1751 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
1752 ff4bb25f 2020-02-19 tracey goto done;
1753 ff4bb25f 2020-02-19 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Previous");
1754 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
1755 ff4bb25f 2020-02-19 tracey goto done;
1756 ff4bb25f 2020-02-19 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1757 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
1758 ff4bb25f 2020-02-19 tracey goto done;
1759 ff4bb25f 2020-02-19 tracey }
1760 ff4bb25f 2020-02-19 tracey
1761 ff4bb25f 2020-02-19 tracey if (gw_trans->next_id || gw_trans->page > 0) {
1762 ff4bb25f 2020-02-19 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1763 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
1764 ff4bb25f 2020-02-19 tracey return gw_kcgi_error(kerr);
1765 ff4bb25f 2020-02-19 tracey }
1766 ff4bb25f 2020-02-19 tracey
1767 ff4bb25f 2020-02-19 tracey if (gw_trans->next_id) {
1768 ff4bb25f 2020-02-19 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1769 ff4bb25f 2020-02-19 tracey KATTR_ID, "nav_next", KATTR__MAX);
1770 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
1771 ff4bb25f 2020-02-19 tracey goto done;
1772 f7632464 2020-04-14 tracey href_next = khttp_urlpartx(NULL, NULL, "gotweb", "path",
1773 f7632464 2020-04-14 tracey KATTRX_STRING, gw_trans->repo_name, "page",
1774 f7632464 2020-04-14 tracey KATTRX_INT, (int64_t) (gw_trans->page + 1), "action",
1775 f7632464 2020-04-14 tracey KATTRX_STRING, "tags", "commit", KATTRX_STRING,
1776 5a911940 2021-06-25 tracey gw_trans->next_id, NULL);
1777 19ff7638 2020-04-14 tracey if (href_next == NULL) {
1778 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpartx");
1779 19ff7638 2020-04-14 tracey goto done;
1780 19ff7638 2020-04-14 tracey }
1781 ff4bb25f 2020-02-19 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
1782 ff4bb25f 2020-02-19 tracey KATTR_HREF, href_next, KATTR__MAX);
1783 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
1784 ff4bb25f 2020-02-19 tracey goto done;
1785 ff4bb25f 2020-02-19 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Next");
1786 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
1787 ff4bb25f 2020-02-19 tracey goto done;
1788 ff4bb25f 2020-02-19 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 3);
1789 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
1790 ff4bb25f 2020-02-19 tracey goto done;
1791 ff4bb25f 2020-02-19 tracey }
1792 ff4bb25f 2020-02-19 tracey
1793 ff4bb25f 2020-02-19 tracey if (gw_trans->next_id || gw_trans->page > 0) {
1794 ff4bb25f 2020-02-19 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
1795 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
1796 ff4bb25f 2020-02-19 tracey goto done;
1797 ff4bb25f 2020-02-19 tracey }
1798 ff4bb25f 2020-02-19 tracey done:
1799 ff4bb25f 2020-02-19 tracey gw_free_header(header);
1800 ff4bb25f 2020-02-19 tracey free(href_next);
1801 ff4bb25f 2020-02-19 tracey free(href_prev);
1802 626b25b6 2020-02-06 tracey if (error == NULL && kerr != KCGI_OK)
1803 626b25b6 2020-02-06 tracey error = gw_kcgi_error(kerr);
1804 4ff7391f 2020-01-28 tracey return error;
1805 4ff7391f 2020-01-28 tracey }
1806 4ff7391f 2020-01-28 tracey
1807 4ff7391f 2020-01-28 tracey static const struct got_error *
1808 4ff7391f 2020-01-28 tracey gw_tag(struct gw_trans *gw_trans)
1809 4ff7391f 2020-01-28 tracey {
1810 4ff7391f 2020-01-28 tracey const struct got_error *error = NULL;
1811 4ff7391f 2020-01-28 tracey struct gw_header *header = NULL;
1812 795c10a4 2020-02-20 tracey enum kcgi_err kerr = KCGI_OK;
1813 4ff7391f 2020-01-28 tracey
1814 7a6dddae 2021-06-18 stsp #ifndef PROFILE
1815 4ff7391f 2020-01-28 tracey if (pledge("stdio rpath proc exec sendfd unveil", NULL) == -1)
1816 4ff7391f 2020-01-28 tracey return got_error_from_errno("pledge");
1817 7a6dddae 2021-06-18 stsp #endif
1818 4ff7391f 2020-01-28 tracey if ((header = gw_init_header()) == NULL)
1819 4ff7391f 2020-01-28 tracey return got_error_from_errno("malloc");
1820 4ff7391f 2020-01-28 tracey
1821 d4159696 2020-02-13 stsp error = gw_apply_unveil(gw_trans->gw_dir->path);
1822 4ff7391f 2020-01-28 tracey if (error)
1823 5ddf0079 2020-01-29 stsp goto done;
1824 4ff7391f 2020-01-28 tracey
1825 9f33591a 2020-02-14 tracey if (gw_trans->commit_id == NULL) {
1826 9f33591a 2020-02-14 tracey error = got_error_msg(GOT_ERR_QUERYSTRING,
1827 9f33591a 2020-02-14 tracey "commit required in querystring");
1828 9f33591a 2020-02-14 tracey goto done;
1829 9f33591a 2020-02-14 tracey }
1830 9f33591a 2020-02-14 tracey
1831 4ff7391f 2020-01-28 tracey error = gw_get_header(gw_trans, header, 1);
1832 4ff7391f 2020-01-28 tracey if (error)
1833 470cd826 2020-01-29 stsp goto done;
1834 4ff7391f 2020-01-28 tracey
1835 38b240fb 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1836 38b240fb 2020-02-06 tracey "tag_header_wrapper", KATTR__MAX);
1837 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
1838 38b240fb 2020-02-06 tracey goto done;
1839 38b240fb 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1840 38b240fb 2020-02-06 tracey "tag_header", KATTR__MAX);
1841 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
1842 38b240fb 2020-02-06 tracey goto done;
1843 38b240fb 2020-02-06 tracey error = gw_gen_commit_header(gw_trans, header->commit_id,
1844 38b240fb 2020-02-06 tracey header->refs_str);
1845 6eccd105 2020-02-03 stsp if (error)
1846 6eccd105 2020-02-03 stsp goto done;
1847 38b240fb 2020-02-06 tracey error = gw_gen_commit_msg_header(gw_trans, header->commit_msg);
1848 38b240fb 2020-02-06 tracey if (error)
1849 470cd826 2020-01-29 stsp goto done;
1850 38b240fb 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
1851 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
1852 470cd826 2020-01-29 stsp goto done;
1853 38b240fb 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1854 38b240fb 2020-02-06 tracey "dotted_line", KATTR__MAX);
1855 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
1856 38b240fb 2020-02-06 tracey goto done;
1857 38b240fb 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1858 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
1859 38b240fb 2020-02-06 tracey goto done;
1860 4ff7391f 2020-01-28 tracey
1861 38b240fb 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1862 38b240fb 2020-02-06 tracey "tree", KATTR__MAX);
1863 4ff7391f 2020-01-28 tracey if (kerr != KCGI_OK)
1864 38b240fb 2020-02-06 tracey goto done;
1865 38b240fb 2020-02-06 tracey
1866 38b240fb 2020-02-06 tracey error = gw_output_repo_tags(gw_trans, header, 1, TAGFULL);
1867 38b240fb 2020-02-06 tracey if (error)
1868 38b240fb 2020-02-06 tracey goto done;
1869 38b240fb 2020-02-06 tracey
1870 38b240fb 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1871 4ff7391f 2020-01-28 tracey done:
1872 b0a1bc86 2020-02-14 stsp gw_free_header(header);
1873 38b240fb 2020-02-06 tracey if (error == NULL && kerr != KCGI_OK)
1874 38b240fb 2020-02-06 tracey error = gw_kcgi_error(kerr);
1875 2c251c14 2020-01-15 tracey return error;
1876 2c251c14 2020-01-15 tracey }
1877 2c251c14 2020-01-15 tracey
1878 2c251c14 2020-01-15 tracey static const struct got_error *
1879 54415d85 2020-01-15 tracey gw_load_got_path(struct gw_trans *gw_trans, struct gw_dir *gw_dir)
1880 2c251c14 2020-01-15 tracey {
1881 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
1882 2c251c14 2020-01-15 tracey DIR *dt;
1883 2c251c14 2020-01-15 tracey char *dir_test;
1884 4ceb8155 2020-01-15 tracey int opened = 0;
1885 2c251c14 2020-01-15 tracey
1886 88d59c36 2020-01-29 stsp if (asprintf(&dir_test, "%s/%s/%s",
1887 2c251c14 2020-01-15 tracey gw_trans->gw_conf->got_repos_path, gw_dir->name,
1888 88d59c36 2020-01-29 stsp GOTWEB_GIT_DIR) == -1)
1889 2c251c14 2020-01-15 tracey return got_error_from_errno("asprintf");
1890 2c251c14 2020-01-15 tracey
1891 2c251c14 2020-01-15 tracey dt = opendir(dir_test);
1892 2c251c14 2020-01-15 tracey if (dt == NULL) {
1893 2c251c14 2020-01-15 tracey free(dir_test);
1894 2c251c14 2020-01-15 tracey } else {
1895 d1635ae4 2020-02-13 tracey gw_dir->path = strdup(dir_test);
1896 d1635ae4 2020-02-13 tracey if (gw_dir->path == NULL) {
1897 d1635ae4 2020-02-13 tracey opened = 1;
1898 d1635ae4 2020-02-13 tracey error = got_error_from_errno("strdup");
1899 a942aa37 2020-02-10 tracey goto errored;
1900 d1635ae4 2020-02-13 tracey }
1901 d1635ae4 2020-02-13 tracey opened = 1;
1902 2c251c14 2020-01-15 tracey goto done;
1903 2c251c14 2020-01-15 tracey }
1904 2c251c14 2020-01-15 tracey
1905 88d59c36 2020-01-29 stsp if (asprintf(&dir_test, "%s/%s/%s",
1906 2c251c14 2020-01-15 tracey gw_trans->gw_conf->got_repos_path, gw_dir->name,
1907 d81f9039 2020-02-13 stsp GOTWEB_GOT_DIR) == -1) {
1908 d81f9039 2020-02-13 stsp dir_test = NULL;
1909 d81f9039 2020-02-13 stsp error = got_error_from_errno("asprintf");
1910 d81f9039 2020-02-13 stsp goto errored;
1911 d81f9039 2020-02-13 stsp }
1912 2c251c14 2020-01-15 tracey
1913 2c251c14 2020-01-15 tracey dt = opendir(dir_test);
1914 2c251c14 2020-01-15 tracey if (dt == NULL)
1915 2c251c14 2020-01-15 tracey free(dir_test);
1916 2c251c14 2020-01-15 tracey else {
1917 4ceb8155 2020-01-15 tracey opened = 1;
1918 2c251c14 2020-01-15 tracey error = got_error(GOT_ERR_NOT_GIT_REPO);
1919 2c251c14 2020-01-15 tracey goto errored;
1920 2c251c14 2020-01-15 tracey }
1921 2c251c14 2020-01-15 tracey
1922 88d59c36 2020-01-29 stsp if (asprintf(&dir_test, "%s/%s",
1923 d81f9039 2020-02-13 stsp gw_trans->gw_conf->got_repos_path, gw_dir->name) == -1) {
1924 d81f9039 2020-02-13 stsp error = got_error_from_errno("asprintf");
1925 d81f9039 2020-02-13 stsp dir_test = NULL;
1926 d81f9039 2020-02-13 stsp goto errored;
1927 d81f9039 2020-02-13 stsp }
1928 2c251c14 2020-01-15 tracey
1929 d1635ae4 2020-02-13 tracey gw_dir->path = strdup(dir_test);
1930 d1635ae4 2020-02-13 tracey if (gw_dir->path == NULL) {
1931 a942aa37 2020-02-10 tracey opened = 1;
1932 d1635ae4 2020-02-13 tracey error = got_error_from_errno("strdup");
1933 a942aa37 2020-02-10 tracey goto errored;
1934 a942aa37 2020-02-10 tracey }
1935 cc18a904 2020-02-13 tracey
1936 cc18a904 2020-02-13 tracey dt = opendir(dir_test);
1937 cc18a904 2020-02-13 tracey if (dt == NULL) {
1938 d90bcdd6 2020-02-17 stsp error = got_error_path(gw_dir->name, GOT_ERR_NOT_GIT_REPO);
1939 cc18a904 2020-02-13 tracey goto errored;
1940 7ecc73af 2020-02-13 tracey } else
1941 7ecc73af 2020-02-13 tracey opened = 1;
1942 2c251c14 2020-01-15 tracey done:
1943 32cd4d18 2020-02-03 stsp error = gw_get_repo_description(&gw_dir->description, gw_trans,
1944 2c251c14 2020-01-15 tracey gw_dir->path);
1945 32cd4d18 2020-02-03 stsp if (error)
1946 32cd4d18 2020-02-03 stsp goto errored;
1947 9a1cc63f 2020-02-03 stsp error = gw_get_repo_owner(&gw_dir->owner, gw_trans, gw_dir->path);
1948 9a1cc63f 2020-02-03 stsp if (error)
1949 9a1cc63f 2020-02-03 stsp goto errored;
1950 d126c1b7 2020-01-29 stsp error = gw_get_repo_age(&gw_dir->age, gw_trans, gw_dir->path,
1951 2011c142 2020-02-14 stsp NULL, TM_DIFF);
1952 d126c1b7 2020-01-29 stsp if (error)
1953 d126c1b7 2020-01-29 stsp goto errored;
1954 59d3c40e 2020-02-03 stsp error = gw_get_clone_url(&gw_dir->url, gw_trans, gw_dir->path);
1955 2c251c14 2020-01-15 tracey errored:
1956 2c251c14 2020-01-15 tracey free(dir_test);
1957 2c251c14 2020-01-15 tracey if (opened)
1958 795c5bd7 2020-02-17 tracey if (dt && closedir(dt) == -1 && error == NULL)
1959 e227880d 2020-02-17 tracey error = got_error_from_errno("closedir");
1960 2c251c14 2020-01-15 tracey return error;
1961 2c251c14 2020-01-15 tracey }
1962 2c251c14 2020-01-15 tracey
1963 2c251c14 2020-01-15 tracey static const struct got_error *
1964 54415d85 2020-01-15 tracey gw_load_got_paths(struct gw_trans *gw_trans)
1965 2c251c14 2020-01-15 tracey {
1966 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
1967 2c251c14 2020-01-15 tracey DIR *d;
1968 2c251c14 2020-01-15 tracey struct dirent **sd_dent;
1969 2c251c14 2020-01-15 tracey struct gw_dir *gw_dir;
1970 2c251c14 2020-01-15 tracey struct stat st;
1971 2c251c14 2020-01-15 tracey unsigned int d_cnt, d_i;
1972 2c251c14 2020-01-15 tracey
1973 2c251c14 2020-01-15 tracey d = opendir(gw_trans->gw_conf->got_repos_path);
1974 2c251c14 2020-01-15 tracey if (d == NULL) {
1975 2c251c14 2020-01-15 tracey error = got_error_from_errno2("opendir",
1976 2c251c14 2020-01-15 tracey gw_trans->gw_conf->got_repos_path);
1977 2c251c14 2020-01-15 tracey return error;
1978 2c251c14 2020-01-15 tracey }
1979 2c251c14 2020-01-15 tracey
1980 2c251c14 2020-01-15 tracey d_cnt = scandir(gw_trans->gw_conf->got_repos_path, &sd_dent, NULL,
1981 2c251c14 2020-01-15 tracey alphasort);
1982 2c251c14 2020-01-15 tracey if (d_cnt == -1) {
1983 2c251c14 2020-01-15 tracey error = got_error_from_errno2("scandir",
1984 2c251c14 2020-01-15 tracey gw_trans->gw_conf->got_repos_path);
1985 8182bd34 2020-02-17 tracey goto done;
1986 2c251c14 2020-01-15 tracey }
1987 2c251c14 2020-01-15 tracey
1988 2c251c14 2020-01-15 tracey for (d_i = 0; d_i < d_cnt; d_i++) {
1989 2c251c14 2020-01-15 tracey if (gw_trans->gw_conf->got_max_repos > 0 &&
1990 2c251c14 2020-01-15 tracey (d_i - 2) == gw_trans->gw_conf->got_max_repos)
1991 2c251c14 2020-01-15 tracey break; /* account for parent and self */
1992 2c251c14 2020-01-15 tracey
1993 2c251c14 2020-01-15 tracey if (strcmp(sd_dent[d_i]->d_name, ".") == 0 ||
1994 2c251c14 2020-01-15 tracey strcmp(sd_dent[d_i]->d_name, "..") == 0)
1995 2c251c14 2020-01-15 tracey continue;
1996 2c251c14 2020-01-15 tracey
1997 4619e1f2 2020-02-13 stsp error = gw_init_gw_dir(&gw_dir, sd_dent[d_i]->d_name);
1998 4619e1f2 2020-02-13 stsp if (error)
1999 8182bd34 2020-02-17 tracey goto done;
2000 2c251c14 2020-01-15 tracey
2001 2c251c14 2020-01-15 tracey error = gw_load_got_path(gw_trans, gw_dir);
2002 7bf16821 2020-02-07 stsp if (error && error->code == GOT_ERR_NOT_GIT_REPO) {
2003 7bf16821 2020-02-07 stsp error = NULL;
2004 2c251c14 2020-01-15 tracey continue;
2005 0526966e 2022-01-25 thomas } else if (error && error->code != GOT_ERR_LONELY_PACKIDX)
2006 8182bd34 2020-02-17 tracey goto done;
2007 2c251c14 2020-01-15 tracey
2008 2c251c14 2020-01-15 tracey if (lstat(gw_dir->path, &st) == 0 && S_ISDIR(st.st_mode) &&
2009 2c251c14 2020-01-15 tracey !got_path_dir_is_empty(gw_dir->path)) {
2010 2c251c14 2020-01-15 tracey TAILQ_INSERT_TAIL(&gw_trans->gw_dirs, gw_dir,
2011 2c251c14 2020-01-15 tracey entry);
2012 2c251c14 2020-01-15 tracey gw_trans->repos_total++;
2013 2c251c14 2020-01-15 tracey }
2014 2c251c14 2020-01-15 tracey }
2015 8182bd34 2020-02-17 tracey done:
2016 e227880d 2020-02-17 tracey if (d && closedir(d) == -1 && error == NULL)
2017 e227880d 2020-02-17 tracey error = got_error_from_errno("closedir");
2018 2c251c14 2020-01-15 tracey return error;
2019 2c251c14 2020-01-15 tracey }
2020 2c251c14 2020-01-15 tracey
2021 2c251c14 2020-01-15 tracey static const struct got_error *
2022 54415d85 2020-01-15 tracey gw_parse_querystring(struct gw_trans *gw_trans)
2023 2c251c14 2020-01-15 tracey {
2024 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
2025 2c251c14 2020-01-15 tracey struct kpair *p;
2026 fa8129f7 2022-03-22 thomas const struct gw_query_action *action = NULL;
2027 2c251c14 2020-01-15 tracey unsigned int i;
2028 2c251c14 2020-01-15 tracey
2029 2c251c14 2020-01-15 tracey if (gw_trans->gw_req->fieldnmap[0]) {
2030 8f214b62 2020-02-17 stsp return got_error(GOT_ERR_QUERYSTRING);
2031 2c251c14 2020-01-15 tracey } else if ((p = gw_trans->gw_req->fieldmap[KEY_PATH])) {
2032 2c251c14 2020-01-15 tracey /* define gw_trans->repo_path */
2033 f652ec0c 2020-02-13 stsp gw_trans->repo_name = p->parsed.s;
2034 2c251c14 2020-01-15 tracey
2035 88d59c36 2020-01-29 stsp if (asprintf(&gw_trans->repo_path, "%s/%s",
2036 88d59c36 2020-01-29 stsp gw_trans->gw_conf->got_repos_path, p->parsed.s) == -1)
2037 2c251c14 2020-01-15 tracey return got_error_from_errno("asprintf");
2038 2c251c14 2020-01-15 tracey
2039 2c251c14 2020-01-15 tracey /* get action and set function */
2040 f1200fe3 2020-02-13 tracey if ((p = gw_trans->gw_req->fieldmap[KEY_ACTION])) {
2041 2c251c14 2020-01-15 tracey for (i = 0; i < nitems(gw_query_funcs); i++) {
2042 2c251c14 2020-01-15 tracey action = &gw_query_funcs[i];
2043 f1200fe3 2020-02-13 tracey if (action->func_name == NULL)
2044 2c251c14 2020-01-15 tracey continue;
2045 f1200fe3 2020-02-13 tracey if (strcmp(action->func_name,
2046 f1200fe3 2020-02-13 tracey p->parsed.s) == 0) {
2047 f1200fe3 2020-02-13 tracey gw_trans->action = i;
2048 f1200fe3 2020-02-13 tracey break;
2049 f1200fe3 2020-02-13 tracey }
2050 f1200fe3 2020-02-13 tracey }
2051 6f6f771f 2020-02-13 tracey }
2052 6f6f771f 2020-02-13 tracey if (gw_trans->action == -1) {
2053 6f6f771f 2020-02-13 tracey gw_trans->action = GW_ERR;
2054 8f214b62 2020-02-17 stsp gw_trans->error = got_error_msg(GOT_ERR_QUERYSTRING,
2055 8f214b62 2020-02-17 stsp p != NULL ? "bad action in querystring" :
2056 8f214b62 2020-02-17 stsp "no action in querystring");
2057 cc18a904 2020-02-13 tracey return error;
2058 f1200fe3 2020-02-13 tracey }
2059 ec46ccd7 2020-01-15 tracey
2060 abc59930 2021-09-05 naddy if ((p = gw_trans->gw_req->fieldmap[KEY_COMMIT_ID])) {
2061 56997cd3 2020-02-14 tracey if (asprintf(&gw_trans->commit_id, "%s",
2062 88d59c36 2020-01-29 stsp p->parsed.s) == -1)
2063 ec46ccd7 2020-01-15 tracey return got_error_from_errno("asprintf");
2064 26dc3004 2020-02-13 stsp }
2065 2c251c14 2020-01-15 tracey
2066 4d6abe2b 2020-02-13 stsp if ((p = gw_trans->gw_req->fieldmap[KEY_FILE]))
2067 4d6abe2b 2020-02-13 stsp gw_trans->repo_file = p->parsed.s;
2068 8087c3c5 2020-01-15 tracey
2069 26dc3004 2020-02-13 stsp if ((p = gw_trans->gw_req->fieldmap[KEY_FOLDER])) {
2070 88d59c36 2020-01-29 stsp if (asprintf(&gw_trans->repo_folder, "%s",
2071 55e46400 2020-02-18 tracey p->parsed.s) == -1)
2072 55e46400 2020-02-18 tracey return got_error_from_errno("asprintf");
2073 55e46400 2020-02-18 tracey }
2074 55e46400 2020-02-18 tracey
2075 55e46400 2020-02-18 tracey if ((p = gw_trans->gw_req->fieldmap[KEY_PREV_ID])) {
2076 55e46400 2020-02-18 tracey if (asprintf(&gw_trans->prev_id, "%s",
2077 55e46400 2020-02-18 tracey p->parsed.s) == -1)
2078 55e46400 2020-02-18 tracey return got_error_from_errno("asprintf");
2079 55e46400 2020-02-18 tracey }
2080 55e46400 2020-02-18 tracey
2081 742ba378 2020-02-14 stsp if ((p = gw_trans->gw_req->fieldmap[KEY_HEADREF]))
2082 742ba378 2020-02-14 stsp gw_trans->headref = p->parsed.s;
2083 2c251c14 2020-01-15 tracey
2084 4619e1f2 2020-02-13 stsp error = gw_init_gw_dir(&gw_trans->gw_dir, gw_trans->repo_name);
2085 4619e1f2 2020-02-13 stsp if (error)
2086 4619e1f2 2020-02-13 stsp return error;
2087 46b9c89b 2020-01-15 tracey
2088 cc18a904 2020-02-13 tracey gw_trans->error = gw_load_got_path(gw_trans, gw_trans->gw_dir);
2089 2c251c14 2020-01-15 tracey } else
2090 2c251c14 2020-01-15 tracey gw_trans->action = GW_INDEX;
2091 2c251c14 2020-01-15 tracey
2092 2c251c14 2020-01-15 tracey if ((p = gw_trans->gw_req->fieldmap[KEY_PAGE]))
2093 2c251c14 2020-01-15 tracey gw_trans->page = p->parsed.i;
2094 2c251c14 2020-01-15 tracey
2095 2c251c14 2020-01-15 tracey return error;
2096 2c251c14 2020-01-15 tracey }
2097 2c251c14 2020-01-15 tracey
2098 4619e1f2 2020-02-13 stsp static const struct got_error *
2099 f652ec0c 2020-02-13 stsp gw_init_gw_dir(struct gw_dir **gw_dir, const char *dir)
2100 4619e1f2 2020-02-13 stsp {
2101 4619e1f2 2020-02-13 stsp const struct got_error *error;
2102 2c251c14 2020-01-15 tracey
2103 4619e1f2 2020-02-13 stsp *gw_dir = malloc(sizeof(**gw_dir));
2104 4619e1f2 2020-02-13 stsp if (*gw_dir == NULL)
2105 4619e1f2 2020-02-13 stsp return got_error_from_errno("malloc");
2106 2c251c14 2020-01-15 tracey
2107 4619e1f2 2020-02-13 stsp if (asprintf(&(*gw_dir)->name, "%s", dir) == -1) {
2108 4619e1f2 2020-02-13 stsp error = got_error_from_errno("asprintf");
2109 4619e1f2 2020-02-13 stsp free(*gw_dir);
2110 4619e1f2 2020-02-13 stsp *gw_dir = NULL;
2111 e9a8bbf7 2020-05-29 tracey return error;
2112 4619e1f2 2020-02-13 stsp }
2113 2c251c14 2020-01-15 tracey
2114 4619e1f2 2020-02-13 stsp return NULL;
2115 474370cb 2020-01-15 tracey }
2116 474370cb 2020-01-15 tracey
2117 c25c2314 2020-01-28 stsp static const struct got_error *
2118 54415d85 2020-01-15 tracey gw_display_open(struct gw_trans *gw_trans, enum khttp code, enum kmime mime)
2119 2c251c14 2020-01-15 tracey {
2120 795c10a4 2020-02-20 tracey enum kcgi_err kerr = KCGI_OK;
2121 c25c2314 2020-01-28 stsp
2122 c25c2314 2020-01-28 stsp kerr = khttp_head(gw_trans->gw_req, kresps[KRESP_ALLOW], "GET");
2123 c25c2314 2020-01-28 stsp if (kerr != KCGI_OK)
2124 2447adad 2020-02-06 stsp return gw_kcgi_error(kerr);
2125 c25c2314 2020-01-28 stsp kerr = khttp_head(gw_trans->gw_req, kresps[KRESP_STATUS], "%s",
2126 2c251c14 2020-01-15 tracey khttps[code]);
2127 c25c2314 2020-01-28 stsp if (kerr != KCGI_OK)
2128 2447adad 2020-02-06 stsp return gw_kcgi_error(kerr);
2129 c25c2314 2020-01-28 stsp kerr = khttp_head(gw_trans->gw_req, kresps[KRESP_CONTENT_TYPE], "%s",
2130 2c251c14 2020-01-15 tracey kmimetypes[mime]);
2131 c25c2314 2020-01-28 stsp if (kerr != KCGI_OK)
2132 2447adad 2020-02-06 stsp return gw_kcgi_error(kerr);
2133 017d6da3 2020-01-29 tracey kerr = khttp_head(gw_trans->gw_req, "X-Content-Type-Options",
2134 017d6da3 2020-01-29 tracey "nosniff");
2135 c25c2314 2020-01-28 stsp if (kerr != KCGI_OK)
2136 2447adad 2020-02-06 stsp return gw_kcgi_error(kerr);
2137 c25c2314 2020-01-28 stsp kerr = khttp_head(gw_trans->gw_req, "X-Frame-Options", "DENY");
2138 c25c2314 2020-01-28 stsp if (kerr != KCGI_OK)
2139 2447adad 2020-02-06 stsp return gw_kcgi_error(kerr);
2140 017d6da3 2020-01-29 tracey kerr = khttp_head(gw_trans->gw_req, "X-XSS-Protection",
2141 017d6da3 2020-01-29 tracey "1; mode=block");
2142 c25c2314 2020-01-28 stsp if (kerr != KCGI_OK)
2143 2447adad 2020-02-06 stsp return gw_kcgi_error(kerr);
2144 c25c2314 2020-01-28 stsp
2145 017d6da3 2020-01-29 tracey if (gw_trans->mime == KMIME_APP_OCTET_STREAM) {
2146 017d6da3 2020-01-29 tracey kerr = khttp_head(gw_trans->gw_req,
2147 017d6da3 2020-01-29 tracey kresps[KRESP_CONTENT_DISPOSITION],
2148 017d6da3 2020-01-29 tracey "attachment; filename=%s", gw_trans->repo_file);
2149 017d6da3 2020-01-29 tracey if (kerr != KCGI_OK)
2150 2447adad 2020-02-06 stsp return gw_kcgi_error(kerr);
2151 017d6da3 2020-01-29 tracey }
2152 017d6da3 2020-01-29 tracey
2153 c25c2314 2020-01-28 stsp kerr = khttp_body(gw_trans->gw_req);
2154 2447adad 2020-02-06 stsp return gw_kcgi_error(kerr);
2155 2c251c14 2020-01-15 tracey }
2156 2c251c14 2020-01-15 tracey
2157 c25c2314 2020-01-28 stsp static const struct got_error *
2158 6d8d8a26 2020-01-29 stsp gw_display_index(struct gw_trans *gw_trans)
2159 2c251c14 2020-01-15 tracey {
2160 4bec7539 2020-01-29 stsp const struct got_error *error;
2161 795c10a4 2020-02-20 tracey enum kcgi_err kerr = KCGI_OK;
2162 c25c2314 2020-01-28 stsp
2163 cc18a904 2020-02-13 tracey /* catch early querystring errors */
2164 cc18a904 2020-02-13 tracey if (gw_trans->error)
2165 cc18a904 2020-02-13 tracey gw_trans->action = GW_ERR;
2166 cc18a904 2020-02-13 tracey
2167 4bec7539 2020-01-29 stsp error = gw_display_open(gw_trans, KHTTP_200, gw_trans->mime);
2168 4bec7539 2020-01-29 stsp if (error)
2169 4bec7539 2020-01-29 stsp return error;
2170 4bec7539 2020-01-29 stsp
2171 f7cc9480 2020-02-05 tracey kerr = khtml_open(gw_trans->gw_html_req, gw_trans->gw_req, 0);
2172 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2173 2447adad 2020-02-06 stsp return gw_kcgi_error(kerr);
2174 2c251c14 2020-01-15 tracey
2175 017d6da3 2020-01-29 tracey if (gw_trans->action != GW_BLOB) {
2176 017d6da3 2020-01-29 tracey kerr = khttp_template(gw_trans->gw_req, gw_trans->gw_tmpl,
2177 017d6da3 2020-01-29 tracey gw_query_funcs[gw_trans->action].template);
2178 017d6da3 2020-01-29 tracey if (kerr != KCGI_OK) {
2179 017d6da3 2020-01-29 tracey khtml_close(gw_trans->gw_html_req);
2180 2447adad 2020-02-06 stsp return gw_kcgi_error(kerr);
2181 017d6da3 2020-01-29 tracey }
2182 7a9bfbff 2020-01-29 stsp }
2183 2c251c14 2020-01-15 tracey
2184 7a9bfbff 2020-01-29 stsp return gw_kcgi_error(khtml_close(gw_trans->gw_html_req));
2185 2c251c14 2020-01-15 tracey }
2186 2c251c14 2020-01-15 tracey
2187 f1200fe3 2020-02-13 tracey static const struct got_error *
2188 f1200fe3 2020-02-13 tracey gw_error(struct gw_trans *gw_trans)
2189 6d8d8a26 2020-01-29 stsp {
2190 795c10a4 2020-02-20 tracey enum kcgi_err kerr = KCGI_OK;
2191 6d8d8a26 2020-01-29 stsp
2192 f1200fe3 2020-02-13 tracey kerr = khtml_puts(gw_trans->gw_html_req, gw_trans->error->msg);
2193 f1200fe3 2020-02-13 tracey
2194 f1200fe3 2020-02-13 tracey return gw_kcgi_error(kerr);
2195 6d8d8a26 2020-01-29 stsp }
2196 6d8d8a26 2020-01-29 stsp
2197 2c251c14 2020-01-15 tracey static int
2198 2c251c14 2020-01-15 tracey gw_template(size_t key, void *arg)
2199 2c251c14 2020-01-15 tracey {
2200 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
2201 795c10a4 2020-02-20 tracey enum kcgi_err kerr = KCGI_OK;
2202 54415d85 2020-01-15 tracey struct gw_trans *gw_trans = arg;
2203 9f6f3943 2020-09-24 tracey char *ati = NULL, *fic32 = NULL, *fic16 = NULL;
2204 9f6f3943 2020-09-24 tracey char *swm = NULL, *spt = NULL, *css = NULL, *logo = NULL;
2205 2c251c14 2020-01-15 tracey
2206 9f6f3943 2020-09-24 tracey if (asprintf(&ati, "%s%s", gw_trans->gw_conf->got_www_path,
2207 9f6f3943 2020-09-24 tracey "/apple-touch-icon.png") == -1)
2208 9f6f3943 2020-09-24 tracey goto err;
2209 9f6f3943 2020-09-24 tracey if (asprintf(&fic32, "%s%s", gw_trans->gw_conf->got_www_path,
2210 62d463ca 2020-10-20 naddy "/favicon-32x32.png") == -1)
2211 9f6f3943 2020-09-24 tracey goto err;
2212 9f6f3943 2020-09-24 tracey if (asprintf(&fic16, "%s%s", gw_trans->gw_conf->got_www_path,
2213 9f6f3943 2020-09-24 tracey "/favicon-16x16.png") == -1)
2214 9f6f3943 2020-09-24 tracey goto err;
2215 9f6f3943 2020-09-24 tracey if (asprintf(&swm, "%s%s", gw_trans->gw_conf->got_www_path,
2216 9f6f3943 2020-09-24 tracey "/site.webmanifest") == -1)
2217 9f6f3943 2020-09-24 tracey goto err;
2218 9f6f3943 2020-09-24 tracey if (asprintf(&spt, "%s%s", gw_trans->gw_conf->got_www_path,
2219 9f6f3943 2020-09-24 tracey "/safari-pinned-tab.svg") == -1)
2220 9f6f3943 2020-09-24 tracey goto err;
2221 9f6f3943 2020-09-24 tracey if (asprintf(&css, "%s%s", gw_trans->gw_conf->got_www_path,
2222 9f6f3943 2020-09-24 tracey "/gotweb.css") == -1)
2223 9f6f3943 2020-09-24 tracey goto err;
2224 9f6f3943 2020-09-24 tracey if (asprintf(&logo, "%s%s%s", gw_trans->gw_conf->got_www_path,
2225 9f6f3943 2020-09-24 tracey gw_trans->gw_conf->got_www_path ? "/" : "",
2226 9f6f3943 2020-09-24 tracey gw_trans->gw_conf->got_logo) == -1)
2227 9f6f3943 2020-09-24 tracey goto err;
2228 9f6f3943 2020-09-24 tracey
2229 2c251c14 2020-01-15 tracey switch (key) {
2230 2c251c14 2020-01-15 tracey case (TEMPL_HEAD):
2231 aaed5792 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_META,
2232 1dcb8908 2020-02-12 tracey KATTR_NAME, "viewport",
2233 1dcb8908 2020-02-12 tracey KATTR_CONTENT, "initial-scale=.75, user-scalable=yes",
2234 aaed5792 2020-02-08 tracey KATTR__MAX);
2235 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
2236 bd275801 2020-02-03 tracey return 0;
2237 aaed5792 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2238 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2239 aaed5792 2020-02-08 tracey return 0;
2240 aaed5792 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_META,
2241 aaed5792 2020-02-08 tracey KATTR_CHARSET, "utf-8",
2242 aaed5792 2020-02-08 tracey KATTR__MAX);
2243 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2244 aaed5792 2020-02-08 tracey return 0;
2245 aaed5792 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2246 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2247 aaed5792 2020-02-08 tracey return 0;
2248 aaed5792 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_META,
2249 aaed5792 2020-02-08 tracey KATTR_NAME, "msapplication-TileColor",
2250 aaed5792 2020-02-08 tracey KATTR_CONTENT, "#da532c", KATTR__MAX);
2251 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2252 aaed5792 2020-02-08 tracey return 0;
2253 aaed5792 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2254 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2255 aaed5792 2020-02-08 tracey return 0;
2256 aaed5792 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_META,
2257 aaed5792 2020-02-08 tracey KATTR_NAME, "theme-color",
2258 aaed5792 2020-02-08 tracey KATTR_CONTENT, "#ffffff", KATTR__MAX);
2259 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2260 aaed5792 2020-02-08 tracey return 0;
2261 aaed5792 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2262 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2263 aaed5792 2020-02-08 tracey return 0;
2264 aaed5792 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_LINK,
2265 aaed5792 2020-02-08 tracey KATTR_REL, "apple-touch-icon", KATTR_SIZES, "180x180",
2266 9f6f3943 2020-09-24 tracey KATTR_HREF, ati, KATTR__MAX);
2267 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2268 aaed5792 2020-02-08 tracey return 0;
2269 aaed5792 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2270 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2271 aaed5792 2020-02-08 tracey return 0;
2272 aaed5792 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_LINK,
2273 aaed5792 2020-02-08 tracey KATTR_REL, "icon", KATTR_TYPE, "image/png", KATTR_SIZES,
2274 9f6f3943 2020-09-24 tracey "32x32", KATTR_HREF, fic32, KATTR__MAX);
2275 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2276 aaed5792 2020-02-08 tracey return 0;
2277 aaed5792 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2278 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2279 aaed5792 2020-02-08 tracey return 0;
2280 aaed5792 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_LINK,
2281 aaed5792 2020-02-08 tracey KATTR_REL, "icon", KATTR_TYPE, "image/png", KATTR_SIZES,
2282 9f6f3943 2020-09-24 tracey "16x16", KATTR_HREF, fic16, KATTR__MAX);
2283 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2284 aaed5792 2020-02-08 tracey return 0;
2285 aaed5792 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2286 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2287 aaed5792 2020-02-08 tracey return 0;
2288 aaed5792 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_LINK,
2289 9f6f3943 2020-09-24 tracey KATTR_REL, "manifest", KATTR_HREF, swm,
2290 aaed5792 2020-02-08 tracey KATTR__MAX);
2291 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2292 aaed5792 2020-02-08 tracey return 0;
2293 aaed5792 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2294 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2295 aaed5792 2020-02-08 tracey return 0;
2296 aaed5792 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_LINK,
2297 aaed5792 2020-02-08 tracey KATTR_REL, "mask-icon", KATTR_HREF,
2298 9f6f3943 2020-09-24 tracey spt, KATTR__MAX);
2299 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2300 aaed5792 2020-02-08 tracey return 0;
2301 aaed5792 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2302 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2303 aaed5792 2020-02-08 tracey return 0;
2304 aaed5792 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_LINK,
2305 aaed5792 2020-02-08 tracey KATTR_REL, "stylesheet", KATTR_TYPE, "text/css",
2306 9f6f3943 2020-09-24 tracey KATTR_HREF, css, KATTR__MAX);
2307 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2308 aaed5792 2020-02-08 tracey return 0;
2309 aaed5792 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2310 aaed5792 2020-02-08 tracey if (kerr != KCGI_OK)
2311 aaed5792 2020-02-08 tracey return 0;
2312 2c251c14 2020-01-15 tracey break;
2313 2c251c14 2020-01-15 tracey case(TEMPL_HEADER):
2314 185ba3ba 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2315 185ba3ba 2020-02-04 tracey KATTR_ID, "got_link", KATTR__MAX);
2316 185ba3ba 2020-02-04 tracey if (kerr != KCGI_OK)
2317 185ba3ba 2020-02-04 tracey return 0;
2318 185ba3ba 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
2319 185ba3ba 2020-02-04 tracey KATTR_HREF, gw_trans->gw_conf->got_logo_url,
2320 185ba3ba 2020-02-04 tracey KATTR_TARGET, "_sotd", KATTR__MAX);
2321 185ba3ba 2020-02-04 tracey if (kerr != KCGI_OK)
2322 185ba3ba 2020-02-04 tracey return 0;
2323 185ba3ba 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_IMG,
2324 9f6f3943 2020-09-24 tracey KATTR_SRC, logo, KATTR__MAX);
2325 9f6f3943 2020-09-24 tracey if (kerr != KCGI_OK)
2326 185ba3ba 2020-02-04 tracey return 0;
2327 185ba3ba 2020-02-04 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 3);
2328 9f6f3943 2020-09-24 tracey if (kerr != KCGI_OK)
2329 185ba3ba 2020-02-04 tracey return 0;
2330 2c251c14 2020-01-15 tracey break;
2331 2c251c14 2020-01-15 tracey case (TEMPL_SITEPATH):
2332 4ae179a2 2020-02-08 tracey error = gw_output_site_link(gw_trans);
2333 4ae179a2 2020-02-08 tracey if (error)
2334 4ae179a2 2020-02-08 tracey return 0;
2335 2c251c14 2020-01-15 tracey break;
2336 2c251c14 2020-01-15 tracey case(TEMPL_TITLE):
2337 bd275801 2020-02-03 tracey if (gw_trans->gw_conf->got_site_name != NULL) {
2338 bd275801 2020-02-03 tracey kerr = khtml_puts(gw_trans->gw_html_req,
2339 2c251c14 2020-01-15 tracey gw_trans->gw_conf->got_site_name);
2340 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
2341 bd275801 2020-02-03 tracey return 0;
2342 bd275801 2020-02-03 tracey }
2343 2c251c14 2020-01-15 tracey break;
2344 2c251c14 2020-01-15 tracey case (TEMPL_SEARCH):
2345 63ee0dca 2020-02-08 tracey break;
2346 63ee0dca 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
2347 63ee0dca 2020-02-08 tracey "search", KATTR__MAX);
2348 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
2349 bd275801 2020-02-03 tracey return 0;
2350 63ee0dca 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_FORM,
2351 63ee0dca 2020-02-08 tracey KATTR_METHOD, "POST", KATTR__MAX);
2352 63ee0dca 2020-02-08 tracey if (kerr != KCGI_OK)
2353 63ee0dca 2020-02-08 tracey return 0;
2354 63ee0dca 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_INPUT, KATTR_ID,
2355 63ee0dca 2020-02-08 tracey "got-search", KATTR_NAME, "got-search", KATTR_SIZE, "15",
2356 63ee0dca 2020-02-08 tracey KATTR_MAXLENGTH, "50", KATTR__MAX);
2357 63ee0dca 2020-02-08 tracey if (kerr != KCGI_OK)
2358 63ee0dca 2020-02-08 tracey return 0;
2359 63ee0dca 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_BUTTON,
2360 63ee0dca 2020-02-08 tracey KATTR__MAX);
2361 63ee0dca 2020-02-08 tracey if (kerr != KCGI_OK)
2362 63ee0dca 2020-02-08 tracey return 0;
2363 63ee0dca 2020-02-08 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Search");
2364 63ee0dca 2020-02-08 tracey if (kerr != KCGI_OK)
2365 63ee0dca 2020-02-08 tracey return 0;
2366 63ee0dca 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 4);
2367 63ee0dca 2020-02-08 tracey if (kerr != KCGI_OK)
2368 63ee0dca 2020-02-08 tracey return 0;
2369 2c251c14 2020-01-15 tracey break;
2370 2c251c14 2020-01-15 tracey case(TEMPL_SITEOWNER):
2371 2c251c14 2020-01-15 tracey if (gw_trans->gw_conf->got_site_owner != NULL &&
2372 2c251c14 2020-01-15 tracey gw_trans->gw_conf->got_show_site_owner) {
2373 bd275801 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2374 bd275801 2020-02-03 tracey KATTR_ID, "site_owner_wrapper", KATTR__MAX);
2375 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
2376 070fee27 2020-02-03 stsp return 0;
2377 bd275801 2020-02-03 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2378 bd275801 2020-02-03 tracey KATTR_ID, "site_owner", KATTR__MAX);
2379 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
2380 2c251c14 2020-01-15 tracey return 0;
2381 bd275801 2020-02-03 tracey kerr = khtml_puts(gw_trans->gw_html_req,
2382 bd275801 2020-02-03 tracey gw_trans->gw_conf->got_site_owner);
2383 bd275801 2020-02-03 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
2384 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
2385 bd275801 2020-02-03 tracey return 0;
2386 2c251c14 2020-01-15 tracey }
2387 2c251c14 2020-01-15 tracey break;
2388 2c251c14 2020-01-15 tracey case(TEMPL_CONTENT):
2389 2c251c14 2020-01-15 tracey error = gw_query_funcs[gw_trans->action].func_main(gw_trans);
2390 bd275801 2020-02-03 tracey if (error) {
2391 0d100d0b 2020-02-07 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2392 0d100d0b 2020-02-07 tracey KATTR_ID, "tmpl_err", KATTR__MAX);
2393 0d100d0b 2020-02-07 tracey if (kerr != KCGI_OK)
2394 0d100d0b 2020-02-07 tracey return 0;
2395 f08447b0 2020-04-14 tracey kerr = khttp_printf(gw_trans->gw_req, "Error: %s",
2396 f08447b0 2020-04-14 tracey error->msg);
2397 0d100d0b 2020-02-07 tracey if (kerr != KCGI_OK)
2398 0d100d0b 2020-02-07 tracey return 0;
2399 0d100d0b 2020-02-07 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2400 bd275801 2020-02-03 tracey if (kerr != KCGI_OK)
2401 bd275801 2020-02-03 tracey return 0;
2402 bd275801 2020-02-03 tracey }
2403 2c251c14 2020-01-15 tracey break;
2404 2c251c14 2020-01-15 tracey default:
2405 2c251c14 2020-01-15 tracey return 0;
2406 2c251c14 2020-01-15 tracey }
2407 9f6f3943 2020-09-24 tracey free(ati);
2408 9f6f3943 2020-09-24 tracey free(fic32);
2409 9f6f3943 2020-09-24 tracey free(fic16);
2410 9f6f3943 2020-09-24 tracey free(swm);
2411 9f6f3943 2020-09-24 tracey free(spt);
2412 9f6f3943 2020-09-24 tracey free(css);
2413 9f6f3943 2020-09-24 tracey free(logo);
2414 2c251c14 2020-01-15 tracey return 1;
2415 9f6f3943 2020-09-24 tracey err:
2416 9f6f3943 2020-09-24 tracey free(ati);
2417 9f6f3943 2020-09-24 tracey free(fic32);
2418 9f6f3943 2020-09-24 tracey free(fic16);
2419 9f6f3943 2020-09-24 tracey free(swm);
2420 9f6f3943 2020-09-24 tracey free(spt);
2421 9f6f3943 2020-09-24 tracey free(css);
2422 9f6f3943 2020-09-24 tracey free(logo);
2423 9f6f3943 2020-09-24 tracey return 0;
2424 f2f46662 2020-01-23 tracey }
2425 21a55cc7 2020-02-04 tracey
2426 21a55cc7 2020-02-04 tracey static const struct got_error *
2427 21a55cc7 2020-02-04 tracey gw_gen_commit_header(struct gw_trans *gw_trans, char *str1, char *str2)
2428 21a55cc7 2020-02-04 tracey {
2429 21a55cc7 2020-02-04 tracey const struct got_error *error = NULL;
2430 21a55cc7 2020-02-04 tracey enum kcgi_err kerr = KCGI_OK;
2431 21a55cc7 2020-02-04 tracey
2432 21a55cc7 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2433 21a55cc7 2020-02-04 tracey KATTR_ID, "header_commit_title", KATTR__MAX);
2434 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2435 21a55cc7 2020-02-04 tracey goto done;
2436 21a55cc7 2020-02-04 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Commit: ");
2437 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2438 21a55cc7 2020-02-04 tracey goto done;
2439 21a55cc7 2020-02-04 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2440 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2441 21a55cc7 2020-02-04 tracey goto done;
2442 21a55cc7 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2443 21a55cc7 2020-02-04 tracey KATTR_ID, "header_commit", KATTR__MAX);
2444 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2445 21a55cc7 2020-02-04 tracey goto done;
2446 32b9f7ed 2020-04-14 tracey kerr = khtml_printf(gw_trans->gw_html_req, "%s ", str1);
2447 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2448 21a55cc7 2020-02-04 tracey goto done;
2449 5c65becf 2020-02-13 tracey if (str2 != NULL) {
2450 bf93a5c0 2020-02-15 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_SPAN,
2451 bf93a5c0 2020-02-15 tracey KATTR_ID, "refs_str", KATTR__MAX);
2452 5c65becf 2020-02-13 tracey if (kerr != KCGI_OK)
2453 5c65becf 2020-02-13 tracey goto done;
2454 32b9f7ed 2020-04-14 tracey kerr = khtml_printf(gw_trans->gw_html_req, "(%s)", str2);
2455 bf93a5c0 2020-02-15 tracey if (kerr != KCGI_OK)
2456 bf93a5c0 2020-02-15 tracey goto done;
2457 bf93a5c0 2020-02-15 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2458 5c65becf 2020-02-13 tracey if (kerr != KCGI_OK)
2459 5c65becf 2020-02-13 tracey goto done;
2460 5c65becf 2020-02-13 tracey }
2461 21a55cc7 2020-02-04 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2462 21a55cc7 2020-02-04 tracey done:
2463 21a55cc7 2020-02-04 tracey if (error == NULL && kerr != KCGI_OK)
2464 2447adad 2020-02-06 stsp error = gw_kcgi_error(kerr);
2465 21a55cc7 2020-02-04 tracey return error;
2466 21a55cc7 2020-02-04 tracey }
2467 21a55cc7 2020-02-04 tracey
2468 f7cc9480 2020-02-05 tracey static const struct got_error *
2469 f7cc9480 2020-02-05 tracey gw_gen_diff_header(struct gw_trans *gw_trans, char *str1, char *str2)
2470 f2f46662 2020-01-23 tracey {
2471 27192be7 2020-02-04 tracey const struct got_error *error = NULL;
2472 f7cc9480 2020-02-05 tracey enum kcgi_err kerr = KCGI_OK;
2473 f2f46662 2020-01-23 tracey
2474 f7cc9480 2020-02-05 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2475 f7cc9480 2020-02-05 tracey KATTR_ID, "header_diff_title", KATTR__MAX);
2476 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2477 f7cc9480 2020-02-05 tracey goto done;
2478 f7cc9480 2020-02-05 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Diff: ");
2479 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2480 f7cc9480 2020-02-05 tracey goto done;
2481 f7cc9480 2020-02-05 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2482 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2483 f7cc9480 2020-02-05 tracey goto done;
2484 f7cc9480 2020-02-05 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2485 f7cc9480 2020-02-05 tracey KATTR_ID, "header_diff", KATTR__MAX);
2486 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2487 f7cc9480 2020-02-05 tracey goto done;
2488 5c65becf 2020-02-13 tracey if (str1 != NULL) {
2489 5c65becf 2020-02-13 tracey kerr = khtml_puts(gw_trans->gw_html_req, str1);
2490 5c65becf 2020-02-13 tracey if (kerr != KCGI_OK)
2491 5c65becf 2020-02-13 tracey goto done;
2492 5c65becf 2020-02-13 tracey }
2493 f7cc9480 2020-02-05 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_BR, KATTR__MAX);
2494 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2495 f7cc9480 2020-02-05 tracey goto done;
2496 f7cc9480 2020-02-05 tracey kerr = khtml_puts(gw_trans->gw_html_req, str2);
2497 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2498 f7cc9480 2020-02-05 tracey goto done;
2499 f7cc9480 2020-02-05 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2500 f7cc9480 2020-02-05 tracey done:
2501 f7cc9480 2020-02-05 tracey if (error == NULL && kerr != KCGI_OK)
2502 2447adad 2020-02-06 stsp error = gw_kcgi_error(kerr);
2503 f7cc9480 2020-02-05 tracey return error;
2504 21a55cc7 2020-02-04 tracey }
2505 21a55cc7 2020-02-04 tracey
2506 21a55cc7 2020-02-04 tracey static const struct got_error *
2507 21a55cc7 2020-02-04 tracey gw_gen_age_header(struct gw_trans *gw_trans, const char *str)
2508 21a55cc7 2020-02-04 tracey {
2509 21a55cc7 2020-02-04 tracey const struct got_error *error = NULL;
2510 21a55cc7 2020-02-04 tracey enum kcgi_err kerr = KCGI_OK;
2511 21a55cc7 2020-02-04 tracey
2512 21a55cc7 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2513 21a55cc7 2020-02-04 tracey KATTR_ID, "header_age_title", KATTR__MAX);
2514 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2515 21a55cc7 2020-02-04 tracey goto done;
2516 21a55cc7 2020-02-04 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Date: ");
2517 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2518 21a55cc7 2020-02-04 tracey goto done;
2519 21a55cc7 2020-02-04 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2520 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2521 21a55cc7 2020-02-04 tracey goto done;
2522 21a55cc7 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2523 21a55cc7 2020-02-04 tracey KATTR_ID, "header_age", KATTR__MAX);
2524 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2525 21a55cc7 2020-02-04 tracey goto done;
2526 21a55cc7 2020-02-04 tracey kerr = khtml_puts(gw_trans->gw_html_req, str);
2527 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2528 21a55cc7 2020-02-04 tracey goto done;
2529 21a55cc7 2020-02-04 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2530 21a55cc7 2020-02-04 tracey done:
2531 21a55cc7 2020-02-04 tracey if (error == NULL && kerr != KCGI_OK)
2532 2447adad 2020-02-06 stsp error = gw_kcgi_error(kerr);
2533 21a55cc7 2020-02-04 tracey return error;
2534 21a55cc7 2020-02-04 tracey }
2535 21a55cc7 2020-02-04 tracey
2536 21a55cc7 2020-02-04 tracey static const struct got_error *
2537 21a55cc7 2020-02-04 tracey gw_gen_author_header(struct gw_trans *gw_trans, const char *str)
2538 21a55cc7 2020-02-04 tracey {
2539 21a55cc7 2020-02-04 tracey const struct got_error *error = NULL;
2540 795c10a4 2020-02-20 tracey enum kcgi_err kerr = KCGI_OK;
2541 21a55cc7 2020-02-04 tracey
2542 21a55cc7 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2543 21a55cc7 2020-02-04 tracey KATTR_ID, "header_author_title", KATTR__MAX);
2544 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2545 21a55cc7 2020-02-04 tracey goto done;
2546 21a55cc7 2020-02-04 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Author: ");
2547 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2548 21a55cc7 2020-02-04 tracey goto done;
2549 21a55cc7 2020-02-04 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2550 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2551 21a55cc7 2020-02-04 tracey goto done;
2552 21a55cc7 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2553 21a55cc7 2020-02-04 tracey KATTR_ID, "header_author", KATTR__MAX);
2554 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2555 21a55cc7 2020-02-04 tracey goto done;
2556 21a55cc7 2020-02-04 tracey kerr = khtml_puts(gw_trans->gw_html_req, str);
2557 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2558 21a55cc7 2020-02-04 tracey goto done;
2559 21a55cc7 2020-02-04 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2560 21a55cc7 2020-02-04 tracey done:
2561 21a55cc7 2020-02-04 tracey if (error == NULL && kerr != KCGI_OK)
2562 2447adad 2020-02-06 stsp error = gw_kcgi_error(kerr);
2563 21a55cc7 2020-02-04 tracey return error;
2564 f2f46662 2020-01-23 tracey }
2565 f2f46662 2020-01-23 tracey
2566 21a55cc7 2020-02-04 tracey static const struct got_error *
2567 21a55cc7 2020-02-04 tracey gw_gen_committer_header(struct gw_trans *gw_trans, const char *str)
2568 21a55cc7 2020-02-04 tracey {
2569 21a55cc7 2020-02-04 tracey const struct got_error *error = NULL;
2570 795c10a4 2020-02-20 tracey enum kcgi_err kerr = KCGI_OK;
2571 21a55cc7 2020-02-04 tracey
2572 21a55cc7 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2573 21a55cc7 2020-02-04 tracey KATTR_ID, "header_committer_title", KATTR__MAX);
2574 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2575 21a55cc7 2020-02-04 tracey goto done;
2576 87ca24ac 2020-02-04 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Committer: ");
2577 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2578 21a55cc7 2020-02-04 tracey goto done;
2579 21a55cc7 2020-02-04 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2580 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2581 21a55cc7 2020-02-04 tracey goto done;
2582 21a55cc7 2020-02-04 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2583 21a55cc7 2020-02-04 tracey KATTR_ID, "header_committer", KATTR__MAX);
2584 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2585 21a55cc7 2020-02-04 tracey goto done;
2586 21a55cc7 2020-02-04 tracey kerr = khtml_puts(gw_trans->gw_html_req, str);
2587 21a55cc7 2020-02-04 tracey if (kerr != KCGI_OK)
2588 21a55cc7 2020-02-04 tracey goto done;
2589 21a55cc7 2020-02-04 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2590 21a55cc7 2020-02-04 tracey done:
2591 21a55cc7 2020-02-04 tracey if (error == NULL && kerr != KCGI_OK)
2592 2447adad 2020-02-06 stsp error = gw_kcgi_error(kerr);
2593 21a55cc7 2020-02-04 tracey return error;
2594 21a55cc7 2020-02-04 tracey }
2595 21a55cc7 2020-02-04 tracey
2596 f7cc9480 2020-02-05 tracey static const struct got_error *
2597 f7cc9480 2020-02-05 tracey gw_gen_commit_msg_header(struct gw_trans *gw_trans, char *str)
2598 f2f46662 2020-01-23 tracey {
2599 27192be7 2020-02-04 tracey const struct got_error *error = NULL;
2600 795c10a4 2020-02-20 tracey enum kcgi_err kerr = KCGI_OK;
2601 f2f46662 2020-01-23 tracey
2602 f7cc9480 2020-02-05 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2603 f7cc9480 2020-02-05 tracey KATTR_ID, "header_commit_msg_title", KATTR__MAX);
2604 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2605 f7cc9480 2020-02-05 tracey goto done;
2606 f7cc9480 2020-02-05 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Message: ");
2607 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2608 f7cc9480 2020-02-05 tracey goto done;
2609 f7cc9480 2020-02-05 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2610 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2611 f7cc9480 2020-02-05 tracey goto done;
2612 f7cc9480 2020-02-05 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2613 f7cc9480 2020-02-05 tracey KATTR_ID, "header_commit_msg", KATTR__MAX);
2614 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2615 f7cc9480 2020-02-05 tracey goto done;
2616 f7cc9480 2020-02-05 tracey kerr = khttp_puts(gw_trans->gw_req, str);
2617 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2618 f7cc9480 2020-02-05 tracey goto done;
2619 f7cc9480 2020-02-05 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2620 f7cc9480 2020-02-05 tracey done:
2621 f7cc9480 2020-02-05 tracey if (error == NULL && kerr != KCGI_OK)
2622 2447adad 2020-02-06 stsp error = gw_kcgi_error(kerr);
2623 f7cc9480 2020-02-05 tracey return error;
2624 f2f46662 2020-01-23 tracey }
2625 f2f46662 2020-01-23 tracey
2626 f7cc9480 2020-02-05 tracey static const struct got_error *
2627 f7cc9480 2020-02-05 tracey gw_gen_tree_header(struct gw_trans *gw_trans, char *str)
2628 f2f46662 2020-01-23 tracey {
2629 f7cc9480 2020-02-05 tracey const struct got_error *error = NULL;
2630 795c10a4 2020-02-20 tracey enum kcgi_err kerr = KCGI_OK;
2631 f2f46662 2020-01-23 tracey
2632 f7cc9480 2020-02-05 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2633 f7cc9480 2020-02-05 tracey KATTR_ID, "header_tree_title", KATTR__MAX);
2634 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2635 f7cc9480 2020-02-05 tracey goto done;
2636 f7cc9480 2020-02-05 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Tree: ");
2637 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2638 f7cc9480 2020-02-05 tracey goto done;
2639 f7cc9480 2020-02-05 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2640 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2641 f7cc9480 2020-02-05 tracey goto done;
2642 f7cc9480 2020-02-05 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2643 f7cc9480 2020-02-05 tracey KATTR_ID, "header_tree", KATTR__MAX);
2644 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2645 f7cc9480 2020-02-05 tracey goto done;
2646 f7cc9480 2020-02-05 tracey kerr = khtml_puts(gw_trans->gw_html_req, str);
2647 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2648 f7cc9480 2020-02-05 tracey goto done;
2649 f7cc9480 2020-02-05 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2650 f7cc9480 2020-02-05 tracey done:
2651 f7cc9480 2020-02-05 tracey if (error == NULL && kerr != KCGI_OK)
2652 2447adad 2020-02-06 stsp error = gw_kcgi_error(kerr);
2653 f7cc9480 2020-02-05 tracey return error;
2654 f2f46662 2020-01-23 tracey }
2655 f2f46662 2020-01-23 tracey
2656 32cd4d18 2020-02-03 stsp static const struct got_error *
2657 32cd4d18 2020-02-03 stsp gw_get_repo_description(char **description, struct gw_trans *gw_trans,
2658 32cd4d18 2020-02-03 stsp char *dir)
2659 2c251c14 2020-01-15 tracey {
2660 32cd4d18 2020-02-03 stsp const struct got_error *error = NULL;
2661 b8b04565 2020-02-02 tracey FILE *f = NULL;
2662 32cd4d18 2020-02-03 stsp char *d_file = NULL;
2663 2c251c14 2020-01-15 tracey unsigned int len;
2664 1ab830c1 2020-02-03 stsp size_t n;
2665 2c251c14 2020-01-15 tracey
2666 32cd4d18 2020-02-03 stsp *description = NULL;
2667 0b20762b 2020-01-29 stsp if (gw_trans->gw_conf->got_show_repo_description == 0)
2668 a942aa37 2020-02-10 tracey return NULL;
2669 2c251c14 2020-01-15 tracey
2670 88d59c36 2020-01-29 stsp if (asprintf(&d_file, "%s/description", dir) == -1)
2671 32cd4d18 2020-02-03 stsp return got_error_from_errno("asprintf");
2672 2c251c14 2020-01-15 tracey
2673 c56c5d8a 2021-12-31 thomas f = fopen(d_file, "re");
2674 32cd4d18 2020-02-03 stsp if (f == NULL) {
2675 32cd4d18 2020-02-03 stsp if (errno == ENOENT || errno == EACCES)
2676 a942aa37 2020-02-10 tracey return NULL;
2677 32cd4d18 2020-02-03 stsp error = got_error_from_errno2("fopen", d_file);
2678 32cd4d18 2020-02-03 stsp goto done;
2679 32cd4d18 2020-02-03 stsp }
2680 2c251c14 2020-01-15 tracey
2681 32cd4d18 2020-02-03 stsp if (fseek(f, 0, SEEK_END) == -1) {
2682 32cd4d18 2020-02-03 stsp error = got_ferror(f, GOT_ERR_IO);
2683 32cd4d18 2020-02-03 stsp goto done;
2684 32cd4d18 2020-02-03 stsp }
2685 32cd4d18 2020-02-03 stsp len = ftell(f);
2686 32cd4d18 2020-02-03 stsp if (len == -1) {
2687 32cd4d18 2020-02-03 stsp error = got_ferror(f, GOT_ERR_IO);
2688 32cd4d18 2020-02-03 stsp goto done;
2689 32cd4d18 2020-02-03 stsp }
2690 32cd4d18 2020-02-03 stsp if (fseek(f, 0, SEEK_SET) == -1) {
2691 32cd4d18 2020-02-03 stsp error = got_ferror(f, GOT_ERR_IO);
2692 32cd4d18 2020-02-03 stsp goto done;
2693 32cd4d18 2020-02-03 stsp }
2694 32cd4d18 2020-02-03 stsp *description = calloc(len + 1, sizeof(**description));
2695 32cd4d18 2020-02-03 stsp if (*description == NULL) {
2696 32cd4d18 2020-02-03 stsp error = got_error_from_errno("calloc");
2697 32cd4d18 2020-02-03 stsp goto done;
2698 32cd4d18 2020-02-03 stsp }
2699 32cd4d18 2020-02-03 stsp
2700 32cd4d18 2020-02-03 stsp n = fread(*description, 1, len, f);
2701 1ab830c1 2020-02-03 stsp if (n == 0 && ferror(f))
2702 32cd4d18 2020-02-03 stsp error = got_ferror(f, GOT_ERR_IO);
2703 32cd4d18 2020-02-03 stsp done:
2704 56b63ca4 2021-01-22 stsp if (f != NULL && fclose(f) == EOF && error == NULL)
2705 32cd4d18 2020-02-03 stsp error = got_error_from_errno("fclose");
2706 2c251c14 2020-01-15 tracey free(d_file);
2707 32cd4d18 2020-02-03 stsp return error;
2708 2c251c14 2020-01-15 tracey }
2709 2c251c14 2020-01-15 tracey
2710 55ccf528 2020-02-03 stsp static const struct got_error *
2711 55ccf528 2020-02-03 stsp gw_get_time_str(char **repo_age, time_t committer_time, int ref_tm)
2712 474370cb 2020-01-15 tracey {
2713 474370cb 2020-01-15 tracey struct tm tm;
2714 474370cb 2020-01-15 tracey time_t diff_time;
2715 474370cb 2020-01-15 tracey char *years = "years ago", *months = "months ago";
2716 474370cb 2020-01-15 tracey char *weeks = "weeks ago", *days = "days ago", *hours = "hours ago";
2717 474370cb 2020-01-15 tracey char *minutes = "minutes ago", *seconds = "seconds ago";
2718 474370cb 2020-01-15 tracey char *now = "right now";
2719 55ccf528 2020-02-03 stsp char *s;
2720 6c6c85af 2020-01-15 tracey char datebuf[29];
2721 474370cb 2020-01-15 tracey
2722 55ccf528 2020-02-03 stsp *repo_age = NULL;
2723 55ccf528 2020-02-03 stsp
2724 474370cb 2020-01-15 tracey switch (ref_tm) {
2725 474370cb 2020-01-15 tracey case TM_DIFF:
2726 474370cb 2020-01-15 tracey diff_time = time(NULL) - committer_time;
2727 474370cb 2020-01-15 tracey if (diff_time > 60 * 60 * 24 * 365 * 2) {
2728 55ccf528 2020-02-03 stsp if (asprintf(repo_age, "%lld %s",
2729 88d59c36 2020-01-29 stsp (diff_time / 60 / 60 / 24 / 365), years) == -1)
2730 55ccf528 2020-02-03 stsp return got_error_from_errno("asprintf");
2731 474370cb 2020-01-15 tracey } else if (diff_time > 60 * 60 * 24 * (365 / 12) * 2) {
2732 55ccf528 2020-02-03 stsp if (asprintf(repo_age, "%lld %s",
2733 474370cb 2020-01-15 tracey (diff_time / 60 / 60 / 24 / (365 / 12)),
2734 88d59c36 2020-01-29 stsp months) == -1)
2735 55ccf528 2020-02-03 stsp return got_error_from_errno("asprintf");
2736 474370cb 2020-01-15 tracey } else if (diff_time > 60 * 60 * 24 * 7 * 2) {
2737 55ccf528 2020-02-03 stsp if (asprintf(repo_age, "%lld %s",
2738 88d59c36 2020-01-29 stsp (diff_time / 60 / 60 / 24 / 7), weeks) == -1)
2739 55ccf528 2020-02-03 stsp return got_error_from_errno("asprintf");
2740 474370cb 2020-01-15 tracey } else if (diff_time > 60 * 60 * 24 * 2) {
2741 55ccf528 2020-02-03 stsp if (asprintf(repo_age, "%lld %s",
2742 88d59c36 2020-01-29 stsp (diff_time / 60 / 60 / 24), days) == -1)
2743 55ccf528 2020-02-03 stsp return got_error_from_errno("asprintf");
2744 474370cb 2020-01-15 tracey } else if (diff_time > 60 * 60 * 2) {
2745 55ccf528 2020-02-03 stsp if (asprintf(repo_age, "%lld %s",
2746 88d59c36 2020-01-29 stsp (diff_time / 60 / 60), hours) == -1)
2747 55ccf528 2020-02-03 stsp return got_error_from_errno("asprintf");
2748 474370cb 2020-01-15 tracey } else if (diff_time > 60 * 2) {
2749 55ccf528 2020-02-03 stsp if (asprintf(repo_age, "%lld %s", (diff_time / 60),
2750 88d59c36 2020-01-29 stsp minutes) == -1)
2751 55ccf528 2020-02-03 stsp return got_error_from_errno("asprintf");
2752 474370cb 2020-01-15 tracey } else if (diff_time > 2) {
2753 55ccf528 2020-02-03 stsp if (asprintf(repo_age, "%lld %s", diff_time,
2754 88d59c36 2020-01-29 stsp seconds) == -1)
2755 55ccf528 2020-02-03 stsp return got_error_from_errno("asprintf");
2756 474370cb 2020-01-15 tracey } else {
2757 55ccf528 2020-02-03 stsp if (asprintf(repo_age, "%s", now) == -1)
2758 55ccf528 2020-02-03 stsp return got_error_from_errno("asprintf");
2759 474370cb 2020-01-15 tracey }
2760 474370cb 2020-01-15 tracey break;
2761 474370cb 2020-01-15 tracey case TM_LONG:
2762 474370cb 2020-01-15 tracey if (gmtime_r(&committer_time, &tm) == NULL)
2763 55ccf528 2020-02-03 stsp return got_error_from_errno("gmtime_r");
2764 474370cb 2020-01-15 tracey
2765 474370cb 2020-01-15 tracey s = asctime_r(&tm, datebuf);
2766 474370cb 2020-01-15 tracey if (s == NULL)
2767 55ccf528 2020-02-03 stsp return got_error_from_errno("asctime_r");
2768 474370cb 2020-01-15 tracey
2769 55ccf528 2020-02-03 stsp if (asprintf(repo_age, "%s UTC", datebuf) == -1)
2770 55ccf528 2020-02-03 stsp return got_error_from_errno("asprintf");
2771 474370cb 2020-01-15 tracey break;
2772 474370cb 2020-01-15 tracey }
2773 55ccf528 2020-02-03 stsp return NULL;
2774 474370cb 2020-01-15 tracey }
2775 474370cb 2020-01-15 tracey
2776 d126c1b7 2020-01-29 stsp static const struct got_error *
2777 d126c1b7 2020-01-29 stsp gw_get_repo_age(char **repo_age, struct gw_trans *gw_trans, char *dir,
2778 2011c142 2020-02-14 stsp const char *refname, int ref_tm)
2779 2c251c14 2020-01-15 tracey {
2780 2c251c14 2020-01-15 tracey const struct got_error *error = NULL;
2781 2c251c14 2020-01-15 tracey struct got_repository *repo = NULL;
2782 2c251c14 2020-01-15 tracey struct got_commit_object *commit = NULL;
2783 2c251c14 2020-01-15 tracey struct got_reflist_head refs;
2784 2c251c14 2020-01-15 tracey struct got_reflist_entry *re;
2785 474370cb 2020-01-15 tracey time_t committer_time = 0, cmp_time = 0;
2786 a0f36e03 2020-01-28 stsp
2787 d126c1b7 2020-01-29 stsp *repo_age = NULL;
2788 d9dff0e5 2020-12-26 stsp TAILQ_INIT(&refs);
2789 387a29ba 2020-01-15 tracey
2790 55ccf528 2020-02-03 stsp if (gw_trans->gw_conf->got_show_repo_age == 0)
2791 d126c1b7 2020-01-29 stsp return NULL;
2792 87f9ebf5 2020-01-15 tracey
2793 deac617c 2020-02-14 tracey if (gw_trans->repo)
2794 deac617c 2020-02-14 tracey repo = gw_trans->repo;
2795 deac617c 2020-02-14 tracey else {
2796 deac617c 2020-02-14 tracey error = got_repo_open(&repo, dir, NULL);
2797 deac617c 2020-02-14 tracey if (error)
2798 deac617c 2020-02-14 tracey return error;
2799 deac617c 2020-02-14 tracey }
2800 2c251c14 2020-01-15 tracey
2801 2011c142 2020-02-14 stsp error = got_ref_list(&refs, repo, "refs/heads",
2802 2011c142 2020-02-14 stsp got_ref_cmp_by_name, NULL);
2803 ec46ccd7 2020-01-15 tracey if (error)
2804 d126c1b7 2020-01-29 stsp goto done;
2805 2c251c14 2020-01-15 tracey
2806 2011c142 2020-02-14 stsp /*
2807 2011c142 2020-02-14 stsp * Find the youngest branch tip in the repository, or the age of
2808 2011c142 2020-02-14 stsp * the a specific branch tip if a name was provided by the caller.
2809 2011c142 2020-02-14 stsp */
2810 d9dff0e5 2020-12-26 stsp TAILQ_FOREACH(re, &refs, entry) {
2811 2011c142 2020-02-14 stsp struct got_object_id *id = NULL;
2812 17d4bf8d 2020-02-14 stsp
2813 2011c142 2020-02-14 stsp if (refname && strcmp(got_ref_get_name(re->ref), refname) != 0)
2814 2011c142 2020-02-14 stsp continue;
2815 4e8d6e3e 2020-02-14 tracey
2816 2011c142 2020-02-14 stsp error = got_ref_resolve(&id, repo, re->ref);
2817 ec46ccd7 2020-01-15 tracey if (error)
2818 d126c1b7 2020-01-29 stsp goto done;
2819 2c251c14 2020-01-15 tracey
2820 2c251c14 2020-01-15 tracey error = got_object_open_as_commit(&commit, repo, id);
2821 2011c142 2020-02-14 stsp free(id);
2822 ec46ccd7 2020-01-15 tracey if (error)
2823 d126c1b7 2020-01-29 stsp goto done;
2824 2c251c14 2020-01-15 tracey
2825 2c251c14 2020-01-15 tracey committer_time =
2826 2c251c14 2020-01-15 tracey got_object_commit_get_committer_time(commit);
2827 2011c142 2020-02-14 stsp got_object_commit_close(commit);
2828 387a29ba 2020-01-15 tracey if (cmp_time < committer_time)
2829 2c251c14 2020-01-15 tracey cmp_time = committer_time;
2830 2011c142 2020-02-14 stsp
2831 2011c142 2020-02-14 stsp if (refname)
2832 2011c142 2020-02-14 stsp break;
2833 2c251c14 2020-01-15 tracey }
2834 2c251c14 2020-01-15 tracey
2835 474370cb 2020-01-15 tracey if (cmp_time != 0) {
2836 2c251c14 2020-01-15 tracey committer_time = cmp_time;
2837 55ccf528 2020-02-03 stsp error = gw_get_time_str(repo_age, committer_time, ref_tm);
2838 d126c1b7 2020-01-29 stsp }
2839 d126c1b7 2020-01-29 stsp done:
2840 2c251c14 2020-01-15 tracey got_ref_list_free(&refs);
2841 1d0f4054 2021-06-17 stsp if (gw_trans->repo == NULL) {
2842 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
2843 1d0f4054 2021-06-17 stsp if (error == NULL)
2844 1d0f4054 2021-06-17 stsp error = close_err;
2845 1d0f4054 2021-06-17 stsp }
2846 d126c1b7 2020-01-29 stsp return error;
2847 ec46ccd7 2020-01-15 tracey }
2848 ec46ccd7 2020-01-15 tracey
2849 83eb9a68 2020-02-03 stsp static const struct got_error *
2850 38b240fb 2020-02-06 tracey gw_output_diff(struct gw_trans *gw_trans, struct gw_header *header)
2851 ec46ccd7 2020-01-15 tracey {
2852 ec46ccd7 2020-01-15 tracey const struct got_error *error;
2853 ec46ccd7 2020-01-15 tracey FILE *f = NULL;
2854 ec46ccd7 2020-01-15 tracey struct got_object_id *id1 = NULL, *id2 = NULL;
2855 f7cc9480 2020-02-05 tracey char *label1 = NULL, *label2 = NULL, *line = NULL;
2856 05ce9a79 2020-01-24 tracey int obj_type;
2857 f7cc9480 2020-02-05 tracey size_t linesize = 0;
2858 83eb9a68 2020-02-03 stsp ssize_t linelen;
2859 f7cc9480 2020-02-05 tracey enum kcgi_err kerr = KCGI_OK;
2860 ec46ccd7 2020-01-15 tracey
2861 ec46ccd7 2020-01-15 tracey f = got_opentemp();
2862 ec46ccd7 2020-01-15 tracey if (f == NULL)
2863 ec46ccd7 2020-01-15 tracey return NULL;
2864 ec46ccd7 2020-01-15 tracey
2865 5c65becf 2020-02-13 tracey if (header->parent_id != NULL &&
2866 5c65becf 2020-02-13 tracey strncmp(header->parent_id, "/dev/null", 9) != 0) {
2867 05ce9a79 2020-01-24 tracey error = got_repo_match_object_id(&id1, &label1,
2868 84de9106 2020-12-26 stsp header->parent_id, GOT_OBJ_TYPE_ANY,
2869 84de9106 2020-12-26 stsp &header->refs, gw_trans->repo);
2870 05ce9a79 2020-01-24 tracey if (error)
2871 05ce9a79 2020-01-24 tracey goto done;
2872 05ce9a79 2020-01-24 tracey }
2873 ec46ccd7 2020-01-15 tracey
2874 90f16cb8 2020-01-24 tracey error = got_repo_match_object_id(&id2, &label2,
2875 84de9106 2020-12-26 stsp header->commit_id, GOT_OBJ_TYPE_ANY, &header->refs,
2876 84de9106 2020-12-26 stsp gw_trans->repo);
2877 90f16cb8 2020-01-24 tracey if (error)
2878 90f16cb8 2020-01-24 tracey goto done;
2879 ec46ccd7 2020-01-15 tracey
2880 deac617c 2020-02-14 tracey error = got_object_get_type(&obj_type, gw_trans->repo, id2);
2881 90f16cb8 2020-01-24 tracey if (error)
2882 90f16cb8 2020-01-24 tracey goto done;
2883 05ce9a79 2020-01-24 tracey switch (obj_type) {
2884 ec46ccd7 2020-01-15 tracey case GOT_OBJ_TYPE_BLOB:
2885 c9d2b263 2020-11-11 stsp error = got_diff_objects_as_blobs(NULL, NULL, id1, id2,
2886 22c0f09d 2020-11-22 stsp NULL, NULL, 3, 0, 0, gw_trans->repo, f);
2887 ec46ccd7 2020-01-15 tracey break;
2888 ec46ccd7 2020-01-15 tracey case GOT_OBJ_TYPE_TREE:
2889 c9d2b263 2020-11-11 stsp error = got_diff_objects_as_trees(NULL, NULL, id1, id2,
2890 cc8021af 2021-10-12 thomas NULL, "", "", 3, 0, 0, gw_trans->repo, f);
2891 ec46ccd7 2020-01-15 tracey break;
2892 ec46ccd7 2020-01-15 tracey case GOT_OBJ_TYPE_COMMIT:
2893 22c0f09d 2020-11-22 stsp error = got_diff_objects_as_commits(NULL, NULL, id1, id2,
2894 cc8021af 2021-10-12 thomas NULL, 3, 0, 0, gw_trans->repo, f);
2895 ec46ccd7 2020-01-15 tracey break;
2896 ec46ccd7 2020-01-15 tracey default:
2897 ec46ccd7 2020-01-15 tracey error = got_error(GOT_ERR_OBJ_TYPE);
2898 ec46ccd7 2020-01-15 tracey }
2899 b8b04565 2020-02-02 tracey if (error)
2900 b8b04565 2020-02-02 tracey goto done;
2901 b8b04565 2020-02-02 tracey
2902 d4729381 2020-02-03 stsp if (fseek(f, 0, SEEK_SET) == -1) {
2903 d4729381 2020-02-03 stsp error = got_ferror(f, GOT_ERR_IO);
2904 ec46ccd7 2020-01-15 tracey goto done;
2905 d4729381 2020-02-03 stsp }
2906 ec46ccd7 2020-01-15 tracey
2907 83eb9a68 2020-02-03 stsp while ((linelen = getline(&line, &linesize, f)) != -1) {
2908 f7cc9480 2020-02-05 tracey error = gw_colordiff_line(gw_trans, line);
2909 ec46ccd7 2020-01-15 tracey if (error)
2910 b8b04565 2020-02-02 tracey goto done;
2911 f7cc9480 2020-02-05 tracey /* XXX: KHTML_PRETTY breaks this */
2912 f7cc9480 2020-02-05 tracey kerr = khtml_puts(gw_trans->gw_html_req, line);
2913 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2914 83eb9a68 2020-02-03 stsp goto done;
2915 f7cc9480 2020-02-05 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2916 f7cc9480 2020-02-05 tracey if (kerr != KCGI_OK)
2917 b8b04565 2020-02-02 tracey goto done;
2918 ec46ccd7 2020-01-15 tracey }
2919 f7cc9480 2020-02-05 tracey if (linelen == -1 && ferror(f))
2920 83eb9a68 2020-02-03 stsp error = got_error_from_errno("getline");
2921 ec46ccd7 2020-01-15 tracey done:
2922 56b63ca4 2021-01-22 stsp if (f && fclose(f) == EOF && error == NULL)
2923 d4729381 2020-02-03 stsp error = got_error_from_errno("fclose");
2924 d4729381 2020-02-03 stsp free(line);
2925 ec46ccd7 2020-01-15 tracey free(label1);
2926 ec46ccd7 2020-01-15 tracey free(label2);
2927 ec46ccd7 2020-01-15 tracey free(id1);
2928 ec46ccd7 2020-01-15 tracey free(id2);
2929 ec46ccd7 2020-01-15 tracey
2930 f7cc9480 2020-02-05 tracey if (error == NULL && kerr != KCGI_OK)
2931 2447adad 2020-02-06 stsp error = gw_kcgi_error(kerr);
2932 83eb9a68 2020-02-03 stsp return error;
2933 2c251c14 2020-01-15 tracey }
2934 2c251c14 2020-01-15 tracey
2935 9a1cc63f 2020-02-03 stsp static const struct got_error *
2936 9a1cc63f 2020-02-03 stsp gw_get_repo_owner(char **owner, struct gw_trans *gw_trans, char *dir)
2937 9a1cc63f 2020-02-03 stsp {
2938 1d0f4054 2021-06-17 stsp const struct got_error *error = NULL, *close_err;
2939 9a1cc63f 2020-02-03 stsp struct got_repository *repo;
2940 9a1cc63f 2020-02-03 stsp const char *gitconfig_owner;
2941 2c251c14 2020-01-15 tracey
2942 9a1cc63f 2020-02-03 stsp *owner = NULL;
2943 2c251c14 2020-01-15 tracey
2944 9a1cc63f 2020-02-03 stsp if (gw_trans->gw_conf->got_show_repo_owner == 0)
2945 9a1cc63f 2020-02-03 stsp return NULL;
2946 2c251c14 2020-01-15 tracey
2947 9a1cc63f 2020-02-03 stsp error = got_repo_open(&repo, dir, NULL);
2948 9a1cc63f 2020-02-03 stsp if (error)
2949 9a1cc63f 2020-02-03 stsp return error;
2950 9a1cc63f 2020-02-03 stsp gitconfig_owner = got_repo_get_gitconfig_owner(repo);
2951 d1635ae4 2020-02-13 tracey if (gitconfig_owner) {
2952 d1635ae4 2020-02-13 tracey *owner = strdup(gitconfig_owner);
2953 d1635ae4 2020-02-13 tracey if (*owner == NULL)
2954 d1635ae4 2020-02-13 tracey error = got_error_from_errno("strdup");
2955 d1635ae4 2020-02-13 tracey }
2956 1d0f4054 2021-06-17 stsp close_err = got_repo_close(repo);
2957 1d0f4054 2021-06-17 stsp if (error == NULL)
2958 1d0f4054 2021-06-17 stsp error = close_err;
2959 9a1cc63f 2020-02-03 stsp return error;
2960 2c251c14 2020-01-15 tracey }
2961 2c251c14 2020-01-15 tracey
2962 59d3c40e 2020-02-03 stsp static const struct got_error *
2963 59d3c40e 2020-02-03 stsp gw_get_clone_url(char **url, struct gw_trans *gw_trans, char *dir)
2964 2c251c14 2020-01-15 tracey {
2965 59d3c40e 2020-02-03 stsp const struct got_error *error = NULL;
2966 2c251c14 2020-01-15 tracey FILE *f;
2967 59d3c40e 2020-02-03 stsp char *d_file = NULL;
2968 2c251c14 2020-01-15 tracey unsigned int len;
2969 59d3c40e 2020-02-03 stsp size_t n;
2970 2c251c14 2020-01-15 tracey
2971 59d3c40e 2020-02-03 stsp *url = NULL;
2972 2c251c14 2020-01-15 tracey
2973 59d3c40e 2020-02-03 stsp if (asprintf(&d_file, "%s/cloneurl", dir) == -1)
2974 59d3c40e 2020-02-03 stsp return got_error_from_errno("asprintf");
2975 2c251c14 2020-01-15 tracey
2976 c56c5d8a 2021-12-31 thomas f = fopen(d_file, "re");
2977 59d3c40e 2020-02-03 stsp if (f == NULL) {
2978 59d3c40e 2020-02-03 stsp if (errno != ENOENT && errno != EACCES)
2979 59d3c40e 2020-02-03 stsp error = got_error_from_errno2("fopen", d_file);
2980 59d3c40e 2020-02-03 stsp goto done;
2981 59d3c40e 2020-02-03 stsp }
2982 59d3c40e 2020-02-03 stsp
2983 59d3c40e 2020-02-03 stsp if (fseek(f, 0, SEEK_END) == -1) {
2984 59d3c40e 2020-02-03 stsp error = got_ferror(f, GOT_ERR_IO);
2985 59d3c40e 2020-02-03 stsp goto done;
2986 59d3c40e 2020-02-03 stsp }
2987 59d3c40e 2020-02-03 stsp len = ftell(f);
2988 59d3c40e 2020-02-03 stsp if (len == -1) {
2989 59d3c40e 2020-02-03 stsp error = got_ferror(f, GOT_ERR_IO);
2990 59d3c40e 2020-02-03 stsp goto done;
2991 59d3c40e 2020-02-03 stsp }
2992 59d3c40e 2020-02-03 stsp if (fseek(f, 0, SEEK_SET) == -1) {
2993 59d3c40e 2020-02-03 stsp error = got_ferror(f, GOT_ERR_IO);
2994 59d3c40e 2020-02-03 stsp goto done;
2995 59d3c40e 2020-02-03 stsp }
2996 2c251c14 2020-01-15 tracey
2997 59d3c40e 2020-02-03 stsp *url = calloc(len + 1, sizeof(**url));
2998 59d3c40e 2020-02-03 stsp if (*url == NULL) {
2999 59d3c40e 2020-02-03 stsp error = got_error_from_errno("calloc");
3000 59d3c40e 2020-02-03 stsp goto done;
3001 59d3c40e 2020-02-03 stsp }
3002 2c251c14 2020-01-15 tracey
3003 59d3c40e 2020-02-03 stsp n = fread(*url, 1, len, f);
3004 59d3c40e 2020-02-03 stsp if (n == 0 && ferror(f))
3005 59d3c40e 2020-02-03 stsp error = got_ferror(f, GOT_ERR_IO);
3006 59d3c40e 2020-02-03 stsp done:
3007 56b63ca4 2021-01-22 stsp if (f && fclose(f) == EOF && error == NULL)
3008 59d3c40e 2020-02-03 stsp error = got_error_from_errno("fclose");
3009 2c251c14 2020-01-15 tracey free(d_file);
3010 59d3c40e 2020-02-03 stsp return NULL;
3011 8d4d2453 2020-01-15 tracey }
3012 8d4d2453 2020-01-15 tracey
3013 6eccd105 2020-02-03 stsp static const struct got_error *
3014 38b240fb 2020-02-06 tracey gw_output_repo_tags(struct gw_trans *gw_trans, struct gw_header *header,
3015 38b240fb 2020-02-06 tracey int limit, int tag_type)
3016 8d4d2453 2020-01-15 tracey {
3017 87f9ebf5 2020-01-15 tracey const struct got_error *error = NULL;
3018 87f9ebf5 2020-01-15 tracey struct got_reflist_head refs;
3019 87f9ebf5 2020-01-15 tracey struct got_reflist_entry *re;
3020 38b240fb 2020-02-06 tracey char *age = NULL;
3021 ef2c200c 2020-02-07 tracey char *id_str = NULL, *newline, *href_commits = NULL;
3022 38b240fb 2020-02-06 tracey char *tag_commit0 = NULL, *href_tag = NULL, *href_briefs = NULL;
3023 6eccd105 2020-02-03 stsp struct got_tag_object *tag = NULL;
3024 38b240fb 2020-02-06 tracey enum kcgi_err kerr = KCGI_OK;
3025 5a911940 2021-06-25 tracey int summary_header_displayed = 0, chk_next = 0;
3026 5a911940 2021-06-25 tracey int tag_count = 0, commit_found = 0, c_cnt = 0;
3027 8d4d2453 2020-01-15 tracey
3028 d9dff0e5 2020-12-26 stsp TAILQ_INIT(&refs);
3029 a0f36e03 2020-01-28 stsp
3030 deac617c 2020-02-14 tracey error = got_ref_list(&refs, gw_trans->repo, "refs/tags",
3031 deac617c 2020-02-14 tracey got_ref_cmp_tags, gw_trans->repo);
3032 ec46ccd7 2020-01-15 tracey if (error)
3033 87f9ebf5 2020-01-15 tracey goto done;
3034 87f9ebf5 2020-01-15 tracey
3035 d9dff0e5 2020-12-26 stsp TAILQ_FOREACH(re, &refs, entry) {
3036 87f9ebf5 2020-01-15 tracey const char *refname;
3037 4ff7391f 2020-01-28 tracey const char *tagger;
3038 6eccd105 2020-02-03 stsp const char *tag_commit;
3039 87f9ebf5 2020-01-15 tracey time_t tagger_time;
3040 87f9ebf5 2020-01-15 tracey struct got_object_id *id;
3041 ef2c200c 2020-02-07 tracey struct got_commit_object *commit = NULL;
3042 87f9ebf5 2020-01-15 tracey
3043 87f9ebf5 2020-01-15 tracey refname = got_ref_get_name(re->ref);
3044 87f9ebf5 2020-01-15 tracey if (strncmp(refname, "refs/tags/", 10) != 0)
3045 87f9ebf5 2020-01-15 tracey continue;
3046 87f9ebf5 2020-01-15 tracey refname += 10;
3047 87f9ebf5 2020-01-15 tracey
3048 deac617c 2020-02-14 tracey error = got_ref_resolve(&id, gw_trans->repo, re->ref);
3049 87f9ebf5 2020-01-15 tracey if (error)
3050 87f9ebf5 2020-01-15 tracey goto done;
3051 38b240fb 2020-02-06 tracey
3052 deac617c 2020-02-14 tracey error = got_object_open_as_tag(&tag, gw_trans->repo, id);
3053 38b240fb 2020-02-06 tracey if (error) {
3054 ef2c200c 2020-02-07 tracey if (error->code != GOT_ERR_OBJ_TYPE) {
3055 ef2c200c 2020-02-07 tracey free(id);
3056 ef2c200c 2020-02-07 tracey goto done;
3057 ef2c200c 2020-02-07 tracey }
3058 ef2c200c 2020-02-07 tracey /* "lightweight" tag */
3059 deac617c 2020-02-14 tracey error = got_object_open_as_commit(&commit,
3060 deac617c 2020-02-14 tracey gw_trans->repo, id);
3061 ef2c200c 2020-02-07 tracey if (error) {
3062 ef2c200c 2020-02-07 tracey free(id);
3063 ef2c200c 2020-02-07 tracey goto done;
3064 ef2c200c 2020-02-07 tracey }
3065 ef2c200c 2020-02-07 tracey tagger = got_object_commit_get_committer(commit);
3066 ef2c200c 2020-02-07 tracey tagger_time =
3067 ef2c200c 2020-02-07 tracey got_object_commit_get_committer_time(commit);
3068 ef2c200c 2020-02-07 tracey error = got_object_id_str(&id_str, id);
3069 ef2c200c 2020-02-07 tracey free(id);
3070 ef2c200c 2020-02-07 tracey } else {
3071 ef2c200c 2020-02-07 tracey free(id);
3072 ef2c200c 2020-02-07 tracey tagger = got_object_tag_get_tagger(tag);
3073 ef2c200c 2020-02-07 tracey tagger_time = got_object_tag_get_tagger_time(tag);
3074 ef2c200c 2020-02-07 tracey error = got_object_id_str(&id_str,
3075 ef2c200c 2020-02-07 tracey got_object_tag_get_object_id(tag));
3076 38b240fb 2020-02-06 tracey }
3077 87f9ebf5 2020-01-15 tracey if (error)
3078 87f9ebf5 2020-01-15 tracey goto done;
3079 87f9ebf5 2020-01-15 tracey
3080 38b240fb 2020-02-06 tracey if (tag_type == TAGFULL && strncmp(id_str, header->commit_id,
3081 38b240fb 2020-02-06 tracey strlen(id_str)) != 0)
3082 38b240fb 2020-02-06 tracey continue;
3083 38b240fb 2020-02-06 tracey
3084 ff4bb25f 2020-02-19 tracey if (tag_type == TAGBRIEF && gw_trans->commit_id &&
3085 5a911940 2021-06-25 tracey commit_found == 0 && strncmp(id_str, gw_trans->commit_id,
3086 5a911940 2021-06-25 tracey strlen(id_str)) != 0)
3087 ff4bb25f 2020-02-19 tracey continue;
3088 5a911940 2021-06-25 tracey else
3089 5a911940 2021-06-25 tracey commit_found = 1;
3090 ff4bb25f 2020-02-19 tracey
3091 ff4bb25f 2020-02-19 tracey tag_count++;
3092 ff4bb25f 2020-02-19 tracey
3093 ff4bb25f 2020-02-19 tracey if (chk_next) {
3094 ff4bb25f 2020-02-19 tracey gw_trans->next_id = strdup(id_str);
3095 ff4bb25f 2020-02-19 tracey if (gw_trans->next_id == NULL)
3096 ff4bb25f 2020-02-19 tracey error = got_error_from_errno("strdup");
3097 5a911940 2021-06-25 tracey goto prev;
3098 ff4bb25f 2020-02-19 tracey }
3099 ff4bb25f 2020-02-19 tracey
3100 ef2c200c 2020-02-07 tracey if (commit) {
3101 ef2c200c 2020-02-07 tracey error = got_object_commit_get_logmsg(&tag_commit0,
3102 ef2c200c 2020-02-07 tracey commit);
3103 ef2c200c 2020-02-07 tracey if (error)
3104 ef2c200c 2020-02-07 tracey goto done;
3105 ef2c200c 2020-02-07 tracey got_object_commit_close(commit);
3106 ef2c200c 2020-02-07 tracey } else {
3107 ef2c200c 2020-02-07 tracey tag_commit0 = strdup(got_object_tag_get_message(tag));
3108 ef2c200c 2020-02-07 tracey if (tag_commit0 == NULL) {
3109 ef2c200c 2020-02-07 tracey error = got_error_from_errno("strdup");
3110 ef2c200c 2020-02-07 tracey goto done;
3111 ef2c200c 2020-02-07 tracey }
3112 87f9ebf5 2020-01-15 tracey }
3113 87f9ebf5 2020-01-15 tracey
3114 f2f46662 2020-01-23 tracey tag_commit = tag_commit0;
3115 f2f46662 2020-01-23 tracey while (*tag_commit == '\n')
3116 f2f46662 2020-01-23 tracey tag_commit++;
3117 87f9ebf5 2020-01-15 tracey
3118 87f9ebf5 2020-01-15 tracey switch (tag_type) {
3119 87f9ebf5 2020-01-15 tracey case TAGBRIEF:
3120 f2f46662 2020-01-23 tracey newline = strchr(tag_commit, '\n');
3121 87f9ebf5 2020-01-15 tracey if (newline)
3122 87f9ebf5 2020-01-15 tracey *newline = '\0';
3123 87f9ebf5 2020-01-15 tracey
3124 38b240fb 2020-02-06 tracey if (summary_header_displayed == 0) {
3125 38b240fb 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req,
3126 38b240fb 2020-02-06 tracey KELEM_DIV, KATTR_ID,
3127 38b240fb 2020-02-06 tracey "summary_tags_title_wrapper", KATTR__MAX);
3128 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3129 38b240fb 2020-02-06 tracey goto done;
3130 38b240fb 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req,
3131 38b240fb 2020-02-06 tracey KELEM_DIV, KATTR_ID,
3132 38b240fb 2020-02-06 tracey "summary_tags_title", KATTR__MAX);
3133 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3134 38b240fb 2020-02-06 tracey goto done;
3135 38b240fb 2020-02-06 tracey kerr = khtml_puts(gw_trans->gw_html_req,
3136 38b240fb 2020-02-06 tracey "Tags");
3137 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3138 38b240fb 2020-02-06 tracey goto done;
3139 38b240fb 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req,
3140 38b240fb 2020-02-06 tracey 2);
3141 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3142 38b240fb 2020-02-06 tracey goto done;
3143 38b240fb 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req,
3144 38b240fb 2020-02-06 tracey KELEM_DIV, KATTR_ID,
3145 38b240fb 2020-02-06 tracey "summary_tags_content", KATTR__MAX);
3146 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3147 38b240fb 2020-02-06 tracey goto done;
3148 38b240fb 2020-02-06 tracey summary_header_displayed = 1;
3149 38b240fb 2020-02-06 tracey }
3150 38b240fb 2020-02-06 tracey
3151 38b240fb 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
3152 ff4bb25f 2020-02-19 tracey KATTR_ID, "tag_wrapper", KATTR__MAX);
3153 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3154 38b240fb 2020-02-06 tracey goto done;
3155 38b240fb 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
3156 ff4bb25f 2020-02-19 tracey KATTR_ID, "tag_age", KATTR__MAX);
3157 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3158 38b240fb 2020-02-06 tracey goto done;
3159 55ccf528 2020-02-03 stsp error = gw_get_time_str(&age, tagger_time, TM_DIFF);
3160 55ccf528 2020-02-03 stsp if (error)
3161 87f9ebf5 2020-01-15 tracey goto done;
3162 38b240fb 2020-02-06 tracey kerr = khtml_puts(gw_trans->gw_html_req,
3163 38b240fb 2020-02-06 tracey age ? age : "");
3164 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3165 38b240fb 2020-02-06 tracey goto done;
3166 38b240fb 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
3167 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3168 38b240fb 2020-02-06 tracey goto done;
3169 38b240fb 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
3170 ff4bb25f 2020-02-19 tracey KATTR_ID, "tag", KATTR__MAX);
3171 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3172 38b240fb 2020-02-06 tracey goto done;
3173 38b240fb 2020-02-06 tracey kerr = khtml_puts(gw_trans->gw_html_req, refname);
3174 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3175 38b240fb 2020-02-06 tracey goto done;
3176 38b240fb 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
3177 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3178 38b240fb 2020-02-06 tracey goto done;
3179 38b240fb 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
3180 ff4bb25f 2020-02-19 tracey KATTR_ID, "tag_name", KATTR__MAX);
3181 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3182 dad0fde4 2020-02-06 tracey goto done;
3183 12003b6a 2020-04-14 tracey
3184 12003b6a 2020-04-14 tracey href_tag = khttp_urlpart(NULL, NULL, "gotweb", "path",
3185 12003b6a 2020-04-14 tracey gw_trans->repo_name, "action", "tag", "commit",
3186 12003b6a 2020-04-14 tracey id_str, NULL);
3187 19ff7638 2020-04-14 tracey if (href_tag == NULL) {
3188 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpart");
3189 19ff7638 2020-04-14 tracey goto done;
3190 19ff7638 2020-04-14 tracey }
3191 056e30c8 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
3192 056e30c8 2020-02-06 tracey KATTR_HREF, href_tag, KATTR__MAX);
3193 056e30c8 2020-02-06 tracey if (kerr != KCGI_OK)
3194 056e30c8 2020-02-06 tracey goto done;
3195 38b240fb 2020-02-06 tracey kerr = khtml_puts(gw_trans->gw_html_req, tag_commit);
3196 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3197 38b240fb 2020-02-06 tracey goto done;
3198 dad0fde4 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 3);
3199 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3200 38b240fb 2020-02-06 tracey goto done;
3201 87f9ebf5 2020-01-15 tracey
3202 38b240fb 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
3203 38b240fb 2020-02-06 tracey KATTR_ID, "navs_wrapper", KATTR__MAX);
3204 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3205 38b240fb 2020-02-06 tracey goto done;
3206 38b240fb 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
3207 38b240fb 2020-02-06 tracey KATTR_ID, "navs", KATTR__MAX);
3208 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3209 38b240fb 2020-02-06 tracey goto done;
3210 38b240fb 2020-02-06 tracey
3211 38b240fb 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
3212 38b240fb 2020-02-06 tracey KATTR_HREF, href_tag, KATTR__MAX);
3213 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3214 38b240fb 2020-02-06 tracey goto done;
3215 38b240fb 2020-02-06 tracey kerr = khtml_puts(gw_trans->gw_html_req, "tag");
3216 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3217 38b240fb 2020-02-06 tracey goto done;
3218 38b240fb 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
3219 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3220 38b240fb 2020-02-06 tracey goto done;
3221 87f9ebf5 2020-01-15 tracey
3222 38b240fb 2020-02-06 tracey kerr = khtml_puts(gw_trans->gw_html_req, " | ");
3223 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3224 87f9ebf5 2020-01-15 tracey goto done;
3225 12003b6a 2020-04-14 tracey
3226 12003b6a 2020-04-14 tracey href_briefs = khttp_urlpart(NULL, NULL, "gotweb",
3227 12003b6a 2020-04-14 tracey "path", gw_trans->repo_name, "action", "briefs",
3228 12003b6a 2020-04-14 tracey "commit", id_str, NULL);
3229 19ff7638 2020-04-14 tracey if (href_briefs == NULL) {
3230 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpart");
3231 19ff7638 2020-04-14 tracey goto done;
3232 19ff7638 2020-04-14 tracey }
3233 38b240fb 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
3234 38b240fb 2020-02-06 tracey KATTR_HREF, href_briefs, KATTR__MAX);
3235 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3236 38b240fb 2020-02-06 tracey goto done;
3237 38b240fb 2020-02-06 tracey kerr = khtml_puts(gw_trans->gw_html_req,
3238 38b240fb 2020-02-06 tracey "commit briefs");
3239 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3240 38b240fb 2020-02-06 tracey goto done;
3241 38b240fb 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
3242 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3243 38b240fb 2020-02-06 tracey goto done;
3244 87f9ebf5 2020-01-15 tracey
3245 38b240fb 2020-02-06 tracey kerr = khtml_puts(gw_trans->gw_html_req, " | ");
3246 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3247 38b240fb 2020-02-06 tracey goto done;
3248 38b240fb 2020-02-06 tracey
3249 12003b6a 2020-04-14 tracey href_commits = khttp_urlpart(NULL, NULL, "gotweb",
3250 12003b6a 2020-04-14 tracey "path", gw_trans->repo_name, "action", "commits",
3251 12003b6a 2020-04-14 tracey "commit", id_str, NULL);
3252 19ff7638 2020-04-14 tracey if (href_commits == NULL) {
3253 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpart");
3254 19ff7638 2020-04-14 tracey goto done;
3255 19ff7638 2020-04-14 tracey }
3256 38b240fb 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
3257 38b240fb 2020-02-06 tracey KATTR_HREF, href_commits, KATTR__MAX);
3258 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3259 38b240fb 2020-02-06 tracey goto done;
3260 32b9f7ed 2020-04-14 tracey kerr = khtml_puts(gw_trans->gw_html_req, "commits");
3261 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3262 38b240fb 2020-02-06 tracey goto done;
3263 38b240fb 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 3);
3264 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3265 38b240fb 2020-02-06 tracey goto done;
3266 38b240fb 2020-02-06 tracey
3267 38b240fb 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
3268 38b240fb 2020-02-06 tracey KATTR_ID, "dotted_line", KATTR__MAX);
3269 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3270 38b240fb 2020-02-06 tracey goto done;
3271 ef2c200c 2020-02-07 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
3272 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3273 38b240fb 2020-02-06 tracey goto done;
3274 87f9ebf5 2020-01-15 tracey break;
3275 87f9ebf5 2020-01-15 tracey case TAGFULL:
3276 38b240fb 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
3277 38b240fb 2020-02-06 tracey KATTR_ID, "tag_info_date_title", KATTR__MAX);
3278 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3279 38b240fb 2020-02-06 tracey goto done;
3280 38b240fb 2020-02-06 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Tag Date:");
3281 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3282 38b240fb 2020-02-06 tracey goto done;
3283 38b240fb 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
3284 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3285 38b240fb 2020-02-06 tracey goto done;
3286 38b240fb 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
3287 38b240fb 2020-02-06 tracey KATTR_ID, "tag_info_date", KATTR__MAX);
3288 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3289 38b240fb 2020-02-06 tracey goto done;
3290 55ccf528 2020-02-03 stsp error = gw_get_time_str(&age, tagger_time, TM_LONG);
3291 55ccf528 2020-02-03 stsp if (error)
3292 4ff7391f 2020-01-28 tracey goto done;
3293 38b240fb 2020-02-06 tracey kerr = khtml_puts(gw_trans->gw_html_req,
3294 38b240fb 2020-02-06 tracey age ? age : "");
3295 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3296 070fee27 2020-02-03 stsp goto done;
3297 38b240fb 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
3298 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3299 38b240fb 2020-02-06 tracey goto done;
3300 38b240fb 2020-02-06 tracey
3301 38b240fb 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
3302 38b240fb 2020-02-06 tracey KATTR_ID, "tag_info_tagger_title", KATTR__MAX);
3303 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3304 38b240fb 2020-02-06 tracey goto done;
3305 38b240fb 2020-02-06 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Tagger:");
3306 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3307 38b240fb 2020-02-06 tracey goto done;
3308 38b240fb 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
3309 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3310 38b240fb 2020-02-06 tracey goto done;
3311 38b240fb 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
3312 38b240fb 2020-02-06 tracey KATTR_ID, "tag_info_date", KATTR__MAX);
3313 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3314 38b240fb 2020-02-06 tracey goto done;
3315 38b240fb 2020-02-06 tracey kerr = khtml_puts(gw_trans->gw_html_req, tagger);
3316 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3317 38b240fb 2020-02-06 tracey goto done;
3318 38b240fb 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
3319 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3320 38b240fb 2020-02-06 tracey goto done;
3321 38b240fb 2020-02-06 tracey
3322 38b240fb 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
3323 38b240fb 2020-02-06 tracey KATTR_ID, "tag_info", KATTR__MAX);
3324 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3325 38b240fb 2020-02-06 tracey goto done;
3326 78a9dab5 2020-02-07 tracey kerr = khttp_puts(gw_trans->gw_req, tag_commit);
3327 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3328 4ff7391f 2020-01-28 tracey goto done;
3329 87f9ebf5 2020-01-15 tracey break;
3330 87f9ebf5 2020-01-15 tracey default:
3331 87f9ebf5 2020-01-15 tracey break;
3332 87f9ebf5 2020-01-15 tracey }
3333 38b240fb 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
3334 38b240fb 2020-02-06 tracey if (kerr != KCGI_OK)
3335 6eccd105 2020-02-03 stsp goto done;
3336 87ca24ac 2020-02-04 tracey
3337 6eccd105 2020-02-03 stsp if (limit && --limit == 0)
3338 ff4bb25f 2020-02-19 tracey chk_next = 1;
3339 87f9ebf5 2020-01-15 tracey
3340 ef2c200c 2020-02-07 tracey if (tag)
3341 ef2c200c 2020-02-07 tracey got_object_tag_close(tag);
3342 6eccd105 2020-02-03 stsp tag = NULL;
3343 6c6c85af 2020-01-15 tracey free(id_str);
3344 6eccd105 2020-02-03 stsp id_str = NULL;
3345 6c6c85af 2020-01-15 tracey free(age);
3346 55ccf528 2020-02-03 stsp age = NULL;
3347 f2f46662 2020-01-23 tracey free(tag_commit0);
3348 6eccd105 2020-02-03 stsp tag_commit0 = NULL;
3349 38b240fb 2020-02-06 tracey free(href_tag);
3350 38b240fb 2020-02-06 tracey href_tag = NULL;
3351 38b240fb 2020-02-06 tracey free(href_briefs);
3352 38b240fb 2020-02-06 tracey href_briefs = NULL;
3353 38b240fb 2020-02-06 tracey free(href_commits);
3354 38b240fb 2020-02-06 tracey href_commits = NULL;
3355 ff4bb25f 2020-02-19 tracey }
3356 ff4bb25f 2020-02-19 tracey if (tag_count == 0) {
3357 ff4bb25f 2020-02-19 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
3358 ff4bb25f 2020-02-19 tracey "summary_tags_title_wrapper", KATTR__MAX);
3359 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
3360 ff4bb25f 2020-02-19 tracey goto done;
3361 ff4bb25f 2020-02-19 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
3362 ff4bb25f 2020-02-19 tracey "summary_tags_title", KATTR__MAX);
3363 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
3364 ff4bb25f 2020-02-19 tracey goto done;
3365 ff4bb25f 2020-02-19 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Tags");
3366 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
3367 ff4bb25f 2020-02-19 tracey goto done;
3368 ff4bb25f 2020-02-19 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
3369 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
3370 ff4bb25f 2020-02-19 tracey goto done;
3371 ff4bb25f 2020-02-19 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
3372 ff4bb25f 2020-02-19 tracey "summary_tags_content", KATTR__MAX);
3373 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
3374 ff4bb25f 2020-02-19 tracey goto done;
3375 ff4bb25f 2020-02-19 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
3376 ff4bb25f 2020-02-19 tracey "tags_info", KATTR__MAX);
3377 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
3378 ff4bb25f 2020-02-19 tracey goto done;
3379 ff4bb25f 2020-02-19 tracey kerr = khttp_puts(gw_trans->gw_req,
3380 ff4bb25f 2020-02-19 tracey "There are no tags for this repo.");
3381 ff4bb25f 2020-02-19 tracey if (kerr != KCGI_OK)
3382 ff4bb25f 2020-02-19 tracey goto done;
3383 ff4bb25f 2020-02-19 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
3384 5a911940 2021-06-25 tracey goto done;
3385 6c6c85af 2020-01-15 tracey }
3386 5a911940 2021-06-25 tracey prev:
3387 5a911940 2021-06-25 tracey commit_found = 0;
3388 5a911940 2021-06-25 tracey TAILQ_FOREACH_REVERSE(re, &refs, got_reflist_head, entry) {
3389 5a911940 2021-06-25 tracey const char *refname;
3390 5a911940 2021-06-25 tracey struct got_object_id *id;
3391 5a911940 2021-06-25 tracey struct got_commit_object *commit = NULL;
3392 5a911940 2021-06-25 tracey
3393 5a911940 2021-06-25 tracey refname = got_ref_get_name(re->ref);
3394 5a911940 2021-06-25 tracey if (strncmp(refname, "refs/tags/", 10) != 0)
3395 5a911940 2021-06-25 tracey continue;
3396 5a911940 2021-06-25 tracey refname += 10;
3397 5a911940 2021-06-25 tracey
3398 5a911940 2021-06-25 tracey error = got_ref_resolve(&id, gw_trans->repo, re->ref);
3399 5a911940 2021-06-25 tracey if (error)
3400 5a911940 2021-06-25 tracey goto done;
3401 5a911940 2021-06-25 tracey
3402 5a911940 2021-06-25 tracey error = got_object_open_as_tag(&tag, gw_trans->repo, id);
3403 5a911940 2021-06-25 tracey if (error) {
3404 5a911940 2021-06-25 tracey if (error->code != GOT_ERR_OBJ_TYPE) {
3405 5a911940 2021-06-25 tracey free(id);
3406 5a911940 2021-06-25 tracey goto done;
3407 5a911940 2021-06-25 tracey }
3408 5a911940 2021-06-25 tracey /* "lightweight" tag */
3409 5a911940 2021-06-25 tracey error = got_object_open_as_commit(&commit,
3410 5a911940 2021-06-25 tracey gw_trans->repo, id);
3411 5a911940 2021-06-25 tracey if (error) {
3412 5a911940 2021-06-25 tracey free(id);
3413 5a911940 2021-06-25 tracey goto done;
3414 5a911940 2021-06-25 tracey }
3415 5a911940 2021-06-25 tracey error = got_object_id_str(&id_str, id);
3416 5a911940 2021-06-25 tracey free(id);
3417 5a911940 2021-06-25 tracey } else {
3418 5a911940 2021-06-25 tracey free(id);
3419 5a911940 2021-06-25 tracey error = got_object_id_str(&id_str,
3420 5a911940 2021-06-25 tracey got_object_tag_get_object_id(tag));
3421 5a911940 2021-06-25 tracey }
3422 5a911940 2021-06-25 tracey if (error)
3423 5a911940 2021-06-25 tracey goto done;
3424 5a911940 2021-06-25 tracey
3425 5a911940 2021-06-25 tracey if (tag_type == TAGFULL && strncmp(id_str, header->commit_id,
3426 5a911940 2021-06-25 tracey strlen(id_str)) != 0)
3427 5a911940 2021-06-25 tracey continue;
3428 5a911940 2021-06-25 tracey
3429 5a911940 2021-06-25 tracey if (commit_found == 0 && tag_type == TAGBRIEF &&
3430 5a911940 2021-06-25 tracey gw_trans->commit_id != NULL &&
3431 5a911940 2021-06-25 tracey strncmp(id_str, gw_trans->commit_id, strlen(id_str)) != 0)
3432 5a911940 2021-06-25 tracey continue;
3433 5a911940 2021-06-25 tracey else
3434 5a911940 2021-06-25 tracey commit_found = 1;
3435 5a911940 2021-06-25 tracey
3436 5a911940 2021-06-25 tracey if (gw_trans->commit_id != NULL &&
3437 5a911940 2021-06-25 tracey strcmp(id_str, gw_trans->commit_id) != 0 &&
3438 5a911940 2021-06-25 tracey (re == TAILQ_FIRST(&refs) ||
3439 5a911940 2021-06-25 tracey c_cnt == gw_trans->gw_conf->got_max_commits_display)) {
3440 5a911940 2021-06-25 tracey gw_trans->prev_id = strdup(id_str);
3441 5a911940 2021-06-25 tracey if (gw_trans->prev_id == NULL) {
3442 5a911940 2021-06-25 tracey error = got_error_from_errno("strdup");
3443 5a911940 2021-06-25 tracey goto done;
3444 5a911940 2021-06-25 tracey }
3445 5a911940 2021-06-25 tracey break;
3446 5a911940 2021-06-25 tracey }
3447 5a911940 2021-06-25 tracey c_cnt++;
3448 5a911940 2021-06-25 tracey }
3449 87f9ebf5 2020-01-15 tracey done:
3450 6eccd105 2020-02-03 stsp if (tag)
3451 6eccd105 2020-02-03 stsp got_object_tag_close(tag);
3452 6eccd105 2020-02-03 stsp free(id_str);
3453 55ccf528 2020-02-03 stsp free(age);
3454 6eccd105 2020-02-03 stsp free(tag_commit0);
3455 38b240fb 2020-02-06 tracey free(href_tag);
3456 38b240fb 2020-02-06 tracey free(href_briefs);
3457 38b240fb 2020-02-06 tracey free(href_commits);
3458 6eccd105 2020-02-03 stsp got_ref_list_free(&refs);
3459 38b240fb 2020-02-06 tracey if (error == NULL && kerr != KCGI_OK)
3460 38b240fb 2020-02-06 tracey error = gw_kcgi_error(kerr);
3461 6eccd105 2020-02-03 stsp return error;
3462 f2f46662 2020-01-23 tracey }
3463 f2f46662 2020-01-23 tracey
3464 f2f46662 2020-01-23 tracey static void
3465 b0a1bc86 2020-02-14 stsp gw_free_header(struct gw_header *header)
3466 f2f46662 2020-01-23 tracey {
3467 f2f46662 2020-01-23 tracey free(header->path);
3468 4e8d6e3e 2020-02-14 tracey free(header->author);
3469 4e8d6e3e 2020-02-14 tracey free(header->committer);
3470 f2f46662 2020-01-23 tracey free(header->refs_str);
3471 f2f46662 2020-01-23 tracey free(header->commit_id);
3472 f2f46662 2020-01-23 tracey free(header->parent_id);
3473 f2f46662 2020-01-23 tracey free(header->tree_id);
3474 f2f46662 2020-01-23 tracey free(header->commit_msg);
3475 f2f46662 2020-01-23 tracey }
3476 f2f46662 2020-01-23 tracey
3477 f2f46662 2020-01-23 tracey static struct gw_header *
3478 f2f46662 2020-01-23 tracey gw_init_header()
3479 f2f46662 2020-01-23 tracey {
3480 f2f46662 2020-01-23 tracey struct gw_header *header;
3481 f2f46662 2020-01-23 tracey
3482 ae36ed87 2020-01-28 stsp header = malloc(sizeof(*header));
3483 ae36ed87 2020-01-28 stsp if (header == NULL)
3484 f2f46662 2020-01-23 tracey return NULL;
3485 f2f46662 2020-01-23 tracey
3486 f2f46662 2020-01-23 tracey header->path = NULL;
3487 d9dff0e5 2020-12-26 stsp TAILQ_INIT(&header->refs);
3488 5c65becf 2020-02-13 tracey
3489 5c65becf 2020-02-13 tracey header->refs_str = NULL;
3490 5c65becf 2020-02-13 tracey header->commit_id = NULL;
3491 f9315db0 2020-02-14 tracey header->committer = NULL;
3492 f9315db0 2020-02-14 tracey header->author = NULL;
3493 5c65becf 2020-02-13 tracey header->parent_id = NULL;
3494 5c65becf 2020-02-13 tracey header->tree_id = NULL;
3495 5c65becf 2020-02-13 tracey header->commit_msg = NULL;
3496 f2f46662 2020-01-23 tracey
3497 f2f46662 2020-01-23 tracey return header;
3498 f2f46662 2020-01-23 tracey }
3499 f2f46662 2020-01-23 tracey
3500 f2f46662 2020-01-23 tracey static const struct got_error *
3501 f2f46662 2020-01-23 tracey gw_get_commits(struct gw_trans * gw_trans, struct gw_header *header,
3502 3c245a0e 2020-02-14 tracey int limit, struct got_object_id *id)
3503 f2f46662 2020-01-23 tracey {
3504 f2f46662 2020-01-23 tracey const struct got_error *error = NULL;
3505 f2f46662 2020-01-23 tracey struct got_commit_graph *graph = NULL;
3506 4e8d6e3e 2020-02-14 tracey struct got_commit_object *commit = NULL;
3507 5a911940 2021-06-25 tracey int chk_next = 0, chk_multi = 0, c_cnt = 0, commit_found = 0;
3508 5a911940 2021-06-25 tracey struct gw_header *t_header = NULL;
3509 f2f46662 2020-01-23 tracey
3510 f2f46662 2020-01-23 tracey error = got_commit_graph_open(&graph, header->path, 0);
3511 f2f46662 2020-01-23 tracey if (error)
3512 00f13350 2020-02-10 tracey return error;
3513 f2f46662 2020-01-23 tracey
3514 deac617c 2020-02-14 tracey error = got_commit_graph_iter_start(graph, id, gw_trans->repo, NULL,
3515 3c245a0e 2020-02-14 tracey NULL);
3516 f2f46662 2020-01-23 tracey if (error)
3517 c333d3f7 2021-06-25 tracey goto err;
3518 f2f46662 2020-01-23 tracey
3519 f2f46662 2020-01-23 tracey for (;;) {
3520 deac617c 2020-02-14 tracey error = got_commit_graph_iter_next(&id, graph, gw_trans->repo,
3521 3c245a0e 2020-02-14 tracey NULL, NULL);
3522 f2f46662 2020-01-23 tracey if (error) {
3523 f2f46662 2020-01-23 tracey if (error->code == GOT_ERR_ITER_COMPLETED)
3524 f2f46662 2020-01-23 tracey error = NULL;
3525 c333d3f7 2021-06-25 tracey goto done;
3526 f2f46662 2020-01-23 tracey }
3527 3c245a0e 2020-02-14 tracey if (id == NULL)
3528 5a911940 2021-06-25 tracey goto err;
3529 f2f46662 2020-01-23 tracey
3530 deac617c 2020-02-14 tracey error = got_object_open_as_commit(&commit, gw_trans->repo, id);
3531 c333d3f7 2021-06-25 tracey if (error)
3532 c333d3f7 2021-06-25 tracey goto err;
3533 bf4484a3 2020-02-18 tracey if (limit == 1 && chk_multi == 0 &&
3534 bf4484a3 2020-02-18 tracey gw_trans->gw_conf->got_max_commits_display != 1) {
3535 3c245a0e 2020-02-14 tracey error = gw_get_commit(gw_trans, header, commit, id);
3536 4e8d6e3e 2020-02-14 tracey if (error)
3537 5a911940 2021-06-25 tracey goto err;
3538 5a911940 2021-06-25 tracey commit_found = 1;
3539 4e8d6e3e 2020-02-14 tracey } else {
3540 55e46400 2020-02-18 tracey chk_multi = 1;
3541 f2f46662 2020-01-23 tracey struct gw_header *n_header = NULL;
3542 5147ab56 2020-01-29 stsp if ((n_header = gw_init_header()) == NULL) {
3543 f2f46662 2020-01-23 tracey error = got_error_from_errno("malloc");
3544 5a911940 2021-06-25 tracey goto err;
3545 d1635ae4 2020-02-13 tracey }
3546 5a911940 2021-06-25 tracey TAILQ_INSERT_TAIL(&gw_trans->gw_headers, n_header,
3547 5a911940 2021-06-25 tracey entry);
3548 bf93a5c0 2020-02-15 tracey error = got_ref_list(&n_header->refs, gw_trans->repo,
3549 bf93a5c0 2020-02-15 tracey NULL, got_ref_cmp_by_name, NULL);
3550 bf93a5c0 2020-02-15 tracey if (error)
3551 5a911940 2021-06-25 tracey goto err;
3552 bf93a5c0 2020-02-15 tracey
3553 3c245a0e 2020-02-14 tracey error = gw_get_commit(gw_trans, n_header, commit, id);
3554 4e8d6e3e 2020-02-14 tracey if (error)
3555 5a911940 2021-06-25 tracey goto err;
3556 bc8c6114 2020-02-17 tracey got_ref_list_free(&n_header->refs);
3557 55e46400 2020-02-18 tracey
3558 5a911940 2021-06-25 tracey if (gw_trans->commit_id != NULL) {
3559 5a911940 2021-06-25 tracey if (strcmp(gw_trans->commit_id,
3560 5a911940 2021-06-25 tracey n_header->commit_id) == 0)
3561 5a911940 2021-06-25 tracey commit_found = 1;
3562 5a911940 2021-06-25 tracey } else
3563 5a911940 2021-06-25 tracey commit_found = 1;
3564 55e46400 2020-02-18 tracey
3565 55e46400 2020-02-18 tracey /*
3566 55e46400 2020-02-18 tracey * check for one more commit before breaking,
3567 a378df9f 2022-04-16 thomas * so we know whether to navigate through gw_briefs
3568 55e46400 2020-02-18 tracey * gw_commits and gw_summary
3569 55e46400 2020-02-18 tracey */
3570 5a911940 2021-06-25 tracey if (chk_next && (gw_trans->action == GW_BRIEFS ||
3571 55e46400 2020-02-18 tracey gw_trans->action == GW_COMMITS ||
3572 55e46400 2020-02-18 tracey gw_trans->action == GW_SUMMARY)) {
3573 55e46400 2020-02-18 tracey gw_trans->next_id = strdup(n_header->commit_id);
3574 55e46400 2020-02-18 tracey if (gw_trans->next_id == NULL)
3575 55e46400 2020-02-18 tracey error = got_error_from_errno("strdup");
3576 5a911940 2021-06-25 tracey TAILQ_REMOVE(&gw_trans->gw_headers, n_header,
3577 5a911940 2021-06-25 tracey entry);
3578 55e46400 2020-02-18 tracey goto done;
3579 55e46400 2020-02-18 tracey }
3580 55e46400 2020-02-18 tracey
3581 f2f46662 2020-01-23 tracey }
3582 5a911940 2021-06-25 tracey if (commit_found == 1 && (error || (limit && --limit == 0))) {
3583 55e46400 2020-02-18 tracey if (chk_multi == 0)
3584 55e46400 2020-02-18 tracey break;
3585 55e46400 2020-02-18 tracey chk_next = 1;
3586 55e46400 2020-02-18 tracey }
3587 f2f46662 2020-01-23 tracey }
3588 f2f46662 2020-01-23 tracey done:
3589 5a911940 2021-06-25 tracey if (gw_trans->prev_id == NULL && gw_trans->commit_id != NULL &&
3590 178d3e72 2021-06-25 tracey (gw_trans->action == GW_BRIEFS || gw_trans->action == GW_COMMITS)) {
3591 f75a37be 2021-06-25 tracey commit_found = 0;
3592 5a911940 2021-06-25 tracey TAILQ_FOREACH_REVERSE(t_header, &gw_trans->gw_headers,
3593 5a911940 2021-06-25 tracey headers, entry) {
3594 5a911940 2021-06-25 tracey if (commit_found == 0 &&
3595 5a911940 2021-06-25 tracey strcmp(gw_trans->commit_id,
3596 5a911940 2021-06-25 tracey t_header->commit_id) != 0)
3597 5a911940 2021-06-25 tracey continue;
3598 f75a37be 2021-06-25 tracey else
3599 f75a37be 2021-06-25 tracey commit_found = 1;
3600 5a911940 2021-06-25 tracey if (gw_trans->commit_id != NULL &&
3601 5a911940 2021-06-25 tracey strcmp(gw_trans->commit_id,
3602 5a911940 2021-06-25 tracey t_header->commit_id) != 0 &&
3603 5a911940 2021-06-25 tracey (c_cnt == gw_trans->gw_conf->got_max_commits_display
3604 5a911940 2021-06-25 tracey || t_header ==
3605 5a911940 2021-06-25 tracey TAILQ_FIRST(&gw_trans->gw_headers))) {
3606 5a911940 2021-06-25 tracey gw_trans->prev_id = strdup(t_header->commit_id);
3607 5a911940 2021-06-25 tracey if (gw_trans->prev_id == NULL)
3608 5a911940 2021-06-25 tracey error = got_error_from_errno("strdup");
3609 5a911940 2021-06-25 tracey break;
3610 5a911940 2021-06-25 tracey }
3611 5a911940 2021-06-25 tracey c_cnt++;
3612 5a911940 2021-06-25 tracey }
3613 5a911940 2021-06-25 tracey }
3614 5a911940 2021-06-25 tracey err:
3615 4e8d6e3e 2020-02-14 tracey if (commit != NULL)
3616 4e8d6e3e 2020-02-14 tracey got_object_commit_close(commit);
3617 f2f46662 2020-01-23 tracey if (graph)
3618 f2f46662 2020-01-23 tracey got_commit_graph_close(graph);
3619 f2f46662 2020-01-23 tracey return error;
3620 f2f46662 2020-01-23 tracey }
3621 f2f46662 2020-01-23 tracey
3622 f2f46662 2020-01-23 tracey static const struct got_error *
3623 4e8d6e3e 2020-02-14 tracey gw_get_commit(struct gw_trans *gw_trans, struct gw_header *header,
3624 4e8d6e3e 2020-02-14 tracey struct got_commit_object *commit, struct got_object_id *id)
3625 f2f46662 2020-01-23 tracey {
3626 f2f46662 2020-01-23 tracey const struct got_error *error = NULL;
3627 f2f46662 2020-01-23 tracey struct got_reflist_entry *re;
3628 f2f46662 2020-01-23 tracey struct got_object_id *id2 = NULL;
3629 f2f46662 2020-01-23 tracey struct got_object_qid *parent_id;
3630 a81394a7 2020-02-13 stsp char *commit_msg = NULL, *commit_msg0;
3631 f2f46662 2020-01-23 tracey
3632 f2f46662 2020-01-23 tracey /*print commit*/
3633 d9dff0e5 2020-12-26 stsp TAILQ_FOREACH(re, &header->refs, entry) {
3634 f2f46662 2020-01-23 tracey char *s;
3635 f2f46662 2020-01-23 tracey const char *name;
3636 f2f46662 2020-01-23 tracey struct got_tag_object *tag = NULL;
3637 3721d310 2020-09-23 stsp struct got_object_id *ref_id;
3638 f2f46662 2020-01-23 tracey int cmp;
3639 f2f46662 2020-01-23 tracey
3640 eb4f3ad3 2020-02-14 stsp if (got_ref_is_symbolic(re->ref))
3641 f2f46662 2020-01-23 tracey continue;
3642 eb4f3ad3 2020-02-14 stsp
3643 eb4f3ad3 2020-02-14 stsp name = got_ref_get_name(re->ref);
3644 f2f46662 2020-01-23 tracey if (strncmp(name, "refs/", 5) == 0)
3645 f2f46662 2020-01-23 tracey name += 5;
3646 f2f46662 2020-01-23 tracey if (strncmp(name, "got/", 4) == 0)
3647 f2f46662 2020-01-23 tracey continue;
3648 f2f46662 2020-01-23 tracey if (strncmp(name, "heads/", 6) == 0)
3649 f2f46662 2020-01-23 tracey name += 6;
3650 abdd569e 2020-09-23 stsp if (strncmp(name, "remotes/", 8) == 0) {
3651 f2f46662 2020-01-23 tracey name += 8;
3652 abdd569e 2020-09-23 stsp s = strstr(name, "/" GOT_REF_HEAD);
3653 abdd569e 2020-09-23 stsp if (s != NULL && s[strlen(s)] == '\0')
3654 abdd569e 2020-09-23 stsp continue;
3655 abdd569e 2020-09-23 stsp }
3656 3721d310 2020-09-23 stsp error = got_ref_resolve(&ref_id, gw_trans->repo, re->ref);
3657 3721d310 2020-09-23 stsp if (error)
3658 3721d310 2020-09-23 stsp return error;
3659 f2f46662 2020-01-23 tracey if (strncmp(name, "tags/", 5) == 0) {
3660 deac617c 2020-02-14 tracey error = got_object_open_as_tag(&tag, gw_trans->repo,
3661 3721d310 2020-09-23 stsp ref_id);
3662 f2f46662 2020-01-23 tracey if (error) {
3663 3721d310 2020-09-23 stsp if (error->code != GOT_ERR_OBJ_TYPE) {
3664 3721d310 2020-09-23 stsp free(ref_id);
3665 f2f46662 2020-01-23 tracey continue;
3666 3721d310 2020-09-23 stsp }
3667 f2f46662 2020-01-23 tracey /*
3668 f2f46662 2020-01-23 tracey * Ref points at something other
3669 f2f46662 2020-01-23 tracey * than a tag.
3670 f2f46662 2020-01-23 tracey */
3671 f2f46662 2020-01-23 tracey error = NULL;
3672 f2f46662 2020-01-23 tracey tag = NULL;
3673 f2f46662 2020-01-23 tracey }
3674 f2f46662 2020-01-23 tracey }
3675 f2f46662 2020-01-23 tracey cmp = got_object_id_cmp(tag ?
3676 3721d310 2020-09-23 stsp got_object_tag_get_object_id(tag) : ref_id, id);
3677 3721d310 2020-09-23 stsp free(ref_id);
3678 f2f46662 2020-01-23 tracey if (tag)
3679 f2f46662 2020-01-23 tracey got_object_tag_close(tag);
3680 f2f46662 2020-01-23 tracey if (cmp != 0)
3681 f2f46662 2020-01-23 tracey continue;
3682 a81394a7 2020-02-13 stsp s = header->refs_str;
3683 a81394a7 2020-02-13 stsp if (asprintf(&header->refs_str, "%s%s%s", s ? s : "",
3684 88d59c36 2020-01-29 stsp s ? ", " : "", name) == -1) {
3685 f2f46662 2020-01-23 tracey error = got_error_from_errno("asprintf");
3686 f2f46662 2020-01-23 tracey free(s);
3687 a81394a7 2020-02-13 stsp header->refs_str = NULL;
3688 f2f46662 2020-01-23 tracey return error;
3689 f2f46662 2020-01-23 tracey }
3690 f2f46662 2020-01-23 tracey free(s);
3691 f2f46662 2020-01-23 tracey }
3692 f1200fe3 2020-02-13 tracey
3693 4e8d6e3e 2020-02-14 tracey error = got_object_id_str(&header->commit_id, id);
3694 f2f46662 2020-01-23 tracey if (error)
3695 f2f46662 2020-01-23 tracey return error;
3696 f2f46662 2020-01-23 tracey
3697 f2f46662 2020-01-23 tracey error = got_object_id_str(&header->tree_id,
3698 4e8d6e3e 2020-02-14 tracey got_object_commit_get_tree_id(commit));
3699 f2f46662 2020-01-23 tracey if (error)
3700 f2f46662 2020-01-23 tracey return error;
3701 f2f46662 2020-01-23 tracey
3702 f2f46662 2020-01-23 tracey if (gw_trans->action == GW_DIFF) {
3703 dbdddfee 2021-06-23 naddy parent_id = STAILQ_FIRST(
3704 4e8d6e3e 2020-02-14 tracey got_object_commit_get_parent_ids(commit));
3705 f2f46662 2020-01-23 tracey if (parent_id != NULL) {
3706 ec242592 2022-04-22 thomas id2 = got_object_id_dup(&parent_id->id);
3707 f2f46662 2020-01-23 tracey free (parent_id);
3708 f2f46662 2020-01-23 tracey error = got_object_id_str(&header->parent_id, id2);
3709 f2f46662 2020-01-23 tracey if (error)
3710 f2f46662 2020-01-23 tracey return error;
3711 f2f46662 2020-01-23 tracey free(id2);
3712 a942aa37 2020-02-10 tracey } else {
3713 d1635ae4 2020-02-13 tracey header->parent_id = strdup("/dev/null");
3714 d1635ae4 2020-02-13 tracey if (header->parent_id == NULL) {
3715 d1635ae4 2020-02-13 tracey error = got_error_from_errno("strdup");
3716 a942aa37 2020-02-10 tracey return error;
3717 d1635ae4 2020-02-13 tracey }
3718 d1635ae4 2020-02-13 tracey }
3719 a942aa37 2020-02-10 tracey }
3720 f2f46662 2020-01-23 tracey
3721 f2f46662 2020-01-23 tracey header->committer_time =
3722 4e8d6e3e 2020-02-14 tracey got_object_commit_get_committer_time(commit);
3723 1177268c 2020-01-28 tracey
3724 d1635ae4 2020-02-13 tracey header->author =
3725 4e8d6e3e 2020-02-14 tracey strdup(got_object_commit_get_author(commit));
3726 4e8d6e3e 2020-02-14 tracey if (header->author == NULL) {
3727 4e8d6e3e 2020-02-14 tracey error = got_error_from_errno("strdup");
3728 4e8d6e3e 2020-02-14 tracey return error;
3729 4e8d6e3e 2020-02-14 tracey }
3730 d1635ae4 2020-02-13 tracey header->committer =
3731 4e8d6e3e 2020-02-14 tracey strdup(got_object_commit_get_committer(commit));
3732 4e8d6e3e 2020-02-14 tracey if (header->committer == NULL) {
3733 4e8d6e3e 2020-02-14 tracey error = got_error_from_errno("strdup");
3734 a942aa37 2020-02-10 tracey return error;
3735 4e8d6e3e 2020-02-14 tracey }
3736 4e8d6e3e 2020-02-14 tracey error = got_object_commit_get_logmsg(&commit_msg0, commit);
3737 f2f46662 2020-01-23 tracey if (error)
3738 f2f46662 2020-01-23 tracey return error;
3739 f2f46662 2020-01-23 tracey
3740 f2f46662 2020-01-23 tracey commit_msg = commit_msg0;
3741 f2f46662 2020-01-23 tracey while (*commit_msg == '\n')
3742 f2f46662 2020-01-23 tracey commit_msg++;
3743 f2f46662 2020-01-23 tracey
3744 d1635ae4 2020-02-13 tracey header->commit_msg = strdup(commit_msg);
3745 d1635ae4 2020-02-13 tracey if (header->commit_msg == NULL)
3746 d1635ae4 2020-02-13 tracey error = got_error_from_errno("strdup");
3747 f2f46662 2020-01-23 tracey free(commit_msg0);
3748 f2f46662 2020-01-23 tracey return error;
3749 f2f46662 2020-01-23 tracey }
3750 f2f46662 2020-01-23 tracey
3751 f2f46662 2020-01-23 tracey static const struct got_error *
3752 f2f46662 2020-01-23 tracey gw_get_header(struct gw_trans *gw_trans, struct gw_header *header, int limit)
3753 f2f46662 2020-01-23 tracey {
3754 f2f46662 2020-01-23 tracey const struct got_error *error = NULL;
3755 f2f46662 2020-01-23 tracey char *in_repo_path = NULL;
3756 3c245a0e 2020-02-14 tracey struct got_object_id *id = NULL;
3757 5a911940 2021-06-25 tracey struct got_reference *ref;
3758 f2f46662 2020-01-23 tracey
3759 deac617c 2020-02-14 tracey error = got_repo_open(&gw_trans->repo, gw_trans->repo_path, NULL);
3760 f2f46662 2020-01-23 tracey if (error)
3761 f2f46662 2020-01-23 tracey return error;
3762 f2f46662 2020-01-23 tracey
3763 5a911940 2021-06-25 tracey if (gw_trans->commit_id == NULL || gw_trans->action == GW_COMMITS ||
3764 5a911940 2021-06-25 tracey gw_trans->action == GW_BRIEFS || gw_trans->action == GW_SUMMARY ||
3765 5a911940 2021-06-25 tracey gw_trans->action == GW_TAGS) {
3766 5a911940 2021-06-25 tracey error = got_ref_open(&ref, gw_trans->repo,
3767 f2f46662 2020-01-23 tracey gw_trans->headref, 0);
3768 f2f46662 2020-01-23 tracey if (error)
3769 f2f46662 2020-01-23 tracey return error;
3770 f2f46662 2020-01-23 tracey
3771 5a911940 2021-06-25 tracey error = got_ref_resolve(&id, gw_trans->repo, ref);
3772 5a911940 2021-06-25 tracey got_ref_close(ref);
3773 f2f46662 2020-01-23 tracey if (error)
3774 f2f46662 2020-01-23 tracey return error;
3775 f2f46662 2020-01-23 tracey } else {
3776 56997cd3 2020-02-14 tracey error = got_ref_open(&ref, gw_trans->repo,
3777 56997cd3 2020-02-14 tracey gw_trans->commit_id, 0);
3778 f2f46662 2020-01-23 tracey if (error == NULL) {
3779 f2f46662 2020-01-23 tracey int obj_type;
3780 deac617c 2020-02-14 tracey error = got_ref_resolve(&id, gw_trans->repo, ref);
3781 f2f46662 2020-01-23 tracey got_ref_close(ref);
3782 f2f46662 2020-01-23 tracey if (error)
3783 f2f46662 2020-01-23 tracey return error;
3784 deac617c 2020-02-14 tracey error = got_object_get_type(&obj_type, gw_trans->repo,
3785 3c245a0e 2020-02-14 tracey id);
3786 f2f46662 2020-01-23 tracey if (error)
3787 4e8d6e3e 2020-02-14 tracey goto done;
3788 f2f46662 2020-01-23 tracey if (obj_type == GOT_OBJ_TYPE_TAG) {
3789 f2f46662 2020-01-23 tracey struct got_tag_object *tag;
3790 f2f46662 2020-01-23 tracey error = got_object_open_as_tag(&tag,
3791 deac617c 2020-02-14 tracey gw_trans->repo, id);
3792 f2f46662 2020-01-23 tracey if (error)
3793 4e8d6e3e 2020-02-14 tracey goto done;
3794 f2f46662 2020-01-23 tracey if (got_object_tag_get_object_type(tag) !=
3795 f2f46662 2020-01-23 tracey GOT_OBJ_TYPE_COMMIT) {
3796 f2f46662 2020-01-23 tracey got_object_tag_close(tag);
3797 f2f46662 2020-01-23 tracey error = got_error(GOT_ERR_OBJ_TYPE);
3798 4e8d6e3e 2020-02-14 tracey goto done;
3799 f2f46662 2020-01-23 tracey }
3800 3c245a0e 2020-02-14 tracey free(id);
3801 3c245a0e 2020-02-14 tracey id = got_object_id_dup(
3802 f2f46662 2020-01-23 tracey got_object_tag_get_object_id(tag));
3803 3c245a0e 2020-02-14 tracey if (id == NULL)
3804 f2f46662 2020-01-23 tracey error = got_error_from_errno(
3805 f2f46662 2020-01-23 tracey "got_object_id_dup");
3806 f2f46662 2020-01-23 tracey got_object_tag_close(tag);
3807 f2f46662 2020-01-23 tracey if (error)
3808 4e8d6e3e 2020-02-14 tracey goto done;
3809 f2f46662 2020-01-23 tracey } else if (obj_type != GOT_OBJ_TYPE_COMMIT) {
3810 f2f46662 2020-01-23 tracey error = got_error(GOT_ERR_OBJ_TYPE);
3811 4e8d6e3e 2020-02-14 tracey goto done;
3812 f2f46662 2020-01-23 tracey }
3813 f2f46662 2020-01-23 tracey }
3814 3c245a0e 2020-02-14 tracey error = got_repo_match_object_id_prefix(&id,
3815 56997cd3 2020-02-14 tracey gw_trans->commit_id, GOT_OBJ_TYPE_COMMIT,
3816 deac617c 2020-02-14 tracey gw_trans->repo);
3817 122f3af5 2020-02-14 stsp if (error)
3818 4e8d6e3e 2020-02-14 tracey goto done;
3819 f2f46662 2020-01-23 tracey }
3820 f2f46662 2020-01-23 tracey
3821 deac617c 2020-02-14 tracey error = got_repo_map_path(&in_repo_path, gw_trans->repo,
3822 8b4e047e 2020-11-15 stsp gw_trans->repo_path);
3823 f2f46662 2020-01-23 tracey if (error)
3824 4e8d6e3e 2020-02-14 tracey goto done;
3825 f2f46662 2020-01-23 tracey
3826 f2f46662 2020-01-23 tracey if (in_repo_path) {
3827 d1635ae4 2020-02-13 tracey header->path = strdup(in_repo_path);
3828 d1635ae4 2020-02-13 tracey if (header->path == NULL) {
3829 d1635ae4 2020-02-13 tracey error = got_error_from_errno("strdup");
3830 4e8d6e3e 2020-02-14 tracey goto done;
3831 a942aa37 2020-02-10 tracey }
3832 f2f46662 2020-01-23 tracey }
3833 f2f46662 2020-01-23 tracey
3834 deac617c 2020-02-14 tracey error = got_ref_list(&header->refs, gw_trans->repo, NULL,
3835 f2f46662 2020-01-23 tracey got_ref_cmp_by_name, NULL);
3836 f2f46662 2020-01-23 tracey if (error)
3837 4e8d6e3e 2020-02-14 tracey goto done;
3838 f2f46662 2020-01-23 tracey
3839 3c245a0e 2020-02-14 tracey error = gw_get_commits(gw_trans, header, limit, id);
3840 4e8d6e3e 2020-02-14 tracey done:
3841 4e8d6e3e 2020-02-14 tracey got_ref_list_free(&header->refs);
3842 3c245a0e 2020-02-14 tracey free(id);
3843 4e8d6e3e 2020-02-14 tracey free(in_repo_path);
3844 f2f46662 2020-01-23 tracey return error;
3845 ec46ccd7 2020-01-15 tracey }
3846 ec46ccd7 2020-01-15 tracey
3847 ec46ccd7 2020-01-15 tracey struct blame_line {
3848 ec46ccd7 2020-01-15 tracey int annotated;
3849 ec46ccd7 2020-01-15 tracey char *id_str;
3850 ec46ccd7 2020-01-15 tracey char *committer;
3851 ec46ccd7 2020-01-15 tracey char datebuf[11]; /* YYYY-MM-DD + NUL */
3852 ec46ccd7 2020-01-15 tracey };
3853 ec46ccd7 2020-01-15 tracey
3854 147269d5 2020-01-15 tracey struct gw_blame_cb_args {
3855 ec46ccd7 2020-01-15 tracey struct blame_line *lines;
3856 ec46ccd7 2020-01-15 tracey int nlines;
3857 ec46ccd7 2020-01-15 tracey int nlines_prec;
3858 ec46ccd7 2020-01-15 tracey int lineno_cur;
3859 ec46ccd7 2020-01-15 tracey off_t *line_offsets;
3860 ec46ccd7 2020-01-15 tracey FILE *f;
3861 ec46ccd7 2020-01-15 tracey struct got_repository *repo;
3862 54415d85 2020-01-15 tracey struct gw_trans *gw_trans;
3863 ec46ccd7 2020-01-15 tracey };
3864 ec46ccd7 2020-01-15 tracey
3865 ec46ccd7 2020-01-15 tracey static const struct got_error *
3866 10f173fe 2022-04-16 thomas gw_blame_cb(void *arg, int nlines, int lineno,
3867 10f173fe 2022-04-16 thomas struct got_commit_object *commit, struct got_object_id *id)
3868 ec46ccd7 2020-01-15 tracey {
3869 ec46ccd7 2020-01-15 tracey const struct got_error *err = NULL;
3870 147269d5 2020-01-15 tracey struct gw_blame_cb_args *a = arg;
3871 ec46ccd7 2020-01-15 tracey struct blame_line *bline;
3872 ec46ccd7 2020-01-15 tracey char *line = NULL;
3873 9a9d12ca 2020-02-06 tracey size_t linesize = 0;
3874 ec46ccd7 2020-01-15 tracey off_t offset;
3875 ec46ccd7 2020-01-15 tracey struct tm tm;
3876 ec46ccd7 2020-01-15 tracey time_t committer_time;
3877 9a9d12ca 2020-02-06 tracey enum kcgi_err kerr = KCGI_OK;
3878 ec46ccd7 2020-01-15 tracey
3879 ec46ccd7 2020-01-15 tracey if (nlines != a->nlines ||
3880 ec46ccd7 2020-01-15 tracey (lineno != -1 && lineno < 1) || lineno > a->nlines)
3881 ec46ccd7 2020-01-15 tracey return got_error(GOT_ERR_RANGE);
3882 ec46ccd7 2020-01-15 tracey
3883 ec46ccd7 2020-01-15 tracey if (lineno == -1)
3884 ec46ccd7 2020-01-15 tracey return NULL; /* no change in this commit */
3885 ec46ccd7 2020-01-15 tracey
3886 ec46ccd7 2020-01-15 tracey /* Annotate this line. */
3887 ec46ccd7 2020-01-15 tracey bline = &a->lines[lineno - 1];
3888 ec46ccd7 2020-01-15 tracey if (bline->annotated)
3889 ec46ccd7 2020-01-15 tracey return NULL;
3890 ec46ccd7 2020-01-15 tracey err = got_object_id_str(&bline->id_str, id);
3891 ec46ccd7 2020-01-15 tracey if (err)
3892 ec46ccd7 2020-01-15 tracey return err;
3893 ec46ccd7 2020-01-15 tracey
3894 d1635ae4 2020-02-13 tracey bline->committer = strdup(got_object_commit_get_committer(commit));
3895 d1635ae4 2020-02-13 tracey if (bline->committer == NULL) {
3896 d1635ae4 2020-02-13 tracey err = got_error_from_errno("strdup");
3897 ec46ccd7 2020-01-15 tracey goto done;
3898 d1635ae4 2020-02-13 tracey }
3899 ec46ccd7 2020-01-15 tracey
3900 ec46ccd7 2020-01-15 tracey committer_time = got_object_commit_get_committer_time(commit);
3901 e385fc42 2021-08-30 stsp if (gmtime_r(&committer_time, &tm) == NULL)
3902 e385fc42 2021-08-30 stsp return got_error_from_errno("gmtime_r");
3903 ec46ccd7 2020-01-15 tracey if (strftime(bline->datebuf, sizeof(bline->datebuf), "%G-%m-%d",
3904 ec6d1a36 2021-03-21 jrick &tm) == 0) {
3905 ec46ccd7 2020-01-15 tracey err = got_error(GOT_ERR_NO_SPACE);
3906 ec46ccd7 2020-01-15 tracey goto done;
3907 ec46ccd7 2020-01-15 tracey }
3908 ec46ccd7 2020-01-15 tracey bline->annotated = 1;
3909 ec46ccd7 2020-01-15 tracey
3910 ec46ccd7 2020-01-15 tracey /* Print lines annotated so far. */
3911 ec46ccd7 2020-01-15 tracey bline = &a->lines[a->lineno_cur - 1];
3912 ec46ccd7 2020-01-15 tracey if (!bline->annotated)
3913 ec46ccd7 2020-01-15 tracey goto done;
3914 ec46ccd7 2020-01-15 tracey
3915 ec46ccd7 2020-01-15 tracey offset = a->line_offsets[a->lineno_cur - 1];
3916 ec46ccd7 2020-01-15 tracey if (fseeko(a->f, offset, SEEK_SET) == -1) {
3917 ec46ccd7 2020-01-15 tracey err = got_error_from_errno("fseeko");
3918 ec46ccd7 2020-01-15 tracey goto done;
3919 ec46ccd7 2020-01-15 tracey }
3920 ec46ccd7 2020-01-15 tracey
3921 ec46ccd7 2020-01-15 tracey while (bline->annotated) {
3922 9a9d12ca 2020-02-06 tracey char *smallerthan, *at, *nl, *committer;
3923 32b9f7ed 2020-04-14 tracey char *href_diff = NULL;
3924 ec46ccd7 2020-01-15 tracey size_t len;
3925 ec46ccd7 2020-01-15 tracey
3926 ec46ccd7 2020-01-15 tracey if (getline(&line, &linesize, a->f) == -1) {
3927 ec46ccd7 2020-01-15 tracey if (ferror(a->f))
3928 ec46ccd7 2020-01-15 tracey err = got_error_from_errno("getline");
3929 ec46ccd7 2020-01-15 tracey break;
3930 ec46ccd7 2020-01-15 tracey }
3931 ec46ccd7 2020-01-15 tracey
3932 ec46ccd7 2020-01-15 tracey committer = bline->committer;
3933 ec46ccd7 2020-01-15 tracey smallerthan = strchr(committer, '<');
3934 ec46ccd7 2020-01-15 tracey if (smallerthan && smallerthan[1] != '\0')
3935 ec46ccd7 2020-01-15 tracey committer = smallerthan + 1;
3936 ec46ccd7 2020-01-15 tracey at = strchr(committer, '@');
3937 ec46ccd7 2020-01-15 tracey if (at)
3938 ec46ccd7 2020-01-15 tracey *at = '\0';
3939 ec46ccd7 2020-01-15 tracey len = strlen(committer);
3940 ec46ccd7 2020-01-15 tracey if (len >= 9)
3941 ec46ccd7 2020-01-15 tracey committer[8] = '\0';
3942 ec46ccd7 2020-01-15 tracey
3943 ec46ccd7 2020-01-15 tracey nl = strchr(line, '\n');
3944 ec46ccd7 2020-01-15 tracey if (nl)
3945 ec46ccd7 2020-01-15 tracey *nl = '\0';
3946 0311ce2d 2020-01-15 tracey
3947 9a9d12ca 2020-02-06 tracey kerr = khtml_attr(a->gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
3948 9a9d12ca 2020-02-06 tracey "blame_wrapper", KATTR__MAX);
3949 9a9d12ca 2020-02-06 tracey if (kerr != KCGI_OK)
3950 9a9d12ca 2020-02-06 tracey goto err;
3951 9a9d12ca 2020-02-06 tracey kerr = khtml_attr(a->gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
3952 9a9d12ca 2020-02-06 tracey "blame_number", KATTR__MAX);
3953 9a9d12ca 2020-02-06 tracey if (kerr != KCGI_OK)
3954 9a9d12ca 2020-02-06 tracey goto err;
3955 32b9f7ed 2020-04-14 tracey kerr = khtml_printf(a->gw_trans->gw_html_req, "%.*d",
3956 32b9f7ed 2020-04-14 tracey a->nlines_prec, a->lineno_cur);
3957 9a9d12ca 2020-02-06 tracey if (kerr != KCGI_OK)
3958 9a9d12ca 2020-02-06 tracey goto err;
3959 9a9d12ca 2020-02-06 tracey kerr = khtml_closeelem(a->gw_trans->gw_html_req, 1);
3960 9a9d12ca 2020-02-06 tracey if (kerr != KCGI_OK)
3961 9a9d12ca 2020-02-06 tracey goto err;
3962 9a9d12ca 2020-02-06 tracey
3963 9a9d12ca 2020-02-06 tracey kerr = khtml_attr(a->gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
3964 9a9d12ca 2020-02-06 tracey "blame_hash", KATTR__MAX);
3965 9a9d12ca 2020-02-06 tracey if (kerr != KCGI_OK)
3966 9a9d12ca 2020-02-06 tracey goto err;
3967 1b33afc0 2020-02-14 tracey
3968 ebc6542a 2020-04-14 tracey href_diff = khttp_urlpart(NULL, NULL, "gotweb", "path",
3969 ebc6542a 2020-04-14 tracey a->gw_trans->repo_name, "action", "diff", "commit",
3970 ebc6542a 2020-04-14 tracey bline->id_str, NULL);
3971 19ff7638 2020-04-14 tracey if (href_diff == NULL) {
3972 19ff7638 2020-04-14 tracey err = got_error_from_errno("khttp_urlpart");
3973 19ff7638 2020-04-14 tracey goto done;
3974 19ff7638 2020-04-14 tracey }
3975 9a9d12ca 2020-02-06 tracey kerr = khtml_attr(a->gw_trans->gw_html_req, KELEM_A,
3976 9a9d12ca 2020-02-06 tracey KATTR_HREF, href_diff, KATTR__MAX);
3977 9a9d12ca 2020-02-06 tracey if (kerr != KCGI_OK)
3978 9a9d12ca 2020-02-06 tracey goto done;
3979 32b9f7ed 2020-04-14 tracey kerr = khtml_printf(a->gw_trans->gw_html_req, "%.8s",
3980 32b9f7ed 2020-04-14 tracey bline->id_str);
3981 9a9d12ca 2020-02-06 tracey if (kerr != KCGI_OK)
3982 9a9d12ca 2020-02-06 tracey goto err;
3983 9a9d12ca 2020-02-06 tracey kerr = khtml_closeelem(a->gw_trans->gw_html_req, 2);
3984 9a9d12ca 2020-02-06 tracey if (kerr != KCGI_OK)
3985 9a9d12ca 2020-02-06 tracey goto err;
3986 2e676fc5 2020-01-15 tracey
3987 9a9d12ca 2020-02-06 tracey kerr = khtml_attr(a->gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
3988 9a9d12ca 2020-02-06 tracey "blame_date", KATTR__MAX);
3989 9a9d12ca 2020-02-06 tracey if (kerr != KCGI_OK)
3990 9a9d12ca 2020-02-06 tracey goto err;
3991 9a9d12ca 2020-02-06 tracey kerr = khtml_puts(a->gw_trans->gw_html_req, bline->datebuf);
3992 9a9d12ca 2020-02-06 tracey if (kerr != KCGI_OK)
3993 9a9d12ca 2020-02-06 tracey goto err;
3994 9a9d12ca 2020-02-06 tracey kerr = khtml_closeelem(a->gw_trans->gw_html_req, 1);
3995 9a9d12ca 2020-02-06 tracey if (kerr != KCGI_OK)
3996 9a9d12ca 2020-02-06 tracey goto err;
3997 9a9d12ca 2020-02-06 tracey
3998 9a9d12ca 2020-02-06 tracey kerr = khtml_attr(a->gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
3999 9a9d12ca 2020-02-06 tracey "blame_author", KATTR__MAX);
4000 9a9d12ca 2020-02-06 tracey if (kerr != KCGI_OK)
4001 9a9d12ca 2020-02-06 tracey goto err;
4002 9a9d12ca 2020-02-06 tracey kerr = khtml_puts(a->gw_trans->gw_html_req, committer);
4003 9a9d12ca 2020-02-06 tracey if (kerr != KCGI_OK)
4004 9a9d12ca 2020-02-06 tracey goto err;
4005 9a9d12ca 2020-02-06 tracey kerr = khtml_closeelem(a->gw_trans->gw_html_req, 1);
4006 9a9d12ca 2020-02-06 tracey if (kerr != KCGI_OK)
4007 9a9d12ca 2020-02-06 tracey goto err;
4008 9a9d12ca 2020-02-06 tracey
4009 9a9d12ca 2020-02-06 tracey kerr = khtml_attr(a->gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
4010 9a9d12ca 2020-02-06 tracey "blame_code", KATTR__MAX);
4011 9a9d12ca 2020-02-06 tracey if (kerr != KCGI_OK)
4012 9a9d12ca 2020-02-06 tracey goto err;
4013 9a9d12ca 2020-02-06 tracey kerr = khtml_puts(a->gw_trans->gw_html_req, line);
4014 9a9d12ca 2020-02-06 tracey if (kerr != KCGI_OK)
4015 9a9d12ca 2020-02-06 tracey goto err;
4016 9a9d12ca 2020-02-06 tracey kerr = khtml_closeelem(a->gw_trans->gw_html_req, 1);
4017 9a9d12ca 2020-02-06 tracey if (kerr != KCGI_OK)
4018 9a9d12ca 2020-02-06 tracey goto err;
4019 9a9d12ca 2020-02-06 tracey
4020 9a9d12ca 2020-02-06 tracey kerr = khtml_closeelem(a->gw_trans->gw_html_req, 1);
4021 9a9d12ca 2020-02-06 tracey if (kerr != KCGI_OK)
4022 9a9d12ca 2020-02-06 tracey goto err;
4023 9a9d12ca 2020-02-06 tracey
4024 9a9d12ca 2020-02-06 tracey a->lineno_cur++;
4025 ec46ccd7 2020-01-15 tracey bline = &a->lines[a->lineno_cur - 1];
4026 de6bdba4 2020-01-31 tracey err:
4027 9a9d12ca 2020-02-06 tracey free(href_diff);
4028 ec46ccd7 2020-01-15 tracey }
4029 ec46ccd7 2020-01-15 tracey done:
4030 ec46ccd7 2020-01-15 tracey free(line);
4031 9a9d12ca 2020-02-06 tracey if (err == NULL && kerr != KCGI_OK)
4032 9a9d12ca 2020-02-06 tracey err = gw_kcgi_error(kerr);
4033 ec46ccd7 2020-01-15 tracey return err;
4034 872742ce 2020-02-01 stsp }
4035 872742ce 2020-02-01 stsp
4036 a81f3554 2020-02-03 stsp static const struct got_error *
4037 84de9106 2020-12-26 stsp gw_output_file_blame(struct gw_trans *gw_trans, struct gw_header *header)
4038 bcbc97d8 2020-01-15 tracey {
4039 bcbc97d8 2020-01-15 tracey const struct got_error *error = NULL;
4040 ec46ccd7 2020-01-15 tracey struct got_object_id *obj_id = NULL;
4041 ec46ccd7 2020-01-15 tracey struct got_object_id *commit_id = NULL;
4042 945f9229 2022-04-16 thomas struct got_commit_object *commit = NULL;
4043 ec46ccd7 2020-01-15 tracey struct got_blob_object *blob = NULL;
4044 a81f3554 2020-02-03 stsp char *path = NULL, *in_repo_path = NULL;
4045 147269d5 2020-01-15 tracey struct gw_blame_cb_args bca;
4046 119bf4ed 2020-01-15 tracey int i, obj_type;
4047 be659d10 2020-11-18 stsp off_t filesize;
4048 d7c94b2b 2022-03-22 thomas
4049 d7c94b2b 2022-03-22 thomas memset(&bca, 0, sizeof(bca));
4050 ec46ccd7 2020-01-15 tracey
4051 a81f3554 2020-02-03 stsp if (asprintf(&path, "%s%s%s",
4052 a81f3554 2020-02-03 stsp gw_trans->repo_folder ? gw_trans->repo_folder : "",
4053 4fd4726a 2020-02-03 stsp gw_trans->repo_folder ? "/" : "",
4054 a81f3554 2020-02-03 stsp gw_trans->repo_file) == -1) {
4055 2e676fc5 2020-01-15 tracey error = got_error_from_errno("asprintf");
4056 2e676fc5 2020-01-15 tracey goto done;
4057 2e676fc5 2020-01-15 tracey }
4058 2e676fc5 2020-01-15 tracey
4059 8b4e047e 2020-11-15 stsp error = got_repo_map_path(&in_repo_path, gw_trans->repo, path);
4060 ec46ccd7 2020-01-15 tracey if (error)
4061 ec46ccd7 2020-01-15 tracey goto done;
4062 ec46ccd7 2020-01-15 tracey
4063 56997cd3 2020-02-14 tracey error = got_repo_match_object_id(&commit_id, NULL, gw_trans->commit_id,
4064 84de9106 2020-12-26 stsp GOT_OBJ_TYPE_COMMIT, &header->refs, gw_trans->repo);
4065 ec46ccd7 2020-01-15 tracey if (error)
4066 ec46ccd7 2020-01-15 tracey goto done;
4067 ec46ccd7 2020-01-15 tracey
4068 945f9229 2022-04-16 thomas error = got_object_open_as_commit(&commit, gw_trans->repo, commit_id);
4069 945f9229 2022-04-16 thomas if (error)
4070 945f9229 2022-04-16 thomas goto done;
4071 945f9229 2022-04-16 thomas
4072 945f9229 2022-04-16 thomas error = got_object_id_by_path(&obj_id, gw_trans->repo, commit,
4073 deac617c 2020-02-14 tracey in_repo_path);
4074 ec46ccd7 2020-01-15 tracey if (error)
4075 ec46ccd7 2020-01-15 tracey goto done;
4076 2e676fc5 2020-01-15 tracey
4077 ec46ccd7 2020-01-15 tracey if (obj_id == NULL) {
4078 ec46ccd7 2020-01-15 tracey error = got_error(GOT_ERR_NO_OBJ);
4079 ec46ccd7 2020-01-15 tracey goto done;
4080 ec46ccd7 2020-01-15 tracey }
4081 ec46ccd7 2020-01-15 tracey
4082 deac617c 2020-02-14 tracey error = got_object_get_type(&obj_type, gw_trans->repo, obj_id);
4083 ec46ccd7 2020-01-15 tracey if (error)
4084 ec46ccd7 2020-01-15 tracey goto done;
4085 ec46ccd7 2020-01-15 tracey
4086 ec46ccd7 2020-01-15 tracey if (obj_type != GOT_OBJ_TYPE_BLOB) {
4087 ec46ccd7 2020-01-15 tracey error = got_error(GOT_ERR_OBJ_TYPE);
4088 ec46ccd7 2020-01-15 tracey goto done;
4089 ec46ccd7 2020-01-15 tracey }
4090 ec46ccd7 2020-01-15 tracey
4091 deac617c 2020-02-14 tracey error = got_object_open_as_blob(&blob, gw_trans->repo, obj_id, 8192);
4092 ec46ccd7 2020-01-15 tracey if (error)
4093 ec46ccd7 2020-01-15 tracey goto done;
4094 ec46ccd7 2020-01-15 tracey
4095 ec46ccd7 2020-01-15 tracey bca.f = got_opentemp();
4096 ec46ccd7 2020-01-15 tracey if (bca.f == NULL) {
4097 ec46ccd7 2020-01-15 tracey error = got_error_from_errno("got_opentemp");
4098 ec46ccd7 2020-01-15 tracey goto done;
4099 ec46ccd7 2020-01-15 tracey }
4100 ec46ccd7 2020-01-15 tracey error = got_object_blob_dump_to_file(&filesize, &bca.nlines,
4101 ec46ccd7 2020-01-15 tracey &bca.line_offsets, bca.f, blob);
4102 ec46ccd7 2020-01-15 tracey if (error || bca.nlines == 0)
4103 ec46ccd7 2020-01-15 tracey goto done;
4104 a81f3554 2020-02-03 stsp
4105 ec46ccd7 2020-01-15 tracey /* Don't include \n at EOF in the blame line count. */
4106 ec46ccd7 2020-01-15 tracey if (bca.line_offsets[bca.nlines - 1] == filesize)
4107 ec46ccd7 2020-01-15 tracey bca.nlines--;
4108 ec46ccd7 2020-01-15 tracey
4109 ec46ccd7 2020-01-15 tracey bca.lines = calloc(bca.nlines, sizeof(*bca.lines));
4110 ec46ccd7 2020-01-15 tracey if (bca.lines == NULL) {
4111 ec46ccd7 2020-01-15 tracey error = got_error_from_errno("calloc");
4112 ec46ccd7 2020-01-15 tracey goto done;
4113 ec46ccd7 2020-01-15 tracey }
4114 ec46ccd7 2020-01-15 tracey bca.lineno_cur = 1;
4115 ec46ccd7 2020-01-15 tracey bca.nlines_prec = 0;
4116 ec46ccd7 2020-01-15 tracey i = bca.nlines;
4117 ec46ccd7 2020-01-15 tracey while (i > 0) {
4118 ec46ccd7 2020-01-15 tracey i /= 10;
4119 ec46ccd7 2020-01-15 tracey bca.nlines_prec++;
4120 ec46ccd7 2020-01-15 tracey }
4121 deac617c 2020-02-14 tracey bca.repo = gw_trans->repo;
4122 2e676fc5 2020-01-15 tracey bca.gw_trans = gw_trans;
4123 ec46ccd7 2020-01-15 tracey
4124 deac617c 2020-02-14 tracey error = got_blame(in_repo_path, commit_id, gw_trans->repo, gw_blame_cb,
4125 deac617c 2020-02-14 tracey &bca, NULL, NULL);
4126 ec46ccd7 2020-01-15 tracey done:
4127 2e676fc5 2020-01-15 tracey free(in_repo_path);
4128 2e676fc5 2020-01-15 tracey free(commit_id);
4129 2e676fc5 2020-01-15 tracey free(obj_id);
4130 2e676fc5 2020-01-15 tracey free(path);
4131 2e676fc5 2020-01-15 tracey
4132 1b33afc0 2020-02-14 tracey if (blob) {
4133 1b33afc0 2020-02-14 tracey free(bca.line_offsets);
4134 1b33afc0 2020-02-14 tracey for (i = 0; i < bca.nlines; i++) {
4135 1b33afc0 2020-02-14 tracey struct blame_line *bline = &bca.lines[i];
4136 1b33afc0 2020-02-14 tracey free(bline->id_str);
4137 1b33afc0 2020-02-14 tracey free(bline->committer);
4138 1b33afc0 2020-02-14 tracey }
4139 1b33afc0 2020-02-14 tracey free(bca.lines);
4140 1b33afc0 2020-02-14 tracey if (bca.f && fclose(bca.f) == EOF && error == NULL)
4141 1b33afc0 2020-02-14 tracey error = got_error_from_errno("fclose");
4142 2e676fc5 2020-01-15 tracey }
4143 4fd4726a 2020-02-03 stsp if (blob)
4144 4fd4726a 2020-02-03 stsp got_object_blob_close(blob);
4145 945f9229 2022-04-16 thomas if (commit)
4146 945f9229 2022-04-16 thomas got_object_commit_close(commit);
4147 4fd4726a 2020-02-03 stsp return error;
4148 4fd4726a 2020-02-03 stsp }
4149 4fd4726a 2020-02-03 stsp
4150 4fd4726a 2020-02-03 stsp static const struct got_error *
4151 84de9106 2020-12-26 stsp gw_output_blob_buf(struct gw_trans *gw_trans, struct gw_header *header)
4152 4fd4726a 2020-02-03 stsp {
4153 4fd4726a 2020-02-03 stsp const struct got_error *error = NULL;
4154 4fd4726a 2020-02-03 stsp struct got_object_id *obj_id = NULL;
4155 4fd4726a 2020-02-03 stsp struct got_object_id *commit_id = NULL;
4156 945f9229 2022-04-16 thomas struct got_commit_object *commit = NULL;
4157 4fd4726a 2020-02-03 stsp struct got_blob_object *blob = NULL;
4158 4fd4726a 2020-02-03 stsp char *path = NULL, *in_repo_path = NULL;
4159 e0857cfe 2020-02-06 tracey int obj_type, set_mime = 0;
4160 e0857cfe 2020-02-06 tracey size_t len, hdrlen;
4161 e0857cfe 2020-02-06 tracey const uint8_t *buf;
4162 e0857cfe 2020-02-06 tracey enum kcgi_err kerr = KCGI_OK;
4163 4fd4726a 2020-02-03 stsp
4164 4fd4726a 2020-02-03 stsp if (asprintf(&path, "%s%s%s",
4165 4fd4726a 2020-02-03 stsp gw_trans->repo_folder ? gw_trans->repo_folder : "",
4166 4fd4726a 2020-02-03 stsp gw_trans->repo_folder ? "/" : "",
4167 4fd4726a 2020-02-03 stsp gw_trans->repo_file) == -1) {
4168 4fd4726a 2020-02-03 stsp error = got_error_from_errno("asprintf");
4169 4fd4726a 2020-02-03 stsp goto done;
4170 4fd4726a 2020-02-03 stsp }
4171 4fd4726a 2020-02-03 stsp
4172 8b4e047e 2020-11-15 stsp error = got_repo_map_path(&in_repo_path, gw_trans->repo, path);
4173 4fd4726a 2020-02-03 stsp if (error)
4174 4fd4726a 2020-02-03 stsp goto done;
4175 4fd4726a 2020-02-03 stsp
4176 56997cd3 2020-02-14 tracey error = got_repo_match_object_id(&commit_id, NULL, gw_trans->commit_id,
4177 84de9106 2020-12-26 stsp GOT_OBJ_TYPE_COMMIT, &header->refs, gw_trans->repo);
4178 4fd4726a 2020-02-03 stsp if (error)
4179 4fd4726a 2020-02-03 stsp goto done;
4180 4fd4726a 2020-02-03 stsp
4181 945f9229 2022-04-16 thomas error = got_object_open_as_commit(&commit, gw_trans->repo, commit_id);
4182 945f9229 2022-04-16 thomas if (error)
4183 945f9229 2022-04-16 thomas goto done;
4184 945f9229 2022-04-16 thomas
4185 945f9229 2022-04-16 thomas error = got_object_id_by_path(&obj_id, gw_trans->repo, commit,
4186 deac617c 2020-02-14 tracey in_repo_path);
4187 4fd4726a 2020-02-03 stsp if (error)
4188 4fd4726a 2020-02-03 stsp goto done;
4189 4fd4726a 2020-02-03 stsp
4190 4fd4726a 2020-02-03 stsp if (obj_id == NULL) {
4191 4fd4726a 2020-02-03 stsp error = got_error(GOT_ERR_NO_OBJ);
4192 4fd4726a 2020-02-03 stsp goto done;
4193 4fd4726a 2020-02-03 stsp }
4194 4fd4726a 2020-02-03 stsp
4195 deac617c 2020-02-14 tracey error = got_object_get_type(&obj_type, gw_trans->repo, obj_id);
4196 4fd4726a 2020-02-03 stsp if (error)
4197 4fd4726a 2020-02-03 stsp goto done;
4198 4fd4726a 2020-02-03 stsp
4199 4fd4726a 2020-02-03 stsp if (obj_type != GOT_OBJ_TYPE_BLOB) {
4200 4fd4726a 2020-02-03 stsp error = got_error(GOT_ERR_OBJ_TYPE);
4201 4fd4726a 2020-02-03 stsp goto done;
4202 4fd4726a 2020-02-03 stsp }
4203 4fd4726a 2020-02-03 stsp
4204 deac617c 2020-02-14 tracey error = got_object_open_as_blob(&blob, gw_trans->repo, obj_id, 8192);
4205 4fd4726a 2020-02-03 stsp if (error)
4206 4fd4726a 2020-02-03 stsp goto done;
4207 4fd4726a 2020-02-03 stsp
4208 e0857cfe 2020-02-06 tracey hdrlen = got_object_blob_get_hdrlen(blob);
4209 e0857cfe 2020-02-06 tracey do {
4210 e0857cfe 2020-02-06 tracey error = got_object_blob_read_block(&len, blob);
4211 e0857cfe 2020-02-06 tracey if (error)
4212 e0857cfe 2020-02-06 tracey goto done;
4213 e0857cfe 2020-02-06 tracey buf = got_object_blob_get_read_buf(blob);
4214 4fd4726a 2020-02-03 stsp
4215 e0857cfe 2020-02-06 tracey /*
4216 e0857cfe 2020-02-06 tracey * Skip blob object header first time around,
4217 e0857cfe 2020-02-06 tracey * which also contains a zero byte.
4218 e0857cfe 2020-02-06 tracey */
4219 e0857cfe 2020-02-06 tracey buf += hdrlen;
4220 e0857cfe 2020-02-06 tracey if (set_mime == 0) {
4221 e0857cfe 2020-02-06 tracey if (isbinary(buf, len - hdrlen))
4222 e0857cfe 2020-02-06 tracey gw_trans->mime = KMIME_APP_OCTET_STREAM;
4223 e0857cfe 2020-02-06 tracey else
4224 e0857cfe 2020-02-06 tracey gw_trans->mime = KMIME_TEXT_PLAIN;
4225 e0857cfe 2020-02-06 tracey set_mime = 1;
4226 e0857cfe 2020-02-06 tracey error = gw_display_index(gw_trans);
4227 e0857cfe 2020-02-06 tracey if (error)
4228 e0857cfe 2020-02-06 tracey goto done;
4229 e0857cfe 2020-02-06 tracey }
4230 3b7fdcf4 2020-02-14 tracey kerr = khttp_write(gw_trans->gw_req, buf, len - hdrlen);
4231 c56af3fd 2020-02-17 stsp if (kerr != KCGI_OK)
4232 c56af3fd 2020-02-17 stsp goto done;
4233 e0857cfe 2020-02-06 tracey hdrlen = 0;
4234 e0857cfe 2020-02-06 tracey } while (len != 0);
4235 4fd4726a 2020-02-03 stsp done:
4236 4fd4726a 2020-02-03 stsp free(in_repo_path);
4237 4fd4726a 2020-02-03 stsp free(commit_id);
4238 4fd4726a 2020-02-03 stsp free(obj_id);
4239 4fd4726a 2020-02-03 stsp free(path);
4240 e46f587c 2020-01-29 tracey if (blob)
4241 a81f3554 2020-02-03 stsp got_object_blob_close(blob);
4242 945f9229 2022-04-16 thomas if (commit)
4243 945f9229 2022-04-16 thomas got_object_commit_close(commit);
4244 e0857cfe 2020-02-06 tracey if (error == NULL && kerr != KCGI_OK)
4245 e0857cfe 2020-02-06 tracey error = gw_kcgi_error(kerr);
4246 a81f3554 2020-02-03 stsp return error;
4247 ec46ccd7 2020-01-15 tracey }
4248 ec46ccd7 2020-01-15 tracey
4249 84bf4df2 2020-02-03 stsp static const struct got_error *
4250 84de9106 2020-12-26 stsp gw_output_repo_tree(struct gw_trans *gw_trans, struct gw_header *header)
4251 ec46ccd7 2020-01-15 tracey {
4252 ec46ccd7 2020-01-15 tracey const struct got_error *error = NULL;
4253 bcbc97d8 2020-01-15 tracey struct got_object_id *tree_id = NULL, *commit_id = NULL;
4254 bcbc97d8 2020-01-15 tracey struct got_tree_object *tree = NULL;
4255 945f9229 2022-04-16 thomas struct got_commit_object *commit = NULL;
4256 626b25b6 2020-02-06 tracey char *path = NULL, *in_repo_path = NULL;
4257 84bf4df2 2020-02-03 stsp char *id_str = NULL;
4258 84bf4df2 2020-02-03 stsp char *build_folder = NULL;
4259 626b25b6 2020-02-06 tracey char *href_blob = NULL, *href_blame = NULL;
4260 84bf4df2 2020-02-03 stsp const char *class = NULL;
4261 c3bcdfd5 2020-01-29 tracey int nentries, i, class_flip = 0;
4262 626b25b6 2020-02-06 tracey enum kcgi_err kerr = KCGI_OK;
4263 8d4d2453 2020-01-15 tracey
4264 a942aa37 2020-02-10 tracey if (gw_trans->repo_folder != NULL) {
4265 d1635ae4 2020-02-13 tracey path = strdup(gw_trans->repo_folder);
4266 d1635ae4 2020-02-13 tracey if (path == NULL) {
4267 d1635ae4 2020-02-13 tracey error = got_error_from_errno("strdup");
4268 a942aa37 2020-02-10 tracey goto done;
4269 d1635ae4 2020-02-13 tracey }
4270 a942aa37 2020-02-10 tracey } else {
4271 deac617c 2020-02-14 tracey error = got_repo_map_path(&in_repo_path, gw_trans->repo,
4272 8b4e047e 2020-11-15 stsp gw_trans->repo_path);
4273 84bf4df2 2020-02-03 stsp if (error)
4274 84bf4df2 2020-02-03 stsp goto done;
4275 bcbc97d8 2020-01-15 tracey free(path);
4276 bcbc97d8 2020-01-15 tracey path = in_repo_path;
4277 bcbc97d8 2020-01-15 tracey }
4278 bcbc97d8 2020-01-15 tracey
4279 56997cd3 2020-02-14 tracey if (gw_trans->commit_id == NULL) {
4280 ec46ccd7 2020-01-15 tracey struct got_reference *head_ref;
4281 deac617c 2020-02-14 tracey error = got_ref_open(&head_ref, gw_trans->repo,
4282 deac617c 2020-02-14 tracey gw_trans->headref, 0);
4283 ec46ccd7 2020-01-15 tracey if (error)
4284 ec46ccd7 2020-01-15 tracey goto done;
4285 deac617c 2020-02-14 tracey error = got_ref_resolve(&commit_id, gw_trans->repo, head_ref);
4286 84bf4df2 2020-02-03 stsp if (error)
4287 84bf4df2 2020-02-03 stsp goto done;
4288 ec46ccd7 2020-01-15 tracey got_ref_close(head_ref);
4289 56997cd3 2020-02-14 tracey /*
4290 56997cd3 2020-02-14 tracey * gw_trans->commit_id was not parsed from the querystring
4291 56997cd3 2020-02-14 tracey * we hit this code path from gw_index, where we don't know the
4292 56997cd3 2020-02-14 tracey * commit values for the tree link yet, so set
4293 56997cd3 2020-02-14 tracey * gw_trans->commit_id here to continue further into the tree
4294 56997cd3 2020-02-14 tracey */
4295 56997cd3 2020-02-14 tracey error = got_object_id_str(&gw_trans->commit_id, commit_id);
4296 56997cd3 2020-02-14 tracey if (error)
4297 56997cd3 2020-02-14 tracey goto done;
4298 ec46ccd7 2020-01-15 tracey
4299 84bf4df2 2020-02-03 stsp } else {
4300 f2f46662 2020-01-23 tracey error = got_repo_match_object_id(&commit_id, NULL,
4301 84de9106 2020-12-26 stsp gw_trans->commit_id, GOT_OBJ_TYPE_COMMIT, &header->refs,
4302 56997cd3 2020-02-14 tracey gw_trans->repo);
4303 84bf4df2 2020-02-03 stsp if (error)
4304 84bf4df2 2020-02-03 stsp goto done;
4305 84bf4df2 2020-02-03 stsp }
4306 f2f46662 2020-01-23 tracey
4307 945f9229 2022-04-16 thomas error = got_object_open_as_commit(&commit, gw_trans->repo, commit_id);
4308 945f9229 2022-04-16 thomas if (error)
4309 945f9229 2022-04-16 thomas goto done;
4310 945f9229 2022-04-16 thomas
4311 945f9229 2022-04-16 thomas error = got_object_id_by_path(&tree_id, gw_trans->repo, commit,
4312 56997cd3 2020-02-14 tracey path);
4313 bcbc97d8 2020-01-15 tracey if (error)
4314 bcbc97d8 2020-01-15 tracey goto done;
4315 bcbc97d8 2020-01-15 tracey
4316 deac617c 2020-02-14 tracey error = got_object_open_as_tree(&tree, gw_trans->repo, tree_id);
4317 bcbc97d8 2020-01-15 tracey if (error)
4318 bcbc97d8 2020-01-15 tracey goto done;
4319 bcbc97d8 2020-01-15 tracey
4320 bcbc97d8 2020-01-15 tracey nentries = got_object_tree_get_nentries(tree);
4321 bcbc97d8 2020-01-15 tracey for (i = 0; i < nentries; i++) {
4322 bcbc97d8 2020-01-15 tracey struct got_tree_entry *te;
4323 ec46ccd7 2020-01-15 tracey const char *modestr = "";
4324 84bf4df2 2020-02-03 stsp mode_t mode;
4325 bcbc97d8 2020-01-15 tracey
4326 bcbc97d8 2020-01-15 tracey te = got_object_tree_get_entry(tree, i);
4327 bcbc97d8 2020-01-15 tracey
4328 bcbc97d8 2020-01-15 tracey error = got_object_id_str(&id_str, got_tree_entry_get_id(te));
4329 bcbc97d8 2020-01-15 tracey if (error)
4330 bcbc97d8 2020-01-15 tracey goto done;
4331 bcbc97d8 2020-01-15 tracey
4332 84bf4df2 2020-02-03 stsp mode = got_tree_entry_get_mode(te);
4333 bcbc97d8 2020-01-15 tracey if (got_object_tree_entry_is_submodule(te))
4334 bcbc97d8 2020-01-15 tracey modestr = "$";
4335 bcbc97d8 2020-01-15 tracey else if (S_ISLNK(mode))
4336 bcbc97d8 2020-01-15 tracey modestr = "@";
4337 bcbc97d8 2020-01-15 tracey else if (S_ISDIR(mode))
4338 bcbc97d8 2020-01-15 tracey modestr = "/";
4339 bcbc97d8 2020-01-15 tracey else if (mode & S_IXUSR)
4340 bcbc97d8 2020-01-15 tracey modestr = "*";
4341 c3bcdfd5 2020-01-29 tracey
4342 c3bcdfd5 2020-01-29 tracey if (class_flip == 0) {
4343 84bf4df2 2020-02-03 stsp class = "back_lightgray";
4344 c3bcdfd5 2020-01-29 tracey class_flip = 1;
4345 c3bcdfd5 2020-01-29 tracey } else {
4346 84bf4df2 2020-02-03 stsp class = "back_white";
4347 c3bcdfd5 2020-01-29 tracey class_flip = 0;
4348 c3bcdfd5 2020-01-29 tracey }
4349 bcbc97d8 2020-01-15 tracey
4350 84bf4df2 2020-02-03 stsp if (S_ISDIR(mode)) {
4351 a5594e37 2020-02-05 tracey if (asprintf(&build_folder, "%s/%s",
4352 84bf4df2 2020-02-03 stsp gw_trans->repo_folder ? gw_trans->repo_folder : "",
4353 84bf4df2 2020-02-03 stsp got_tree_entry_get_name(te)) == -1) {
4354 53e81e48 2020-02-13 tracey error = got_error_from_errno("asprintf");
4355 84bf4df2 2020-02-03 stsp goto done;
4356 ec46ccd7 2020-01-15 tracey }
4357 626b25b6 2020-02-06 tracey
4358 c6eb96ac 2020-04-14 tracey href_blob = khttp_urlpart(NULL, NULL, "gotweb", "path",
4359 c6eb96ac 2020-04-14 tracey gw_trans->repo_name, "action",
4360 c6eb96ac 2020-04-14 tracey gw_get_action_name(gw_trans), "commit",
4361 c6eb96ac 2020-04-14 tracey gw_trans->commit_id, "folder", build_folder, NULL);
4362 19ff7638 2020-04-14 tracey if (href_blob == NULL) {
4363 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpart");
4364 19ff7638 2020-04-14 tracey goto done;
4365 19ff7638 2020-04-14 tracey }
4366 626b25b6 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
4367 626b25b6 2020-02-06 tracey KATTR_ID, "tree_wrapper", KATTR__MAX);
4368 626b25b6 2020-02-06 tracey if (kerr != KCGI_OK)
4369 626b25b6 2020-02-06 tracey goto done;
4370 626b25b6 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
4371 626b25b6 2020-02-06 tracey KATTR_ID, "tree_line", KATTR_CLASS, class,
4372 626b25b6 2020-02-06 tracey KATTR__MAX);
4373 626b25b6 2020-02-06 tracey if (kerr != KCGI_OK)
4374 626b25b6 2020-02-06 tracey goto done;
4375 626b25b6 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
4376 626b25b6 2020-02-06 tracey KATTR_HREF, href_blob, KATTR_CLASS,
4377 626b25b6 2020-02-06 tracey "diff_directory", KATTR__MAX);
4378 626b25b6 2020-02-06 tracey if (kerr != KCGI_OK)
4379 626b25b6 2020-02-06 tracey goto done;
4380 32b9f7ed 2020-04-14 tracey kerr = khtml_printf(gw_trans->gw_html_req, "%s%s",
4381 32b9f7ed 2020-04-14 tracey got_tree_entry_get_name(te), modestr);
4382 626b25b6 2020-02-06 tracey if (kerr != KCGI_OK)
4383 626b25b6 2020-02-06 tracey goto done;
4384 626b25b6 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
4385 626b25b6 2020-02-06 tracey if (kerr != KCGI_OK)
4386 626b25b6 2020-02-06 tracey goto done;
4387 626b25b6 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
4388 626b25b6 2020-02-06 tracey KATTR_ID, "tree_line_blank", KATTR_CLASS, class,
4389 626b25b6 2020-02-06 tracey KATTR__MAX);
4390 626b25b6 2020-02-06 tracey if (kerr != KCGI_OK)
4391 84bf4df2 2020-02-03 stsp goto done;
4392 626b25b6 2020-02-06 tracey kerr = khtml_entity(gw_trans->gw_html_req,
4393 626b25b6 2020-02-06 tracey KENTITY_nbsp);
4394 626b25b6 2020-02-06 tracey if (kerr != KCGI_OK)
4395 626b25b6 2020-02-06 tracey goto done;
4396 626b25b6 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
4397 626b25b6 2020-02-06 tracey if (kerr != KCGI_OK)
4398 626b25b6 2020-02-06 tracey goto done;
4399 ec46ccd7 2020-01-15 tracey } else {
4400 c6eb96ac 2020-04-14 tracey href_blob = khttp_urlpart(NULL, NULL, "gotweb", "path",
4401 c6eb96ac 2020-04-14 tracey gw_trans->repo_name, "action", "blob", "commit",
4402 c6eb96ac 2020-04-14 tracey gw_trans->commit_id, "file",
4403 c6eb96ac 2020-04-14 tracey got_tree_entry_get_name(te), "folder",
4404 c6eb96ac 2020-04-14 tracey gw_trans->repo_folder ? gw_trans->repo_folder : "",
4405 c6eb96ac 2020-04-14 tracey NULL);
4406 19ff7638 2020-04-14 tracey if (href_blob == NULL) {
4407 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpart");
4408 19ff7638 2020-04-14 tracey goto done;
4409 19ff7638 2020-04-14 tracey }
4410 c6eb96ac 2020-04-14 tracey href_blame = khttp_urlpart(NULL, NULL, "gotweb", "path",
4411 c6eb96ac 2020-04-14 tracey gw_trans->repo_name, "action", "blame", "commit",
4412 c6eb96ac 2020-04-14 tracey gw_trans->commit_id, "file",
4413 c6eb96ac 2020-04-14 tracey got_tree_entry_get_name(te), "folder",
4414 c6eb96ac 2020-04-14 tracey gw_trans->repo_folder ? gw_trans->repo_folder : "",
4415 c6eb96ac 2020-04-14 tracey NULL);
4416 19ff7638 2020-04-14 tracey if (href_blame == NULL) {
4417 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpart");
4418 19ff7638 2020-04-14 tracey goto done;
4419 19ff7638 2020-04-14 tracey }
4420 626b25b6 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
4421 626b25b6 2020-02-06 tracey KATTR_ID, "tree_wrapper", KATTR__MAX);
4422 626b25b6 2020-02-06 tracey if (kerr != KCGI_OK)
4423 626b25b6 2020-02-06 tracey goto done;
4424 626b25b6 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
4425 626b25b6 2020-02-06 tracey KATTR_ID, "tree_line", KATTR_CLASS, class,
4426 626b25b6 2020-02-06 tracey KATTR__MAX);
4427 626b25b6 2020-02-06 tracey if (kerr != KCGI_OK)
4428 626b25b6 2020-02-06 tracey goto done;
4429 626b25b6 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
4430 626b25b6 2020-02-06 tracey KATTR_HREF, href_blob, KATTR__MAX);
4431 626b25b6 2020-02-06 tracey if (kerr != KCGI_OK)
4432 626b25b6 2020-02-06 tracey goto done;
4433 32b9f7ed 2020-04-14 tracey kerr = khtml_printf(gw_trans->gw_html_req, "%s%s",
4434 32b9f7ed 2020-04-14 tracey got_tree_entry_get_name(te), modestr);
4435 626b25b6 2020-02-06 tracey if (kerr != KCGI_OK)
4436 626b25b6 2020-02-06 tracey goto done;
4437 626b25b6 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
4438 626b25b6 2020-02-06 tracey if (kerr != KCGI_OK)
4439 626b25b6 2020-02-06 tracey goto done;
4440 626b25b6 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
4441 626b25b6 2020-02-06 tracey KATTR_ID, "tree_line_navs", KATTR_CLASS, class,
4442 626b25b6 2020-02-06 tracey KATTR__MAX);
4443 626b25b6 2020-02-06 tracey if (kerr != KCGI_OK)
4444 626b25b6 2020-02-06 tracey goto done;
4445 ec46ccd7 2020-01-15 tracey
4446 626b25b6 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
4447 626b25b6 2020-02-06 tracey KATTR_HREF, href_blob, KATTR__MAX);
4448 626b25b6 2020-02-06 tracey if (kerr != KCGI_OK)
4449 626b25b6 2020-02-06 tracey goto done;
4450 626b25b6 2020-02-06 tracey kerr = khtml_puts(gw_trans->gw_html_req, "blob");
4451 626b25b6 2020-02-06 tracey if (kerr != KCGI_OK)
4452 626b25b6 2020-02-06 tracey goto done;
4453 626b25b6 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
4454 626b25b6 2020-02-06 tracey if (kerr != KCGI_OK)
4455 626b25b6 2020-02-06 tracey goto done;
4456 626b25b6 2020-02-06 tracey
4457 626b25b6 2020-02-06 tracey kerr = khtml_puts(gw_trans->gw_html_req, " | ");
4458 626b25b6 2020-02-06 tracey if (kerr != KCGI_OK)
4459 626b25b6 2020-02-06 tracey goto done;
4460 626b25b6 2020-02-06 tracey
4461 626b25b6 2020-02-06 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
4462 626b25b6 2020-02-06 tracey KATTR_HREF, href_blame, KATTR__MAX);
4463 626b25b6 2020-02-06 tracey if (kerr != KCGI_OK)
4464 626b25b6 2020-02-06 tracey goto done;
4465 626b25b6 2020-02-06 tracey kerr = khtml_puts(gw_trans->gw_html_req, "blame");
4466 626b25b6 2020-02-06 tracey if (kerr != KCGI_OK)
4467 626b25b6 2020-02-06 tracey goto done;
4468 626b25b6 2020-02-06 tracey
4469 626b25b6 2020-02-06 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 3);
4470 626b25b6 2020-02-06 tracey if (kerr != KCGI_OK)
4471 626b25b6 2020-02-06 tracey goto done;
4472 626b25b6 2020-02-06 tracey }
4473 bcbc97d8 2020-01-15 tracey free(id_str);
4474 84bf4df2 2020-02-03 stsp id_str = NULL;
4475 626b25b6 2020-02-06 tracey free(href_blob);
4476 626b25b6 2020-02-06 tracey href_blob = NULL;
4477 84bf4df2 2020-02-03 stsp free(build_folder);
4478 84bf4df2 2020-02-03 stsp build_folder = NULL;
4479 bcbc97d8 2020-01-15 tracey }
4480 bcbc97d8 2020-01-15 tracey done:
4481 bcbc97d8 2020-01-15 tracey if (tree)
4482 bcbc97d8 2020-01-15 tracey got_object_tree_close(tree);
4483 945f9229 2022-04-16 thomas if (commit)
4484 945f9229 2022-04-16 thomas got_object_commit_close(commit);
4485 84bf4df2 2020-02-03 stsp free(id_str);
4486 626b25b6 2020-02-06 tracey free(href_blob);
4487 626b25b6 2020-02-06 tracey free(href_blame);
4488 2e676fc5 2020-01-15 tracey free(in_repo_path);
4489 bcbc97d8 2020-01-15 tracey free(tree_id);
4490 84bf4df2 2020-02-03 stsp free(build_folder);
4491 626b25b6 2020-02-06 tracey if (error == NULL && kerr != KCGI_OK)
4492 626b25b6 2020-02-06 tracey error = gw_kcgi_error(kerr);
4493 84bf4df2 2020-02-03 stsp return error;
4494 bcbc97d8 2020-01-15 tracey }
4495 bcbc97d8 2020-01-15 tracey
4496 51d4a92d 2020-02-03 tracey static const struct got_error *
4497 9eed6f10 2020-02-08 tracey gw_output_repo_heads(struct gw_trans *gw_trans)
4498 8d4d2453 2020-01-15 tracey {
4499 87f9ebf5 2020-01-15 tracey const struct got_error *error = NULL;
4500 87f9ebf5 2020-01-15 tracey struct got_reflist_head refs;
4501 87f9ebf5 2020-01-15 tracey struct got_reflist_entry *re;
4502 9eed6f10 2020-02-08 tracey char *age = NULL, *href_summary = NULL, *href_briefs = NULL;
4503 9eed6f10 2020-02-08 tracey char *href_commits = NULL;
4504 9eed6f10 2020-02-08 tracey enum kcgi_err kerr = KCGI_OK;
4505 51d4a92d 2020-02-03 tracey
4506 d9dff0e5 2020-12-26 stsp TAILQ_INIT(&refs);
4507 87f9ebf5 2020-01-15 tracey
4508 deac617c 2020-02-14 tracey error = got_ref_list(&refs, gw_trans->repo, "refs/heads",
4509 deac617c 2020-02-14 tracey got_ref_cmp_by_name, NULL);
4510 87f9ebf5 2020-01-15 tracey if (error)
4511 87f9ebf5 2020-01-15 tracey goto done;
4512 87f9ebf5 2020-01-15 tracey
4513 9eed6f10 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
4514 9eed6f10 2020-02-08 tracey KATTR_ID, "summary_heads_title_wrapper", KATTR__MAX);
4515 9eed6f10 2020-02-08 tracey if (kerr != KCGI_OK)
4516 9eed6f10 2020-02-08 tracey goto done;
4517 9eed6f10 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
4518 9eed6f10 2020-02-08 tracey KATTR_ID, "summary_heads_title", KATTR__MAX);
4519 9eed6f10 2020-02-08 tracey if (kerr != KCGI_OK)
4520 9eed6f10 2020-02-08 tracey goto done;
4521 9eed6f10 2020-02-08 tracey kerr = khtml_puts(gw_trans->gw_html_req, "Heads");
4522 9eed6f10 2020-02-08 tracey if (kerr != KCGI_OK)
4523 9eed6f10 2020-02-08 tracey goto done;
4524 9eed6f10 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
4525 9eed6f10 2020-02-08 tracey if (kerr != KCGI_OK)
4526 9eed6f10 2020-02-08 tracey goto done;
4527 9eed6f10 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
4528 9eed6f10 2020-02-08 tracey KATTR_ID, "summary_heads_content", KATTR__MAX);
4529 9eed6f10 2020-02-08 tracey if (kerr != KCGI_OK)
4530 9eed6f10 2020-02-08 tracey goto done;
4531 9eed6f10 2020-02-08 tracey
4532 d9dff0e5 2020-12-26 stsp TAILQ_FOREACH(re, &refs, entry) {
4533 7eb2c8df 2020-02-14 stsp const char *refname;
4534 87f9ebf5 2020-01-15 tracey
4535 eb4f3ad3 2020-02-14 stsp if (got_ref_is_symbolic(re->ref))
4536 eb4f3ad3 2020-02-14 stsp continue;
4537 eb4f3ad3 2020-02-14 stsp
4538 7eb2c8df 2020-02-14 stsp refname = got_ref_get_name(re->ref);
4539 7eb2c8df 2020-02-14 stsp if (strncmp(refname, "refs/heads/", 11) != 0)
4540 87f9ebf5 2020-01-15 tracey continue;
4541 87f9ebf5 2020-01-15 tracey
4542 017d6da3 2020-01-29 tracey error = gw_get_repo_age(&age, gw_trans, gw_trans->gw_dir->path,
4543 017d6da3 2020-01-29 tracey refname, TM_DIFF);
4544 d126c1b7 2020-01-29 stsp if (error)
4545 d126c1b7 2020-01-29 stsp goto done;
4546 87f9ebf5 2020-01-15 tracey
4547 9eed6f10 2020-02-08 tracey if (strncmp(refname, "refs/heads/", 11) == 0)
4548 9eed6f10 2020-02-08 tracey refname += 11;
4549 9eed6f10 2020-02-08 tracey
4550 9eed6f10 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
4551 9eed6f10 2020-02-08 tracey KATTR_ID, "heads_wrapper", KATTR__MAX);
4552 9eed6f10 2020-02-08 tracey if (kerr != KCGI_OK)
4553 9eed6f10 2020-02-08 tracey goto done;
4554 9eed6f10 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
4555 9eed6f10 2020-02-08 tracey KATTR_ID, "heads_age", KATTR__MAX);
4556 9eed6f10 2020-02-08 tracey if (kerr != KCGI_OK)
4557 9eed6f10 2020-02-08 tracey goto done;
4558 9eed6f10 2020-02-08 tracey kerr = khtml_puts(gw_trans->gw_html_req, age ? age : "");
4559 9eed6f10 2020-02-08 tracey if (kerr != KCGI_OK)
4560 9eed6f10 2020-02-08 tracey goto done;
4561 9eed6f10 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
4562 9eed6f10 2020-02-08 tracey if (kerr != KCGI_OK)
4563 9eed6f10 2020-02-08 tracey goto done;
4564 9eed6f10 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
4565 9eed6f10 2020-02-08 tracey KATTR_ID, "heads_space", KATTR__MAX);
4566 9eed6f10 2020-02-08 tracey if (kerr != KCGI_OK)
4567 9eed6f10 2020-02-08 tracey goto done;
4568 9eed6f10 2020-02-08 tracey kerr = khtml_entity(gw_trans->gw_html_req, KENTITY_nbsp);
4569 9eed6f10 2020-02-08 tracey if (kerr != KCGI_OK)
4570 9eed6f10 2020-02-08 tracey goto done;
4571 9eed6f10 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
4572 9eed6f10 2020-02-08 tracey if (kerr != KCGI_OK)
4573 9eed6f10 2020-02-08 tracey goto done;
4574 9eed6f10 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
4575 9eed6f10 2020-02-08 tracey KATTR_ID, "head", KATTR__MAX);
4576 9eed6f10 2020-02-08 tracey if (kerr != KCGI_OK)
4577 9eed6f10 2020-02-08 tracey goto done;
4578 e6789209 2020-04-14 tracey
4579 e6789209 2020-04-14 tracey href_summary = khttp_urlpart(NULL, NULL, "gotweb", "path",
4580 e6789209 2020-04-14 tracey gw_trans->repo_name, "action", "summary", "headref",
4581 19ff7638 2020-04-14 tracey refname, NULL);
4582 19ff7638 2020-04-14 tracey if (href_summary == NULL) {
4583 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpart");
4584 19ff7638 2020-04-14 tracey goto done;
4585 19ff7638 2020-04-14 tracey }
4586 9eed6f10 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF,
4587 9eed6f10 2020-02-08 tracey href_summary, KATTR__MAX);
4588 9eed6f10 2020-02-08 tracey kerr = khtml_puts(gw_trans->gw_html_req, refname);
4589 9eed6f10 2020-02-08 tracey if (kerr != KCGI_OK)
4590 9eed6f10 2020-02-08 tracey goto done;
4591 9eed6f10 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 3);
4592 9eed6f10 2020-02-08 tracey if (kerr != KCGI_OK)
4593 9eed6f10 2020-02-08 tracey goto done;
4594 87f9ebf5 2020-01-15 tracey
4595 9eed6f10 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
4596 9eed6f10 2020-02-08 tracey "navs_wrapper", KATTR__MAX);
4597 9eed6f10 2020-02-08 tracey if (kerr != KCGI_OK)
4598 9eed6f10 2020-02-08 tracey goto done;
4599 9eed6f10 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
4600 9eed6f10 2020-02-08 tracey "navs", KATTR__MAX);
4601 9eed6f10 2020-02-08 tracey if (kerr != KCGI_OK)
4602 9eed6f10 2020-02-08 tracey goto done;
4603 87f9ebf5 2020-01-15 tracey
4604 9eed6f10 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF,
4605 9eed6f10 2020-02-08 tracey href_summary, KATTR__MAX);
4606 9eed6f10 2020-02-08 tracey if (kerr != KCGI_OK)
4607 9eed6f10 2020-02-08 tracey goto done;
4608 9eed6f10 2020-02-08 tracey kerr = khtml_puts(gw_trans->gw_html_req, "summary");
4609 9eed6f10 2020-02-08 tracey if (kerr != KCGI_OK)
4610 9eed6f10 2020-02-08 tracey goto done;
4611 9eed6f10 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
4612 9eed6f10 2020-02-08 tracey if (kerr != KCGI_OK)
4613 9eed6f10 2020-02-08 tracey goto done;
4614 9eed6f10 2020-02-08 tracey
4615 9eed6f10 2020-02-08 tracey kerr = khtml_puts(gw_trans->gw_html_req, " | ");
4616 9eed6f10 2020-02-08 tracey if (kerr != KCGI_OK)
4617 87f9ebf5 2020-01-15 tracey goto done;
4618 e6789209 2020-04-14 tracey
4619 e6789209 2020-04-14 tracey href_briefs = khttp_urlpart(NULL, NULL, "gotweb", "path",
4620 e6789209 2020-04-14 tracey gw_trans->repo_name, "action", "briefs", "headref",
4621 e6789209 2020-04-14 tracey refname, NULL);
4622 19ff7638 2020-04-14 tracey if (href_briefs == NULL) {
4623 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpart");
4624 19ff7638 2020-04-14 tracey goto done;
4625 19ff7638 2020-04-14 tracey }
4626 9eed6f10 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF,
4627 9eed6f10 2020-02-08 tracey href_briefs, KATTR__MAX);
4628 9eed6f10 2020-02-08 tracey if (kerr != KCGI_OK)
4629 9eed6f10 2020-02-08 tracey goto done;
4630 9eed6f10 2020-02-08 tracey kerr = khtml_puts(gw_trans->gw_html_req, "commit briefs");
4631 9eed6f10 2020-02-08 tracey if (kerr != KCGI_OK)
4632 9eed6f10 2020-02-08 tracey goto done;
4633 9eed6f10 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
4634 9eed6f10 2020-02-08 tracey if (kerr != KCGI_OK)
4635 9eed6f10 2020-02-08 tracey goto done;
4636 87f9ebf5 2020-01-15 tracey
4637 9eed6f10 2020-02-08 tracey kerr = khtml_puts(gw_trans->gw_html_req, " | ");
4638 9eed6f10 2020-02-08 tracey if (kerr != KCGI_OK)
4639 9eed6f10 2020-02-08 tracey goto done;
4640 87f9ebf5 2020-01-15 tracey
4641 e6789209 2020-04-14 tracey href_commits = khttp_urlpart(NULL, NULL, "gotweb", "path",
4642 e6789209 2020-04-14 tracey gw_trans->repo_name, "action", "commits", "headref",
4643 19ff7638 2020-04-14 tracey refname, NULL);
4644 19ff7638 2020-04-14 tracey if (href_commits == NULL) {
4645 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpart");
4646 19ff7638 2020-04-14 tracey goto done;
4647 19ff7638 2020-04-14 tracey }
4648 9eed6f10 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF,
4649 9eed6f10 2020-02-08 tracey href_commits, KATTR__MAX);
4650 9eed6f10 2020-02-08 tracey if (kerr != KCGI_OK)
4651 9eed6f10 2020-02-08 tracey goto done;
4652 9eed6f10 2020-02-08 tracey kerr = khtml_puts(gw_trans->gw_html_req, "commits");
4653 9eed6f10 2020-02-08 tracey if (kerr != KCGI_OK)
4654 9eed6f10 2020-02-08 tracey goto done;
4655 9eed6f10 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 3);
4656 9eed6f10 2020-02-08 tracey if (kerr != KCGI_OK)
4657 9eed6f10 2020-02-08 tracey goto done;
4658 87f9ebf5 2020-01-15 tracey
4659 9eed6f10 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
4660 9eed6f10 2020-02-08 tracey "dotted_line", KATTR__MAX);
4661 9eed6f10 2020-02-08 tracey if (kerr != KCGI_OK)
4662 9eed6f10 2020-02-08 tracey goto done;
4663 9eed6f10 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
4664 9eed6f10 2020-02-08 tracey if (kerr != KCGI_OK)
4665 9eed6f10 2020-02-08 tracey goto done;
4666 9eed6f10 2020-02-08 tracey free(href_summary);
4667 9eed6f10 2020-02-08 tracey href_summary = NULL;
4668 9eed6f10 2020-02-08 tracey free(href_briefs);
4669 9eed6f10 2020-02-08 tracey href_briefs = NULL;
4670 9eed6f10 2020-02-08 tracey free(href_commits);
4671 9eed6f10 2020-02-08 tracey href_commits = NULL;
4672 6c6c85af 2020-01-15 tracey }
4673 87f9ebf5 2020-01-15 tracey done:
4674 87f9ebf5 2020-01-15 tracey got_ref_list_free(&refs);
4675 9eed6f10 2020-02-08 tracey free(href_summary);
4676 9eed6f10 2020-02-08 tracey free(href_briefs);
4677 9eed6f10 2020-02-08 tracey free(href_commits);
4678 51d4a92d 2020-02-03 tracey return error;
4679 8d4d2453 2020-01-15 tracey }
4680 8d4d2453 2020-01-15 tracey
4681 4ae179a2 2020-02-08 tracey static const struct got_error *
4682 4ae179a2 2020-02-08 tracey gw_output_site_link(struct gw_trans *gw_trans)
4683 2c251c14 2020-01-15 tracey {
4684 4ae179a2 2020-02-08 tracey const struct got_error *error = NULL;
4685 4ae179a2 2020-02-08 tracey char *href_summary = NULL;
4686 4ae179a2 2020-02-08 tracey enum kcgi_err kerr = KCGI_OK;
4687 2c251c14 2020-01-15 tracey
4688 4ae179a2 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
4689 4ae179a2 2020-02-08 tracey "site_link", KATTR__MAX);
4690 4ae179a2 2020-02-08 tracey if (kerr != KCGI_OK)
4691 4ae179a2 2020-02-08 tracey goto done;
4692 4ae179a2 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF, GOTWEB,
4693 4ae179a2 2020-02-08 tracey KATTR__MAX);
4694 4ae179a2 2020-02-08 tracey if (kerr != KCGI_OK)
4695 4ae179a2 2020-02-08 tracey goto done;
4696 4ae179a2 2020-02-08 tracey kerr = khtml_puts(gw_trans->gw_html_req,
4697 62d463ca 2020-10-20 naddy gw_trans->gw_conf->got_site_link);
4698 4ae179a2 2020-02-08 tracey if (kerr != KCGI_OK)
4699 4ae179a2 2020-02-08 tracey goto done;
4700 4ae179a2 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
4701 4ae179a2 2020-02-08 tracey if (kerr != KCGI_OK)
4702 4ae179a2 2020-02-08 tracey goto done;
4703 2c251c14 2020-01-15 tracey
4704 4ae179a2 2020-02-08 tracey if (gw_trans->repo_name != NULL) {
4705 4ae179a2 2020-02-08 tracey kerr = khtml_puts(gw_trans->gw_html_req, " / ");
4706 4ae179a2 2020-02-08 tracey if (kerr != KCGI_OK)
4707 4ae179a2 2020-02-08 tracey goto done;
4708 6918c609 2020-04-14 tracey
4709 6918c609 2020-04-14 tracey href_summary = khttp_urlpart(NULL, NULL, "gotweb", "path",
4710 19ff7638 2020-04-14 tracey gw_trans->repo_name, "action", "summary", NULL);
4711 19ff7638 2020-04-14 tracey if (href_summary == NULL) {
4712 19ff7638 2020-04-14 tracey error = got_error_from_errno("khttp_urlpart");
4713 19ff7638 2020-04-14 tracey goto done;
4714 19ff7638 2020-04-14 tracey }
4715 4ae179a2 2020-02-08 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF,
4716 4ae179a2 2020-02-08 tracey href_summary, KATTR__MAX);
4717 4ae179a2 2020-02-08 tracey if (kerr != KCGI_OK)
4718 4ae179a2 2020-02-08 tracey goto done;
4719 4ae179a2 2020-02-08 tracey kerr = khtml_puts(gw_trans->gw_html_req, gw_trans->repo_name);
4720 4ae179a2 2020-02-08 tracey if (kerr != KCGI_OK)
4721 4ae179a2 2020-02-08 tracey goto done;
4722 4ae179a2 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
4723 4ae179a2 2020-02-08 tracey if (kerr != KCGI_OK)
4724 4ae179a2 2020-02-08 tracey goto done;
4725 32b9f7ed 2020-04-14 tracey kerr = khtml_printf(gw_trans->gw_html_req, " / %s",
4726 5d1296de 2020-02-13 stsp gw_get_action_name(gw_trans));
4727 4ae179a2 2020-02-08 tracey if (kerr != KCGI_OK)
4728 4ae179a2 2020-02-08 tracey goto done;
4729 eb89db64 2020-02-03 stsp }
4730 2c251c14 2020-01-15 tracey
4731 4ae179a2 2020-02-08 tracey kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
4732 4ae179a2 2020-02-08 tracey if (kerr != KCGI_OK)
4733 4ae179a2 2020-02-08 tracey goto done;
4734 4ae179a2 2020-02-08 tracey done:
4735 4ae179a2 2020-02-08 tracey free(href_summary);
4736 6918c609 2020-04-14 tracey if (error == NULL && kerr != KCGI_OK)
4737 6918c609 2020-04-14 tracey error = gw_kcgi_error(kerr);
4738 4ae179a2 2020-02-08 tracey return error;
4739 2c251c14 2020-01-15 tracey }
4740 2c251c14 2020-01-15 tracey
4741 83eb9a68 2020-02-03 stsp static const struct got_error *
4742 f7cc9480 2020-02-05 tracey gw_colordiff_line(struct gw_trans *gw_trans, char *buf)
4743 ec46ccd7 2020-01-15 tracey {
4744 ec46ccd7 2020-01-15 tracey const struct got_error *error = NULL;
4745 f7cc9480 2020-02-05 tracey char *color = NULL;
4746 f7cc9480 2020-02-05 tracey enum kcgi_err kerr = KCGI_OK;
4747 83eb9a68 2020-02-03 stsp
4748 ec46ccd7 2020-01-15 tracey if (strncmp(buf, "-", 1) == 0)
4749 ec46ccd7 2020-01-15 tracey color = "diff_minus";
4750 83eb9a68 2020-02-03 stsp else if (strncmp(buf, "+", 1) == 0)
4751 ec46ccd7 2020-01-15 tracey color = "diff_plus";
4752 83eb9a68 2020-02-03 stsp else if (strncmp(buf, "@@", 2) == 0)
4753 ec46ccd7 2020-01-15 tracey color = "diff_chunk_header";
4754 83eb9a68 2020-02-03 stsp else if (strncmp(buf, "@@", 2) == 0)
4755 ec46ccd7 2020-01-15 tracey color = "diff_chunk_header";
4756 83eb9a68 2020-02-03 stsp else if (strncmp(buf, "commit +", 8) == 0)
4757 ec46ccd7 2020-01-15 tracey color = "diff_meta";
4758 83eb9a68 2020-02-03 stsp else if (strncmp(buf, "commit -", 8) == 0)
4759 ec46ccd7 2020-01-15 tracey color = "diff_meta";
4760 83eb9a68 2020-02-03 stsp else if (strncmp(buf, "blob +", 6) == 0)
4761 ec46ccd7 2020-01-15 tracey color = "diff_meta";
4762 83eb9a68 2020-02-03 stsp else if (strncmp(buf, "blob -", 6) == 0)
4763 ec46ccd7 2020-01-15 tracey color = "diff_meta";
4764 83eb9a68 2020-02-03 stsp else if (strncmp(buf, "file +", 6) == 0)
4765 ec46ccd7 2020-01-15 tracey color = "diff_meta";
4766 83eb9a68 2020-02-03 stsp else if (strncmp(buf, "file -", 6) == 0)
4767 ec46ccd7 2020-01-15 tracey color = "diff_meta";
4768 83eb9a68 2020-02-03 stsp else if (strncmp(buf, "from:", 5) == 0)
4769 ec46ccd7 2020-01-15 tracey color = "diff_author";
4770 83eb9a68 2020-02-03 stsp else if (strncmp(buf, "via:", 4) == 0)
4771 ec46ccd7 2020-01-15 tracey color = "diff_author";
4772 83eb9a68 2020-02-03 stsp else if (strncmp(buf, "date:", 5) == 0)
4773 ec46ccd7 2020-01-15 tracey color = "diff_date";
4774 f7cc9480 2020-02-05 tracey kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
4775 f7cc9480 2020-02-05 tracey "diff_line", KATTR_CLASS, color ? color : "", KATTR__MAX);
4776 f7cc9480 2020-02-05 tracey if (error == NULL && kerr != KCGI_OK)
4777 2447adad 2020-02-06 stsp error = gw_kcgi_error(kerr);
4778 070fee27 2020-02-03 stsp return error;
4779 2c251c14 2020-01-15 tracey }
4780 2c251c14 2020-01-15 tracey
4781 2c251c14 2020-01-15 tracey int
4782 c08369d7 2020-01-15 tracey main(int argc, char *argv[])
4783 2c251c14 2020-01-15 tracey {
4784 6648f956 2021-04-26 tracey const struct got_error *error = NULL, *error2 = NULL;
4785 54415d85 2020-01-15 tracey struct gw_trans *gw_trans;
4786 2c251c14 2020-01-15 tracey struct gw_dir *dir = NULL, *tdir;
4787 2c251c14 2020-01-15 tracey const char *page = "index";
4788 795c10a4 2020-02-20 tracey enum kcgi_err kerr = KCGI_OK;
4789 2c251c14 2020-01-15 tracey
4790 54415d85 2020-01-15 tracey if ((gw_trans = malloc(sizeof(struct gw_trans))) == NULL)
4791 2c251c14 2020-01-15 tracey errx(1, "malloc");
4792 2c251c14 2020-01-15 tracey
4793 2c251c14 2020-01-15 tracey if ((gw_trans->gw_req = malloc(sizeof(struct kreq))) == NULL)
4794 2c251c14 2020-01-15 tracey errx(1, "malloc");
4795 2c251c14 2020-01-15 tracey
4796 2c251c14 2020-01-15 tracey if ((gw_trans->gw_html_req = malloc(sizeof(struct khtmlreq))) == NULL)
4797 2c251c14 2020-01-15 tracey errx(1, "malloc");
4798 2c251c14 2020-01-15 tracey
4799 2c251c14 2020-01-15 tracey if ((gw_trans->gw_tmpl = malloc(sizeof(struct ktemplate))) == NULL)
4800 2c251c14 2020-01-15 tracey errx(1, "malloc");
4801 2c251c14 2020-01-15 tracey
4802 c25c2314 2020-01-28 stsp kerr = khttp_parse(gw_trans->gw_req, gw_keys, KEY__ZMAX, &page, 1, 0);
4803 c25c2314 2020-01-28 stsp if (kerr != KCGI_OK) {
4804 2447adad 2020-02-06 stsp error = gw_kcgi_error(kerr);
4805 c119608e 2020-01-28 stsp goto done;
4806 46b9c89b 2020-01-15 tracey }
4807 46b9c89b 2020-01-15 tracey
4808 2c251c14 2020-01-15 tracey TAILQ_INIT(&gw_trans->gw_dirs);
4809 f2f46662 2020-01-23 tracey TAILQ_INIT(&gw_trans->gw_headers);
4810 2c251c14 2020-01-15 tracey
4811 f1200fe3 2020-02-13 tracey gw_trans->action = -1;
4812 2c251c14 2020-01-15 tracey gw_trans->page = 0;
4813 2c251c14 2020-01-15 tracey gw_trans->repos_total = 0;
4814 2c251c14 2020-01-15 tracey gw_trans->repo_path = NULL;
4815 56997cd3 2020-02-14 tracey gw_trans->commit_id = NULL;
4816 55e46400 2020-02-18 tracey gw_trans->next_id = NULL;
4817 55e46400 2020-02-18 tracey gw_trans->prev_id = NULL;
4818 742ba378 2020-02-14 stsp gw_trans->headref = GOT_REF_HEAD;
4819 2c251c14 2020-01-15 tracey gw_trans->mime = KMIME_TEXT_HTML;
4820 54415d85 2020-01-15 tracey gw_trans->gw_tmpl->key = gw_templs;
4821 2c251c14 2020-01-15 tracey gw_trans->gw_tmpl->keysz = TEMPL__MAX;
4822 2c251c14 2020-01-15 tracey gw_trans->gw_tmpl->arg = gw_trans;
4823 2c251c14 2020-01-15 tracey gw_trans->gw_tmpl->cb = gw_template;
4824 c34ec417 2020-06-22 tracey
4825 c34ec417 2020-06-22 tracey error = parse_gotweb_config(&gw_trans->gw_conf, GOTWEB_CONF);
4826 c119608e 2020-01-28 stsp if (error)
4827 2c251c14 2020-01-15 tracey goto done;
4828 2c251c14 2020-01-15 tracey
4829 2c251c14 2020-01-15 tracey error = gw_parse_querystring(gw_trans);
4830 2c251c14 2020-01-15 tracey if (error)
4831 c119608e 2020-01-28 stsp goto done;
4832 2c251c14 2020-01-15 tracey
4833 017d6da3 2020-01-29 tracey if (gw_trans->action == GW_BLOB)
4834 017d6da3 2020-01-29 tracey error = gw_blob(gw_trans);
4835 017d6da3 2020-01-29 tracey else
4836 017d6da3 2020-01-29 tracey error = gw_display_index(gw_trans);
4837 2c251c14 2020-01-15 tracey done:
4838 1d0f4054 2021-06-17 stsp if (gw_trans->repo) {
4839 1d0f4054 2021-06-17 stsp const struct got_error *close_err;
4840 1d0f4054 2021-06-17 stsp close_err = got_repo_close(gw_trans->repo);
4841 1d0f4054 2021-06-17 stsp if (error == NULL)
4842 1d0f4054 2021-06-17 stsp error = close_err;
4843 1d0f4054 2021-06-17 stsp }
4844 6648f956 2021-04-26 tracey if (error) {
4845 6648f956 2021-04-26 tracey gw_trans->error = error;
4846 6648f956 2021-04-26 tracey gw_trans->action = GW_ERR;
4847 6648f956 2021-04-26 tracey error2 = gw_display_open(gw_trans, KHTTP_200, gw_trans->mime);
4848 6648f956 2021-04-26 tracey if (error2)
4849 6648f956 2021-04-26 tracey goto cleanup; /* we can't display an error page */
4850 6648f956 2021-04-26 tracey kerr = khtml_open(gw_trans->gw_html_req, gw_trans->gw_req, 0);
4851 6648f956 2021-04-26 tracey if (kerr != KCGI_OK)
4852 6648f956 2021-04-26 tracey goto cleanup; /* we can't display an error page */
4853 6648f956 2021-04-26 tracey kerr = khttp_template(gw_trans->gw_req, gw_trans->gw_tmpl,
4854 6648f956 2021-04-26 tracey gw_query_funcs[gw_trans->action].template);
4855 6648f956 2021-04-26 tracey if (kerr != KCGI_OK) {
4856 6648f956 2021-04-26 tracey khtml_close(gw_trans->gw_html_req);
4857 6648f956 2021-04-26 tracey goto cleanup; /* we can't display an error page */
4858 6648f956 2021-04-26 tracey }
4859 6648f956 2021-04-26 tracey }
4860 6648f956 2021-04-26 tracey
4861 6648f956 2021-04-26 tracey cleanup:
4862 a5a8a332 2020-11-09 tracey free(gw_trans->gw_conf->got_repos_path);
4863 a5a8a332 2020-11-09 tracey free(gw_trans->gw_conf->got_www_path);
4864 a5a8a332 2020-11-09 tracey free(gw_trans->gw_conf->got_site_name);
4865 a5a8a332 2020-11-09 tracey free(gw_trans->gw_conf->got_site_owner);
4866 a5a8a332 2020-11-09 tracey free(gw_trans->gw_conf->got_site_link);
4867 a5a8a332 2020-11-09 tracey free(gw_trans->gw_conf->got_logo);
4868 a5a8a332 2020-11-09 tracey free(gw_trans->gw_conf->got_logo_url);
4869 a5a8a332 2020-11-09 tracey free(gw_trans->gw_conf);
4870 a5a8a332 2020-11-09 tracey free(gw_trans->commit_id);
4871 a5a8a332 2020-11-09 tracey free(gw_trans->next_id);
4872 a5a8a332 2020-11-09 tracey free(gw_trans->prev_id);
4873 a5a8a332 2020-11-09 tracey free(gw_trans->repo_path);
4874 a5a8a332 2020-11-09 tracey TAILQ_FOREACH_SAFE(dir, &gw_trans->gw_dirs, entry, tdir) {
4875 a5a8a332 2020-11-09 tracey free(dir->name);
4876 a5a8a332 2020-11-09 tracey free(dir->description);
4877 a5a8a332 2020-11-09 tracey free(dir->age);
4878 a5a8a332 2020-11-09 tracey free(dir->url);
4879 a5a8a332 2020-11-09 tracey free(dir->path);
4880 a5a8a332 2020-11-09 tracey free(dir);
4881 2c251c14 2020-01-15 tracey }
4882 2c251c14 2020-01-15 tracey
4883 2c251c14 2020-01-15 tracey khttp_free(gw_trans->gw_req);
4884 d56b34ca 2020-01-29 stsp return 0;
4885 2c251c14 2020-01-15 tracey }