]> git.armaanb.net Git - stagit.git/blob - stagit.c
Make website more mobile friendly.
[stagit.git] / stagit.c
1 #include <sys/stat.h>
2 #include <sys/types.h>
3
4 #include <err.h>
5 #include <errno.h>
6 #include <libgen.h>
7 #include <limits.h>
8 #include <stdint.h>
9 #include <stdio.h>
10 #include <stdlib.h>
11 #include <string.h>
12 #include <time.h>
13 #include <unistd.h>
14
15 #include <git2.h>
16
17 #include "compat.h"
18
19 struct deltainfo {
20         git_patch *patch;
21
22         size_t addcount;
23         size_t delcount;
24 };
25
26 struct commitinfo {
27         const git_oid *id;
28
29         char oid[GIT_OID_HEXSZ + 1];
30         char parentoid[GIT_OID_HEXSZ + 1];
31
32         const git_signature *author;
33         const git_signature *committer;
34         const char          *summary;
35         const char          *msg;
36
37         git_diff   *diff;
38         git_commit *commit;
39         git_commit *parent;
40         git_tree   *commit_tree;
41         git_tree   *parent_tree;
42
43         size_t addcount;
44         size_t delcount;
45         size_t filecount;
46
47         struct deltainfo **deltas;
48         size_t ndeltas;
49 };
50
51 static git_repository *repo;
52
53 static const char *relpath = "";
54 static const char *repodir;
55
56 static char *name = "";
57 static char *strippedname = "";
58 static char description[255];
59 static char cloneurl[1024];
60 static char *submodules;
61 static char *licensefiles[] = { "HEAD:LICENSE", "HEAD:LICENSE.md", "HEAD:COPYING" };
62 static char *license;
63 static char *readmefiles[] = { "HEAD:README", "HEAD:README.md" };
64 static char *readme;
65 static long long nlogcommits = -1; /* < 0 indicates not used */
66
67 /* cache */
68 static git_oid lastoid;
69 static char lastoidstr[GIT_OID_HEXSZ + 2]; /* id + newline + NUL byte */
70 static FILE *rcachefp, *wcachefp;
71 static const char *cachefile;
72
73 void
74 joinpath(char *buf, size_t bufsiz, const char *path, const char *path2)
75 {
76         int r;
77
78         r = snprintf(buf, bufsiz, "%s%s%s",
79                 path, path[0] && path[strlen(path) - 1] != '/' ? "/" : "", path2);
80         if (r < 0 || (size_t)r >= bufsiz)
81                 errx(1, "path truncated: '%s%s%s'",
82                         path, path[0] && path[strlen(path) - 1] != '/' ? "/" : "", path2);
83 }
84
85 void
86 deltainfo_free(struct deltainfo *di)
87 {
88         if (!di)
89                 return;
90         git_patch_free(di->patch);
91         memset(di, 0, sizeof(*di));
92         free(di);
93 }
94
95 int
96 commitinfo_getstats(struct commitinfo *ci)
97 {
98         struct deltainfo *di;
99         git_diff_options opts;
100         git_diff_find_options fopts;
101         const git_diff_delta *delta;
102         const git_diff_hunk *hunk;
103         const git_diff_line *line;
104         git_patch *patch = NULL;
105         size_t ndeltas, nhunks, nhunklines;
106         size_t i, j, k;
107
108         if (git_tree_lookup(&(ci->commit_tree), repo, git_commit_tree_id(ci->commit)))
109                 goto err;
110         if (!git_commit_parent(&(ci->parent), ci->commit, 0)) {
111                 if (git_tree_lookup(&(ci->parent_tree), repo, git_commit_tree_id(ci->parent))) {
112                         ci->parent = NULL;
113                         ci->parent_tree = NULL;
114                 }
115         }
116
117         git_diff_init_options(&opts, GIT_DIFF_OPTIONS_VERSION);
118         opts.flags |= GIT_DIFF_DISABLE_PATHSPEC_MATCH |
119                       GIT_DIFF_IGNORE_SUBMODULES |
120                       GIT_DIFF_INCLUDE_TYPECHANGE;
121         if (git_diff_tree_to_tree(&(ci->diff), repo, ci->parent_tree, ci->commit_tree, &opts))
122                 goto err;
123
124         if (git_diff_find_init_options(&fopts, GIT_DIFF_FIND_OPTIONS_VERSION))
125                 goto err;
126         /* find renames and copies, exact matches (no heuristic) for renames. */
127         fopts.flags |= GIT_DIFF_FIND_RENAMES | GIT_DIFF_FIND_COPIES |
128                        GIT_DIFF_FIND_EXACT_MATCH_ONLY;
129         if (git_diff_find_similar(ci->diff, &fopts))
130                 goto err;
131
132         ndeltas = git_diff_num_deltas(ci->diff);
133         if (ndeltas && !(ci->deltas = calloc(ndeltas, sizeof(struct deltainfo *))))
134                 err(1, "calloc");
135
136         for (i = 0; i < ndeltas; i++) {
137                 if (git_patch_from_diff(&patch, ci->diff, i))
138                         goto err;
139
140                 if (!(di = calloc(1, sizeof(struct deltainfo))))
141                         err(1, "calloc");
142                 di->patch = patch;
143                 ci->deltas[i] = di;
144
145                 delta = git_patch_get_delta(patch);
146
147                 /* skip stats for binary data */
148                 if (delta->flags & GIT_DIFF_FLAG_BINARY)
149                         continue;
150
151                 nhunks = git_patch_num_hunks(patch);
152                 for (j = 0; j < nhunks; j++) {
153                         if (git_patch_get_hunk(&hunk, &nhunklines, patch, j))
154                                 break;
155                         for (k = 0; ; k++) {
156                                 if (git_patch_get_line_in_hunk(&line, patch, j, k))
157                                         break;
158                                 if (line->old_lineno == -1) {
159                                         di->addcount++;
160                                         ci->addcount++;
161                                 } else if (line->new_lineno == -1) {
162                                         di->delcount++;
163                                         ci->delcount++;
164                                 }
165                         }
166                 }
167         }
168         ci->ndeltas = i;
169         ci->filecount = i;
170
171         return 0;
172
173 err:
174         git_diff_free(ci->diff);
175         ci->diff = NULL;
176         git_tree_free(ci->commit_tree);
177         ci->commit_tree = NULL;
178         git_tree_free(ci->parent_tree);
179         ci->parent_tree = NULL;
180         git_commit_free(ci->parent);
181         ci->parent = NULL;
182
183         if (ci->deltas)
184                 for (i = 0; i < ci->ndeltas; i++)
185                         deltainfo_free(ci->deltas[i]);
186         free(ci->deltas);
187         ci->deltas = NULL;
188         ci->ndeltas = 0;
189         ci->addcount = 0;
190         ci->delcount = 0;
191         ci->filecount = 0;
192
193         return -1;
194 }
195
196 void
197 commitinfo_free(struct commitinfo *ci)
198 {
199         size_t i;
200
201         if (!ci)
202                 return;
203         if (ci->deltas)
204                 for (i = 0; i < ci->ndeltas; i++)
205                         deltainfo_free(ci->deltas[i]);
206
207         free(ci->deltas);
208         git_diff_free(ci->diff);
209         git_tree_free(ci->commit_tree);
210         git_tree_free(ci->parent_tree);
211         git_commit_free(ci->commit);
212         git_commit_free(ci->parent);
213         memset(ci, 0, sizeof(*ci));
214         free(ci);
215 }
216
217 struct commitinfo *
218 commitinfo_getbyoid(const git_oid *id)
219 {
220         struct commitinfo *ci;
221
222         if (!(ci = calloc(1, sizeof(struct commitinfo))))
223                 err(1, "calloc");
224
225         if (git_commit_lookup(&(ci->commit), repo, id))
226                 goto err;
227         ci->id = id;
228
229         git_oid_tostr(ci->oid, sizeof(ci->oid), git_commit_id(ci->commit));
230         git_oid_tostr(ci->parentoid, sizeof(ci->parentoid), git_commit_parent_id(ci->commit, 0));
231
232         ci->author = git_commit_author(ci->commit);
233         ci->committer = git_commit_committer(ci->commit);
234         ci->summary = git_commit_summary(ci->commit);
235         ci->msg = git_commit_message(ci->commit);
236
237         return ci;
238
239 err:
240         commitinfo_free(ci);
241
242         return NULL;
243 }
244
245 FILE *
246 efopen(const char *name, const char *flags)
247 {
248         FILE *fp;
249
250         if (!(fp = fopen(name, flags)))
251                 err(1, "fopen: '%s'", name);
252
253         return fp;
254 }
255
256 /* Escape characters below as HTML 2.0 / XML 1.0. */
257 void
258 xmlencode(FILE *fp, const char *s, size_t len)
259 {
260         size_t i;
261
262         for (i = 0; *s && i < len; s++, i++) {
263                 switch(*s) {
264                 case '<':  fputs("&lt;",   fp); break;
265                 case '>':  fputs("&gt;",   fp); break;
266                 case '\'': fputs("&#39;",  fp); break;
267                 case '&':  fputs("&amp;",  fp); break;
268                 case '"':  fputs("&quot;", fp); break;
269                 default:   fputc(*s, fp);
270                 }
271         }
272 }
273
274 int
275 mkdirp(const char *path)
276 {
277         char tmp[PATH_MAX], *p;
278
279         if (strlcpy(tmp, path, sizeof(tmp)) >= sizeof(tmp))
280                 errx(1, "path truncated: '%s'", path);
281         for (p = tmp + (tmp[0] == '/'); *p; p++) {
282                 if (*p != '/')
283                         continue;
284                 *p = '\0';
285                 if (mkdir(tmp, S_IRWXU | S_IRWXG | S_IRWXO) < 0 && errno != EEXIST)
286                         return -1;
287                 *p = '/';
288         }
289         if (mkdir(tmp, S_IRWXU | S_IRWXG | S_IRWXO) < 0 && errno != EEXIST)
290                 return -1;
291         return 0;
292 }
293
294 void
295 printtimez(FILE *fp, const git_time *intime)
296 {
297         struct tm *intm;
298         time_t t;
299         char out[32];
300
301         t = (time_t)intime->time;
302         if (!(intm = gmtime(&t)))
303                 return;
304         strftime(out, sizeof(out), "%Y-%m-%dT%H:%M:%SZ", intm);
305         fputs(out, fp);
306 }
307
308 void
309 printtime(FILE *fp, const git_time *intime)
310 {
311         struct tm *intm;
312         time_t t;
313         char out[32];
314
315         t = (time_t)intime->time + (intime->offset * 60);
316         if (!(intm = gmtime(&t)))
317                 return;
318         strftime(out, sizeof(out), "%a, %e %b %Y %H:%M:%S", intm);
319         if (intime->offset < 0)
320                 fprintf(fp, "%s -%02d%02d", out,
321                             -(intime->offset) / 60, -(intime->offset) % 60);
322         else
323                 fprintf(fp, "%s +%02d%02d", out,
324                             intime->offset / 60, intime->offset % 60);
325 }
326
327 void
328 printtimeshort(FILE *fp, const git_time *intime)
329 {
330         struct tm *intm;
331         time_t t;
332         char out[32];
333
334         t = (time_t)intime->time;
335         if (!(intm = gmtime(&t)))
336                 return;
337         strftime(out, sizeof(out), "%Y-%m-%d %H:%M", intm);
338         fputs(out, fp);
339 }
340
341 void
342 writeheader(FILE *fp, const char *title)
343 {
344         fputs("<!DOCTYPE html>\n"
345                 "<html>\n<head>\n"
346                 "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n"
347                 "<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n"
348                 "<title>", fp);
349         xmlencode(fp, title, strlen(title));
350         if (title[0] && strippedname[0])
351                 fputs(" - ", fp);
352         xmlencode(fp, strippedname, strlen(strippedname));
353         if (description[0])
354                 fputs(" - ", fp);
355         xmlencode(fp, description, strlen(description));
356         fprintf(fp, "</title>\n<link rel=\"icon\" type=\"image/png\" href=\"%sfavicon.png\" />\n", relpath);
357         fprintf(fp, "<link rel=\"alternate\" type=\"application/atom+xml\" title=\"%s Atom Feed\" href=\"%satom.xml\" />\n",
358                 name, relpath);
359         fprintf(fp, "<link rel=\"stylesheet\" type=\"text/css\" href=\"%sstyle.css\" />\n", relpath);
360         fputs("</head>\n<body>\n<table><tr><td>", fp);
361         fprintf(fp, "<a href=\"../%s\"><img src=\"%slogo.png\" alt=\"\" width=\"32\" height=\"32\" /></a>",
362                 relpath, relpath);
363         fputs("</td><td><h1>", fp);
364         xmlencode(fp, strippedname, strlen(strippedname));
365         fputs("</h1><span class=\"desc\">", fp);
366         xmlencode(fp, description, strlen(description));
367         fputs("</span></td></tr>", fp);
368         if (cloneurl[0]) {
369                 fputs("<tr class=\"url\"><td></td><td><span class=\"clone\">git clone <a href=\"", fp);
370                 xmlencode(fp, cloneurl, strlen(cloneurl));
371                 fputs("\">", fp);
372                 xmlencode(fp, cloneurl, strlen(cloneurl));
373                 fputs("</a></span></td></tr>", fp);
374         }
375         fputs("<tr><td></td><td>\n", fp);
376         fprintf(fp, "<a href=\"%slog.html\">Log</a> | ", relpath);
377         fprintf(fp, "<a href=\"%sfiles.html\">Files</a> | ", relpath);
378         fprintf(fp, "<a href=\"%srefs.html\">Refs</a>", relpath);
379         if (submodules)
380                 fprintf(fp, " | <a href=\"%sfile/%s.html\">Submodules</a>",
381                         relpath, submodules);
382         if (readme)
383                 fprintf(fp, " | <a href=\"%sfile/%s.html\">README</a>",
384                         relpath, readme);
385         if (license)
386                 fprintf(fp, " | <a href=\"%sfile/%s.html\">LICENSE</a>",
387                         relpath, license);
388         fputs("</td></tr></table>\n<hr/>\n<div id=\"content\">\n", fp);
389 }
390
391 void
392 writefooter(FILE *fp)
393 {
394         fputs("</div>\n</body>\n</html>\n", fp);
395 }
396
397 int
398 writeblobhtml(FILE *fp, const git_blob *blob)
399 {
400         size_t n = 0, i, prev;
401         const char *nfmt = "<a href=\"#l%d\" class=\"line\" id=\"l%d\">%7d</a><span class=\"loc\">";
402         const char *s = git_blob_rawcontent(blob);
403         git_off_t len = git_blob_rawsize(blob);
404
405         fputs("<pre id=\"blob\">\n", fp);
406
407         if (len > 0) {
408                 for (i = 0, prev = 0; i < (size_t)len; i++) {
409                         if (s[i] != '\n')
410                                 continue;
411                         n++;
412                         fprintf(fp, nfmt, n, n, n);
413                         xmlencode(fp, &s[prev], i - prev + 1);
414                         fprintf(fp, "</span>");
415                         prev = i + 1;
416                 }
417                 /* trailing data */
418                 if ((len - prev) > 0) {
419                         n++;
420                         fprintf(fp, nfmt, n, n, n);
421                         xmlencode(fp, &s[prev], len - prev);
422                         fprintf(fp, "</span>");
423                 }
424         }
425
426         fputs("</pre>\n", fp);
427
428         return n;
429 }
430
431 void
432 printcommit(FILE *fp, struct commitinfo *ci)
433 {
434         fprintf(fp, "<b>commit</b> <a href=\"%scommit/%s.html\">%s</a>\n",
435                 relpath, ci->oid, ci->oid);
436
437         if (ci->parentoid[0])
438                 fprintf(fp, "<b>parent</b> <a href=\"%scommit/%s.html\">%s</a>\n",
439                         relpath, ci->parentoid, ci->parentoid);
440
441         if (ci->author) {
442                 fputs("<b>Author:</b> ", fp);
443                 xmlencode(fp, ci->author->name, strlen(ci->author->name));
444                 fputs(" &lt;<a href=\"mailto:", fp);
445                 xmlencode(fp, ci->author->email, strlen(ci->author->email));
446                 fputs("\">", fp);
447                 xmlencode(fp, ci->author->email, strlen(ci->author->email));
448                 fputs("</a>&gt;\n<b>Date:</b>   ", fp);
449                 printtime(fp, &(ci->author->when));
450                 fputc('\n', fp);
451         }
452         if (ci->msg) {
453                 fputc('\n', fp);
454                 xmlencode(fp, ci->msg, strlen(ci->msg));
455                 fputc('\n', fp);
456         }
457 }
458
459 void
460 printshowfile(FILE *fp, struct commitinfo *ci)
461 {
462         const git_diff_delta *delta;
463         const git_diff_hunk *hunk;
464         const git_diff_line *line;
465         git_patch *patch;
466         size_t nhunks, nhunklines, changed, add, del, total, i, j, k;
467         char linestr[80];
468         int c;
469
470         printcommit(fp, ci);
471
472         if (!ci->deltas)
473                 return;
474
475         if (ci->filecount > 1000   ||
476             ci->ndeltas   > 1000   ||
477             ci->addcount  > 100000 ||
478             ci->delcount  > 100000) {
479                 fputs("Diff is too large, output suppressed.\n", fp);
480                 return;
481         }
482
483         /* diff stat */
484         fputs("<b>Diffstat:</b>\n<table>", fp);
485         for (i = 0; i < ci->ndeltas; i++) {
486                 delta = git_patch_get_delta(ci->deltas[i]->patch);
487
488                 switch (delta->status) {
489                 case GIT_DELTA_ADDED:      c = 'A'; break;
490                 case GIT_DELTA_COPIED:     c = 'C'; break;
491                 case GIT_DELTA_DELETED:    c = 'D'; break;
492                 case GIT_DELTA_MODIFIED:   c = 'M'; break;
493                 case GIT_DELTA_RENAMED:    c = 'R'; break;
494                 case GIT_DELTA_TYPECHANGE: c = 'T'; break;
495                 default:                   c = ' '; break;
496                 }
497                 if (c == ' ')
498                         fprintf(fp, "<tr><td>%c", c);
499                 else
500                         fprintf(fp, "<tr><td class=\"%c\">%c", c, c);
501
502                 fprintf(fp, "</td><td><a href=\"#h%zu\">", i);
503                 xmlencode(fp, delta->old_file.path, strlen(delta->old_file.path));
504                 if (strcmp(delta->old_file.path, delta->new_file.path)) {
505                         fputs(" -&gt; ", fp);
506                         xmlencode(fp, delta->new_file.path, strlen(delta->new_file.path));
507                 }
508
509                 add = ci->deltas[i]->addcount;
510                 del = ci->deltas[i]->delcount;
511                 changed = add + del;
512                 total = sizeof(linestr) - 2;
513                 if (changed > total) {
514                         if (add)
515                                 add = ((float)total / changed * add) + 1;
516                         if (del)
517                                 del = ((float)total / changed * del) + 1;
518                 }
519                 memset(&linestr, '+', add);
520                 memset(&linestr[add], '-', del);
521
522                 fprintf(fp, "</a></td><td> | </td><td class=\"num\">%zu</td><td><span class=\"i\">",
523                         ci->deltas[i]->addcount + ci->deltas[i]->delcount);
524                 fwrite(&linestr, 1, add, fp);
525                 fputs("</span><span class=\"d\">", fp);
526                 fwrite(&linestr[add], 1, del, fp);
527                 fputs("</span></td></tr>\n", fp);
528         }
529         fprintf(fp, "</table></pre><pre>%zu file%s changed, %zu insertion%s(+), %zu deletion%s(-)\n",
530                 ci->filecount, ci->filecount == 1 ? "" : "s",
531                 ci->addcount,  ci->addcount  == 1 ? "" : "s",
532                 ci->delcount,  ci->delcount  == 1 ? "" : "s");
533
534         fputs("<hr/>", fp);
535
536         for (i = 0; i < ci->ndeltas; i++) {
537                 patch = ci->deltas[i]->patch;
538                 delta = git_patch_get_delta(patch);
539                 fprintf(fp, "<b>diff --git a/<a id=\"h%zu\" href=\"%sfile/", i, relpath);
540                 xmlencode(fp, delta->old_file.path, strlen(delta->old_file.path));
541                 fputs(".html\">", fp);
542                 xmlencode(fp, delta->old_file.path, strlen(delta->old_file.path));
543                 fprintf(fp, "</a> b/<a href=\"%sfile/", relpath);
544                 xmlencode(fp, delta->new_file.path, strlen(delta->new_file.path));
545                 fprintf(fp, ".html\">");
546                 xmlencode(fp, delta->new_file.path, strlen(delta->new_file.path));
547                 fprintf(fp, "</a></b>\n");
548
549                 /* check binary data */
550                 if (delta->flags & GIT_DIFF_FLAG_BINARY) {
551                         fputs("Binary files differ.\n", fp);
552                         continue;
553                 }
554
555                 nhunks = git_patch_num_hunks(patch);
556                 for (j = 0; j < nhunks; j++) {
557                         if (git_patch_get_hunk(&hunk, &nhunklines, patch, j))
558                                 break;
559
560                         fprintf(fp, "<a href=\"#h%zu-%zu\" id=\"h%zu-%zu\" class=\"h\">", i, j, i, j);
561                         xmlencode(fp, hunk->header, hunk->header_len);
562                         fputs("</a>", fp);
563
564                         for (k = 0; ; k++) {
565                                 if (git_patch_get_line_in_hunk(&line, patch, j, k))
566                                         break;
567                                 if (line->old_lineno == -1)
568                                         fprintf(fp, "<a href=\"#h%zu-%zu-%zu\" id=\"h%zu-%zu-%zu\" class=\"i\">+",
569                                                 i, j, k, i, j, k);
570                                 else if (line->new_lineno == -1)
571                                         fprintf(fp, "<a href=\"#h%zu-%zu-%zu\" id=\"h%zu-%zu-%zu\" class=\"d\">-",
572                                                 i, j, k, i, j, k);
573                                 else
574                                         fputc(' ', fp);
575                                 xmlencode(fp, line->content, line->content_len);
576                                 if (line->old_lineno == -1 || line->new_lineno == -1)
577                                         fputs("</a>", fp);
578                         }
579                 }
580         }
581 }
582
583 void
584 writelogline(FILE *fp, struct commitinfo *ci)
585 {
586         fputs("<tr><td>", fp);
587         if (ci->author)
588                 printtimeshort(fp, &(ci->author->when));
589         fputs("</td><td>", fp);
590         if (ci->summary) {
591                 fprintf(fp, "<a href=\"%scommit/%s.html\">", relpath, ci->oid);
592                 xmlencode(fp, ci->summary, strlen(ci->summary));
593                 fputs("</a>", fp);
594         }
595         fputs("</td><td>", fp);
596         if (ci->author)
597                 xmlencode(fp, ci->author->name, strlen(ci->author->name));
598         fputs("</td><td class=\"num\" align=\"right\">", fp);
599         fprintf(fp, "%zu", ci->filecount);
600         fputs("</td><td class=\"num\" align=\"right\">", fp);
601         fprintf(fp, "+%zu", ci->addcount);
602         fputs("</td><td class=\"num\" align=\"right\">", fp);
603         fprintf(fp, "-%zu", ci->delcount);
604         fputs("</td></tr>\n", fp);
605 }
606
607 int
608 writelog(FILE *fp, const git_oid *oid)
609 {
610         struct commitinfo *ci;
611         git_revwalk *w = NULL;
612         git_oid id;
613         char path[PATH_MAX], oidstr[GIT_OID_HEXSZ + 1];
614         FILE *fpfile;
615         int r;
616
617         git_revwalk_new(&w, repo);
618         git_revwalk_push(w, oid);
619         git_revwalk_simplify_first_parent(w);
620
621         while (!git_revwalk_next(&id, w)) {
622                 relpath = "";
623
624                 if (cachefile && !memcmp(&id, &lastoid, sizeof(id)))
625                         break;
626
627                 git_oid_tostr(oidstr, sizeof(oidstr), &id);
628                 r = snprintf(path, sizeof(path), "commit/%s.html", oidstr);
629                 if (r < 0 || (size_t)r >= sizeof(path))
630                         errx(1, "path truncated: 'commit/%s.html'", oidstr);
631                 r = access(path, F_OK);
632
633                 /* optimization: if there are no log lines to write and
634                    the commit file already exists: skip the diffstat */
635                 if (!nlogcommits && !r)
636                         continue;
637
638                 if (!(ci = commitinfo_getbyoid(&id)))
639                         break;
640                 /* diffstat: for stagit HTML required for the log.html line */
641                 if (commitinfo_getstats(ci) == -1)
642                         goto err;
643
644                 if (nlogcommits < 0) {
645                         writelogline(fp, ci);
646                 } else if (nlogcommits > 0) {
647                         writelogline(fp, ci);
648                         nlogcommits--;
649                         if (!nlogcommits && ci->parentoid[0])
650                                 fputs("<tr><td></td><td colspan=\"5\">"
651                                       "More commits remaining [...]</td>"
652                                       "</tr>\n", fp);
653                 }
654
655                 if (cachefile)
656                         writelogline(wcachefp, ci);
657
658                 /* check if file exists if so skip it */
659                 if (r) {
660                         relpath = "../";
661                         fpfile = efopen(path, "w");
662                         writeheader(fpfile, ci->summary);
663                         fputs("<pre>", fpfile);
664                         printshowfile(fpfile, ci);
665                         fputs("</pre>\n", fpfile);
666                         writefooter(fpfile);
667                         fclose(fpfile);
668                 }
669 err:
670                 commitinfo_free(ci);
671         }
672         git_revwalk_free(w);
673
674         relpath = "";
675
676         return 0;
677 }
678
679 void
680 printcommitatom(FILE *fp, struct commitinfo *ci)
681 {
682         fputs("<entry>\n", fp);
683
684         fprintf(fp, "<id>%s</id>\n", ci->oid);
685         if (ci->author) {
686                 fputs("<published>", fp);
687                 printtimez(fp, &(ci->author->when));
688                 fputs("</published>\n", fp);
689         }
690         if (ci->committer) {
691                 fputs("<updated>", fp);
692                 printtimez(fp, &(ci->committer->when));
693                 fputs("</updated>\n", fp);
694         }
695         if (ci->summary) {
696                 fputs("<title type=\"text\">", fp);
697                 xmlencode(fp, ci->summary, strlen(ci->summary));
698                 fputs("</title>\n", fp);
699         }
700         fprintf(fp, "<link rel=\"alternate\" type=\"text/html\" href=\"commit/%s.html\" />\n",
701                 ci->oid);
702
703         if (ci->author) {
704                 fputs("<author>\n<name>", fp);
705                 xmlencode(fp, ci->author->name, strlen(ci->author->name));
706                 fputs("</name>\n<email>", fp);
707                 xmlencode(fp, ci->author->email, strlen(ci->author->email));
708                 fputs("</email>\n</author>\n", fp);
709         }
710
711         fputs("<content type=\"text\">", fp);
712         fprintf(fp, "commit %s\n", ci->oid);
713         if (ci->parentoid[0])
714                 fprintf(fp, "parent %s\n", ci->parentoid);
715         if (ci->author) {
716                 fputs("Author: ", fp);
717                 xmlencode(fp, ci->author->name, strlen(ci->author->name));
718                 fputs(" &lt;", fp);
719                 xmlencode(fp, ci->author->email, strlen(ci->author->email));
720                 fputs("&gt;\nDate:   ", fp);
721                 printtime(fp, &(ci->author->when));
722                 fputc('\n', fp);
723         }
724         if (ci->msg) {
725                 fputc('\n', fp);
726                 xmlencode(fp, ci->msg, strlen(ci->msg));
727         }
728         fputs("\n</content>\n</entry>\n", fp);
729 }
730
731 int
732 writeatom(FILE *fp)
733 {
734         struct commitinfo *ci;
735         git_revwalk *w = NULL;
736         git_oid id;
737         size_t i, m = 100; /* last 'm' commits */
738
739         fputs("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
740               "<feed xmlns=\"http://www.w3.org/2005/Atom\">\n<title>", fp);
741         xmlencode(fp, strippedname, strlen(strippedname));
742         fputs(", branch HEAD</title>\n<subtitle>", fp);
743         xmlencode(fp, description, strlen(description));
744         fputs("</subtitle>\n", fp);
745
746         git_revwalk_new(&w, repo);
747         git_revwalk_push_head(w);
748         git_revwalk_simplify_first_parent(w);
749
750         for (i = 0; i < m && !git_revwalk_next(&id, w); i++) {
751                 if (!(ci = commitinfo_getbyoid(&id)))
752                         break;
753                 printcommitatom(fp, ci);
754                 commitinfo_free(ci);
755         }
756         git_revwalk_free(w);
757
758         fputs("</feed>\n", fp);
759
760         return 0;
761 }
762
763 int
764 writeblob(git_object *obj, const char *fpath, const char *filename, git_off_t filesize)
765 {
766         char tmp[PATH_MAX] = "", *d;
767         const char *p;
768         int lc = 0;
769         FILE *fp;
770
771         if (strlcpy(tmp, fpath, sizeof(tmp)) >= sizeof(tmp))
772                 errx(1, "path truncated: '%s'", fpath);
773         if (!(d = dirname(tmp)))
774                 err(1, "dirname");
775         if (mkdirp(d))
776                 return -1;
777
778         for (p = fpath, tmp[0] = '\0'; *p; p++) {
779                 if (*p == '/' && strlcat(tmp, "../", sizeof(tmp)) >= sizeof(tmp))
780                         errx(1, "path truncated: '../%s'", tmp);
781         }
782         relpath = tmp;
783
784         fp = efopen(fpath, "w");
785         writeheader(fp, filename);
786         fputs("<p> ", fp);
787         xmlencode(fp, filename, strlen(filename));
788         fprintf(fp, " (%juB)", (uintmax_t)filesize);
789         fputs("</p><hr/>", fp);
790
791         if (git_blob_is_binary((git_blob *)obj)) {
792                 fputs("<p>Binary file.</p>\n", fp);
793         } else {
794                 lc = writeblobhtml(fp, (git_blob *)obj);
795                 if (ferror(fp))
796                         err(1, "fwrite");
797         }
798         writefooter(fp);
799         fclose(fp);
800
801         relpath = "";
802
803         return lc;
804 }
805
806 const char *
807 filemode(git_filemode_t m)
808 {
809         static char mode[11];
810
811         memset(mode, '-', sizeof(mode) - 1);
812         mode[10] = '\0';
813
814         if (S_ISREG(m))
815                 mode[0] = '-';
816         else if (S_ISBLK(m))
817                 mode[0] = 'b';
818         else if (S_ISCHR(m))
819                 mode[0] = 'c';
820         else if (S_ISDIR(m))
821                 mode[0] = 'd';
822         else if (S_ISFIFO(m))
823                 mode[0] = 'p';
824         else if (S_ISLNK(m))
825                 mode[0] = 'l';
826         else if (S_ISSOCK(m))
827                 mode[0] = 's';
828         else
829                 mode[0] = '?';
830
831         if (m & S_IRUSR) mode[1] = 'r';
832         if (m & S_IWUSR) mode[2] = 'w';
833         if (m & S_IXUSR) mode[3] = 'x';
834         if (m & S_IRGRP) mode[4] = 'r';
835         if (m & S_IWGRP) mode[5] = 'w';
836         if (m & S_IXGRP) mode[6] = 'x';
837         if (m & S_IROTH) mode[7] = 'r';
838         if (m & S_IWOTH) mode[8] = 'w';
839         if (m & S_IXOTH) mode[9] = 'x';
840
841         if (m & S_ISUID) mode[3] = (mode[3] == 'x') ? 's' : 'S';
842         if (m & S_ISGID) mode[6] = (mode[6] == 'x') ? 's' : 'S';
843         if (m & S_ISVTX) mode[9] = (mode[9] == 'x') ? 't' : 'T';
844
845         return mode;
846 }
847
848 int
849 writefilestree(FILE *fp, git_tree *tree, const char *path)
850 {
851         const git_tree_entry *entry = NULL;
852         git_submodule *module = NULL;
853         git_object *obj = NULL;
854         git_off_t filesize;
855         const char *entryname;
856         char filepath[PATH_MAX], entrypath[PATH_MAX];
857         size_t count, i;
858         int lc, r, ret;
859
860         count = git_tree_entrycount(tree);
861         for (i = 0; i < count; i++) {
862                 if (!(entry = git_tree_entry_byindex(tree, i)) ||
863                     !(entryname = git_tree_entry_name(entry)))
864                         return -1;
865                 joinpath(entrypath, sizeof(entrypath), path, entryname);
866
867                 r = snprintf(filepath, sizeof(filepath), "file/%s.html",
868                          entrypath);
869                 if (r < 0 || (size_t)r >= sizeof(filepath))
870                         errx(1, "path truncated: 'file/%s.html'", entrypath);
871
872                 if (!git_tree_entry_to_object(&obj, repo, entry)) {
873                         switch (git_object_type(obj)) {
874                         case GIT_OBJ_BLOB:
875                                 break;
876                         case GIT_OBJ_TREE:
877                                 /* NOTE: recurses */
878                                 ret = writefilestree(fp, (git_tree *)obj,
879                                                      entrypath);
880                                 git_object_free(obj);
881                                 if (ret)
882                                         return ret;
883                                 continue;
884                         default:
885                                 git_object_free(obj);
886                                 continue;
887                         }
888
889                         filesize = git_blob_rawsize((git_blob *)obj);
890                         lc = writeblob(obj, filepath, entryname, filesize);
891
892                         fputs("<tr><td>", fp);
893                         fputs(filemode(git_tree_entry_filemode(entry)), fp);
894                         fprintf(fp, "</td><td><a href=\"%s", relpath);
895                         xmlencode(fp, filepath, strlen(filepath));
896                         fputs("\">", fp);
897                         xmlencode(fp, entrypath, strlen(entrypath));
898                         fputs("</a></td><td class=\"num\" align=\"right\">", fp);
899                         if (lc > 0)
900                                 fprintf(fp, "%dL", lc);
901                         else
902                                 fprintf(fp, "%juB", (uintmax_t)filesize);
903                         fputs("</td></tr>\n", fp);
904                         git_object_free(obj);
905                 } else if (!git_submodule_lookup(&module, repo, entryname)) {
906                         fprintf(fp, "<tr><td>m---------</td><td><a href=\"%sfile/.gitmodules.html\">",
907                                 relpath);
908                         xmlencode(fp, entrypath, strlen(entrypath));
909                         git_submodule_free(module);
910                         fputs("</a></td><td class=\"num\" align=\"right\"></td></tr>\n", fp);
911                 }
912         }
913
914         return 0;
915 }
916
917 int
918 writefiles(FILE *fp, const git_oid *id)
919 {
920         git_tree *tree = NULL;
921         git_commit *commit = NULL;
922         int ret = -1;
923
924         fputs("<table id=\"files\"><thead>\n<tr>"
925               "<td><b>Mode</b></td><td><b>Name</b></td>"
926               "<td class=\"num\" align=\"right\"><b>Size</b></td>"
927               "</tr>\n</thead><tbody>\n", fp);
928
929         if (!git_commit_lookup(&commit, repo, id) &&
930             !git_commit_tree(&tree, commit))
931                 ret = writefilestree(fp, tree, "");
932
933         fputs("</tbody></table>", fp);
934
935         git_commit_free(commit);
936         git_tree_free(tree);
937
938         return ret;
939 }
940
941 int
942 refs_cmp(const void *v1, const void *v2)
943 {
944         git_reference *r1 = (*(git_reference **)v1);
945         git_reference *r2 = (*(git_reference **)v2);
946         int r;
947
948         if ((r = git_reference_is_branch(r1) - git_reference_is_branch(r2)))
949                 return r;
950
951         return strcmp(git_reference_shorthand(r1),
952                       git_reference_shorthand(r2));
953 }
954
955 int
956 writerefs(FILE *fp)
957 {
958         struct commitinfo *ci;
959         const git_oid *id = NULL;
960         git_object *obj = NULL;
961         git_reference *dref = NULL, *r, *ref = NULL;
962         git_reference_iterator *it = NULL;
963         git_reference **refs = NULL;
964         size_t count, i, j, refcount;
965         const char *titles[] = { "Branches", "Tags" };
966         const char *ids[] = { "branches", "tags" };
967         const char *name;
968
969         if (git_reference_iterator_new(&it, repo))
970                 return -1;
971
972         for (refcount = 0; !git_reference_next(&ref, it); refcount++) {
973                 if (!(refs = reallocarray(refs, refcount + 1, sizeof(git_reference *))))
974                         err(1, "realloc");
975                 refs[refcount] = ref;
976         }
977         git_reference_iterator_free(it);
978
979         /* sort by type then shorthand name */
980         qsort(refs, refcount, sizeof(git_reference *), refs_cmp);
981
982         for (j = 0; j < 2; j++) {
983                 for (i = 0, count = 0; i < refcount; i++) {
984                         if (!(git_reference_is_branch(refs[i]) && j == 0) &&
985                             !(git_reference_is_tag(refs[i]) && j == 1))
986                                 continue;
987
988                         switch (git_reference_type(refs[i])) {
989                         case GIT_REF_SYMBOLIC:
990                                 if (git_reference_resolve(&dref, refs[i]))
991                                         goto err;
992                                 r = dref;
993                                 break;
994                         case GIT_REF_OID:
995                                 r = refs[i];
996                                 break;
997                         default:
998                                 continue;
999                         }
1000                         if (!git_reference_target(r) ||
1001                             git_reference_peel(&obj, r, GIT_OBJ_ANY))
1002                                 goto err;
1003                         if (!(id = git_object_id(obj)))
1004                                 goto err;
1005                         if (!(ci = commitinfo_getbyoid(id)))
1006                                 break;
1007
1008                         /* print header if it has an entry (first). */
1009                         if (++count == 1) {
1010                                 fprintf(fp, "<h2>%s</h2><table id=\"%s\">"
1011                                         "<thead>\n<tr><td><b>Name</b></td>"
1012                                         "<td><b>Last commit date</b></td>"
1013                                         "<td><b>Author</b></td>\n</tr>\n"
1014                                         "</thead><tbody>\n",
1015                                          titles[j], ids[j]);
1016                         }
1017
1018                         relpath = "";
1019                         name = git_reference_shorthand(r);
1020
1021                         fputs("<tr><td>", fp);
1022                         xmlencode(fp, name, strlen(name));
1023                         fputs("</td><td>", fp);
1024                         if (ci->author)
1025                                 printtimeshort(fp, &(ci->author->when));
1026                         fputs("</td><td>", fp);
1027                         if (ci->author)
1028                                 xmlencode(fp, ci->author->name, strlen(ci->author->name));
1029                         fputs("</td></tr>\n", fp);
1030
1031                         relpath = "../";
1032
1033                         commitinfo_free(ci);
1034                         git_object_free(obj);
1035                         obj = NULL;
1036                         git_reference_free(dref);
1037                         dref = NULL;
1038                 }
1039                 /* table footer */
1040                 if (count)
1041                         fputs("</tbody></table><br/>", fp);
1042         }
1043
1044 err:
1045         git_object_free(obj);
1046         git_reference_free(dref);
1047
1048         for (i = 0; i < refcount; i++)
1049                 git_reference_free(refs[i]);
1050         free(refs);
1051
1052         return 0;
1053 }
1054
1055 void
1056 usage(char *argv0)
1057 {
1058         fprintf(stderr, "%s [-c cachefile | -l commits] repodir\n", argv0);
1059         exit(1);
1060 }
1061
1062 int
1063 main(int argc, char *argv[])
1064 {
1065         git_object *obj = NULL;
1066         const git_oid *head = NULL;
1067         mode_t mask;
1068         FILE *fp, *fpread;
1069         char path[PATH_MAX], repodirabs[PATH_MAX + 1], *p;
1070         char tmppath[64] = "cache.XXXXXXXXXXXX", buf[BUFSIZ];
1071         size_t n;
1072         int i, fd;
1073
1074         for (i = 1; i < argc; i++) {
1075                 if (argv[i][0] != '-') {
1076                         if (repodir)
1077                                 usage(argv[0]);
1078                         repodir = argv[i];
1079                 } else if (argv[i][1] == 'c') {
1080                         if (nlogcommits > 0 || i + 1 >= argc)
1081                                 usage(argv[0]);
1082                         cachefile = argv[++i];
1083                 } else if (argv[i][1] == 'l') {
1084                         if (cachefile || i + 1 >= argc)
1085                                 usage(argv[0]);
1086                         errno = 0;
1087                         nlogcommits = strtoll(argv[++i], &p, 10);
1088                         if (argv[i][0] == '\0' || *p != '\0' ||
1089                             nlogcommits <= 0 || errno)
1090                                 usage(argv[0]);
1091                 }
1092         }
1093         if (!repodir)
1094                 usage(argv[0]);
1095
1096         if (!realpath(repodir, repodirabs))
1097                 err(1, "realpath");
1098
1099         git_libgit2_init();
1100
1101 #ifdef __OpenBSD__
1102         if (unveil(repodir, "r") == -1)
1103                 err(1, "unveil: %s", repodir);
1104         if (unveil(".", "rwc") == -1)
1105                 err(1, "unveil: .");
1106         if (cachefile && unveil(cachefile, "rwc") == -1)
1107                 err(1, "unveil: %s", cachefile);
1108
1109         if (cachefile) {
1110                 if (pledge("stdio rpath wpath cpath fattr", NULL) == -1)
1111                         err(1, "pledge");
1112         } else {
1113                 if (pledge("stdio rpath wpath cpath", NULL) == -1)
1114                         err(1, "pledge");
1115         }
1116 #endif
1117
1118         if (git_repository_open_ext(&repo, repodir,
1119                 GIT_REPOSITORY_OPEN_NO_SEARCH, NULL) < 0) {
1120                 fprintf(stderr, "%s: cannot open repository\n", argv[0]);
1121                 return 1;
1122         }
1123
1124         /* find HEAD */
1125         if (!git_revparse_single(&obj, repo, "HEAD"))
1126                 head = git_object_id(obj);
1127         git_object_free(obj);
1128
1129         /* use directory name as name */
1130         if ((name = strrchr(repodirabs, '/')))
1131                 name++;
1132         else
1133                 name = "";
1134
1135         /* strip .git suffix */
1136         if (!(strippedname = strdup(name)))
1137                 err(1, "strdup");
1138         if ((p = strrchr(strippedname, '.')))
1139                 if (!strcmp(p, ".git"))
1140                         *p = '\0';
1141
1142         /* read description or .git/description */
1143         joinpath(path, sizeof(path), repodir, "description");
1144         if (!(fpread = fopen(path, "r"))) {
1145                 joinpath(path, sizeof(path), repodir, ".git/description");
1146                 fpread = fopen(path, "r");
1147         }
1148         if (fpread) {
1149                 if (!fgets(description, sizeof(description), fpread))
1150                         description[0] = '\0';
1151                 fclose(fpread);
1152         }
1153
1154         /* read url or .git/url */
1155         joinpath(path, sizeof(path), repodir, "url");
1156         if (!(fpread = fopen(path, "r"))) {
1157                 joinpath(path, sizeof(path), repodir, ".git/url");
1158                 fpread = fopen(path, "r");
1159         }
1160         if (fpread) {
1161                 if (!fgets(cloneurl, sizeof(cloneurl), fpread))
1162                         cloneurl[0] = '\0';
1163                 cloneurl[strcspn(cloneurl, "\n")] = '\0';
1164                 fclose(fpread);
1165         }
1166
1167         /* check LICENSE */
1168         for (i = 0; i < sizeof(licensefiles) / sizeof(*licensefiles) && !license; i++) {
1169                 if (!git_revparse_single(&obj, repo, licensefiles[i]) &&
1170                     git_object_type(obj) == GIT_OBJ_BLOB)
1171                         license = licensefiles[i] + strlen("HEAD:");
1172                 git_object_free(obj);
1173         }
1174
1175         /* check README */
1176         for (i = 0; i < sizeof(readmefiles) / sizeof(*readmefiles) && !readme; i++) {
1177                 if (!git_revparse_single(&obj, repo, readmefiles[i]) &&
1178                     git_object_type(obj) == GIT_OBJ_BLOB)
1179                         readme = readmefiles[i] + strlen("HEAD:");
1180                 git_object_free(obj);
1181         }
1182
1183         if (!git_revparse_single(&obj, repo, "HEAD:.gitmodules") &&
1184             git_object_type(obj) == GIT_OBJ_BLOB)
1185                 submodules = ".gitmodules";
1186         git_object_free(obj);
1187
1188         /* log for HEAD */
1189         fp = efopen("log.html", "w");
1190         relpath = "";
1191         mkdir("commit", S_IRWXU | S_IRWXG | S_IRWXO);
1192         writeheader(fp, "Log");
1193         fputs("<table id=\"log\"><thead>\n<tr><td><b>Date</b></td>"
1194               "<td><b>Commit</b></td>"
1195               "<td><b>Author</b></td><td class=\"num\" align=\"right\"><b>Files</b></td>"
1196               "<td class=\"num\" align=\"right\"><b>+</b></td>"
1197               "<td class=\"num\" align=\"right\"><b>-</b></td></tr>\n</thead><tbody>\n", fp);
1198
1199         if (cachefile && head) {
1200                 /* read from cache file (does not need to exist) */
1201                 if ((rcachefp = fopen(cachefile, "r"))) {
1202                         if (!fgets(lastoidstr, sizeof(lastoidstr), rcachefp))
1203                                 errx(1, "%s: no object id", cachefile);
1204                         if (git_oid_fromstr(&lastoid, lastoidstr))
1205                                 errx(1, "%s: invalid object id", cachefile);
1206                 }
1207
1208                 /* write log to (temporary) cache */
1209                 if ((fd = mkstemp(tmppath)) == -1)
1210                         err(1, "mkstemp");
1211                 if (!(wcachefp = fdopen(fd, "w")))
1212                         err(1, "fdopen: '%s'", tmppath);
1213                 /* write last commit id (HEAD) */
1214                 git_oid_tostr(buf, sizeof(buf), head);
1215                 fprintf(wcachefp, "%s\n", buf);
1216
1217                 writelog(fp, head);
1218
1219                 if (rcachefp) {
1220                         /* append previous log to log.html and the new cache */
1221                         while (!feof(rcachefp)) {
1222                                 n = fread(buf, 1, sizeof(buf), rcachefp);
1223                                 if (ferror(rcachefp))
1224                                         err(1, "fread");
1225                                 if (fwrite(buf, 1, n, fp) != n ||
1226                                     fwrite(buf, 1, n, wcachefp) != n)
1227                                         err(1, "fwrite");
1228                         }
1229                         fclose(rcachefp);
1230                 }
1231                 fclose(wcachefp);
1232         } else {
1233                 if (head)
1234                         writelog(fp, head);
1235         }
1236
1237         fputs("</tbody></table>", fp);
1238         writefooter(fp);
1239         fclose(fp);
1240
1241         /* files for HEAD */
1242         fp = efopen("files.html", "w");
1243         writeheader(fp, "Files");
1244         if (head)
1245                 writefiles(fp, head);
1246         writefooter(fp);
1247         fclose(fp);
1248
1249         /* summary page with branches and tags */
1250         fp = efopen("refs.html", "w");
1251         writeheader(fp, "Refs");
1252         writerefs(fp);
1253         writefooter(fp);
1254         fclose(fp);
1255
1256         /* Atom feed */
1257         fp = efopen("atom.xml", "w");
1258         writeatom(fp);
1259         fclose(fp);
1260
1261         /* rename new cache file on success */
1262         if (cachefile && head) {
1263                 if (rename(tmppath, cachefile))
1264                         err(1, "rename: '%s' to '%s'", tmppath, cachefile);
1265                 umask((mask = umask(0)));
1266                 if (chmod(cachefile,
1267                     (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH) & ~mask))
1268                         err(1, "chmod: '%s'", cachefile);
1269         }
1270
1271         /* cleanup */
1272         git_repository_free(repo);
1273         git_libgit2_shutdown();
1274
1275         return 0;
1276 }