2 * Copyright (c) 2019, 2020 Tracey Emery <tracey@traceyemery.net>
3 * Copyright (c) 2018, 2019 Stefan Sperling <stsp@openbsd.org>
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18 #include <sys/queue.h>
20 #include <sys/types.h>
34 #include <got_error.h>
35 #include <got_object.h>
36 #include <got_reference.h>
37 #include <got_repository.h>
39 #include <got_cancel.h>
40 #include <got_worktree.h>
42 #include <got_commit_graph.h>
43 #include <got_blame.h>
44 #include <got_privsep.h>
45 #include <got_opentemp.h>
53 #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
57 TAILQ_HEAD(headers, gw_header) gw_headers;
58 TAILQ_HEAD(dirs, gw_dir) gw_dirs;
59 struct got_repository *repo;
60 struct gw_dir *gw_dir;
61 struct gotweb_config *gw_conf;
62 struct ktemplate *gw_tmpl;
63 struct khtmlreq *gw_html_req;
65 const struct got_error *error;
66 const char *repo_name;
71 const char *repo_file;
76 unsigned int repos_total;
81 TAILQ_ENTRY(gw_header) entry;
82 struct got_reflist_head refs;
86 char *commit_id; /* id_str1 */
87 char *parent_id; /* id_str2 */
92 time_t committer_time;
96 TAILQ_ENTRY(gw_dir) entry;
138 static const char *const gw_templs[TEMPL__MAX] = {
148 static const struct kvalid gw_keys[KEY__ZMAX] = {
149 { kvalid_stringne, "action" },
150 { kvalid_stringne, "commit" },
151 { kvalid_stringne, "file" },
152 { kvalid_stringne, "folder" },
153 { kvalid_stringne, "headref" },
154 { kvalid_int, "page" },
155 { kvalid_stringne, "path" },
156 { kvalid_stringne, "prev" },
159 static struct gw_header *gw_init_header(void);
161 static void gw_free_header(struct gw_header *);
163 static int gw_template(size_t, void *);
165 static const struct got_error *gw_error(struct gw_trans *);
166 static const struct got_error *gw_init_gw_dir(struct gw_dir **, const char *);
167 static const struct got_error *gw_get_repo_description(char **,
168 struct gw_trans *, char *);
169 static const struct got_error *gw_get_repo_owner(char **, struct gw_trans *,
171 static const struct got_error *gw_get_time_str(char **, time_t, int);
172 static const struct got_error *gw_get_repo_age(char **, struct gw_trans *,
173 char *, const char *, int);
174 static const struct got_error *gw_output_file_blame(struct gw_trans *,
176 static const struct got_error *gw_output_blob_buf(struct gw_trans *,
178 static const struct got_error *gw_output_repo_tree(struct gw_trans *,
180 static const struct got_error *gw_output_diff(struct gw_trans *,
182 static const struct got_error *gw_output_repo_tags(struct gw_trans *,
183 struct gw_header *, int, int);
184 static const struct got_error *gw_output_repo_heads(struct gw_trans *);
185 static const struct got_error *gw_output_site_link(struct gw_trans *);
186 static const struct got_error *gw_get_clone_url(char **, struct gw_trans *,
188 static const struct got_error *gw_colordiff_line(struct gw_trans *, char *);
190 static const struct got_error *gw_gen_commit_header(struct gw_trans *, char *,
192 static const struct got_error *gw_gen_diff_header(struct gw_trans *, char *,
194 static const struct got_error *gw_gen_author_header(struct gw_trans *,
196 static const struct got_error *gw_gen_age_header(struct gw_trans *,
198 static const struct got_error *gw_gen_committer_header(struct gw_trans *,
200 static const struct got_error *gw_gen_commit_msg_header(struct gw_trans*,
202 static const struct got_error *gw_gen_tree_header(struct gw_trans *, char *);
203 static const struct got_error *gw_display_open(struct gw_trans *, enum khttp,
205 static const struct got_error *gw_display_index(struct gw_trans *);
206 static const struct got_error *gw_get_header(struct gw_trans *,
207 struct gw_header *, int);
208 static const struct got_error *gw_get_commits(struct gw_trans *,
209 struct gw_header *, int,
210 struct got_object_id *);
211 static const struct got_error *gw_get_commit(struct gw_trans *,
213 struct got_commit_object *,
214 struct got_object_id *);
215 static const struct got_error *gw_apply_unveil(const char *);
216 static const struct got_error *gw_blame_cb(void *, int, int,
217 struct got_object_id *);
218 static const struct got_error *gw_load_got_paths(struct gw_trans *);
219 static const struct got_error *gw_load_got_path(struct gw_trans *,
221 static const struct got_error *gw_parse_querystring(struct gw_trans *);
222 static const struct got_error *gw_blame(struct gw_trans *);
223 static const struct got_error *gw_blob(struct gw_trans *);
224 static const struct got_error *gw_diff(struct gw_trans *);
225 static const struct got_error *gw_index(struct gw_trans *);
226 static const struct got_error *gw_commits(struct gw_trans *);
227 static const struct got_error *gw_briefs(struct gw_trans *);
228 static const struct got_error *gw_summary(struct gw_trans *);
229 static const struct got_error *gw_tree(struct gw_trans *);
230 static const struct got_error *gw_tag(struct gw_trans *);
231 static const struct got_error *gw_tags(struct gw_trans *);
233 struct gw_query_action {
234 unsigned int func_id;
235 const char *func_name;
236 const struct got_error *(*func_main)(struct gw_trans *);
240 enum gw_query_actions {
254 static struct gw_query_action gw_query_funcs[] = {
255 { GW_BLAME, "blame", gw_blame, "gw_tmpl/blame.tmpl" },
256 { GW_BLOB, "blob", NULL, NULL },
257 { GW_BRIEFS, "briefs", gw_briefs, "gw_tmpl/briefs.tmpl" },
258 { GW_COMMITS, "commits", gw_commits, "gw_tmpl/commit.tmpl" },
259 { GW_DIFF, "diff", gw_diff, "gw_tmpl/diff.tmpl" },
260 { GW_ERR, "error", gw_error, "gw_tmpl/err.tmpl" },
261 { GW_INDEX, "index", gw_index, "gw_tmpl/index.tmpl" },
262 { GW_SUMMARY, "summary", gw_summary, "gw_tmpl/summry.tmpl" },
263 { GW_TAG, "tag", gw_tag, "gw_tmpl/tag.tmpl" },
264 { GW_TAGS, "tags", gw_tags, "gw_tmpl/tags.tmpl" },
265 { GW_TREE, "tree", gw_tree, "gw_tmpl/tree.tmpl" },
269 gw_get_action_name(struct gw_trans *gw_trans)
271 return gw_query_funcs[gw_trans->action].func_name;
274 static const struct got_error *
275 gw_kcgi_error(enum kcgi_err kerr)
280 if (kerr == KCGI_EXIT || kerr == KCGI_HUP)
281 return got_error(GOT_ERR_CANCELLED);
283 if (kerr == KCGI_ENOMEM)
284 return got_error_set_errno(ENOMEM,
285 kcgi_strerror(kerr));
287 if (kerr == KCGI_ENFILE)
288 return got_error_set_errno(ENFILE,
289 kcgi_strerror(kerr));
291 if (kerr == KCGI_EAGAIN)
292 return got_error_set_errno(EAGAIN,
293 kcgi_strerror(kerr));
295 if (kerr == KCGI_FORM)
296 return got_error_msg(GOT_ERR_IO,
297 kcgi_strerror(kerr));
299 return got_error_from_errno(kcgi_strerror(kerr));
302 static const struct got_error *
303 gw_apply_unveil(const char *repo_path)
305 const struct got_error *err;
308 if (unveil("gmon.out", "rwc") != 0)
309 return got_error_from_errno2("unveil", "gmon.out");
311 if (repo_path && unveil(repo_path, "r") != 0)
312 return got_error_from_errno2("unveil", repo_path);
314 if (unveil(GOT_TMPDIR_STR, "rwc") != 0)
315 return got_error_from_errno2("unveil", GOT_TMPDIR_STR);
317 err = got_privsep_unveil_exec_helpers();
321 if (unveil(NULL, NULL) != 0)
322 return got_error_from_errno("unveil");
328 isbinary(const uint8_t *buf, size_t n)
332 for (i = 0; i < n; i++)
338 static const struct got_error *
339 gw_blame(struct gw_trans *gw_trans)
341 const struct got_error *error = NULL;
342 struct gw_header *header = NULL;
344 enum kcgi_err kerr = KCGI_OK;
347 if (pledge("stdio rpath wpath cpath proc exec sendfd unveil",
349 return got_error_from_errno("pledge");
351 if ((header = gw_init_header()) == NULL)
352 return got_error_from_errno("malloc");
354 error = gw_apply_unveil(gw_trans->gw_dir->path);
358 /* check querystring */
359 if (gw_trans->repo_file == NULL) {
360 error = got_error_msg(GOT_ERR_QUERYSTRING,
361 "file required in querystring");
364 if (gw_trans->commit_id == NULL) {
365 error = got_error_msg(GOT_ERR_QUERYSTRING,
366 "commit required in querystring");
370 error = gw_get_header(gw_trans, header, 1);
373 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
374 "blame_header_wrapper", KATTR__MAX);
377 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
378 "blame_header", KATTR__MAX);
381 error = gw_get_time_str(&age, header->committer_time,
385 error = gw_gen_age_header(gw_trans, age ?age : "");
388 error = gw_gen_commit_msg_header(gw_trans, header->commit_msg);
391 kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
394 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
395 "dotted_line", KATTR__MAX);
398 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
402 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
403 "blame", KATTR__MAX);
406 error = gw_output_file_blame(gw_trans, header);
409 kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
411 gw_free_header(header);
412 if (error == NULL && kerr != KCGI_OK)
413 error = gw_kcgi_error(kerr);
417 static const struct got_error *
418 gw_blob(struct gw_trans *gw_trans)
420 const struct got_error *error = NULL, *err = NULL;
421 struct gw_header *header = NULL;
422 enum kcgi_err kerr = KCGI_OK;
425 if (pledge("stdio rpath wpath cpath proc exec sendfd unveil",
427 return got_error_from_errno("pledge");
429 if ((header = gw_init_header()) == NULL)
430 return got_error_from_errno("malloc");
432 error = gw_apply_unveil(gw_trans->gw_dir->path);
436 /* check querystring */
437 if (gw_trans->repo_file == NULL) {
438 error = got_error_msg(GOT_ERR_QUERYSTRING,
439 "file required in querystring");
442 if (gw_trans->commit_id == NULL) {
443 error = got_error_msg(GOT_ERR_QUERYSTRING,
444 "commit required in querystring");
447 error = gw_get_header(gw_trans, header, 1);
451 error = gw_output_blob_buf(gw_trans, header);
455 gw_trans->mime = KMIME_TEXT_PLAIN;
456 err = gw_display_index(gw_trans);
461 kerr = khttp_puts(gw_trans->gw_req, error->msg);
464 gw_free_header(header);
465 if (error == NULL && kerr != KCGI_OK)
466 error = gw_kcgi_error(kerr);
470 static const struct got_error *
471 gw_diff(struct gw_trans *gw_trans)
473 const struct got_error *error = NULL;
474 struct gw_header *header = NULL;
476 enum kcgi_err kerr = KCGI_OK;
479 if (pledge("stdio rpath wpath cpath proc exec sendfd unveil",
481 return got_error_from_errno("pledge");
483 if ((header = gw_init_header()) == NULL)
484 return got_error_from_errno("malloc");
486 error = gw_apply_unveil(gw_trans->gw_dir->path);
490 error = gw_get_header(gw_trans, header, 1);
494 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
495 "diff_header_wrapper", KATTR__MAX);
498 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
499 "diff_header", KATTR__MAX);
502 error = gw_gen_diff_header(gw_trans, header->parent_id,
506 error = gw_gen_commit_header(gw_trans, header->commit_id,
510 error = gw_gen_tree_header(gw_trans, header->tree_id);
513 error = gw_gen_author_header(gw_trans, header->author);
516 error = gw_gen_committer_header(gw_trans, header->author);
519 error = gw_get_time_str(&age, header->committer_time,
523 error = gw_gen_age_header(gw_trans, age ?age : "");
526 error = gw_gen_commit_msg_header(gw_trans, header->commit_msg);
529 kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
532 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
533 "dotted_line", KATTR__MAX);
536 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
540 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
544 error = gw_output_diff(gw_trans, header);
548 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
550 gw_free_header(header);
552 if (error == NULL && kerr != KCGI_OK)
553 error = gw_kcgi_error(kerr);
557 static const struct got_error *
558 gw_index(struct gw_trans *gw_trans)
560 const struct got_error *error = NULL;
561 struct gw_dir *gw_dir = NULL;
562 char *href_next = NULL, *href_prev = NULL, *href_summary = NULL;
563 char *href_briefs = NULL, *href_commits = NULL, *href_tree = NULL;
564 char *href_tags = NULL;
565 unsigned int prev_disp = 0, next_disp = 1, dir_c = 0;
566 enum kcgi_err kerr = KCGI_OK;
569 if (pledge("stdio rpath proc exec sendfd unveil",
571 error = got_error_from_errno("pledge");
575 error = gw_apply_unveil(gw_trans->gw_conf->got_repos_path);
579 error = gw_load_got_paths(gw_trans);
583 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
584 "index_header", KATTR__MAX);
586 return gw_kcgi_error(kerr);
587 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
588 "index_header_project", KATTR__MAX);
590 return gw_kcgi_error(kerr);
591 kerr = khtml_puts(gw_trans->gw_html_req, "Project");
593 return gw_kcgi_error(kerr);
594 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
596 return gw_kcgi_error(kerr);
598 if (gw_trans->gw_conf->got_show_repo_description) {
599 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
600 "index_header_description", KATTR__MAX);
602 return gw_kcgi_error(kerr);
603 kerr = khtml_puts(gw_trans->gw_html_req, "Description");
605 return gw_kcgi_error(kerr);
606 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
608 return gw_kcgi_error(kerr);
611 if (gw_trans->gw_conf->got_show_repo_owner) {
612 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
613 "index_header_owner", KATTR__MAX);
615 return gw_kcgi_error(kerr);
616 kerr = khtml_puts(gw_trans->gw_html_req, "Owner");
618 return gw_kcgi_error(kerr);
619 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
621 return gw_kcgi_error(kerr);
624 if (gw_trans->gw_conf->got_show_repo_age) {
625 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
626 "index_header_age", KATTR__MAX);
628 return gw_kcgi_error(kerr);
629 kerr = khtml_puts(gw_trans->gw_html_req, "Last Change");
631 return gw_kcgi_error(kerr);
632 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
634 return gw_kcgi_error(kerr);
637 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
639 return gw_kcgi_error(kerr);
641 if (TAILQ_EMPTY(&gw_trans->gw_dirs)) {
642 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
643 "index_wrapper", KATTR__MAX);
645 return gw_kcgi_error(kerr);
646 kerr = khtml_printf(gw_trans->gw_html_req,
647 "No repositories found in %s",
648 gw_trans->gw_conf->got_repos_path);
650 return gw_kcgi_error(kerr);
651 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
653 return gw_kcgi_error(kerr);
654 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
655 "dotted_line", KATTR__MAX);
657 return gw_kcgi_error(kerr);
658 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
660 return gw_kcgi_error(kerr);
664 TAILQ_FOREACH(gw_dir, &gw_trans->gw_dirs, entry)
667 TAILQ_FOREACH(gw_dir, &gw_trans->gw_dirs, entry) {
668 if (gw_trans->page > 0 && (gw_trans->page *
669 gw_trans->gw_conf->got_max_repos_display) > prev_disp) {
676 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
677 "index_wrapper", KATTR__MAX);
681 href_summary = khttp_urlpart(NULL, NULL, "gotweb", "path",
682 gw_dir->name, "action", "summary", NULL);
683 if (href_summary == NULL) {
684 error = got_error_from_errno("khttp_urlpart");
687 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
688 "index_project", KATTR__MAX);
691 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF,
692 href_summary, KATTR__MAX);
695 kerr = khtml_puts(gw_trans->gw_html_req, gw_dir->name);
698 kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
701 if (gw_trans->gw_conf->got_show_repo_description) {
702 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
703 KATTR_ID, "index_project_description", KATTR__MAX);
706 kerr = khtml_puts(gw_trans->gw_html_req,
707 gw_dir->description ? gw_dir->description : "");
710 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
714 if (gw_trans->gw_conf->got_show_repo_owner) {
715 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
716 KATTR_ID, "index_project_owner", KATTR__MAX);
719 kerr = khtml_puts(gw_trans->gw_html_req,
720 gw_dir->owner ? gw_dir->owner : "");
723 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
727 if (gw_trans->gw_conf->got_show_repo_age) {
728 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
729 KATTR_ID, "index_project_age", KATTR__MAX);
732 kerr = khtml_puts(gw_trans->gw_html_req,
733 gw_dir->age ? gw_dir->age : "");
736 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
741 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
742 "navs_wrapper", KATTR__MAX);
745 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
750 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF,
751 href_summary, KATTR__MAX);
754 kerr = khtml_puts(gw_trans->gw_html_req, "summary");
757 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
761 kerr = khtml_puts(gw_trans->gw_html_req, " | ");
765 href_briefs = khttp_urlpart(NULL, NULL, "gotweb", "path",
766 gw_dir->name, "action", "briefs", NULL);
767 if (href_briefs == NULL) {
768 error = got_error_from_errno("khttp_urlpart");
771 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF,
772 href_briefs, KATTR__MAX);
775 kerr = khtml_puts(gw_trans->gw_html_req, "commit briefs");
778 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
780 error = gw_kcgi_error(kerr);
782 kerr = khtml_puts(gw_trans->gw_html_req, " | ");
786 href_commits = khttp_urlpart(NULL, NULL, "gotweb", "path",
787 gw_dir->name, "action", "commits", NULL);
788 if (href_commits == NULL) {
789 error = got_error_from_errno("khttp_urlpart");
792 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF,
793 href_commits, KATTR__MAX);
796 kerr = khtml_puts(gw_trans->gw_html_req, "commits");
799 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
803 kerr = khtml_puts(gw_trans->gw_html_req, " | ");
807 href_tags = khttp_urlpart(NULL, NULL, "gotweb", "path",
808 gw_dir->name, "action", "tags", NULL);
809 if (href_tags == NULL) {
810 error = got_error_from_errno("khttp_urlpart");
813 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF,
814 href_tags, KATTR__MAX);
817 kerr = khtml_puts(gw_trans->gw_html_req, "tags");
820 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
824 kerr = khtml_puts(gw_trans->gw_html_req, " | ");
828 href_tree = khttp_urlpart(NULL, NULL, "gotweb", "path",
829 gw_dir->name, "action", "tree", NULL);
830 if (href_tree == NULL) {
831 error = got_error_from_errno("khttp_urlpart");
834 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF,
835 href_tree, KATTR__MAX);
838 kerr = khtml_puts(gw_trans->gw_html_req, "tree");
842 kerr = khtml_closeelem(gw_trans->gw_html_req, 4);
845 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
846 "dotted_line", KATTR__MAX);
849 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
864 if (gw_trans->gw_conf->got_max_repos_display == 0)
867 if ((next_disp == gw_trans->gw_conf->got_max_repos_display) ||
868 ((gw_trans->gw_conf->got_max_repos_display > 0) &&
869 (gw_trans->page > 0) &&
870 (next_disp == gw_trans->gw_conf->got_max_repos_display ||
871 prev_disp == gw_trans->repos_total))) {
872 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
873 KATTR_ID, "np_wrapper", KATTR__MAX);
876 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
877 KATTR_ID, "nav_prev", KATTR__MAX);
882 if ((gw_trans->gw_conf->got_max_repos_display > 0) &&
883 (gw_trans->page > 0) &&
884 (next_disp == gw_trans->gw_conf->got_max_repos_display ||
885 prev_disp == gw_trans->repos_total)) {
886 href_prev = khttp_urlpartx(NULL, NULL, "gotweb", "page",
887 KATTRX_INT, (int64_t)(gw_trans->page - 1), NULL);
888 if (href_prev == NULL) {
889 error = got_error_from_errno("khttp_urlpartx");
892 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
893 KATTR_HREF, href_prev, KATTR__MAX);
896 kerr = khtml_puts(gw_trans->gw_html_req, "Previous");
899 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
904 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
906 return gw_kcgi_error(kerr);
908 if (gw_trans->gw_conf->got_max_repos_display > 0 &&
909 next_disp == gw_trans->gw_conf->got_max_repos_display &&
910 dir_c != (gw_trans->page + 1) *
911 gw_trans->gw_conf->got_max_repos_display) {
912 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
913 KATTR_ID, "nav_next", KATTR__MAX);
916 href_next = khttp_urlpartx(NULL, NULL, "gotweb", "page",
917 KATTRX_INT, (int64_t)(gw_trans->page + 1), NULL);
918 if (href_next == NULL) {
919 error = got_error_from_errno("khttp_urlpartx");
922 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
923 KATTR_HREF, href_next, KATTR__MAX);
926 kerr = khtml_puts(gw_trans->gw_html_req, "Next");
929 kerr = khtml_closeelem(gw_trans->gw_html_req, 3);
936 if ((gw_trans->gw_conf->got_max_repos_display > 0) &&
937 (gw_trans->page > 0) &&
938 (next_disp == gw_trans->gw_conf->got_max_repos_display ||
939 prev_disp == gw_trans->repos_total)) {
940 kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
954 if (error == NULL && kerr != KCGI_OK)
955 error = gw_kcgi_error(kerr);
959 static const struct got_error *
960 gw_commits(struct gw_trans *gw_trans)
962 const struct got_error *error = NULL;
963 struct gw_header *header = NULL, *n_header = NULL;
964 char *age = NULL, *href_diff = NULL, *href_tree = NULL;
965 char *href_prev = NULL, *href_next = NULL;
966 enum kcgi_err kerr = KCGI_OK;
967 int commit_found = 0;
969 if ((header = gw_init_header()) == NULL)
970 return got_error_from_errno("malloc");
973 if (pledge("stdio rpath proc exec sendfd unveil",
975 error = got_error_from_errno("pledge");
979 error = gw_apply_unveil(gw_trans->gw_dir->path);
983 error = gw_get_header(gw_trans, header,
984 gw_trans->gw_conf->got_max_commits_display);
988 TAILQ_FOREACH(n_header, &gw_trans->gw_headers, entry) {
989 if (commit_found == 0 && gw_trans->commit_id != NULL) {
990 if (strcmp(gw_trans->commit_id,
991 n_header->commit_id) != 0)
996 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
997 "commits_line_wrapper", KATTR__MAX);
1000 error = gw_gen_commit_header(gw_trans, n_header->commit_id,
1001 n_header->refs_str);
1004 error = gw_gen_author_header(gw_trans, n_header->author);
1007 error = gw_gen_committer_header(gw_trans, n_header->author);
1010 error = gw_get_time_str(&age, n_header->committer_time,
1014 error = gw_gen_age_header(gw_trans, age ?age : "");
1017 kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
1018 if (kerr != KCGI_OK)
1021 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1022 "dotted_line", KATTR__MAX);
1023 if (kerr != KCGI_OK)
1025 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1026 if (kerr != KCGI_OK)
1029 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1030 "commit", KATTR__MAX);
1031 if (kerr != KCGI_OK)
1033 kerr = khttp_puts(gw_trans->gw_req, n_header->commit_msg);
1034 if (kerr != KCGI_OK)
1036 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1037 if (kerr != KCGI_OK)
1040 href_diff = khttp_urlpart(NULL, NULL, "gotweb", "path",
1041 gw_trans->repo_name, "action", "diff", "commit",
1042 n_header->commit_id, NULL);
1043 if (href_diff == NULL) {
1044 error = got_error_from_errno("khttp_urlpart");
1047 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1048 KATTR_ID, "navs_wrapper", KATTR__MAX);
1049 if (kerr != KCGI_OK)
1051 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1052 KATTR_ID, "navs", KATTR__MAX);
1053 if (kerr != KCGI_OK)
1055 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
1056 KATTR_HREF, href_diff, KATTR__MAX);
1057 if (kerr != KCGI_OK)
1059 kerr = khtml_puts(gw_trans->gw_html_req, "diff");
1060 if (kerr != KCGI_OK)
1062 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1063 if (kerr != KCGI_OK)
1066 kerr = khtml_puts(gw_trans->gw_html_req, " | ");
1067 if (kerr != KCGI_OK)
1070 href_tree = khttp_urlpart(NULL, NULL, "gotweb", "path",
1071 gw_trans->repo_name, "action", "tree", "commit",
1072 n_header->commit_id, NULL);
1073 if (href_tree == NULL) {
1074 error = got_error_from_errno("khttp_urlpart");
1077 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
1078 KATTR_HREF, href_tree, KATTR__MAX);
1079 if (kerr != KCGI_OK)
1081 khtml_puts(gw_trans->gw_html_req, "tree");
1082 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1083 if (kerr != KCGI_OK)
1085 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1086 if (kerr != KCGI_OK)
1089 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1090 "solid_line", KATTR__MAX);
1091 if (kerr != KCGI_OK)
1093 kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
1094 if (kerr != KCGI_OK)
1101 if (gw_trans->next_id || gw_trans->prev_id) {
1102 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1103 KATTR_ID, "np_wrapper", KATTR__MAX);
1104 if (kerr != KCGI_OK)
1106 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1107 KATTR_ID, "nav_prev", KATTR__MAX);
1108 if (kerr != KCGI_OK)
1112 if (gw_trans->prev_id) {
1113 href_prev = khttp_urlpartx(NULL, NULL, "gotweb", "path",
1114 KATTRX_STRING, gw_trans->repo_name, "page",
1115 KATTRX_INT, (int64_t) (gw_trans->page - 1), "action",
1116 KATTRX_STRING, "commits", "commit", KATTRX_STRING,
1117 gw_trans->prev_id ? gw_trans->prev_id : "", NULL);
1118 if (href_prev == NULL) {
1119 error = got_error_from_errno("khttp_urlpartx");
1122 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
1123 KATTR_HREF, href_prev, KATTR__MAX);
1124 if (kerr != KCGI_OK)
1126 kerr = khtml_puts(gw_trans->gw_html_req, "Previous");
1127 if (kerr != KCGI_OK)
1129 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1130 if (kerr != KCGI_OK)
1134 if (gw_trans->next_id || gw_trans->page > 0) {
1135 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1136 if (kerr != KCGI_OK)
1137 return gw_kcgi_error(kerr);
1140 if (gw_trans->next_id) {
1141 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1142 KATTR_ID, "nav_next", KATTR__MAX);
1143 if (kerr != KCGI_OK)
1145 href_next = khttp_urlpartx(NULL, NULL, "gotweb", "path",
1146 KATTRX_STRING, gw_trans->repo_name, "page",
1147 KATTRX_INT, (int64_t) (gw_trans->page + 1), "action",
1148 KATTRX_STRING, "commits", "commit", KATTRX_STRING,
1149 gw_trans->next_id, NULL);
1150 if (href_next == NULL) {
1151 error = got_error_from_errno("khttp_urlpartx");
1154 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
1155 KATTR_HREF, href_next, KATTR__MAX);
1156 if (kerr != KCGI_OK)
1158 kerr = khtml_puts(gw_trans->gw_html_req, "Next");
1159 if (kerr != KCGI_OK)
1161 kerr = khtml_closeelem(gw_trans->gw_html_req, 3);
1162 if (kerr != KCGI_OK)
1166 if (gw_trans->next_id || gw_trans->page > 0) {
1167 kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
1168 if (kerr != KCGI_OK)
1172 gw_free_header(header);
1173 TAILQ_FOREACH(n_header, &gw_trans->gw_headers, entry)
1174 gw_free_header(n_header);
1180 if (error == NULL && kerr != KCGI_OK)
1181 error = gw_kcgi_error(kerr);
1185 static const struct got_error *
1186 gw_briefs(struct gw_trans *gw_trans)
1188 const struct got_error *error = NULL;
1189 struct gw_header *header = NULL, *n_header = NULL;
1190 char *age = NULL, *href_diff = NULL, *href_tree = NULL;
1191 char *href_prev = NULL, *href_next = NULL;
1192 char *newline, *smallerthan;
1193 enum kcgi_err kerr = KCGI_OK;
1194 int commit_found = 0;
1196 if ((header = gw_init_header()) == NULL)
1197 return got_error_from_errno("malloc");
1200 if (pledge("stdio rpath proc exec sendfd unveil",
1202 error = got_error_from_errno("pledge");
1206 if (gw_trans->action != GW_SUMMARY) {
1207 error = gw_apply_unveil(gw_trans->gw_dir->path);
1212 if (gw_trans->action == GW_SUMMARY)
1213 error = gw_get_header(gw_trans, header, D_MAXSLCOMMDISP);
1215 error = gw_get_header(gw_trans, header,
1216 gw_trans->gw_conf->got_max_commits_display);
1220 TAILQ_FOREACH(n_header, &gw_trans->gw_headers, entry) {
1221 if (commit_found == 0 && gw_trans->commit_id != NULL) {
1222 if (strcmp(gw_trans->commit_id,
1223 n_header->commit_id) != 0)
1228 error = gw_get_time_str(&age, n_header->committer_time,
1233 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1234 KATTR_ID, "briefs_wrapper", KATTR__MAX);
1235 if (kerr != KCGI_OK)
1238 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1239 KATTR_ID, "briefs_age", KATTR__MAX);
1240 if (kerr != KCGI_OK)
1242 kerr = khtml_puts(gw_trans->gw_html_req, age ? age : "");
1243 if (kerr != KCGI_OK)
1245 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1246 if (kerr != KCGI_OK)
1249 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1250 KATTR_ID, "briefs_author", KATTR__MAX);
1251 if (kerr != KCGI_OK)
1253 smallerthan = strchr(n_header->author, '<');
1255 *smallerthan = '\0';
1256 kerr = khtml_puts(gw_trans->gw_html_req, n_header->author);
1257 if (kerr != KCGI_OK)
1259 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1260 if (kerr != KCGI_OK)
1263 href_diff = khttp_urlpart(NULL, NULL, "gotweb", "path",
1264 gw_trans->repo_name, "action", "diff", "commit",
1265 n_header->commit_id, NULL);
1266 if (href_diff == NULL) {
1267 error = got_error_from_errno("khttp_urlpart");
1270 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1271 KATTR_ID, "briefs_log", KATTR__MAX);
1272 if (kerr != KCGI_OK)
1274 newline = strchr(n_header->commit_msg, '\n');
1277 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
1278 KATTR_HREF, href_diff, KATTR__MAX);
1279 if (kerr != KCGI_OK)
1281 kerr = khtml_puts(gw_trans->gw_html_req, n_header->commit_msg);
1282 if (kerr != KCGI_OK)
1284 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1285 if (kerr != KCGI_OK)
1288 if (n_header->refs_str) {
1289 kerr = khtml_puts(gw_trans->gw_html_req, " ");
1290 if (kerr != KCGI_OK)
1292 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_SPAN,
1293 KATTR_ID, "refs_str", KATTR__MAX);
1294 if (kerr != KCGI_OK)
1296 kerr = khtml_printf(gw_trans->gw_html_req, "(%s)",
1297 n_header->refs_str);
1298 if (kerr != KCGI_OK)
1300 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1301 if (kerr != KCGI_OK)
1305 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1306 if (kerr != KCGI_OK)
1309 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1310 KATTR_ID, "navs_wrapper", KATTR__MAX);
1311 if (kerr != KCGI_OK)
1313 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1314 KATTR_ID, "navs", KATTR__MAX);
1315 if (kerr != KCGI_OK)
1317 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
1318 KATTR_HREF, href_diff, KATTR__MAX);
1319 if (kerr != KCGI_OK)
1321 kerr = khtml_puts(gw_trans->gw_html_req, "diff");
1322 if (kerr != KCGI_OK)
1324 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1325 if (kerr != KCGI_OK)
1328 kerr = khtml_puts(gw_trans->gw_html_req, " | ");
1329 if (kerr != KCGI_OK)
1332 href_tree = khttp_urlpart(NULL, NULL, "gotweb", "path",
1333 gw_trans->repo_name, "action", "tree", "commit",
1334 n_header->commit_id, NULL);
1335 if (href_tree == NULL) {
1336 error = got_error_from_errno("khttp_urlpart");
1339 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
1340 KATTR_HREF, href_tree, KATTR__MAX);
1341 if (kerr != KCGI_OK)
1343 khtml_puts(gw_trans->gw_html_req, "tree");
1344 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1345 if (kerr != KCGI_OK)
1347 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1348 if (kerr != KCGI_OK)
1351 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1352 KATTR_ID, "dotted_line", KATTR__MAX);
1353 if (kerr != KCGI_OK)
1355 kerr = khtml_closeelem(gw_trans->gw_html_req, 3);
1356 if (kerr != KCGI_OK)
1367 if (gw_trans->next_id || gw_trans->prev_id) {
1368 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1369 KATTR_ID, "np_wrapper", KATTR__MAX);
1370 if (kerr != KCGI_OK)
1372 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1373 KATTR_ID, "nav_prev", KATTR__MAX);
1374 if (kerr != KCGI_OK)
1378 if (gw_trans->prev_id) {
1379 href_prev = khttp_urlpartx(NULL, NULL, "gotweb", "path",
1380 KATTRX_STRING, gw_trans->repo_name, "page",
1381 KATTRX_INT, (int64_t) (gw_trans->page - 1), "action",
1382 KATTRX_STRING, "briefs", "commit", KATTRX_STRING,
1383 gw_trans->prev_id ? gw_trans->prev_id : "", NULL);
1384 if (href_prev == NULL) {
1385 error = got_error_from_errno("khttp_urlpartx");
1388 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
1389 KATTR_HREF, href_prev, KATTR__MAX);
1390 if (kerr != KCGI_OK)
1392 kerr = khtml_puts(gw_trans->gw_html_req, "Previous");
1393 if (kerr != KCGI_OK)
1395 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1396 if (kerr != KCGI_OK)
1400 if (gw_trans->next_id || gw_trans->page > 0) {
1401 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1402 if (kerr != KCGI_OK)
1403 return gw_kcgi_error(kerr);
1406 if (gw_trans->next_id) {
1407 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1408 KATTR_ID, "nav_next", KATTR__MAX);
1409 if (kerr != KCGI_OK)
1412 href_next = khttp_urlpartx(NULL, NULL, "gotweb", "path",
1413 KATTRX_STRING, gw_trans->repo_name, "page",
1414 KATTRX_INT, (int64_t) (gw_trans->page + 1), "action",
1415 KATTRX_STRING, "briefs", "commit", KATTRX_STRING,
1416 gw_trans->next_id, NULL);
1417 if (href_next == NULL) {
1418 error = got_error_from_errno("khttp_urlpartx");
1421 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
1422 KATTR_HREF, href_next, KATTR__MAX);
1423 if (kerr != KCGI_OK)
1425 kerr = khtml_puts(gw_trans->gw_html_req, "Next");
1426 if (kerr != KCGI_OK)
1428 kerr = khtml_closeelem(gw_trans->gw_html_req, 3);
1429 if (kerr != KCGI_OK)
1433 if (gw_trans->next_id || gw_trans->page > 0) {
1434 kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
1435 if (kerr != KCGI_OK)
1439 gw_free_header(header);
1440 TAILQ_FOREACH(n_header, &gw_trans->gw_headers, entry)
1441 gw_free_header(n_header);
1447 if (error == NULL && kerr != KCGI_OK)
1448 error = gw_kcgi_error(kerr);
1452 static const struct got_error *
1453 gw_summary(struct gw_trans *gw_trans)
1455 const struct got_error *error = NULL;
1457 enum kcgi_err kerr = KCGI_OK;
1460 if (pledge("stdio rpath proc exec sendfd unveil", NULL) == -1)
1461 return got_error_from_errno("pledge");
1463 error = gw_apply_unveil(gw_trans->gw_dir->path);
1467 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1468 "summary_wrapper", KATTR__MAX);
1469 if (kerr != KCGI_OK)
1470 return gw_kcgi_error(kerr);
1472 if (gw_trans->gw_conf->got_show_repo_description &&
1473 gw_trans->gw_dir->description != NULL &&
1474 (strcmp(gw_trans->gw_dir->description, "") != 0)) {
1475 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1476 KATTR_ID, "description_title", KATTR__MAX);
1477 if (kerr != KCGI_OK)
1479 kerr = khtml_puts(gw_trans->gw_html_req, "Description: ");
1480 if (kerr != KCGI_OK)
1482 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1483 if (kerr != KCGI_OK)
1485 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1486 KATTR_ID, "description", KATTR__MAX);
1487 if (kerr != KCGI_OK)
1489 kerr = khtml_puts(gw_trans->gw_html_req,
1490 gw_trans->gw_dir->description);
1491 if (kerr != KCGI_OK)
1493 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1494 if (kerr != KCGI_OK)
1498 if (gw_trans->gw_conf->got_show_repo_owner &&
1499 gw_trans->gw_dir->owner != NULL &&
1500 (strcmp(gw_trans->gw_dir->owner, "") != 0)) {
1501 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1502 KATTR_ID, "repo_owner_title", KATTR__MAX);
1503 if (kerr != KCGI_OK)
1505 kerr = khtml_puts(gw_trans->gw_html_req, "Owner: ");
1506 if (kerr != KCGI_OK)
1508 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1509 if (kerr != KCGI_OK)
1511 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1512 KATTR_ID, "repo_owner", KATTR__MAX);
1513 if (kerr != KCGI_OK)
1515 kerr = khtml_puts(gw_trans->gw_html_req,
1516 gw_trans->gw_dir->owner);
1517 if (kerr != KCGI_OK)
1519 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1520 if (kerr != KCGI_OK)
1524 if (gw_trans->gw_conf->got_show_repo_age) {
1525 error = gw_get_repo_age(&age, gw_trans, gw_trans->gw_dir->path,
1530 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1531 KATTR_ID, "last_change_title", KATTR__MAX);
1532 if (kerr != KCGI_OK)
1534 kerr = khtml_puts(gw_trans->gw_html_req,
1536 if (kerr != KCGI_OK)
1538 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1539 if (kerr != KCGI_OK)
1541 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1542 KATTR_ID, "last_change", KATTR__MAX);
1543 if (kerr != KCGI_OK)
1545 kerr = khtml_puts(gw_trans->gw_html_req, age);
1546 if (kerr != KCGI_OK)
1548 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1549 if (kerr != KCGI_OK)
1554 if (gw_trans->gw_conf->got_show_repo_cloneurl &&
1555 gw_trans->gw_dir->url != NULL &&
1556 (strcmp(gw_trans->gw_dir->url, "") != 0)) {
1557 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1558 KATTR_ID, "cloneurl_title", KATTR__MAX);
1559 if (kerr != KCGI_OK)
1561 kerr = khtml_puts(gw_trans->gw_html_req, "Clone URL: ");
1562 if (kerr != KCGI_OK)
1564 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1565 if (kerr != KCGI_OK)
1567 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1568 KATTR_ID, "cloneurl", KATTR__MAX);
1569 if (kerr != KCGI_OK)
1571 kerr = khtml_puts(gw_trans->gw_html_req, gw_trans->gw_dir->url);
1572 if (kerr != KCGI_OK)
1574 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1575 if (kerr != KCGI_OK)
1579 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1580 if (kerr != KCGI_OK)
1583 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1584 "briefs_title_wrapper", KATTR__MAX);
1585 if (kerr != KCGI_OK)
1587 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1588 "briefs_title", KATTR__MAX);
1589 if (kerr != KCGI_OK)
1591 kerr = khtml_puts(gw_trans->gw_html_req, "Commit Briefs");
1592 if (kerr != KCGI_OK)
1594 kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
1595 if (kerr != KCGI_OK)
1597 error = gw_briefs(gw_trans);
1601 error = gw_tags(gw_trans);
1605 error = gw_output_repo_heads(gw_trans);
1608 if (error == NULL && kerr != KCGI_OK)
1609 error = gw_kcgi_error(kerr);
1613 static const struct got_error *
1614 gw_tree(struct gw_trans *gw_trans)
1616 const struct got_error *error = NULL;
1617 struct gw_header *header = NULL;
1618 char *tree = NULL, *tree_html = NULL, *tree_html_disp = NULL;
1620 enum kcgi_err kerr = KCGI_OK;
1623 if (pledge("stdio rpath proc exec sendfd unveil", NULL) == -1)
1624 return got_error_from_errno("pledge");
1626 if ((header = gw_init_header()) == NULL)
1627 return got_error_from_errno("malloc");
1629 error = gw_apply_unveil(gw_trans->gw_dir->path);
1633 error = gw_get_header(gw_trans, header, 1);
1637 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1638 "tree_header_wrapper", KATTR__MAX);
1639 if (kerr != KCGI_OK)
1641 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1642 "tree_header", KATTR__MAX);
1643 if (kerr != KCGI_OK)
1645 error = gw_gen_tree_header(gw_trans, header->tree_id);
1648 error = gw_get_time_str(&age, header->committer_time,
1652 error = gw_gen_age_header(gw_trans, age ?age : "");
1655 error = gw_gen_commit_msg_header(gw_trans, header->commit_msg);
1658 kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
1659 if (kerr != KCGI_OK)
1661 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1662 "dotted_line", KATTR__MAX);
1663 if (kerr != KCGI_OK)
1665 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1666 if (kerr != KCGI_OK)
1669 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1670 "tree", KATTR__MAX);
1671 if (kerr != KCGI_OK)
1673 error = gw_output_repo_tree(gw_trans, header);
1677 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1679 gw_free_header(header);
1680 free(tree_html_disp);
1684 if (error == NULL && kerr != KCGI_OK)
1685 error = gw_kcgi_error(kerr);
1689 static const struct got_error *
1690 gw_tags(struct gw_trans *gw_trans)
1692 const struct got_error *error = NULL;
1693 struct gw_header *header = NULL;
1694 char *href_next = NULL, *href_prev = NULL;
1695 enum kcgi_err kerr = KCGI_OK;
1698 if (pledge("stdio rpath proc exec sendfd unveil", NULL) == -1)
1699 return got_error_from_errno("pledge");
1701 if ((header = gw_init_header()) == NULL)
1702 return got_error_from_errno("malloc");
1704 if (gw_trans->action != GW_SUMMARY) {
1705 error = gw_apply_unveil(gw_trans->gw_dir->path);
1710 error = gw_get_header(gw_trans, header, 1);
1714 if (gw_trans->action == GW_SUMMARY) {
1715 gw_trans->next_id = NULL;
1716 error = gw_output_repo_tags(gw_trans, header,
1717 D_MAXSLCOMMDISP, TAGBRIEF);
1721 error = gw_output_repo_tags(gw_trans, header,
1722 gw_trans->gw_conf->got_max_commits_display, TAGBRIEF);
1727 if (gw_trans->next_id || gw_trans->page > 0) {
1728 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1729 KATTR_ID, "np_wrapper", KATTR__MAX);
1730 if (kerr != KCGI_OK)
1732 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1733 KATTR_ID, "nav_prev", KATTR__MAX);
1734 if (kerr != KCGI_OK)
1738 if (gw_trans->prev_id) {
1739 href_prev = khttp_urlpartx(NULL, NULL, "gotweb", "path",
1740 KATTRX_STRING, gw_trans->repo_name, "page",
1741 KATTRX_INT, (int64_t) (gw_trans->page - 1), "action",
1742 KATTRX_STRING, "tags", "commit", KATTRX_STRING,
1743 gw_trans->prev_id ? gw_trans->prev_id : "", NULL);
1744 if (href_prev == NULL) {
1745 error = got_error_from_errno("khttp_urlpartx");
1748 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
1749 KATTR_HREF, href_prev, KATTR__MAX);
1750 if (kerr != KCGI_OK)
1752 kerr = khtml_puts(gw_trans->gw_html_req, "Previous");
1753 if (kerr != KCGI_OK)
1755 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1756 if (kerr != KCGI_OK)
1760 if (gw_trans->next_id || gw_trans->page > 0) {
1761 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1762 if (kerr != KCGI_OK)
1763 return gw_kcgi_error(kerr);
1766 if (gw_trans->next_id) {
1767 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
1768 KATTR_ID, "nav_next", KATTR__MAX);
1769 if (kerr != KCGI_OK)
1771 href_next = khttp_urlpartx(NULL, NULL, "gotweb", "path",
1772 KATTRX_STRING, gw_trans->repo_name, "page",
1773 KATTRX_INT, (int64_t) (gw_trans->page + 1), "action",
1774 KATTRX_STRING, "tags", "commit", KATTRX_STRING,
1775 gw_trans->next_id, NULL);
1776 if (href_next == NULL) {
1777 error = got_error_from_errno("khttp_urlpartx");
1780 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
1781 KATTR_HREF, href_next, KATTR__MAX);
1782 if (kerr != KCGI_OK)
1784 kerr = khtml_puts(gw_trans->gw_html_req, "Next");
1785 if (kerr != KCGI_OK)
1787 kerr = khtml_closeelem(gw_trans->gw_html_req, 3);
1788 if (kerr != KCGI_OK)
1792 if (gw_trans->next_id || gw_trans->page > 0) {
1793 kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
1794 if (kerr != KCGI_OK)
1798 gw_free_header(header);
1801 if (error == NULL && kerr != KCGI_OK)
1802 error = gw_kcgi_error(kerr);
1806 static const struct got_error *
1807 gw_tag(struct gw_trans *gw_trans)
1809 const struct got_error *error = NULL;
1810 struct gw_header *header = NULL;
1811 enum kcgi_err kerr = KCGI_OK;
1814 if (pledge("stdio rpath proc exec sendfd unveil", NULL) == -1)
1815 return got_error_from_errno("pledge");
1817 if ((header = gw_init_header()) == NULL)
1818 return got_error_from_errno("malloc");
1820 error = gw_apply_unveil(gw_trans->gw_dir->path);
1824 if (gw_trans->commit_id == NULL) {
1825 error = got_error_msg(GOT_ERR_QUERYSTRING,
1826 "commit required in querystring");
1830 error = gw_get_header(gw_trans, header, 1);
1834 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1835 "tag_header_wrapper", KATTR__MAX);
1836 if (kerr != KCGI_OK)
1838 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1839 "tag_header", KATTR__MAX);
1840 if (kerr != KCGI_OK)
1842 error = gw_gen_commit_header(gw_trans, header->commit_id,
1846 error = gw_gen_commit_msg_header(gw_trans, header->commit_msg);
1849 kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
1850 if (kerr != KCGI_OK)
1852 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1853 "dotted_line", KATTR__MAX);
1854 if (kerr != KCGI_OK)
1856 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1857 if (kerr != KCGI_OK)
1860 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
1861 "tree", KATTR__MAX);
1862 if (kerr != KCGI_OK)
1865 error = gw_output_repo_tags(gw_trans, header, 1, TAGFULL);
1869 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
1871 gw_free_header(header);
1872 if (error == NULL && kerr != KCGI_OK)
1873 error = gw_kcgi_error(kerr);
1877 static const struct got_error *
1878 gw_load_got_path(struct gw_trans *gw_trans, struct gw_dir *gw_dir)
1880 const struct got_error *error = NULL;
1885 if (asprintf(&dir_test, "%s/%s/%s",
1886 gw_trans->gw_conf->got_repos_path, gw_dir->name,
1887 GOTWEB_GIT_DIR) == -1)
1888 return got_error_from_errno("asprintf");
1890 dt = opendir(dir_test);
1894 gw_dir->path = strdup(dir_test);
1895 if (gw_dir->path == NULL) {
1897 error = got_error_from_errno("strdup");
1904 if (asprintf(&dir_test, "%s/%s/%s",
1905 gw_trans->gw_conf->got_repos_path, gw_dir->name,
1906 GOTWEB_GOT_DIR) == -1) {
1908 error = got_error_from_errno("asprintf");
1912 dt = opendir(dir_test);
1917 error = got_error(GOT_ERR_NOT_GIT_REPO);
1921 if (asprintf(&dir_test, "%s/%s",
1922 gw_trans->gw_conf->got_repos_path, gw_dir->name) == -1) {
1923 error = got_error_from_errno("asprintf");
1928 gw_dir->path = strdup(dir_test);
1929 if (gw_dir->path == NULL) {
1931 error = got_error_from_errno("strdup");
1935 dt = opendir(dir_test);
1937 error = got_error_path(gw_dir->name, GOT_ERR_NOT_GIT_REPO);
1942 error = gw_get_repo_description(&gw_dir->description, gw_trans,
1946 error = gw_get_repo_owner(&gw_dir->owner, gw_trans, gw_dir->path);
1949 error = gw_get_repo_age(&gw_dir->age, gw_trans, gw_dir->path,
1953 error = gw_get_clone_url(&gw_dir->url, gw_trans, gw_dir->path);
1957 if (dt && closedir(dt) == -1 && error == NULL)
1958 error = got_error_from_errno("closedir");
1962 static const struct got_error *
1963 gw_load_got_paths(struct gw_trans *gw_trans)
1965 const struct got_error *error = NULL;
1967 struct dirent **sd_dent;
1968 struct gw_dir *gw_dir;
1970 unsigned int d_cnt, d_i;
1972 d = opendir(gw_trans->gw_conf->got_repos_path);
1974 error = got_error_from_errno2("opendir",
1975 gw_trans->gw_conf->got_repos_path);
1979 d_cnt = scandir(gw_trans->gw_conf->got_repos_path, &sd_dent, NULL,
1982 error = got_error_from_errno2("scandir",
1983 gw_trans->gw_conf->got_repos_path);
1987 for (d_i = 0; d_i < d_cnt; d_i++) {
1988 if (gw_trans->gw_conf->got_max_repos > 0 &&
1989 (d_i - 2) == gw_trans->gw_conf->got_max_repos)
1990 break; /* account for parent and self */
1992 if (strcmp(sd_dent[d_i]->d_name, ".") == 0 ||
1993 strcmp(sd_dent[d_i]->d_name, "..") == 0)
1996 error = gw_init_gw_dir(&gw_dir, sd_dent[d_i]->d_name);
2000 error = gw_load_got_path(gw_trans, gw_dir);
2001 if (error && error->code == GOT_ERR_NOT_GIT_REPO) {
2008 if (lstat(gw_dir->path, &st) == 0 && S_ISDIR(st.st_mode) &&
2009 !got_path_dir_is_empty(gw_dir->path)) {
2010 TAILQ_INSERT_TAIL(&gw_trans->gw_dirs, gw_dir,
2012 gw_trans->repos_total++;
2016 if (d && closedir(d) == -1 && error == NULL)
2017 error = got_error_from_errno("closedir");
2021 static const struct got_error *
2022 gw_parse_querystring(struct gw_trans *gw_trans)
2024 const struct got_error *error = NULL;
2026 struct gw_query_action *action = NULL;
2029 if (gw_trans->gw_req->fieldnmap[0]) {
2030 return got_error(GOT_ERR_QUERYSTRING);
2031 } else if ((p = gw_trans->gw_req->fieldmap[KEY_PATH])) {
2032 /* define gw_trans->repo_path */
2033 gw_trans->repo_name = p->parsed.s;
2035 if (asprintf(&gw_trans->repo_path, "%s/%s",
2036 gw_trans->gw_conf->got_repos_path, p->parsed.s) == -1)
2037 return got_error_from_errno("asprintf");
2039 /* get action and set function */
2040 if ((p = gw_trans->gw_req->fieldmap[KEY_ACTION])) {
2041 for (i = 0; i < nitems(gw_query_funcs); i++) {
2042 action = &gw_query_funcs[i];
2043 if (action->func_name == NULL)
2045 if (strcmp(action->func_name,
2046 p->parsed.s) == 0) {
2047 gw_trans->action = i;
2052 if (gw_trans->action == -1) {
2053 gw_trans->action = GW_ERR;
2054 gw_trans->error = got_error_msg(GOT_ERR_QUERYSTRING,
2055 p != NULL ? "bad action in querystring" :
2056 "no action in querystring");
2060 if ((p = gw_trans->gw_req->fieldmap[KEY_COMMIT_ID])) {
2061 if (asprintf(&gw_trans->commit_id, "%s",
2063 return got_error_from_errno("asprintf");
2066 if ((p = gw_trans->gw_req->fieldmap[KEY_FILE]))
2067 gw_trans->repo_file = p->parsed.s;
2069 if ((p = gw_trans->gw_req->fieldmap[KEY_FOLDER])) {
2070 if (asprintf(&gw_trans->repo_folder, "%s",
2072 return got_error_from_errno("asprintf");
2075 if ((p = gw_trans->gw_req->fieldmap[KEY_PREV_ID])) {
2076 if (asprintf(&gw_trans->prev_id, "%s",
2078 return got_error_from_errno("asprintf");
2081 if ((p = gw_trans->gw_req->fieldmap[KEY_HEADREF]))
2082 gw_trans->headref = p->parsed.s;
2084 error = gw_init_gw_dir(&gw_trans->gw_dir, gw_trans->repo_name);
2088 gw_trans->error = gw_load_got_path(gw_trans, gw_trans->gw_dir);
2090 gw_trans->action = GW_INDEX;
2092 if ((p = gw_trans->gw_req->fieldmap[KEY_PAGE]))
2093 gw_trans->page = p->parsed.i;
2098 static const struct got_error *
2099 gw_init_gw_dir(struct gw_dir **gw_dir, const char *dir)
2101 const struct got_error *error;
2103 *gw_dir = malloc(sizeof(**gw_dir));
2104 if (*gw_dir == NULL)
2105 return got_error_from_errno("malloc");
2107 if (asprintf(&(*gw_dir)->name, "%s", dir) == -1) {
2108 error = got_error_from_errno("asprintf");
2117 static const struct got_error *
2118 gw_display_open(struct gw_trans *gw_trans, enum khttp code, enum kmime mime)
2120 enum kcgi_err kerr = KCGI_OK;
2122 kerr = khttp_head(gw_trans->gw_req, kresps[KRESP_ALLOW], "GET");
2123 if (kerr != KCGI_OK)
2124 return gw_kcgi_error(kerr);
2125 kerr = khttp_head(gw_trans->gw_req, kresps[KRESP_STATUS], "%s",
2127 if (kerr != KCGI_OK)
2128 return gw_kcgi_error(kerr);
2129 kerr = khttp_head(gw_trans->gw_req, kresps[KRESP_CONTENT_TYPE], "%s",
2131 if (kerr != KCGI_OK)
2132 return gw_kcgi_error(kerr);
2133 kerr = khttp_head(gw_trans->gw_req, "X-Content-Type-Options",
2135 if (kerr != KCGI_OK)
2136 return gw_kcgi_error(kerr);
2137 kerr = khttp_head(gw_trans->gw_req, "X-Frame-Options", "DENY");
2138 if (kerr != KCGI_OK)
2139 return gw_kcgi_error(kerr);
2140 kerr = khttp_head(gw_trans->gw_req, "X-XSS-Protection",
2142 if (kerr != KCGI_OK)
2143 return gw_kcgi_error(kerr);
2145 if (gw_trans->mime == KMIME_APP_OCTET_STREAM) {
2146 kerr = khttp_head(gw_trans->gw_req,
2147 kresps[KRESP_CONTENT_DISPOSITION],
2148 "attachment; filename=%s", gw_trans->repo_file);
2149 if (kerr != KCGI_OK)
2150 return gw_kcgi_error(kerr);
2153 kerr = khttp_body(gw_trans->gw_req);
2154 return gw_kcgi_error(kerr);
2157 static const struct got_error *
2158 gw_display_index(struct gw_trans *gw_trans)
2160 const struct got_error *error;
2161 enum kcgi_err kerr = KCGI_OK;
2163 /* catch early querystring errors */
2164 if (gw_trans->error)
2165 gw_trans->action = GW_ERR;
2167 error = gw_display_open(gw_trans, KHTTP_200, gw_trans->mime);
2171 kerr = khtml_open(gw_trans->gw_html_req, gw_trans->gw_req, 0);
2172 if (kerr != KCGI_OK)
2173 return gw_kcgi_error(kerr);
2175 if (gw_trans->action != GW_BLOB) {
2176 kerr = khttp_template(gw_trans->gw_req, gw_trans->gw_tmpl,
2177 gw_query_funcs[gw_trans->action].template);
2178 if (kerr != KCGI_OK) {
2179 khtml_close(gw_trans->gw_html_req);
2180 return gw_kcgi_error(kerr);
2184 return gw_kcgi_error(khtml_close(gw_trans->gw_html_req));
2187 static const struct got_error *
2188 gw_error(struct gw_trans *gw_trans)
2190 enum kcgi_err kerr = KCGI_OK;
2192 kerr = khtml_puts(gw_trans->gw_html_req, gw_trans->error->msg);
2194 return gw_kcgi_error(kerr);
2198 gw_template(size_t key, void *arg)
2200 const struct got_error *error = NULL;
2201 enum kcgi_err kerr = KCGI_OK;
2202 struct gw_trans *gw_trans = arg;
2203 char *ati = NULL, *fic32 = NULL, *fic16 = NULL;
2204 char *swm = NULL, *spt = NULL, *css = NULL, *logo = NULL;
2206 if (asprintf(&ati, "%s%s", gw_trans->gw_conf->got_www_path,
2207 "/apple-touch-icon.png") == -1)
2209 if (asprintf(&fic32, "%s%s", gw_trans->gw_conf->got_www_path,
2210 "/favicon-32x32.png") == -1)
2212 if (asprintf(&fic16, "%s%s", gw_trans->gw_conf->got_www_path,
2213 "/favicon-16x16.png") == -1)
2215 if (asprintf(&swm, "%s%s", gw_trans->gw_conf->got_www_path,
2216 "/site.webmanifest") == -1)
2218 if (asprintf(&spt, "%s%s", gw_trans->gw_conf->got_www_path,
2219 "/safari-pinned-tab.svg") == -1)
2221 if (asprintf(&css, "%s%s", gw_trans->gw_conf->got_www_path,
2222 "/gotweb.css") == -1)
2224 if (asprintf(&logo, "%s%s%s", gw_trans->gw_conf->got_www_path,
2225 gw_trans->gw_conf->got_www_path ? "/" : "",
2226 gw_trans->gw_conf->got_logo) == -1)
2231 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_META,
2232 KATTR_NAME, "viewport",
2233 KATTR_CONTENT, "initial-scale=.75, user-scalable=yes",
2235 if (kerr != KCGI_OK)
2237 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2238 if (kerr != KCGI_OK)
2240 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_META,
2241 KATTR_CHARSET, "utf-8",
2243 if (kerr != KCGI_OK)
2245 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2246 if (kerr != KCGI_OK)
2248 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_META,
2249 KATTR_NAME, "msapplication-TileColor",
2250 KATTR_CONTENT, "#da532c", KATTR__MAX);
2251 if (kerr != KCGI_OK)
2253 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2254 if (kerr != KCGI_OK)
2256 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_META,
2257 KATTR_NAME, "theme-color",
2258 KATTR_CONTENT, "#ffffff", KATTR__MAX);
2259 if (kerr != KCGI_OK)
2261 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2262 if (kerr != KCGI_OK)
2264 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_LINK,
2265 KATTR_REL, "apple-touch-icon", KATTR_SIZES, "180x180",
2266 KATTR_HREF, ati, KATTR__MAX);
2267 if (kerr != KCGI_OK)
2269 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2270 if (kerr != KCGI_OK)
2272 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_LINK,
2273 KATTR_REL, "icon", KATTR_TYPE, "image/png", KATTR_SIZES,
2274 "32x32", KATTR_HREF, fic32, KATTR__MAX);
2275 if (kerr != KCGI_OK)
2277 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2278 if (kerr != KCGI_OK)
2280 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_LINK,
2281 KATTR_REL, "icon", KATTR_TYPE, "image/png", KATTR_SIZES,
2282 "16x16", KATTR_HREF, fic16, KATTR__MAX);
2283 if (kerr != KCGI_OK)
2285 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2286 if (kerr != KCGI_OK)
2288 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_LINK,
2289 KATTR_REL, "manifest", KATTR_HREF, swm,
2291 if (kerr != KCGI_OK)
2293 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2294 if (kerr != KCGI_OK)
2296 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_LINK,
2297 KATTR_REL, "mask-icon", KATTR_HREF,
2299 if (kerr != KCGI_OK)
2301 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2302 if (kerr != KCGI_OK)
2304 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_LINK,
2305 KATTR_REL, "stylesheet", KATTR_TYPE, "text/css",
2306 KATTR_HREF, css, KATTR__MAX);
2307 if (kerr != KCGI_OK)
2309 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2310 if (kerr != KCGI_OK)
2314 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2315 KATTR_ID, "got_link", KATTR__MAX);
2316 if (kerr != KCGI_OK)
2318 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
2319 KATTR_HREF, gw_trans->gw_conf->got_logo_url,
2320 KATTR_TARGET, "_sotd", KATTR__MAX);
2321 if (kerr != KCGI_OK)
2323 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_IMG,
2324 KATTR_SRC, logo, KATTR__MAX);
2325 if (kerr != KCGI_OK)
2327 kerr = khtml_closeelem(gw_trans->gw_html_req, 3);
2328 if (kerr != KCGI_OK)
2331 case (TEMPL_SITEPATH):
2332 error = gw_output_site_link(gw_trans);
2337 if (gw_trans->gw_conf->got_site_name != NULL) {
2338 kerr = khtml_puts(gw_trans->gw_html_req,
2339 gw_trans->gw_conf->got_site_name);
2340 if (kerr != KCGI_OK)
2344 case (TEMPL_SEARCH):
2346 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
2347 "search", KATTR__MAX);
2348 if (kerr != KCGI_OK)
2350 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_FORM,
2351 KATTR_METHOD, "POST", KATTR__MAX);
2352 if (kerr != KCGI_OK)
2354 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_INPUT, KATTR_ID,
2355 "got-search", KATTR_NAME, "got-search", KATTR_SIZE, "15",
2356 KATTR_MAXLENGTH, "50", KATTR__MAX);
2357 if (kerr != KCGI_OK)
2359 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_BUTTON,
2361 if (kerr != KCGI_OK)
2363 kerr = khtml_puts(gw_trans->gw_html_req, "Search");
2364 if (kerr != KCGI_OK)
2366 kerr = khtml_closeelem(gw_trans->gw_html_req, 4);
2367 if (kerr != KCGI_OK)
2370 case(TEMPL_SITEOWNER):
2371 if (gw_trans->gw_conf->got_site_owner != NULL &&
2372 gw_trans->gw_conf->got_show_site_owner) {
2373 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2374 KATTR_ID, "site_owner_wrapper", KATTR__MAX);
2375 if (kerr != KCGI_OK)
2377 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2378 KATTR_ID, "site_owner", KATTR__MAX);
2379 if (kerr != KCGI_OK)
2381 kerr = khtml_puts(gw_trans->gw_html_req,
2382 gw_trans->gw_conf->got_site_owner);
2383 kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
2384 if (kerr != KCGI_OK)
2388 case(TEMPL_CONTENT):
2389 error = gw_query_funcs[gw_trans->action].func_main(gw_trans);
2391 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2392 KATTR_ID, "tmpl_err", KATTR__MAX);
2393 if (kerr != KCGI_OK)
2395 kerr = khttp_printf(gw_trans->gw_req, "Error: %s",
2397 if (kerr != KCGI_OK)
2399 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2400 if (kerr != KCGI_OK)
2426 static const struct got_error *
2427 gw_gen_commit_header(struct gw_trans *gw_trans, char *str1, char *str2)
2429 const struct got_error *error = NULL;
2430 enum kcgi_err kerr = KCGI_OK;
2432 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2433 KATTR_ID, "header_commit_title", KATTR__MAX);
2434 if (kerr != KCGI_OK)
2436 kerr = khtml_puts(gw_trans->gw_html_req, "Commit: ");
2437 if (kerr != KCGI_OK)
2439 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2440 if (kerr != KCGI_OK)
2442 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2443 KATTR_ID, "header_commit", KATTR__MAX);
2444 if (kerr != KCGI_OK)
2446 kerr = khtml_printf(gw_trans->gw_html_req, "%s ", str1);
2447 if (kerr != KCGI_OK)
2450 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_SPAN,
2451 KATTR_ID, "refs_str", KATTR__MAX);
2452 if (kerr != KCGI_OK)
2454 kerr = khtml_printf(gw_trans->gw_html_req, "(%s)", str2);
2455 if (kerr != KCGI_OK)
2457 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2458 if (kerr != KCGI_OK)
2461 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2463 if (error == NULL && kerr != KCGI_OK)
2464 error = gw_kcgi_error(kerr);
2468 static const struct got_error *
2469 gw_gen_diff_header(struct gw_trans *gw_trans, char *str1, char *str2)
2471 const struct got_error *error = NULL;
2472 enum kcgi_err kerr = KCGI_OK;
2474 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2475 KATTR_ID, "header_diff_title", KATTR__MAX);
2476 if (kerr != KCGI_OK)
2478 kerr = khtml_puts(gw_trans->gw_html_req, "Diff: ");
2479 if (kerr != KCGI_OK)
2481 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2482 if (kerr != KCGI_OK)
2484 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2485 KATTR_ID, "header_diff", KATTR__MAX);
2486 if (kerr != KCGI_OK)
2489 kerr = khtml_puts(gw_trans->gw_html_req, str1);
2490 if (kerr != KCGI_OK)
2493 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_BR, KATTR__MAX);
2494 if (kerr != KCGI_OK)
2496 kerr = khtml_puts(gw_trans->gw_html_req, str2);
2497 if (kerr != KCGI_OK)
2499 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2501 if (error == NULL && kerr != KCGI_OK)
2502 error = gw_kcgi_error(kerr);
2506 static const struct got_error *
2507 gw_gen_age_header(struct gw_trans *gw_trans, const char *str)
2509 const struct got_error *error = NULL;
2510 enum kcgi_err kerr = KCGI_OK;
2512 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2513 KATTR_ID, "header_age_title", KATTR__MAX);
2514 if (kerr != KCGI_OK)
2516 kerr = khtml_puts(gw_trans->gw_html_req, "Date: ");
2517 if (kerr != KCGI_OK)
2519 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2520 if (kerr != KCGI_OK)
2522 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2523 KATTR_ID, "header_age", KATTR__MAX);
2524 if (kerr != KCGI_OK)
2526 kerr = khtml_puts(gw_trans->gw_html_req, str);
2527 if (kerr != KCGI_OK)
2529 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2531 if (error == NULL && kerr != KCGI_OK)
2532 error = gw_kcgi_error(kerr);
2536 static const struct got_error *
2537 gw_gen_author_header(struct gw_trans *gw_trans, const char *str)
2539 const struct got_error *error = NULL;
2540 enum kcgi_err kerr = KCGI_OK;
2542 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2543 KATTR_ID, "header_author_title", KATTR__MAX);
2544 if (kerr != KCGI_OK)
2546 kerr = khtml_puts(gw_trans->gw_html_req, "Author: ");
2547 if (kerr != KCGI_OK)
2549 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2550 if (kerr != KCGI_OK)
2552 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2553 KATTR_ID, "header_author", KATTR__MAX);
2554 if (kerr != KCGI_OK)
2556 kerr = khtml_puts(gw_trans->gw_html_req, str);
2557 if (kerr != KCGI_OK)
2559 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2561 if (error == NULL && kerr != KCGI_OK)
2562 error = gw_kcgi_error(kerr);
2566 static const struct got_error *
2567 gw_gen_committer_header(struct gw_trans *gw_trans, const char *str)
2569 const struct got_error *error = NULL;
2570 enum kcgi_err kerr = KCGI_OK;
2572 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2573 KATTR_ID, "header_committer_title", KATTR__MAX);
2574 if (kerr != KCGI_OK)
2576 kerr = khtml_puts(gw_trans->gw_html_req, "Committer: ");
2577 if (kerr != KCGI_OK)
2579 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2580 if (kerr != KCGI_OK)
2582 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2583 KATTR_ID, "header_committer", KATTR__MAX);
2584 if (kerr != KCGI_OK)
2586 kerr = khtml_puts(gw_trans->gw_html_req, str);
2587 if (kerr != KCGI_OK)
2589 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2591 if (error == NULL && kerr != KCGI_OK)
2592 error = gw_kcgi_error(kerr);
2596 static const struct got_error *
2597 gw_gen_commit_msg_header(struct gw_trans *gw_trans, char *str)
2599 const struct got_error *error = NULL;
2600 enum kcgi_err kerr = KCGI_OK;
2602 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2603 KATTR_ID, "header_commit_msg_title", KATTR__MAX);
2604 if (kerr != KCGI_OK)
2606 kerr = khtml_puts(gw_trans->gw_html_req, "Message: ");
2607 if (kerr != KCGI_OK)
2609 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2610 if (kerr != KCGI_OK)
2612 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2613 KATTR_ID, "header_commit_msg", KATTR__MAX);
2614 if (kerr != KCGI_OK)
2616 kerr = khttp_puts(gw_trans->gw_req, str);
2617 if (kerr != KCGI_OK)
2619 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2621 if (error == NULL && kerr != KCGI_OK)
2622 error = gw_kcgi_error(kerr);
2626 static const struct got_error *
2627 gw_gen_tree_header(struct gw_trans *gw_trans, char *str)
2629 const struct got_error *error = NULL;
2630 enum kcgi_err kerr = KCGI_OK;
2632 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2633 KATTR_ID, "header_tree_title", KATTR__MAX);
2634 if (kerr != KCGI_OK)
2636 kerr = khtml_puts(gw_trans->gw_html_req, "Tree: ");
2637 if (kerr != KCGI_OK)
2639 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2640 if (kerr != KCGI_OK)
2642 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
2643 KATTR_ID, "header_tree", KATTR__MAX);
2644 if (kerr != KCGI_OK)
2646 kerr = khtml_puts(gw_trans->gw_html_req, str);
2647 if (kerr != KCGI_OK)
2649 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2651 if (error == NULL && kerr != KCGI_OK)
2652 error = gw_kcgi_error(kerr);
2656 static const struct got_error *
2657 gw_get_repo_description(char **description, struct gw_trans *gw_trans,
2660 const struct got_error *error = NULL;
2662 char *d_file = NULL;
2666 *description = NULL;
2667 if (gw_trans->gw_conf->got_show_repo_description == 0)
2670 if (asprintf(&d_file, "%s/description", dir) == -1)
2671 return got_error_from_errno("asprintf");
2673 f = fopen(d_file, "r");
2675 if (errno == ENOENT || errno == EACCES)
2677 error = got_error_from_errno2("fopen", d_file);
2681 if (fseek(f, 0, SEEK_END) == -1) {
2682 error = got_ferror(f, GOT_ERR_IO);
2687 error = got_ferror(f, GOT_ERR_IO);
2690 if (fseek(f, 0, SEEK_SET) == -1) {
2691 error = got_ferror(f, GOT_ERR_IO);
2694 *description = calloc(len + 1, sizeof(**description));
2695 if (*description == NULL) {
2696 error = got_error_from_errno("calloc");
2700 n = fread(*description, 1, len, f);
2701 if (n == 0 && ferror(f))
2702 error = got_ferror(f, GOT_ERR_IO);
2704 if (f != NULL && fclose(f) == EOF && error == NULL)
2705 error = got_error_from_errno("fclose");
2710 static const struct got_error *
2711 gw_get_time_str(char **repo_age, time_t committer_time, int ref_tm)
2715 char *years = "years ago", *months = "months ago";
2716 char *weeks = "weeks ago", *days = "days ago", *hours = "hours ago";
2717 char *minutes = "minutes ago", *seconds = "seconds ago";
2718 char *now = "right now";
2726 diff_time = time(NULL) - committer_time;
2727 if (diff_time > 60 * 60 * 24 * 365 * 2) {
2728 if (asprintf(repo_age, "%lld %s",
2729 (diff_time / 60 / 60 / 24 / 365), years) == -1)
2730 return got_error_from_errno("asprintf");
2731 } else if (diff_time > 60 * 60 * 24 * (365 / 12) * 2) {
2732 if (asprintf(repo_age, "%lld %s",
2733 (diff_time / 60 / 60 / 24 / (365 / 12)),
2735 return got_error_from_errno("asprintf");
2736 } else if (diff_time > 60 * 60 * 24 * 7 * 2) {
2737 if (asprintf(repo_age, "%lld %s",
2738 (diff_time / 60 / 60 / 24 / 7), weeks) == -1)
2739 return got_error_from_errno("asprintf");
2740 } else if (diff_time > 60 * 60 * 24 * 2) {
2741 if (asprintf(repo_age, "%lld %s",
2742 (diff_time / 60 / 60 / 24), days) == -1)
2743 return got_error_from_errno("asprintf");
2744 } else if (diff_time > 60 * 60 * 2) {
2745 if (asprintf(repo_age, "%lld %s",
2746 (diff_time / 60 / 60), hours) == -1)
2747 return got_error_from_errno("asprintf");
2748 } else if (diff_time > 60 * 2) {
2749 if (asprintf(repo_age, "%lld %s", (diff_time / 60),
2751 return got_error_from_errno("asprintf");
2752 } else if (diff_time > 2) {
2753 if (asprintf(repo_age, "%lld %s", diff_time,
2755 return got_error_from_errno("asprintf");
2757 if (asprintf(repo_age, "%s", now) == -1)
2758 return got_error_from_errno("asprintf");
2762 if (gmtime_r(&committer_time, &tm) == NULL)
2763 return got_error_from_errno("gmtime_r");
2765 s = asctime_r(&tm, datebuf);
2767 return got_error_from_errno("asctime_r");
2769 if (asprintf(repo_age, "%s UTC", datebuf) == -1)
2770 return got_error_from_errno("asprintf");
2776 static const struct got_error *
2777 gw_get_repo_age(char **repo_age, struct gw_trans *gw_trans, char *dir,
2778 const char *refname, int ref_tm)
2780 const struct got_error *error = NULL;
2781 struct got_repository *repo = NULL;
2782 struct got_commit_object *commit = NULL;
2783 struct got_reflist_head refs;
2784 struct got_reflist_entry *re;
2785 time_t committer_time = 0, cmp_time = 0;
2790 if (gw_trans->gw_conf->got_show_repo_age == 0)
2794 repo = gw_trans->repo;
2796 error = got_repo_open(&repo, dir, NULL);
2801 error = got_ref_list(&refs, repo, "refs/heads",
2802 got_ref_cmp_by_name, NULL);
2807 * Find the youngest branch tip in the repository, or the age of
2808 * the a specific branch tip if a name was provided by the caller.
2810 TAILQ_FOREACH(re, &refs, entry) {
2811 struct got_object_id *id = NULL;
2813 if (refname && strcmp(got_ref_get_name(re->ref), refname) != 0)
2816 error = got_ref_resolve(&id, repo, re->ref);
2820 error = got_object_open_as_commit(&commit, repo, id);
2826 got_object_commit_get_committer_time(commit);
2827 got_object_commit_close(commit);
2828 if (cmp_time < committer_time)
2829 cmp_time = committer_time;
2835 if (cmp_time != 0) {
2836 committer_time = cmp_time;
2837 error = gw_get_time_str(repo_age, committer_time, ref_tm);
2840 got_ref_list_free(&refs);
2841 if (gw_trans->repo == NULL) {
2842 const struct got_error *close_err = got_repo_close(repo);
2849 static const struct got_error *
2850 gw_output_diff(struct gw_trans *gw_trans, struct gw_header *header)
2852 const struct got_error *error;
2854 struct got_object_id *id1 = NULL, *id2 = NULL;
2855 char *label1 = NULL, *label2 = NULL, *line = NULL;
2857 size_t linesize = 0;
2859 enum kcgi_err kerr = KCGI_OK;
2865 if (header->parent_id != NULL &&
2866 strncmp(header->parent_id, "/dev/null", 9) != 0) {
2867 error = got_repo_match_object_id(&id1, &label1,
2868 header->parent_id, GOT_OBJ_TYPE_ANY,
2869 &header->refs, gw_trans->repo);
2874 error = got_repo_match_object_id(&id2, &label2,
2875 header->commit_id, GOT_OBJ_TYPE_ANY, &header->refs,
2880 error = got_object_get_type(&obj_type, gw_trans->repo, id2);
2884 case GOT_OBJ_TYPE_BLOB:
2885 error = got_diff_objects_as_blobs(NULL, NULL, id1, id2,
2886 NULL, NULL, 3, 0, 0, gw_trans->repo, f);
2888 case GOT_OBJ_TYPE_TREE:
2889 error = got_diff_objects_as_trees(NULL, NULL, id1, id2,
2890 "", "", 3, 0, 0, gw_trans->repo, f);
2892 case GOT_OBJ_TYPE_COMMIT:
2893 error = got_diff_objects_as_commits(NULL, NULL, id1, id2,
2894 3, 0, 0, gw_trans->repo, f);
2897 error = got_error(GOT_ERR_OBJ_TYPE);
2902 if (fseek(f, 0, SEEK_SET) == -1) {
2903 error = got_ferror(f, GOT_ERR_IO);
2907 while ((linelen = getline(&line, &linesize, f)) != -1) {
2908 error = gw_colordiff_line(gw_trans, line);
2911 /* XXX: KHTML_PRETTY breaks this */
2912 kerr = khtml_puts(gw_trans->gw_html_req, line);
2913 if (kerr != KCGI_OK)
2915 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
2916 if (kerr != KCGI_OK)
2919 if (linelen == -1 && ferror(f))
2920 error = got_error_from_errno("getline");
2922 if (f && fclose(f) == EOF && error == NULL)
2923 error = got_error_from_errno("fclose");
2930 if (error == NULL && kerr != KCGI_OK)
2931 error = gw_kcgi_error(kerr);
2935 static const struct got_error *
2936 gw_get_repo_owner(char **owner, struct gw_trans *gw_trans, char *dir)
2938 const struct got_error *error = NULL, *close_err;
2939 struct got_repository *repo;
2940 const char *gitconfig_owner;
2944 if (gw_trans->gw_conf->got_show_repo_owner == 0)
2947 error = got_repo_open(&repo, dir, NULL);
2950 gitconfig_owner = got_repo_get_gitconfig_owner(repo);
2951 if (gitconfig_owner) {
2952 *owner = strdup(gitconfig_owner);
2954 error = got_error_from_errno("strdup");
2956 close_err = got_repo_close(repo);
2962 static const struct got_error *
2963 gw_get_clone_url(char **url, struct gw_trans *gw_trans, char *dir)
2965 const struct got_error *error = NULL;
2967 char *d_file = NULL;
2973 if (asprintf(&d_file, "%s/cloneurl", dir) == -1)
2974 return got_error_from_errno("asprintf");
2976 f = fopen(d_file, "r");
2978 if (errno != ENOENT && errno != EACCES)
2979 error = got_error_from_errno2("fopen", d_file);
2983 if (fseek(f, 0, SEEK_END) == -1) {
2984 error = got_ferror(f, GOT_ERR_IO);
2989 error = got_ferror(f, GOT_ERR_IO);
2992 if (fseek(f, 0, SEEK_SET) == -1) {
2993 error = got_ferror(f, GOT_ERR_IO);
2997 *url = calloc(len + 1, sizeof(**url));
2999 error = got_error_from_errno("calloc");
3003 n = fread(*url, 1, len, f);
3004 if (n == 0 && ferror(f))
3005 error = got_ferror(f, GOT_ERR_IO);
3007 if (f && fclose(f) == EOF && error == NULL)
3008 error = got_error_from_errno("fclose");
3013 static const struct got_error *
3014 gw_output_repo_tags(struct gw_trans *gw_trans, struct gw_header *header,
3015 int limit, int tag_type)
3017 const struct got_error *error = NULL;
3018 struct got_reflist_head refs;
3019 struct got_reflist_entry *re;
3021 char *id_str = NULL, *newline, *href_commits = NULL;
3022 char *tag_commit0 = NULL, *href_tag = NULL, *href_briefs = NULL;
3023 struct got_tag_object *tag = NULL;
3024 enum kcgi_err kerr = KCGI_OK;
3025 int summary_header_displayed = 0, chk_next = 0;
3026 int tag_count = 0, commit_found = 0, c_cnt = 0;
3030 error = got_ref_list(&refs, gw_trans->repo, "refs/tags",
3031 got_ref_cmp_tags, gw_trans->repo);
3035 TAILQ_FOREACH(re, &refs, entry) {
3036 const char *refname;
3038 const char *tag_commit;
3040 struct got_object_id *id;
3041 struct got_commit_object *commit = NULL;
3043 refname = got_ref_get_name(re->ref);
3044 if (strncmp(refname, "refs/tags/", 10) != 0)
3048 error = got_ref_resolve(&id, gw_trans->repo, re->ref);
3052 error = got_object_open_as_tag(&tag, gw_trans->repo, id);
3054 if (error->code != GOT_ERR_OBJ_TYPE) {
3058 /* "lightweight" tag */
3059 error = got_object_open_as_commit(&commit,
3060 gw_trans->repo, id);
3065 tagger = got_object_commit_get_committer(commit);
3067 got_object_commit_get_committer_time(commit);
3068 error = got_object_id_str(&id_str, id);
3072 tagger = got_object_tag_get_tagger(tag);
3073 tagger_time = got_object_tag_get_tagger_time(tag);
3074 error = got_object_id_str(&id_str,
3075 got_object_tag_get_object_id(tag));
3080 if (tag_type == TAGFULL && strncmp(id_str, header->commit_id,
3081 strlen(id_str)) != 0)
3084 if (tag_type == TAGBRIEF && gw_trans->commit_id &&
3085 commit_found == 0 && strncmp(id_str, gw_trans->commit_id,
3086 strlen(id_str)) != 0)
3094 gw_trans->next_id = strdup(id_str);
3095 if (gw_trans->next_id == NULL)
3096 error = got_error_from_errno("strdup");
3101 error = got_object_commit_get_logmsg(&tag_commit0,
3105 got_object_commit_close(commit);
3107 tag_commit0 = strdup(got_object_tag_get_message(tag));
3108 if (tag_commit0 == NULL) {
3109 error = got_error_from_errno("strdup");
3114 tag_commit = tag_commit0;
3115 while (*tag_commit == '\n')
3120 newline = strchr(tag_commit, '\n');
3124 if (summary_header_displayed == 0) {
3125 kerr = khtml_attr(gw_trans->gw_html_req,
3126 KELEM_DIV, KATTR_ID,
3127 "summary_tags_title_wrapper", KATTR__MAX);
3128 if (kerr != KCGI_OK)
3130 kerr = khtml_attr(gw_trans->gw_html_req,
3131 KELEM_DIV, KATTR_ID,
3132 "summary_tags_title", KATTR__MAX);
3133 if (kerr != KCGI_OK)
3135 kerr = khtml_puts(gw_trans->gw_html_req,
3137 if (kerr != KCGI_OK)
3139 kerr = khtml_closeelem(gw_trans->gw_html_req,
3141 if (kerr != KCGI_OK)
3143 kerr = khtml_attr(gw_trans->gw_html_req,
3144 KELEM_DIV, KATTR_ID,
3145 "summary_tags_content", KATTR__MAX);
3146 if (kerr != KCGI_OK)
3148 summary_header_displayed = 1;
3151 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
3152 KATTR_ID, "tag_wrapper", KATTR__MAX);
3153 if (kerr != KCGI_OK)
3155 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
3156 KATTR_ID, "tag_age", KATTR__MAX);
3157 if (kerr != KCGI_OK)
3159 error = gw_get_time_str(&age, tagger_time, TM_DIFF);
3162 kerr = khtml_puts(gw_trans->gw_html_req,
3164 if (kerr != KCGI_OK)
3166 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
3167 if (kerr != KCGI_OK)
3169 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
3170 KATTR_ID, "tag", KATTR__MAX);
3171 if (kerr != KCGI_OK)
3173 kerr = khtml_puts(gw_trans->gw_html_req, refname);
3174 if (kerr != KCGI_OK)
3176 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
3177 if (kerr != KCGI_OK)
3179 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
3180 KATTR_ID, "tag_name", KATTR__MAX);
3181 if (kerr != KCGI_OK)
3184 href_tag = khttp_urlpart(NULL, NULL, "gotweb", "path",
3185 gw_trans->repo_name, "action", "tag", "commit",
3187 if (href_tag == NULL) {
3188 error = got_error_from_errno("khttp_urlpart");
3191 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
3192 KATTR_HREF, href_tag, KATTR__MAX);
3193 if (kerr != KCGI_OK)
3195 kerr = khtml_puts(gw_trans->gw_html_req, tag_commit);
3196 if (kerr != KCGI_OK)
3198 kerr = khtml_closeelem(gw_trans->gw_html_req, 3);
3199 if (kerr != KCGI_OK)
3202 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
3203 KATTR_ID, "navs_wrapper", KATTR__MAX);
3204 if (kerr != KCGI_OK)
3206 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
3207 KATTR_ID, "navs", KATTR__MAX);
3208 if (kerr != KCGI_OK)
3211 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
3212 KATTR_HREF, href_tag, KATTR__MAX);
3213 if (kerr != KCGI_OK)
3215 kerr = khtml_puts(gw_trans->gw_html_req, "tag");
3216 if (kerr != KCGI_OK)
3218 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
3219 if (kerr != KCGI_OK)
3222 kerr = khtml_puts(gw_trans->gw_html_req, " | ");
3223 if (kerr != KCGI_OK)
3226 href_briefs = khttp_urlpart(NULL, NULL, "gotweb",
3227 "path", gw_trans->repo_name, "action", "briefs",
3228 "commit", id_str, NULL);
3229 if (href_briefs == NULL) {
3230 error = got_error_from_errno("khttp_urlpart");
3233 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
3234 KATTR_HREF, href_briefs, KATTR__MAX);
3235 if (kerr != KCGI_OK)
3237 kerr = khtml_puts(gw_trans->gw_html_req,
3239 if (kerr != KCGI_OK)
3241 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
3242 if (kerr != KCGI_OK)
3245 kerr = khtml_puts(gw_trans->gw_html_req, " | ");
3246 if (kerr != KCGI_OK)
3249 href_commits = khttp_urlpart(NULL, NULL, "gotweb",
3250 "path", gw_trans->repo_name, "action", "commits",
3251 "commit", id_str, NULL);
3252 if (href_commits == NULL) {
3253 error = got_error_from_errno("khttp_urlpart");
3256 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
3257 KATTR_HREF, href_commits, KATTR__MAX);
3258 if (kerr != KCGI_OK)
3260 kerr = khtml_puts(gw_trans->gw_html_req, "commits");
3261 if (kerr != KCGI_OK)
3263 kerr = khtml_closeelem(gw_trans->gw_html_req, 3);
3264 if (kerr != KCGI_OK)
3267 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
3268 KATTR_ID, "dotted_line", KATTR__MAX);
3269 if (kerr != KCGI_OK)
3271 kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
3272 if (kerr != KCGI_OK)
3276 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
3277 KATTR_ID, "tag_info_date_title", KATTR__MAX);
3278 if (kerr != KCGI_OK)
3280 kerr = khtml_puts(gw_trans->gw_html_req, "Tag Date:");
3281 if (kerr != KCGI_OK)
3283 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
3284 if (kerr != KCGI_OK)
3286 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
3287 KATTR_ID, "tag_info_date", KATTR__MAX);
3288 if (kerr != KCGI_OK)
3290 error = gw_get_time_str(&age, tagger_time, TM_LONG);
3293 kerr = khtml_puts(gw_trans->gw_html_req,
3295 if (kerr != KCGI_OK)
3297 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
3298 if (kerr != KCGI_OK)
3301 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
3302 KATTR_ID, "tag_info_tagger_title", KATTR__MAX);
3303 if (kerr != KCGI_OK)
3305 kerr = khtml_puts(gw_trans->gw_html_req, "Tagger:");
3306 if (kerr != KCGI_OK)
3308 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
3309 if (kerr != KCGI_OK)
3311 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
3312 KATTR_ID, "tag_info_date", KATTR__MAX);
3313 if (kerr != KCGI_OK)
3315 kerr = khtml_puts(gw_trans->gw_html_req, tagger);
3316 if (kerr != KCGI_OK)
3318 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
3319 if (kerr != KCGI_OK)
3322 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
3323 KATTR_ID, "tag_info", KATTR__MAX);
3324 if (kerr != KCGI_OK)
3326 kerr = khttp_puts(gw_trans->gw_req, tag_commit);
3327 if (kerr != KCGI_OK)
3333 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
3334 if (kerr != KCGI_OK)
3337 if (limit && --limit == 0)
3341 got_object_tag_close(tag);
3354 href_commits = NULL;
3356 if (tag_count == 0) {
3357 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
3358 "summary_tags_title_wrapper", KATTR__MAX);
3359 if (kerr != KCGI_OK)
3361 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
3362 "summary_tags_title", KATTR__MAX);
3363 if (kerr != KCGI_OK)
3365 kerr = khtml_puts(gw_trans->gw_html_req, "Tags");
3366 if (kerr != KCGI_OK)
3368 kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
3369 if (kerr != KCGI_OK)
3371 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
3372 "summary_tags_content", KATTR__MAX);
3373 if (kerr != KCGI_OK)
3375 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
3376 "tags_info", KATTR__MAX);
3377 if (kerr != KCGI_OK)
3379 kerr = khttp_puts(gw_trans->gw_req,
3380 "There are no tags for this repo.");
3381 if (kerr != KCGI_OK)
3383 kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
3388 TAILQ_FOREACH_REVERSE(re, &refs, got_reflist_head, entry) {
3389 const char *refname;
3392 struct got_object_id *id;
3393 struct got_commit_object *commit = NULL;
3395 refname = got_ref_get_name(re->ref);
3396 if (strncmp(refname, "refs/tags/", 10) != 0)
3400 error = got_ref_resolve(&id, gw_trans->repo, re->ref);
3404 error = got_object_open_as_tag(&tag, gw_trans->repo, id);
3406 if (error->code != GOT_ERR_OBJ_TYPE) {
3410 /* "lightweight" tag */
3411 error = got_object_open_as_commit(&commit,
3412 gw_trans->repo, id);
3417 tagger = got_object_commit_get_committer(commit);
3419 got_object_commit_get_committer_time(commit);
3420 error = got_object_id_str(&id_str, id);
3424 tagger = got_object_tag_get_tagger(tag);
3425 tagger_time = got_object_tag_get_tagger_time(tag);
3426 error = got_object_id_str(&id_str,
3427 got_object_tag_get_object_id(tag));
3432 if (tag_type == TAGFULL && strncmp(id_str, header->commit_id,
3433 strlen(id_str)) != 0)
3436 if (commit_found == 0 && tag_type == TAGBRIEF &&
3437 gw_trans->commit_id != NULL &&
3438 strncmp(id_str, gw_trans->commit_id, strlen(id_str)) != 0)
3443 if (gw_trans->commit_id != NULL &&
3444 strcmp(id_str, gw_trans->commit_id) != 0 &&
3445 (re == TAILQ_FIRST(&refs) ||
3446 c_cnt == gw_trans->gw_conf->got_max_commits_display)) {
3447 gw_trans->prev_id = strdup(id_str);
3448 if (gw_trans->prev_id == NULL) {
3449 error = got_error_from_errno("strdup");
3458 got_object_tag_close(tag);
3465 got_ref_list_free(&refs);
3466 if (error == NULL && kerr != KCGI_OK)
3467 error = gw_kcgi_error(kerr);
3472 gw_free_header(struct gw_header *header)
3475 free(header->author);
3476 free(header->committer);
3477 free(header->refs_str);
3478 free(header->commit_id);
3479 free(header->parent_id);
3480 free(header->tree_id);
3481 free(header->commit_msg);
3484 static struct gw_header *
3487 struct gw_header *header;
3489 header = malloc(sizeof(*header));
3493 header->path = NULL;
3494 TAILQ_INIT(&header->refs);
3496 header->refs_str = NULL;
3497 header->commit_id = NULL;
3498 header->committer = NULL;
3499 header->author = NULL;
3500 header->parent_id = NULL;
3501 header->tree_id = NULL;
3502 header->commit_msg = NULL;
3507 static const struct got_error *
3508 gw_get_commits(struct gw_trans * gw_trans, struct gw_header *header,
3509 int limit, struct got_object_id *id)
3511 const struct got_error *error = NULL;
3512 struct got_commit_graph *graph = NULL;
3513 struct got_commit_object *commit = NULL;
3514 int chk_next = 0, chk_multi = 0, c_cnt = 0, commit_found = 0;
3515 struct gw_header *t_header = NULL;
3517 error = got_commit_graph_open(&graph, header->path, 0);
3521 error = got_commit_graph_iter_start(graph, id, gw_trans->repo, NULL,
3527 error = got_commit_graph_iter_next(&id, graph, gw_trans->repo,
3530 if (error->code == GOT_ERR_ITER_COMPLETED)
3537 error = got_object_open_as_commit(&commit, gw_trans->repo, id);
3540 if (limit == 1 && chk_multi == 0 &&
3541 gw_trans->gw_conf->got_max_commits_display != 1) {
3542 error = gw_get_commit(gw_trans, header, commit, id);
3548 struct gw_header *n_header = NULL;
3549 if ((n_header = gw_init_header()) == NULL) {
3550 error = got_error_from_errno("malloc");
3553 TAILQ_INSERT_TAIL(&gw_trans->gw_headers, n_header,
3555 error = got_ref_list(&n_header->refs, gw_trans->repo,
3556 NULL, got_ref_cmp_by_name, NULL);
3560 error = gw_get_commit(gw_trans, n_header, commit, id);
3563 got_ref_list_free(&n_header->refs);
3565 if (gw_trans->commit_id != NULL) {
3566 if (strcmp(gw_trans->commit_id,
3567 n_header->commit_id) == 0)
3573 * check for one more commit before breaking,
3574 * so we know whether to navicate through gw_briefs
3575 * gw_commits and gw_summary
3577 if (chk_next && (gw_trans->action == GW_BRIEFS ||
3578 gw_trans->action == GW_COMMITS ||
3579 gw_trans->action == GW_SUMMARY)) {
3580 gw_trans->next_id = strdup(n_header->commit_id);
3581 if (gw_trans->next_id == NULL)
3582 error = got_error_from_errno("strdup");
3583 TAILQ_REMOVE(&gw_trans->gw_headers, n_header,
3589 if (commit_found == 1 && (error || (limit && --limit == 0))) {
3596 if (gw_trans->prev_id == NULL && gw_trans->commit_id != NULL &&
3597 (gw_trans->action == GW_BRIEFS || gw_trans->action == GW_COMMITS)) {
3599 TAILQ_FOREACH_REVERSE(t_header, &gw_trans->gw_headers,
3601 if (commit_found == 0 &&
3602 strcmp(gw_trans->commit_id,
3603 t_header->commit_id) != 0)
3607 if (gw_trans->commit_id != NULL &&
3608 strcmp(gw_trans->commit_id,
3609 t_header->commit_id) != 0 &&
3610 (c_cnt == gw_trans->gw_conf->got_max_commits_display
3612 TAILQ_FIRST(&gw_trans->gw_headers))) {
3613 gw_trans->prev_id = strdup(t_header->commit_id);
3614 if (gw_trans->prev_id == NULL)
3615 error = got_error_from_errno("strdup");
3623 got_object_commit_close(commit);
3625 got_commit_graph_close(graph);
3629 static const struct got_error *
3630 gw_get_commit(struct gw_trans *gw_trans, struct gw_header *header,
3631 struct got_commit_object *commit, struct got_object_id *id)
3633 const struct got_error *error = NULL;
3634 struct got_reflist_entry *re;
3635 struct got_object_id *id2 = NULL;
3636 struct got_object_qid *parent_id;
3637 char *commit_msg = NULL, *commit_msg0;
3640 TAILQ_FOREACH(re, &header->refs, entry) {
3643 struct got_tag_object *tag = NULL;
3644 struct got_object_id *ref_id;
3647 if (got_ref_is_symbolic(re->ref))
3650 name = got_ref_get_name(re->ref);
3651 if (strncmp(name, "refs/", 5) == 0)
3653 if (strncmp(name, "got/", 4) == 0)
3655 if (strncmp(name, "heads/", 6) == 0)
3657 if (strncmp(name, "remotes/", 8) == 0) {
3659 s = strstr(name, "/" GOT_REF_HEAD);
3660 if (s != NULL && s[strlen(s)] == '\0')
3663 error = got_ref_resolve(&ref_id, gw_trans->repo, re->ref);
3666 if (strncmp(name, "tags/", 5) == 0) {
3667 error = got_object_open_as_tag(&tag, gw_trans->repo,
3670 if (error->code != GOT_ERR_OBJ_TYPE) {
3675 * Ref points at something other
3682 cmp = got_object_id_cmp(tag ?
3683 got_object_tag_get_object_id(tag) : ref_id, id);
3686 got_object_tag_close(tag);
3689 s = header->refs_str;
3690 if (asprintf(&header->refs_str, "%s%s%s", s ? s : "",
3691 s ? ", " : "", name) == -1) {
3692 error = got_error_from_errno("asprintf");
3694 header->refs_str = NULL;
3700 error = got_object_id_str(&header->commit_id, id);
3704 error = got_object_id_str(&header->tree_id,
3705 got_object_commit_get_tree_id(commit));
3709 if (gw_trans->action == GW_DIFF) {
3710 parent_id = STAILQ_FIRST(
3711 got_object_commit_get_parent_ids(commit));
3712 if (parent_id != NULL) {
3713 id2 = got_object_id_dup(parent_id->id);
3715 error = got_object_id_str(&header->parent_id, id2);
3720 header->parent_id = strdup("/dev/null");
3721 if (header->parent_id == NULL) {
3722 error = got_error_from_errno("strdup");
3728 header->committer_time =
3729 got_object_commit_get_committer_time(commit);
3732 strdup(got_object_commit_get_author(commit));
3733 if (header->author == NULL) {
3734 error = got_error_from_errno("strdup");
3738 strdup(got_object_commit_get_committer(commit));
3739 if (header->committer == NULL) {
3740 error = got_error_from_errno("strdup");
3743 error = got_object_commit_get_logmsg(&commit_msg0, commit);
3747 commit_msg = commit_msg0;
3748 while (*commit_msg == '\n')
3751 header->commit_msg = strdup(commit_msg);
3752 if (header->commit_msg == NULL)
3753 error = got_error_from_errno("strdup");
3758 static const struct got_error *
3759 gw_get_header(struct gw_trans *gw_trans, struct gw_header *header, int limit)
3761 const struct got_error *error = NULL;
3762 char *in_repo_path = NULL;
3763 struct got_object_id *id = NULL;
3764 struct got_reference *ref;
3766 error = got_repo_open(&gw_trans->repo, gw_trans->repo_path, NULL);
3770 if (gw_trans->commit_id == NULL || gw_trans->action == GW_COMMITS ||
3771 gw_trans->action == GW_BRIEFS || gw_trans->action == GW_SUMMARY ||
3772 gw_trans->action == GW_TAGS) {
3773 error = got_ref_open(&ref, gw_trans->repo,
3774 gw_trans->headref, 0);
3778 error = got_ref_resolve(&id, gw_trans->repo, ref);
3783 error = got_ref_open(&ref, gw_trans->repo,
3784 gw_trans->commit_id, 0);
3785 if (error == NULL) {
3787 error = got_ref_resolve(&id, gw_trans->repo, ref);
3791 error = got_object_get_type(&obj_type, gw_trans->repo,
3795 if (obj_type == GOT_OBJ_TYPE_TAG) {
3796 struct got_tag_object *tag;
3797 error = got_object_open_as_tag(&tag,
3798 gw_trans->repo, id);
3801 if (got_object_tag_get_object_type(tag) !=
3802 GOT_OBJ_TYPE_COMMIT) {
3803 got_object_tag_close(tag);
3804 error = got_error(GOT_ERR_OBJ_TYPE);
3808 id = got_object_id_dup(
3809 got_object_tag_get_object_id(tag));
3811 error = got_error_from_errno(
3812 "got_object_id_dup");
3813 got_object_tag_close(tag);
3816 } else if (obj_type != GOT_OBJ_TYPE_COMMIT) {
3817 error = got_error(GOT_ERR_OBJ_TYPE);
3821 error = got_repo_match_object_id_prefix(&id,
3822 gw_trans->commit_id, GOT_OBJ_TYPE_COMMIT,
3828 error = got_repo_map_path(&in_repo_path, gw_trans->repo,
3829 gw_trans->repo_path);
3834 header->path = strdup(in_repo_path);
3835 if (header->path == NULL) {
3836 error = got_error_from_errno("strdup");
3841 error = got_ref_list(&header->refs, gw_trans->repo, NULL,
3842 got_ref_cmp_by_name, NULL);
3846 error = gw_get_commits(gw_trans, header, limit, id);
3848 got_ref_list_free(&header->refs);
3858 char datebuf[11]; /* YYYY-MM-DD + NUL */
3861 struct gw_blame_cb_args {
3862 struct blame_line *lines;
3866 off_t *line_offsets;
3868 struct got_repository *repo;
3869 struct gw_trans *gw_trans;
3872 static const struct got_error *
3873 gw_blame_cb(void *arg, int nlines, int lineno, struct got_object_id *id)
3875 const struct got_error *err = NULL;
3876 struct gw_blame_cb_args *a = arg;
3877 struct blame_line *bline;
3879 size_t linesize = 0;
3880 struct got_commit_object *commit = NULL;
3883 time_t committer_time;
3884 enum kcgi_err kerr = KCGI_OK;
3886 if (nlines != a->nlines ||
3887 (lineno != -1 && lineno < 1) || lineno > a->nlines)
3888 return got_error(GOT_ERR_RANGE);
3891 return NULL; /* no change in this commit */
3893 /* Annotate this line. */
3894 bline = &a->lines[lineno - 1];
3895 if (bline->annotated)
3897 err = got_object_id_str(&bline->id_str, id);
3901 err = got_object_open_as_commit(&commit, a->repo, id);
3905 bline->committer = strdup(got_object_commit_get_committer(commit));
3906 if (bline->committer == NULL) {
3907 err = got_error_from_errno("strdup");
3911 committer_time = got_object_commit_get_committer_time(commit);
3912 if (gmtime_r(&committer_time, &tm) == NULL)
3913 return got_error_from_errno("gmtime_r");
3914 if (strftime(bline->datebuf, sizeof(bline->datebuf), "%G-%m-%d",
3916 err = got_error(GOT_ERR_NO_SPACE);
3919 bline->annotated = 1;
3921 /* Print lines annotated so far. */
3922 bline = &a->lines[a->lineno_cur - 1];
3923 if (!bline->annotated)
3926 offset = a->line_offsets[a->lineno_cur - 1];
3927 if (fseeko(a->f, offset, SEEK_SET) == -1) {
3928 err = got_error_from_errno("fseeko");
3932 while (bline->annotated) {
3933 char *smallerthan, *at, *nl, *committer;
3934 char *href_diff = NULL;
3937 if (getline(&line, &linesize, a->f) == -1) {
3939 err = got_error_from_errno("getline");
3943 committer = bline->committer;
3944 smallerthan = strchr(committer, '<');
3945 if (smallerthan && smallerthan[1] != '\0')
3946 committer = smallerthan + 1;
3947 at = strchr(committer, '@');
3950 len = strlen(committer);
3952 committer[8] = '\0';
3954 nl = strchr(line, '\n');
3958 kerr = khtml_attr(a->gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
3959 "blame_wrapper", KATTR__MAX);
3960 if (kerr != KCGI_OK)
3962 kerr = khtml_attr(a->gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
3963 "blame_number", KATTR__MAX);
3964 if (kerr != KCGI_OK)
3966 kerr = khtml_printf(a->gw_trans->gw_html_req, "%.*d",
3967 a->nlines_prec, a->lineno_cur);
3968 if (kerr != KCGI_OK)
3970 kerr = khtml_closeelem(a->gw_trans->gw_html_req, 1);
3971 if (kerr != KCGI_OK)
3974 kerr = khtml_attr(a->gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
3975 "blame_hash", KATTR__MAX);
3976 if (kerr != KCGI_OK)
3979 href_diff = khttp_urlpart(NULL, NULL, "gotweb", "path",
3980 a->gw_trans->repo_name, "action", "diff", "commit",
3981 bline->id_str, NULL);
3982 if (href_diff == NULL) {
3983 err = got_error_from_errno("khttp_urlpart");
3986 kerr = khtml_attr(a->gw_trans->gw_html_req, KELEM_A,
3987 KATTR_HREF, href_diff, KATTR__MAX);
3988 if (kerr != KCGI_OK)
3990 kerr = khtml_printf(a->gw_trans->gw_html_req, "%.8s",
3992 if (kerr != KCGI_OK)
3994 kerr = khtml_closeelem(a->gw_trans->gw_html_req, 2);
3995 if (kerr != KCGI_OK)
3998 kerr = khtml_attr(a->gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
3999 "blame_date", KATTR__MAX);
4000 if (kerr != KCGI_OK)
4002 kerr = khtml_puts(a->gw_trans->gw_html_req, bline->datebuf);
4003 if (kerr != KCGI_OK)
4005 kerr = khtml_closeelem(a->gw_trans->gw_html_req, 1);
4006 if (kerr != KCGI_OK)
4009 kerr = khtml_attr(a->gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
4010 "blame_author", KATTR__MAX);
4011 if (kerr != KCGI_OK)
4013 kerr = khtml_puts(a->gw_trans->gw_html_req, committer);
4014 if (kerr != KCGI_OK)
4016 kerr = khtml_closeelem(a->gw_trans->gw_html_req, 1);
4017 if (kerr != KCGI_OK)
4020 kerr = khtml_attr(a->gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
4021 "blame_code", KATTR__MAX);
4022 if (kerr != KCGI_OK)
4024 kerr = khtml_puts(a->gw_trans->gw_html_req, line);
4025 if (kerr != KCGI_OK)
4027 kerr = khtml_closeelem(a->gw_trans->gw_html_req, 1);
4028 if (kerr != KCGI_OK)
4031 kerr = khtml_closeelem(a->gw_trans->gw_html_req, 1);
4032 if (kerr != KCGI_OK)
4036 bline = &a->lines[a->lineno_cur - 1];
4042 got_object_commit_close(commit);
4044 if (err == NULL && kerr != KCGI_OK)
4045 err = gw_kcgi_error(kerr);
4049 static const struct got_error *
4050 gw_output_file_blame(struct gw_trans *gw_trans, struct gw_header *header)
4052 const struct got_error *error = NULL;
4053 struct got_object_id *obj_id = NULL;
4054 struct got_object_id *commit_id = NULL;
4055 struct got_blob_object *blob = NULL;
4056 char *path = NULL, *in_repo_path = NULL;
4057 struct gw_blame_cb_args bca;
4061 if (asprintf(&path, "%s%s%s",
4062 gw_trans->repo_folder ? gw_trans->repo_folder : "",
4063 gw_trans->repo_folder ? "/" : "",
4064 gw_trans->repo_file) == -1) {
4065 error = got_error_from_errno("asprintf");
4069 error = got_repo_map_path(&in_repo_path, gw_trans->repo, path);
4073 error = got_repo_match_object_id(&commit_id, NULL, gw_trans->commit_id,
4074 GOT_OBJ_TYPE_COMMIT, &header->refs, gw_trans->repo);
4078 error = got_object_id_by_path(&obj_id, gw_trans->repo, commit_id,
4083 if (obj_id == NULL) {
4084 error = got_error(GOT_ERR_NO_OBJ);
4088 error = got_object_get_type(&obj_type, gw_trans->repo, obj_id);
4092 if (obj_type != GOT_OBJ_TYPE_BLOB) {
4093 error = got_error(GOT_ERR_OBJ_TYPE);
4097 error = got_object_open_as_blob(&blob, gw_trans->repo, obj_id, 8192);
4101 bca.f = got_opentemp();
4102 if (bca.f == NULL) {
4103 error = got_error_from_errno("got_opentemp");
4106 error = got_object_blob_dump_to_file(&filesize, &bca.nlines,
4107 &bca.line_offsets, bca.f, blob);
4108 if (error || bca.nlines == 0)
4111 /* Don't include \n at EOF in the blame line count. */
4112 if (bca.line_offsets[bca.nlines - 1] == filesize)
4115 bca.lines = calloc(bca.nlines, sizeof(*bca.lines));
4116 if (bca.lines == NULL) {
4117 error = got_error_from_errno("calloc");
4121 bca.nlines_prec = 0;
4127 bca.repo = gw_trans->repo;
4128 bca.gw_trans = gw_trans;
4130 error = got_blame(in_repo_path, commit_id, gw_trans->repo, gw_blame_cb,
4139 free(bca.line_offsets);
4140 for (i = 0; i < bca.nlines; i++) {
4141 struct blame_line *bline = &bca.lines[i];
4142 free(bline->id_str);
4143 free(bline->committer);
4146 if (bca.f && fclose(bca.f) == EOF && error == NULL)
4147 error = got_error_from_errno("fclose");
4150 got_object_blob_close(blob);
4154 static const struct got_error *
4155 gw_output_blob_buf(struct gw_trans *gw_trans, struct gw_header *header)
4157 const struct got_error *error = NULL;
4158 struct got_object_id *obj_id = NULL;
4159 struct got_object_id *commit_id = NULL;
4160 struct got_blob_object *blob = NULL;
4161 char *path = NULL, *in_repo_path = NULL;
4162 int obj_type, set_mime = 0;
4165 enum kcgi_err kerr = KCGI_OK;
4167 if (asprintf(&path, "%s%s%s",
4168 gw_trans->repo_folder ? gw_trans->repo_folder : "",
4169 gw_trans->repo_folder ? "/" : "",
4170 gw_trans->repo_file) == -1) {
4171 error = got_error_from_errno("asprintf");
4175 error = got_repo_map_path(&in_repo_path, gw_trans->repo, path);
4179 error = got_repo_match_object_id(&commit_id, NULL, gw_trans->commit_id,
4180 GOT_OBJ_TYPE_COMMIT, &header->refs, gw_trans->repo);
4184 error = got_object_id_by_path(&obj_id, gw_trans->repo, commit_id,
4189 if (obj_id == NULL) {
4190 error = got_error(GOT_ERR_NO_OBJ);
4194 error = got_object_get_type(&obj_type, gw_trans->repo, obj_id);
4198 if (obj_type != GOT_OBJ_TYPE_BLOB) {
4199 error = got_error(GOT_ERR_OBJ_TYPE);
4203 error = got_object_open_as_blob(&blob, gw_trans->repo, obj_id, 8192);
4207 hdrlen = got_object_blob_get_hdrlen(blob);
4209 error = got_object_blob_read_block(&len, blob);
4212 buf = got_object_blob_get_read_buf(blob);
4215 * Skip blob object header first time around,
4216 * which also contains a zero byte.
4219 if (set_mime == 0) {
4220 if (isbinary(buf, len - hdrlen))
4221 gw_trans->mime = KMIME_APP_OCTET_STREAM;
4223 gw_trans->mime = KMIME_TEXT_PLAIN;
4225 error = gw_display_index(gw_trans);
4229 kerr = khttp_write(gw_trans->gw_req, buf, len - hdrlen);
4230 if (kerr != KCGI_OK)
4240 got_object_blob_close(blob);
4241 if (error == NULL && kerr != KCGI_OK)
4242 error = gw_kcgi_error(kerr);
4246 static const struct got_error *
4247 gw_output_repo_tree(struct gw_trans *gw_trans, struct gw_header *header)
4249 const struct got_error *error = NULL;
4250 struct got_object_id *tree_id = NULL, *commit_id = NULL;
4251 struct got_tree_object *tree = NULL;
4252 char *path = NULL, *in_repo_path = NULL;
4253 char *id_str = NULL;
4254 char *build_folder = NULL;
4255 char *href_blob = NULL, *href_blame = NULL;
4256 const char *class = NULL;
4257 int nentries, i, class_flip = 0;
4258 enum kcgi_err kerr = KCGI_OK;
4260 if (gw_trans->repo_folder != NULL) {
4261 path = strdup(gw_trans->repo_folder);
4263 error = got_error_from_errno("strdup");
4267 error = got_repo_map_path(&in_repo_path, gw_trans->repo,
4268 gw_trans->repo_path);
4272 path = in_repo_path;
4275 if (gw_trans->commit_id == NULL) {
4276 struct got_reference *head_ref;
4277 error = got_ref_open(&head_ref, gw_trans->repo,
4278 gw_trans->headref, 0);
4281 error = got_ref_resolve(&commit_id, gw_trans->repo, head_ref);
4284 got_ref_close(head_ref);
4286 * gw_trans->commit_id was not parsed from the querystring
4287 * we hit this code path from gw_index, where we don't know the
4288 * commit values for the tree link yet, so set
4289 * gw_trans->commit_id here to continue further into the tree
4291 error = got_object_id_str(&gw_trans->commit_id, commit_id);
4296 error = got_repo_match_object_id(&commit_id, NULL,
4297 gw_trans->commit_id, GOT_OBJ_TYPE_COMMIT, &header->refs,
4303 error = got_object_id_by_path(&tree_id, gw_trans->repo, commit_id,
4308 error = got_object_open_as_tree(&tree, gw_trans->repo, tree_id);
4312 nentries = got_object_tree_get_nentries(tree);
4313 for (i = 0; i < nentries; i++) {
4314 struct got_tree_entry *te;
4315 const char *modestr = "";
4318 te = got_object_tree_get_entry(tree, i);
4320 error = got_object_id_str(&id_str, got_tree_entry_get_id(te));
4324 mode = got_tree_entry_get_mode(te);
4325 if (got_object_tree_entry_is_submodule(te))
4327 else if (S_ISLNK(mode))
4329 else if (S_ISDIR(mode))
4331 else if (mode & S_IXUSR)
4334 if (class_flip == 0) {
4335 class = "back_lightgray";
4338 class = "back_white";
4342 if (S_ISDIR(mode)) {
4343 if (asprintf(&build_folder, "%s/%s",
4344 gw_trans->repo_folder ? gw_trans->repo_folder : "",
4345 got_tree_entry_get_name(te)) == -1) {
4346 error = got_error_from_errno("asprintf");
4350 href_blob = khttp_urlpart(NULL, NULL, "gotweb", "path",
4351 gw_trans->repo_name, "action",
4352 gw_get_action_name(gw_trans), "commit",
4353 gw_trans->commit_id, "folder", build_folder, NULL);
4354 if (href_blob == NULL) {
4355 error = got_error_from_errno("khttp_urlpart");
4358 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
4359 KATTR_ID, "tree_wrapper", KATTR__MAX);
4360 if (kerr != KCGI_OK)
4362 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
4363 KATTR_ID, "tree_line", KATTR_CLASS, class,
4365 if (kerr != KCGI_OK)
4367 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
4368 KATTR_HREF, href_blob, KATTR_CLASS,
4369 "diff_directory", KATTR__MAX);
4370 if (kerr != KCGI_OK)
4372 kerr = khtml_printf(gw_trans->gw_html_req, "%s%s",
4373 got_tree_entry_get_name(te), modestr);
4374 if (kerr != KCGI_OK)
4376 kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
4377 if (kerr != KCGI_OK)
4379 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
4380 KATTR_ID, "tree_line_blank", KATTR_CLASS, class,
4382 if (kerr != KCGI_OK)
4384 kerr = khtml_entity(gw_trans->gw_html_req,
4386 if (kerr != KCGI_OK)
4388 kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
4389 if (kerr != KCGI_OK)
4392 href_blob = khttp_urlpart(NULL, NULL, "gotweb", "path",
4393 gw_trans->repo_name, "action", "blob", "commit",
4394 gw_trans->commit_id, "file",
4395 got_tree_entry_get_name(te), "folder",
4396 gw_trans->repo_folder ? gw_trans->repo_folder : "",
4398 if (href_blob == NULL) {
4399 error = got_error_from_errno("khttp_urlpart");
4402 href_blame = khttp_urlpart(NULL, NULL, "gotweb", "path",
4403 gw_trans->repo_name, "action", "blame", "commit",
4404 gw_trans->commit_id, "file",
4405 got_tree_entry_get_name(te), "folder",
4406 gw_trans->repo_folder ? gw_trans->repo_folder : "",
4408 if (href_blame == NULL) {
4409 error = got_error_from_errno("khttp_urlpart");
4412 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
4413 KATTR_ID, "tree_wrapper", KATTR__MAX);
4414 if (kerr != KCGI_OK)
4416 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
4417 KATTR_ID, "tree_line", KATTR_CLASS, class,
4419 if (kerr != KCGI_OK)
4421 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
4422 KATTR_HREF, href_blob, KATTR__MAX);
4423 if (kerr != KCGI_OK)
4425 kerr = khtml_printf(gw_trans->gw_html_req, "%s%s",
4426 got_tree_entry_get_name(te), modestr);
4427 if (kerr != KCGI_OK)
4429 kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
4430 if (kerr != KCGI_OK)
4432 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
4433 KATTR_ID, "tree_line_navs", KATTR_CLASS, class,
4435 if (kerr != KCGI_OK)
4438 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
4439 KATTR_HREF, href_blob, KATTR__MAX);
4440 if (kerr != KCGI_OK)
4442 kerr = khtml_puts(gw_trans->gw_html_req, "blob");
4443 if (kerr != KCGI_OK)
4445 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
4446 if (kerr != KCGI_OK)
4449 kerr = khtml_puts(gw_trans->gw_html_req, " | ");
4450 if (kerr != KCGI_OK)
4453 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A,
4454 KATTR_HREF, href_blame, KATTR__MAX);
4455 if (kerr != KCGI_OK)
4457 kerr = khtml_puts(gw_trans->gw_html_req, "blame");
4458 if (kerr != KCGI_OK)
4461 kerr = khtml_closeelem(gw_trans->gw_html_req, 3);
4462 if (kerr != KCGI_OK)
4470 build_folder = NULL;
4474 got_object_tree_close(tree);
4481 if (error == NULL && kerr != KCGI_OK)
4482 error = gw_kcgi_error(kerr);
4486 static const struct got_error *
4487 gw_output_repo_heads(struct gw_trans *gw_trans)
4489 const struct got_error *error = NULL;
4490 struct got_reflist_head refs;
4491 struct got_reflist_entry *re;
4492 char *age = NULL, *href_summary = NULL, *href_briefs = NULL;
4493 char *href_commits = NULL;
4494 enum kcgi_err kerr = KCGI_OK;
4498 error = got_ref_list(&refs, gw_trans->repo, "refs/heads",
4499 got_ref_cmp_by_name, NULL);
4503 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
4504 KATTR_ID, "summary_heads_title_wrapper", KATTR__MAX);
4505 if (kerr != KCGI_OK)
4507 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
4508 KATTR_ID, "summary_heads_title", KATTR__MAX);
4509 if (kerr != KCGI_OK)
4511 kerr = khtml_puts(gw_trans->gw_html_req, "Heads");
4512 if (kerr != KCGI_OK)
4514 kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
4515 if (kerr != KCGI_OK)
4517 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
4518 KATTR_ID, "summary_heads_content", KATTR__MAX);
4519 if (kerr != KCGI_OK)
4522 TAILQ_FOREACH(re, &refs, entry) {
4523 const char *refname;
4525 if (got_ref_is_symbolic(re->ref))
4528 refname = got_ref_get_name(re->ref);
4529 if (strncmp(refname, "refs/heads/", 11) != 0)
4532 error = gw_get_repo_age(&age, gw_trans, gw_trans->gw_dir->path,
4537 if (strncmp(refname, "refs/heads/", 11) == 0)
4540 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
4541 KATTR_ID, "heads_wrapper", KATTR__MAX);
4542 if (kerr != KCGI_OK)
4544 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
4545 KATTR_ID, "heads_age", KATTR__MAX);
4546 if (kerr != KCGI_OK)
4548 kerr = khtml_puts(gw_trans->gw_html_req, age ? age : "");
4549 if (kerr != KCGI_OK)
4551 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
4552 if (kerr != KCGI_OK)
4554 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
4555 KATTR_ID, "heads_space", KATTR__MAX);
4556 if (kerr != KCGI_OK)
4558 kerr = khtml_entity(gw_trans->gw_html_req, KENTITY_nbsp);
4559 if (kerr != KCGI_OK)
4561 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
4562 if (kerr != KCGI_OK)
4564 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV,
4565 KATTR_ID, "head", KATTR__MAX);
4566 if (kerr != KCGI_OK)
4569 href_summary = khttp_urlpart(NULL, NULL, "gotweb", "path",
4570 gw_trans->repo_name, "action", "summary", "headref",
4572 if (href_summary == NULL) {
4573 error = got_error_from_errno("khttp_urlpart");
4576 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF,
4577 href_summary, KATTR__MAX);
4578 kerr = khtml_puts(gw_trans->gw_html_req, refname);
4579 if (kerr != KCGI_OK)
4581 kerr = khtml_closeelem(gw_trans->gw_html_req, 3);
4582 if (kerr != KCGI_OK)
4585 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
4586 "navs_wrapper", KATTR__MAX);
4587 if (kerr != KCGI_OK)
4589 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
4590 "navs", KATTR__MAX);
4591 if (kerr != KCGI_OK)
4594 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF,
4595 href_summary, KATTR__MAX);
4596 if (kerr != KCGI_OK)
4598 kerr = khtml_puts(gw_trans->gw_html_req, "summary");
4599 if (kerr != KCGI_OK)
4601 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
4602 if (kerr != KCGI_OK)
4605 kerr = khtml_puts(gw_trans->gw_html_req, " | ");
4606 if (kerr != KCGI_OK)
4609 href_briefs = khttp_urlpart(NULL, NULL, "gotweb", "path",
4610 gw_trans->repo_name, "action", "briefs", "headref",
4612 if (href_briefs == NULL) {
4613 error = got_error_from_errno("khttp_urlpart");
4616 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF,
4617 href_briefs, KATTR__MAX);
4618 if (kerr != KCGI_OK)
4620 kerr = khtml_puts(gw_trans->gw_html_req, "commit briefs");
4621 if (kerr != KCGI_OK)
4623 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
4624 if (kerr != KCGI_OK)
4627 kerr = khtml_puts(gw_trans->gw_html_req, " | ");
4628 if (kerr != KCGI_OK)
4631 href_commits = khttp_urlpart(NULL, NULL, "gotweb", "path",
4632 gw_trans->repo_name, "action", "commits", "headref",
4634 if (href_commits == NULL) {
4635 error = got_error_from_errno("khttp_urlpart");
4638 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF,
4639 href_commits, KATTR__MAX);
4640 if (kerr != KCGI_OK)
4642 kerr = khtml_puts(gw_trans->gw_html_req, "commits");
4643 if (kerr != KCGI_OK)
4645 kerr = khtml_closeelem(gw_trans->gw_html_req, 3);
4646 if (kerr != KCGI_OK)
4649 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
4650 "dotted_line", KATTR__MAX);
4651 if (kerr != KCGI_OK)
4653 kerr = khtml_closeelem(gw_trans->gw_html_req, 2);
4654 if (kerr != KCGI_OK)
4657 href_summary = NULL;
4661 href_commits = NULL;
4664 got_ref_list_free(&refs);
4671 static const struct got_error *
4672 gw_output_site_link(struct gw_trans *gw_trans)
4674 const struct got_error *error = NULL;
4675 char *href_summary = NULL;
4676 enum kcgi_err kerr = KCGI_OK;
4678 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
4679 "site_link", KATTR__MAX);
4680 if (kerr != KCGI_OK)
4682 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF, GOTWEB,
4684 if (kerr != KCGI_OK)
4686 kerr = khtml_puts(gw_trans->gw_html_req,
4687 gw_trans->gw_conf->got_site_link);
4688 if (kerr != KCGI_OK)
4690 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
4691 if (kerr != KCGI_OK)
4694 if (gw_trans->repo_name != NULL) {
4695 kerr = khtml_puts(gw_trans->gw_html_req, " / ");
4696 if (kerr != KCGI_OK)
4699 href_summary = khttp_urlpart(NULL, NULL, "gotweb", "path",
4700 gw_trans->repo_name, "action", "summary", NULL);
4701 if (href_summary == NULL) {
4702 error = got_error_from_errno("khttp_urlpart");
4705 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_A, KATTR_HREF,
4706 href_summary, KATTR__MAX);
4707 if (kerr != KCGI_OK)
4709 kerr = khtml_puts(gw_trans->gw_html_req, gw_trans->repo_name);
4710 if (kerr != KCGI_OK)
4712 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
4713 if (kerr != KCGI_OK)
4715 kerr = khtml_printf(gw_trans->gw_html_req, " / %s",
4716 gw_get_action_name(gw_trans));
4717 if (kerr != KCGI_OK)
4721 kerr = khtml_closeelem(gw_trans->gw_html_req, 1);
4722 if (kerr != KCGI_OK)
4726 if (error == NULL && kerr != KCGI_OK)
4727 error = gw_kcgi_error(kerr);
4731 static const struct got_error *
4732 gw_colordiff_line(struct gw_trans *gw_trans, char *buf)
4734 const struct got_error *error = NULL;
4736 enum kcgi_err kerr = KCGI_OK;
4738 if (strncmp(buf, "-", 1) == 0)
4739 color = "diff_minus";
4740 else if (strncmp(buf, "+", 1) == 0)
4741 color = "diff_plus";
4742 else if (strncmp(buf, "@@", 2) == 0)
4743 color = "diff_chunk_header";
4744 else if (strncmp(buf, "@@", 2) == 0)
4745 color = "diff_chunk_header";
4746 else if (strncmp(buf, "commit +", 8) == 0)
4747 color = "diff_meta";
4748 else if (strncmp(buf, "commit -", 8) == 0)
4749 color = "diff_meta";
4750 else if (strncmp(buf, "blob +", 6) == 0)
4751 color = "diff_meta";
4752 else if (strncmp(buf, "blob -", 6) == 0)
4753 color = "diff_meta";
4754 else if (strncmp(buf, "file +", 6) == 0)
4755 color = "diff_meta";
4756 else if (strncmp(buf, "file -", 6) == 0)
4757 color = "diff_meta";
4758 else if (strncmp(buf, "from:", 5) == 0)
4759 color = "diff_author";
4760 else if (strncmp(buf, "via:", 4) == 0)
4761 color = "diff_author";
4762 else if (strncmp(buf, "date:", 5) == 0)
4763 color = "diff_date";
4764 kerr = khtml_attr(gw_trans->gw_html_req, KELEM_DIV, KATTR_ID,
4765 "diff_line", KATTR_CLASS, color ? color : "", KATTR__MAX);
4766 if (error == NULL && kerr != KCGI_OK)
4767 error = gw_kcgi_error(kerr);
4772 main(int argc, char *argv[])
4774 const struct got_error *error = NULL, *error2 = NULL;
4775 struct gw_trans *gw_trans;
4776 struct gw_dir *dir = NULL, *tdir;
4777 const char *page = "index";
4778 enum kcgi_err kerr = KCGI_OK;
4780 if ((gw_trans = malloc(sizeof(struct gw_trans))) == NULL)
4783 if ((gw_trans->gw_req = malloc(sizeof(struct kreq))) == NULL)
4786 if ((gw_trans->gw_html_req = malloc(sizeof(struct khtmlreq))) == NULL)
4789 if ((gw_trans->gw_tmpl = malloc(sizeof(struct ktemplate))) == NULL)
4792 kerr = khttp_parse(gw_trans->gw_req, gw_keys, KEY__ZMAX, &page, 1, 0);
4793 if (kerr != KCGI_OK) {
4794 error = gw_kcgi_error(kerr);
4798 TAILQ_INIT(&gw_trans->gw_dirs);
4799 TAILQ_INIT(&gw_trans->gw_headers);
4801 gw_trans->action = -1;
4803 gw_trans->repos_total = 0;
4804 gw_trans->repo_path = NULL;
4805 gw_trans->commit_id = NULL;
4806 gw_trans->next_id = NULL;
4807 gw_trans->prev_id = NULL;
4808 gw_trans->headref = GOT_REF_HEAD;
4809 gw_trans->mime = KMIME_TEXT_HTML;
4810 gw_trans->gw_tmpl->key = gw_templs;
4811 gw_trans->gw_tmpl->keysz = TEMPL__MAX;
4812 gw_trans->gw_tmpl->arg = gw_trans;
4813 gw_trans->gw_tmpl->cb = gw_template;
4815 error = parse_gotweb_config(&gw_trans->gw_conf, GOTWEB_CONF);
4819 error = gw_parse_querystring(gw_trans);
4823 if (gw_trans->action == GW_BLOB)
4824 error = gw_blob(gw_trans);
4826 error = gw_display_index(gw_trans);
4828 if (gw_trans->repo) {
4829 const struct got_error *close_err;
4830 close_err = got_repo_close(gw_trans->repo);
4835 gw_trans->error = error;
4836 gw_trans->action = GW_ERR;
4837 error2 = gw_display_open(gw_trans, KHTTP_200, gw_trans->mime);
4839 goto cleanup; /* we can't display an error page */
4840 kerr = khtml_open(gw_trans->gw_html_req, gw_trans->gw_req, 0);
4841 if (kerr != KCGI_OK)
4842 goto cleanup; /* we can't display an error page */
4843 kerr = khttp_template(gw_trans->gw_req, gw_trans->gw_tmpl,
4844 gw_query_funcs[gw_trans->action].template);
4845 if (kerr != KCGI_OK) {
4846 khtml_close(gw_trans->gw_html_req);
4847 goto cleanup; /* we can't display an error page */
4852 free(gw_trans->gw_conf->got_repos_path);
4853 free(gw_trans->gw_conf->got_www_path);
4854 free(gw_trans->gw_conf->got_site_name);
4855 free(gw_trans->gw_conf->got_site_owner);
4856 free(gw_trans->gw_conf->got_site_link);
4857 free(gw_trans->gw_conf->got_logo);
4858 free(gw_trans->gw_conf->got_logo_url);
4859 free(gw_trans->gw_conf);
4860 free(gw_trans->commit_id);
4861 free(gw_trans->next_id);
4862 free(gw_trans->prev_id);
4863 free(gw_trans->repo_path);
4864 TAILQ_FOREACH_SAFE(dir, &gw_trans->gw_dirs, entry, tdir) {
4866 free(dir->description);
4873 khttp_free(gw_trans->gw_req);