blob: f1a22d38714dafbf6647de73a078aa36cca368c0 [file] [log] [blame]
Lars Hjemli6c14f5e2006-12-16 01:11:55 +01001/* ui-commit.c: generate commit view
2 *
3 * Copyright (C) 2006 Lars Hjemli
4 *
5 * Licensed under GNU General Public License v2
6 * (see COPYING for full license text)
7 */
8
Lars Hjemli9a8f8862006-12-16 00:19:56 +01009#include "cgit.h"
10
Lars Hjemli6cb326c2006-12-17 23:07:28 +010011int files = 0;
12
13void print_filepair(struct diff_filepair *pair)
14{
15 char *query;
16 char *class;
Lars Hjemliae4c1ee2007-05-13 11:26:23 +020017
Lars Hjemli6cb326c2006-12-17 23:07:28 +010018 switch (pair->status) {
19 case DIFF_STATUS_ADDED:
20 class = "add";
21 break;
22 case DIFF_STATUS_COPIED:
23 class = "cpy";
24 break;
25 case DIFF_STATUS_DELETED:
26 class = "del";
27 break;
28 case DIFF_STATUS_MODIFIED:
29 class = "upd";
30 break;
31 case DIFF_STATUS_RENAMED:
32 class = "mov";
33 break;
34 case DIFF_STATUS_TYPE_CHANGED:
35 class = "typ";
36 break;
37 case DIFF_STATUS_UNKNOWN:
38 class = "unk";
39 break;
40 case DIFF_STATUS_UNMERGED:
41 class = "stg";
42 break;
43 default:
44 die("bug: unhandled diff status %c", pair->status);
45 }
46
47 html("<tr>");
48 htmlf("<td class='mode'>");
Lars Hjemlifb6e5862006-12-17 23:30:55 +010049 if (is_null_sha1(pair->two->sha1)) {
50 html_filemode(pair->one->mode);
51 } else {
52 html_filemode(pair->two->mode);
53 }
54
Lars Hjemliae4c1ee2007-05-13 11:26:23 +020055 if (pair->one->mode != pair->two->mode &&
56 !is_null_sha1(pair->one->sha1) &&
Lars Hjemlifb6e5862006-12-17 23:30:55 +010057 !is_null_sha1(pair->two->sha1)) {
Lars Hjemli6cb326c2006-12-17 23:07:28 +010058 html("<span class='modechange'>[");
59 html_filemode(pair->one->mode);
60 html("]</span>");
61 }
62 htmlf("</td><td class='%s'>", class);
Lars Hjemliae4c1ee2007-05-13 11:26:23 +020063 query = fmt("id=%s&id2=%s", sha1_to_hex(pair->one->sha1),
64 sha1_to_hex(pair->two->sha1));
65 html_link_open(cgit_pageurl(cgit_query_repo, "diff", query),
Lars Hjemli6cb326c2006-12-17 23:07:28 +010066 NULL, NULL);
Lars Hjemliae4c1ee2007-05-13 11:26:23 +020067 if (pair->status == DIFF_STATUS_COPIED ||
Lars Hjemli6cb326c2006-12-17 23:07:28 +010068 pair->status == DIFF_STATUS_RENAMED) {
69 html_txt(pair->two->path);
Lars Hjemliae4c1ee2007-05-13 11:26:23 +020070 htmlf("</a> (%s from ", pair->status == DIFF_STATUS_COPIED ?
Lars Hjemli6cb326c2006-12-17 23:07:28 +010071 "copied" : "renamed");
Lars Hjemliae4c1ee2007-05-13 11:26:23 +020072 query = fmt("id=%s", sha1_to_hex(pair->one->sha1));
73 html_link_open(cgit_pageurl(cgit_query_repo, "view", query),
Lars Hjemli6cb326c2006-12-17 23:07:28 +010074 NULL, NULL);
75 html_txt(pair->one->path);
76 html("</a>)");
77 } else {
78 html_txt(pair->two->path);
79 html("</a>");
80 }
81 html("<td>");
82
83 //TODO: diffstat graph
Lars Hjemliae4c1ee2007-05-13 11:26:23 +020084
Lars Hjemli6cb326c2006-12-17 23:07:28 +010085 html("</td></tr>\n");
Lars Hjemliae4c1ee2007-05-13 11:26:23 +020086 files++;
Lars Hjemli6cb326c2006-12-17 23:07:28 +010087}
88
Lars Hjemli9a8f8862006-12-16 00:19:56 +010089void cgit_print_commit(const char *hex)
90{
91 struct commit *commit;
92 struct commitinfo *info;
93 struct commit_list *p;
Lars Hjemli9a8f8862006-12-16 00:19:56 +010094 unsigned char sha1[20];
Lars Hjemli9c5229e2006-12-16 19:35:31 +010095 char *query;
Lars Hjemliab2ab952007-02-08 13:53:13 +010096 char *filename;
Lars Hjemli9a8f8862006-12-16 00:19:56 +010097
98 if (get_sha1(hex, sha1)) {
99 cgit_print_error(fmt("Bad object id: %s", hex));
100 return;
101 }
Lars Hjemlifa82b032006-12-16 14:46:05 +0100102 commit = lookup_commit_reference(sha1);
Lars Hjemli9a8f8862006-12-16 00:19:56 +0100103 if (!commit) {
104 cgit_print_error(fmt("Bad commit reference: %s", hex));
105 return;
106 }
Lars Hjemli9a8f8862006-12-16 00:19:56 +0100107 info = cgit_parse_commit(commit);
108
109 html("<table class='commit-info'>\n");
Lars Hjemli8960d262006-12-16 14:28:26 +0100110 html("<tr><th>author</th><td>");
Lars Hjemli9a8f8862006-12-16 00:19:56 +0100111 html_txt(info->author);
Lars Hjemli8960d262006-12-16 14:28:26 +0100112 html(" ");
113 html_txt(info->author_email);
114 html("</td><td class='right'>");
115 cgit_print_date(info->author_date);
Lars Hjemli9a8f8862006-12-16 00:19:56 +0100116 html("</td></tr>\n");
117 html("<tr><th>committer</th><td>");
118 html_txt(info->committer);
Lars Hjemli8960d262006-12-16 14:28:26 +0100119 html(" ");
120 html_txt(info->committer_email);
Lars Hjemli9a8f8862006-12-16 00:19:56 +0100121 html("</td><td class='right'>");
Lars Hjemli8960d262006-12-16 14:28:26 +0100122 cgit_print_date(info->committer_date);
Lars Hjemli9a8f8862006-12-16 00:19:56 +0100123 html("</td></tr>\n");
124 html("<tr><th>tree</th><td colspan='2' class='sha1'><a href='");
Lars Hjemli9c5229e2006-12-16 19:35:31 +0100125 query = fmt("id=%s", sha1_to_hex(commit->tree->object.sha1));
126 html_attr(cgit_pageurl(cgit_query_repo, "tree", query));
Lars Hjemli9a8f8862006-12-16 00:19:56 +0100127 htmlf("'>%s</a></td></tr>\n", sha1_to_hex(commit->tree->object.sha1));
Lars Hjemli9c5229e2006-12-16 19:35:31 +0100128 for (p = commit->parents; p ; p = p->next) {
129 html("<tr><th>parent</th>"
130 "<td colspan='2' class='sha1'>"
131 "<a href='");
132 query = fmt("id=%s", sha1_to_hex(p->item->object.sha1));
133 html_attr(cgit_pageurl(cgit_query_repo, "commit", query));
Lars Hjemliae4c1ee2007-05-13 11:26:23 +0200134 htmlf("'>%s</a></td></tr>\n",
Lars Hjemli9a8f8862006-12-16 00:19:56 +0100135 sha1_to_hex(p->item->object.sha1));
136 }
Lars Hjemliac70cb42007-02-08 14:47:56 +0100137 if (cgit_repo->snapshots) {
138 htmlf("<tr><th>download</th><td colspan='2' class='sha1'><a href='");
139 filename = fmt("%s-%s.zip", cgit_query_repo, hex);
Lars Hjemliae4c1ee2007-05-13 11:26:23 +0200140 html_attr(cgit_pageurl(cgit_query_repo, "snapshot",
Lars Hjemliac70cb42007-02-08 14:47:56 +0100141 fmt("id=%s&name=%s", hex, filename)));
142 htmlf("'>%s</a></td></tr>", filename);
143 }
Lars Hjemli9a8f8862006-12-16 00:19:56 +0100144 html("</table>\n");
145 html("<div class='commit-subject'>");
146 html_txt(info->subject);
147 html("</div>");
148 html("<div class='commit-msg'>");
149 html_txt(info->msg);
150 html("</div>");
Lars Hjemli6cb326c2006-12-17 23:07:28 +0100151 html("<table class='diffstat'>");
152 html("<tr><th colspan='3'>Affected files</tr>\n");
Lars Hjemliae4c1ee2007-05-13 11:26:23 +0200153 cgit_diff_commit(commit, print_filepair);
Lars Hjemli6cb326c2006-12-17 23:07:28 +0100154 htmlf("<tr><td colspan='3' class='summary'>"
155 "%d file%s changed</td></tr>\n", files, files > 1 ? "s" : "");
156 html("</table>");
Lars Hjemliaaa24bd2006-12-16 14:58:20 +0100157 cgit_free_commitinfo(info);
Lars Hjemli9a8f8862006-12-16 00:19:56 +0100158}