home | blog | art | now | git gpg | email | rss

stagit

Personal fork of stagit (https://git.codemadness.org/stagit/)
git clone https://pollux.codes/git/stagit.git
Log | Files | Refs | README | LICENSE

stagit-index.c (5643B)


      1 #include <err.h>
      2 #include <limits.h>
      3 #include <stdio.h>
      4 #include <stdlib.h>
      5 #include <string.h>
      6 #include <time.h>
      7 #include <unistd.h>
      8 
      9 #include <git2.h>
     10 
     11 #include "header.h"
     12 
     13 static git_repository *repo;
     14 
     15 static const char *relpath = "";
     16 
     17 static char description[255] = "Repositories";
     18 static char *name = "";
     19 
     20 /* Handle read or write errors for a FILE * stream */
     21 void
     22 checkfileerror(FILE *fp, const char *name, int mode)
     23 {
     24 	if (mode == 'r' && ferror(fp))
     25 		errx(1, "read error: %s", name);
     26 	else if (mode == 'w' && (fflush(fp) || ferror(fp)))
     27 		errx(1, "write error: %s", name);
     28 }
     29 
     30 void
     31 joinpath(char *buf, size_t bufsiz, const char *path, const char *path2)
     32 {
     33 	int r;
     34 
     35 	r = snprintf(buf, bufsiz, "%s%s%s",
     36 		path, path[0] && path[strlen(path) - 1] != '/' ? "/" : "", path2);
     37 	if (r < 0 || (size_t)r >= bufsiz)
     38 		errx(1, "path truncated: '%s%s%s'",
     39 			path, path[0] && path[strlen(path) - 1] != '/' ? "/" : "", path2);
     40 }
     41 
     42 /* Percent-encode, see RFC3986 section 2.1. */
     43 void
     44 percentencode(FILE *fp, const char *s, size_t len)
     45 {
     46 	static char tab[] = "0123456789ABCDEF";
     47 	unsigned char uc;
     48 	size_t i;
     49 
     50 	for (i = 0; *s && i < len; s++, i++) {
     51 		uc = *s;
     52 		/* NOTE: do not encode '/' for paths or ",-." */
     53 		if (uc < ',' || uc >= 127 || (uc >= ':' && uc <= '@') ||
     54 		    uc == '[' || uc == ']') {
     55 			putc('%', fp);
     56 			putc(tab[(uc >> 4) & 0x0f], fp);
     57 			putc(tab[uc & 0x0f], fp);
     58 		} else {
     59 			putc(uc, fp);
     60 		}
     61 	}
     62 }
     63 
     64 /* Escape characters below as HTML 2.0 / XML 1.0. */
     65 void
     66 xmlencode(FILE *fp, const char *s, size_t len)
     67 {
     68 	size_t i;
     69 
     70 	for (i = 0; *s && i < len; s++, i++) {
     71 		switch(*s) {
     72 		case '<':  fputs("&lt;",   fp); break;
     73 		case '>':  fputs("&gt;",   fp); break;
     74 		case '\'': fputs("&#39;" , fp); break;
     75 		case '&':  fputs("&amp;",  fp); break;
     76 		case '"':  fputs("&quot;", fp); break;
     77 		default:   putc(*s, fp);
     78 		}
     79 	}
     80 }
     81 
     82 void
     83 printtimeshort(FILE *fp, const git_time *intime)
     84 {
     85 	struct tm *intm;
     86 	time_t t;
     87 	char out[32];
     88 
     89 	t = (time_t)intime->time;
     90 	if (!(intm = gmtime(&t)))
     91 		return;
     92 	strftime(out, sizeof(out), "%Y-%m-%d %H:%M", intm);
     93 	fputs(out, fp);
     94 }
     95 
     96 void
     97 writeheader(FILE *fp)
     98 {
     99 	fputs("<!DOCTYPE html>\n"
    100 		"<html>\n<head>\n"
    101 		"<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n"
    102 		"<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n"
    103 		"<title>", fp);
    104 	xmlencode(fp, description, strlen(description));
    105 	fprintf(fp, "</title>\n<link rel=\"icon\" type=\"image/png\" href=\"%sfavicon.png\" />\n", relpath);
    106 	fprintf(fp, "<link rel=\"stylesheet\" type=\"text/css\" href=\"%sstyle.css\" />\n", relpath);
    107 	fputs("</head>\n<body>\n", fp);
    108 	fputs(HEADER, fp);
    109 	fprintf(fp, "<h1>", relpath);
    110 	xmlencode(fp, description, strlen(description));
    111 	fputs("</h1><hr/>\n<div id=\"content\">\n"
    112 		"<table id=\"index\"><thead>\n"
    113 		"<tr><td><b>Name</b></td><td><b>Description</b></td>"
    114 		"<td><b>Last commit</b></td></tr>"
    115 		"</thead><tbody>\n", fp);
    116 }
    117 
    118 void
    119 writefooter(FILE *fp)
    120 {
    121 	fputs("</tbody>\n</table>\n</div>\n</body>\n</html>\n", fp);
    122 }
    123 
    124 int
    125 writelog(FILE *fp)
    126 {
    127 	git_commit *commit = NULL;
    128 	const git_signature *author;
    129 	git_revwalk *w = NULL;
    130 	git_oid id;
    131 	char *stripped_name = NULL, *p;
    132 	int ret = 0;
    133 
    134 	git_revwalk_new(&w, repo);
    135 	git_revwalk_push_head(w);
    136 
    137 	if (git_revwalk_next(&id, w) ||
    138 	    git_commit_lookup(&commit, repo, &id)) {
    139 		ret = -1;
    140 		goto err;
    141 	}
    142 
    143 	author = git_commit_author(commit);
    144 
    145 	/* strip .git suffix */
    146 	if (!(stripped_name = strdup(name)))
    147 		err(1, "strdup");
    148 	if ((p = strrchr(stripped_name, '.')))
    149 		if (!strcmp(p, ".git"))
    150 			*p = '\0';
    151 
    152 	fputs("<tr><td><a href=\"", fp);
    153 	percentencode(fp, stripped_name, strlen(stripped_name));
    154 	fputs("/log.html\">", fp);
    155 	xmlencode(fp, stripped_name, strlen(stripped_name));
    156 	fputs("</a></td><td>", fp);
    157 	xmlencode(fp, description, strlen(description));
    158 	fputs("</td><td>", fp);
    159 	if (author)
    160 		printtimeshort(fp, &(author->when));
    161 	fputs("</td></tr>", fp);
    162 
    163 	git_commit_free(commit);
    164 err:
    165 	git_revwalk_free(w);
    166 	free(stripped_name);
    167 
    168 	return ret;
    169 }
    170 
    171 int
    172 main(int argc, char *argv[])
    173 {
    174 	FILE *fp;
    175 	char path[PATH_MAX], repodirabs[PATH_MAX + 1];
    176 	const char *repodir;
    177 	int i, ret = 0;
    178 
    179 	if (argc < 2) {
    180 		fprintf(stderr, "%s [repodir...]\n", argv[0]);
    181 		return 1;
    182 	}
    183 
    184 	/* do not search outside the git repository:
    185 	   GIT_CONFIG_LEVEL_APP is the highest level currently */
    186 	git_libgit2_init();
    187 	for (i = 1; i <= GIT_CONFIG_LEVEL_APP; i++)
    188 		git_libgit2_opts(GIT_OPT_SET_SEARCH_PATH, i, "");
    189 	/* do not require the git repository to be owned by the current user */
    190 	git_libgit2_opts(GIT_OPT_SET_OWNER_VALIDATION, 0);
    191 
    192 #ifdef __OpenBSD__
    193 	if (pledge("stdio rpath", NULL) == -1)
    194 		err(1, "pledge");
    195 #endif
    196 
    197 	writeheader(stdout);
    198 
    199 	for (i = 1; i < argc; i++) {
    200 		repodir = argv[i];
    201 		if (!realpath(repodir, repodirabs))
    202 			err(1, "realpath");
    203 
    204 		if (git_repository_open_ext(&repo, repodir,
    205 		    GIT_REPOSITORY_OPEN_NO_SEARCH, NULL)) {
    206 			fprintf(stderr, "%s: cannot open repository\n", argv[0]);
    207 			ret = 1;
    208 			continue;
    209 		}
    210 
    211 		/* use directory name as name */
    212 		if ((name = strrchr(repodirabs, '/')))
    213 			name++;
    214 		else
    215 			name = "";
    216 
    217 		/* read description or .git/description */
    218 		joinpath(path, sizeof(path), repodir, "description");
    219 		if (!(fp = fopen(path, "r"))) {
    220 			joinpath(path, sizeof(path), repodir, ".git/description");
    221 			fp = fopen(path, "r");
    222 		}
    223 		description[0] = '\0';
    224 		if (fp) {
    225 			if (!fgets(description, sizeof(description), fp))
    226 				description[0] = '\0';
    227 			checkfileerror(fp, "description", 'r');
    228 			fclose(fp);
    229 		}
    230 		writelog(stdout);
    231 	}
    232 	writefooter(stdout);
    233 
    234 	/* cleanup */
    235 	git_repository_free(repo);
    236 	git_libgit2_shutdown();
    237 
    238 	checkfileerror(stdout, "<stdout>", 'w');
    239 
    240 	return ret;
    241 }