|
diff --git a/Makefile b/Makefile index 243f590..21e2eb3 100644 --- a/ Makefile+++ b/ Makefile |
|
@@ -1,22 +1,24 @@ |
| |
1 | CGIT_VERSION = 0.1-pre |
1 | |
2 | |
2 | INSTALL_BIN = /var/www/htdocs/cgit.cgi |
3 | INSTALL_BIN = /var/www/htdocs/cgit.cgi |
3 | INSTALL_CSS = /var/www/htdocs/cgit.css |
4 | INSTALL_CSS = /var/www/htdocs/cgit.css |
4 | |
5 | |
5 | EXTLIBS = ../git/libgit.a ../git/xdiff/lib.a -lz -lcrypto |
6 | EXTLIBS = ../git/libgit.a ../git/xdiff/lib.a -lz -lcrypto |
6 | OBJECTS = cgit.o config.o html.o cache.o |
7 | OBJECTS = config.o html.o cache.o |
7 | |
8 | |
8 | CFLAGS += -Wall |
9 | CFLAGS += -Wall |
9 | |
10 | |
10 | all: cgit |
11 | all: cgit |
11 | |
12 | |
12 | install: all |
13 | install: all |
13 | install cgit $(INSTALL_BIN) |
14 | install cgit $(INSTALL_BIN) |
14 | install cgit.css $(INSTALL_CSS) |
15 | install cgit.css $(INSTALL_CSS) |
15 | |
16 | |
16 | clean: |
17 | cgit: cgit.c cgit.h git.h $(OBJECTS) |
17 | rm -f cgit *.o |
18 | $(CC) $(CFLAGS) -DCGIT_VERSION='"$(CGIT_VERSION)"' cgit.c -o cgit $(OBJECTS) $(EXTLIBS) |
18 | |
| |
19 | cgit: $(OBJECTS) |
| |
20 | $(CC) $(CFLAGS) -o cgit $(OBJECTS) $(EXTLIBS) |
| |
21 | |
19 | |
22 | $(OBJECTS): cgit.h git.h |
20 | $(OBJECTS): cgit.h git.h |
| |
21 | |
| |
22 | .PHONY: clean |
| |
23 | clean: |
| |
24 | rm -f cgit *.o |
|
|
diff --git a/cgit.c b/cgit.c index 808ffe9..110face 100644 --- a/ cgit.c+++ b/ cgit.c |
|
@@ -1,505 +1,508 @@ |
1 | /* cgit.c: cgi for the git scm |
1 | /* cgit.c: cgi for the git scm |
2 | * |
2 | * |
3 | * Copyright (C) 2006 Lars Hjemli |
3 | * Copyright (C) 2006 Lars Hjemli |
4 | * |
4 | * |
5 | * Licensed under GNU General Public License v2 |
5 | * Licensed under GNU General Public License v2 |
6 | * (see COPYING for full license text) |
6 | * (see COPYING for full license text) |
7 | */ |
7 | */ |
8 | |
8 | |
9 | #include "cgit.h" |
9 | #include "cgit.h" |
10 | |
10 | |
11 | static const char cgit_doctype[] = |
11 | const char cgit_version[] = CGIT_VERSION; |
| |
12 | |
| |
13 | const char cgit_doctype[] = |
12 | "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n" |
14 | "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n" |
13 | " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n"; |
15 | " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n"; |
14 | |
16 | |
15 | static const char cgit_error[] = |
17 | const char cgit_error[] = |
16 | "<div class='error'>%s</div>"; |
18 | "<div class='error'>%s</div>"; |
17 | |
19 | |
18 | static const char cgit_lib_error[] = |
20 | const char cgit_lib_error[] = |
19 | "<div class='error'>%s: %s</div>"; |
21 | "<div class='error'>%s: %s</div>"; |
20 | |
22 | |
21 | int htmlfd = 0; |
23 | int htmlfd = 0; |
22 | |
24 | |
23 | char *cgit_root = "/usr/src/git"; |
25 | char *cgit_root = "/usr/src/git"; |
24 | char *cgit_root_title = "Git repository browser"; |
26 | char *cgit_root_title = "Git repository browser"; |
25 | char *cgit_css = "/cgit.css"; |
27 | char *cgit_css = "/cgit.css"; |
26 | char *cgit_logo = "/git-logo.png"; |
28 | char *cgit_logo = "/git-logo.png"; |
27 | char *cgit_logo_link = "http://www.kernel.org/pub/software/scm/git/docs/"; |
29 | char *cgit_logo_link = "http://www.kernel.org/pub/software/scm/git/docs/"; |
28 | char *cgit_virtual_root = NULL; |
30 | char *cgit_virtual_root = NULL; |
29 | |
31 | |
30 | char *cgit_cache_root = "/var/cache/cgit"; |
32 | char *cgit_cache_root = "/var/cache/cgit"; |
31 | |
33 | |
32 | int cgit_cache_root_ttl = 5; |
34 | int cgit_cache_root_ttl = 5; |
33 | int cgit_cache_repo_ttl = 5; |
35 | int cgit_cache_repo_ttl = 5; |
34 | int cgit_cache_dynamic_ttl = 5; |
36 | int cgit_cache_dynamic_ttl = 5; |
35 | int cgit_cache_static_ttl = -1; |
37 | int cgit_cache_static_ttl = -1; |
36 | int cgit_cache_max_create_time = 5; |
38 | int cgit_cache_max_create_time = 5; |
37 | |
39 | |
38 | char *cgit_repo_name = NULL; |
40 | char *cgit_repo_name = NULL; |
39 | char *cgit_repo_desc = NULL; |
41 | char *cgit_repo_desc = NULL; |
40 | char *cgit_repo_owner = NULL; |
42 | char *cgit_repo_owner = NULL; |
41 | |
43 | |
42 | int cgit_query_has_symref = 0; |
44 | int cgit_query_has_symref = 0; |
43 | int cgit_query_has_sha1 = 0; |
45 | int cgit_query_has_sha1 = 0; |
44 | |
46 | |
45 | char *cgit_querystring = NULL; |
47 | char *cgit_querystring = NULL; |
46 | char *cgit_query_repo = NULL; |
48 | char *cgit_query_repo = NULL; |
47 | char *cgit_query_page = NULL; |
49 | char *cgit_query_page = NULL; |
48 | char *cgit_query_head = NULL; |
50 | char *cgit_query_head = NULL; |
49 | char *cgit_query_sha1 = NULL; |
51 | char *cgit_query_sha1 = NULL; |
50 | |
52 | |
51 | struct cacheitem cacheitem; |
53 | struct cacheitem cacheitem; |
52 | |
54 | |
53 | int cgit_parse_query(char *txt, configfn fn) |
55 | int cgit_parse_query(char *txt, configfn fn) |
54 | { |
56 | { |
55 | char *t, *value = NULL, c; |
57 | char *t, *value = NULL, c; |
56 | |
58 | |
57 | if (!txt) |
59 | if (!txt) |
58 | return 0; |
60 | return 0; |
59 | |
61 | |
60 | t = txt = xstrdup(txt); |
62 | t = txt = xstrdup(txt); |
61 | |
63 | |
62 | while((c=*t) != '\0') { |
64 | while((c=*t) != '\0') { |
63 | if (c=='=') { |
65 | if (c=='=') { |
64 | *t = '\0'; |
66 | *t = '\0'; |
65 | value = t+1; |
67 | value = t+1; |
66 | } else if (c=='&') { |
68 | } else if (c=='&') { |
67 | *t = '\0'; |
69 | *t = '\0'; |
68 | (*fn)(txt, value); |
70 | (*fn)(txt, value); |
69 | txt = t+1; |
71 | txt = t+1; |
70 | value = NULL; |
72 | value = NULL; |
71 | } |
73 | } |
72 | t++; |
74 | t++; |
73 | } |
75 | } |
74 | if (t!=txt) |
76 | if (t!=txt) |
75 | (*fn)(txt, value); |
77 | (*fn)(txt, value); |
76 | return 0; |
78 | return 0; |
77 | } |
79 | } |
78 | |
80 | |
79 | void cgit_global_config_cb(const char *name, const char *value) |
81 | void cgit_global_config_cb(const char *name, const char *value) |
80 | { |
82 | { |
81 | if (!strcmp(name, "root")) |
83 | if (!strcmp(name, "root")) |
82 | cgit_root = xstrdup(value); |
84 | cgit_root = xstrdup(value); |
83 | else if (!strcmp(name, "root-title")) |
85 | else if (!strcmp(name, "root-title")) |
84 | cgit_root_title = xstrdup(value); |
86 | cgit_root_title = xstrdup(value); |
85 | else if (!strcmp(name, "css")) |
87 | else if (!strcmp(name, "css")) |
86 | cgit_css = xstrdup(value); |
88 | cgit_css = xstrdup(value); |
87 | else if (!strcmp(name, "logo")) |
89 | else if (!strcmp(name, "logo")) |
88 | cgit_logo = xstrdup(value); |
90 | cgit_logo = xstrdup(value); |
89 | else if (!strcmp(name, "logo-link")) |
91 | else if (!strcmp(name, "logo-link")) |
90 | cgit_logo_link = xstrdup(value); |
92 | cgit_logo_link = xstrdup(value); |
91 | else if (!strcmp(name, "virtual-root")) |
93 | else if (!strcmp(name, "virtual-root")) |
92 | cgit_virtual_root = xstrdup(value); |
94 | cgit_virtual_root = xstrdup(value); |
93 | } |
95 | } |
94 | |
96 | |
95 | void cgit_repo_config_cb(const char *name, const char *value) |
97 | void cgit_repo_config_cb(const char *name, const char *value) |
96 | { |
98 | { |
97 | if (!strcmp(name, "name")) |
99 | if (!strcmp(name, "name")) |
98 | cgit_repo_name = xstrdup(value); |
100 | cgit_repo_name = xstrdup(value); |
99 | else if (!strcmp(name, "desc")) |
101 | else if (!strcmp(name, "desc")) |
100 | cgit_repo_desc = xstrdup(value); |
102 | cgit_repo_desc = xstrdup(value); |
101 | else if (!strcmp(name, "owner")) |
103 | else if (!strcmp(name, "owner")) |
102 | cgit_repo_owner = xstrdup(value); |
104 | cgit_repo_owner = xstrdup(value); |
103 | } |
105 | } |
104 | |
106 | |
105 | void cgit_querystring_cb(const char *name, const char *value) |
107 | void cgit_querystring_cb(const char *name, const char *value) |
106 | { |
108 | { |
107 | if (!strcmp(name,"r")) |
109 | if (!strcmp(name,"r")) |
108 | cgit_query_repo = xstrdup(value); |
110 | cgit_query_repo = xstrdup(value); |
109 | else if (!strcmp(name, "p")) |
111 | else if (!strcmp(name, "p")) |
110 | cgit_query_page = xstrdup(value); |
112 | cgit_query_page = xstrdup(value); |
111 | else if (!strcmp(name, "h")) { |
113 | else if (!strcmp(name, "h")) { |
112 | cgit_query_head = xstrdup(value); |
114 | cgit_query_head = xstrdup(value); |
113 | cgit_query_has_symref = 1; |
115 | cgit_query_has_symref = 1; |
114 | } else if (!strcmp(name, "id")) { |
116 | } else if (!strcmp(name, "id")) { |
115 | cgit_query_sha1 = xstrdup(value); |
117 | cgit_query_sha1 = xstrdup(value); |
116 | cgit_query_has_sha1 = 1; |
118 | cgit_query_has_sha1 = 1; |
117 | } |
119 | } |
118 | } |
120 | } |
119 | |
121 | |
120 | char *cgit_repourl(const char *reponame) |
122 | char *cgit_repourl(const char *reponame) |
121 | { |
123 | { |
122 | if (cgit_virtual_root) { |
124 | if (cgit_virtual_root) { |
123 | return fmt("%s/%s/", cgit_virtual_root, reponame); |
125 | return fmt("%s/%s/", cgit_virtual_root, reponame); |
124 | } else { |
126 | } else { |
125 | return fmt("?r=%s", reponame); |
127 | return fmt("?r=%s", reponame); |
126 | } |
128 | } |
127 | } |
129 | } |
128 | |
130 | |
129 | char *cgit_pageurl(const char *reponame, const char *pagename, |
131 | char *cgit_pageurl(const char *reponame, const char *pagename, |
130 | const char *query) |
132 | const char *query) |
131 | { |
133 | { |
132 | if (cgit_virtual_root) { |
134 | if (cgit_virtual_root) { |
133 | return fmt("%s/%s/%s/?%s", cgit_virtual_root, reponame, |
135 | return fmt("%s/%s/%s/?%s", cgit_virtual_root, reponame, |
134 | pagename, query); |
136 | pagename, query); |
135 | } else { |
137 | } else { |
136 | return fmt("?r=%s&p=%s&%s", reponame, pagename, query); |
138 | return fmt("?r=%s&p=%s&%s", reponame, pagename, query); |
137 | } |
139 | } |
138 | } |
140 | } |
139 | |
141 | |
140 | static int cgit_print_branch_cb(const char *refname, const unsigned char *sha1, |
142 | static int cgit_print_branch_cb(const char *refname, const unsigned char *sha1, |
141 | int flags, void *cb_data) |
143 | int flags, void *cb_data) |
142 | { |
144 | { |
143 | struct commit *commit; |
145 | struct commit *commit; |
144 | char buf[256], *url; |
146 | char buf[256], *url; |
145 | |
147 | |
146 | commit = lookup_commit(sha1); |
148 | commit = lookup_commit(sha1); |
147 | if (commit && !parse_commit(commit)){ |
149 | if (commit && !parse_commit(commit)){ |
148 | html("<tr><td>"); |
150 | html("<tr><td>"); |
149 | url = cgit_pageurl(cgit_query_repo, "log", |
151 | url = cgit_pageurl(cgit_query_repo, "log", |
150 | fmt("h=%s", refname)); |
152 | fmt("h=%s", refname)); |
151 | html_link_open(url, NULL, NULL); |
153 | html_link_open(url, NULL, NULL); |
152 | strncpy(buf, refname, sizeof(buf)); |
154 | strncpy(buf, refname, sizeof(buf)); |
153 | html_txt(buf); |
155 | html_txt(buf); |
154 | html_link_close(); |
156 | html_link_close(); |
155 | html("</td><td>"); |
157 | html("</td><td>"); |
156 | pretty_print_commit(CMIT_FMT_ONELINE, commit, ~0, buf, |
158 | pretty_print_commit(CMIT_FMT_ONELINE, commit, ~0, buf, |
157 | sizeof(buf), 0, NULL, NULL, 0); |
159 | sizeof(buf), 0, NULL, NULL, 0); |
158 | html_txt(buf); |
160 | html_txt(buf); |
159 | html("</td></tr>\n"); |
161 | html("</td></tr>\n"); |
160 | } else { |
162 | } else { |
161 | html("<tr><td>"); |
163 | html("<tr><td>"); |
162 | html_txt(buf); |
164 | html_txt(buf); |
163 | html("</td><td>"); |
165 | html("</td><td>"); |
164 | htmlf("*** bad ref %s", sha1_to_hex(sha1)); |
166 | htmlf("*** bad ref %s", sha1_to_hex(sha1)); |
165 | html("</td></tr>\n"); |
167 | html("</td></tr>\n"); |
166 | } |
168 | } |
167 | return 0; |
169 | return 0; |
168 | } |
170 | } |
169 | |
171 | |
170 | /* Sun, 06 Nov 1994 08:49:37 GMT */ |
172 | /* Sun, 06 Nov 1994 08:49:37 GMT */ |
171 | static char *http_date(time_t t) |
173 | static char *http_date(time_t t) |
172 | { |
174 | { |
173 | static char day[][4] = {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"}; |
175 | static char day[][4] = {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"}; |
174 | static char month[][4] = {"Jan", "Feb", "Mar", "Apr", "May", "Jun", |
176 | static char month[][4] = {"Jan", "Feb", "Mar", "Apr", "May", "Jun", |
175 | "Jul", "Aug", "Sep", "Oct", "Now", "Dec"}; |
177 | "Jul", "Aug", "Sep", "Oct", "Now", "Dec"}; |
176 | struct tm *tm = gmtime(&t); |
178 | struct tm *tm = gmtime(&t); |
177 | return fmt("%s, %02d %s %04d %02d:%02d:%02d GMT", day[tm->tm_wday], |
179 | return fmt("%s, %02d %s %04d %02d:%02d:%02d GMT", day[tm->tm_wday], |
178 | tm->tm_mday, month[tm->tm_mon], 1900+tm->tm_year, |
180 | tm->tm_mday, month[tm->tm_mon], 1900+tm->tm_year, |
179 | tm->tm_hour, tm->tm_min, tm->tm_sec); |
181 | tm->tm_hour, tm->tm_min, tm->tm_sec); |
180 | } |
182 | } |
181 | |
183 | |
182 | static int ttl_seconds(int ttl) |
184 | static int ttl_seconds(int ttl) |
183 | { |
185 | { |
184 | if (ttl<0) |
186 | if (ttl<0) |
185 | return 60 * 60 * 24 * 365; |
187 | return 60 * 60 * 24 * 365; |
186 | else |
188 | else |
187 | return ttl * 60; |
189 | return ttl * 60; |
188 | } |
190 | } |
189 | |
191 | |
190 | static void cgit_print_docstart(char *title) |
192 | static void cgit_print_docstart(char *title) |
191 | { |
193 | { |
192 | html("Content-Type: text/html; charset=utf-8\n"); |
194 | html("Content-Type: text/html; charset=utf-8\n"); |
193 | htmlf("Last-Modified: %s\n", http_date(cacheitem.st.st_mtime)); |
195 | htmlf("Last-Modified: %s\n", http_date(cacheitem.st.st_mtime)); |
194 | htmlf("Expires: %s\n", http_date(cacheitem.st.st_mtime + |
196 | htmlf("Expires: %s\n", http_date(cacheitem.st.st_mtime + |
195 | ttl_seconds(cacheitem.ttl))); |
197 | ttl_seconds(cacheitem.ttl))); |
196 | html("\n"); |
198 | html("\n"); |
197 | html(cgit_doctype); |
199 | html(cgit_doctype); |
198 | html("<html>\n"); |
200 | html("<html>\n"); |
199 | html("<head>\n"); |
201 | html("<head>\n"); |
200 | html("<title>"); |
202 | html("<title>"); |
201 | html_txt(title); |
203 | html_txt(title); |
202 | html("</title>\n"); |
204 | html("</title>\n"); |
| |
205 | htmlf("<meta name='generator' content='cgit v%s'/>\n", cgit_version); |
203 | html("<link rel='stylesheet' type='text/css' href='"); |
206 | html("<link rel='stylesheet' type='text/css' href='"); |
204 | html_attr(cgit_css); |
207 | html_attr(cgit_css); |
205 | html("'/>\n"); |
208 | html("'/>\n"); |
206 | html("</head>\n"); |
209 | html("</head>\n"); |
207 | html("<body>\n"); |
210 | html("<body>\n"); |
208 | } |
211 | } |
209 | |
212 | |
210 | static void cgit_print_docend() |
213 | static void cgit_print_docend() |
211 | { |
214 | { |
212 | html("</body>\n</html>\n"); |
215 | html("</body>\n</html>\n"); |
213 | } |
216 | } |
214 | |
217 | |
215 | static void cgit_print_pageheader(char *title) |
218 | static void cgit_print_pageheader(char *title) |
216 | { |
219 | { |
217 | html("<div id='header'>"); |
220 | html("<div id='header'>"); |
218 | htmlf("<a href='%s'>", cgit_logo_link); |
221 | htmlf("<a href='%s'>", cgit_logo_link); |
219 | htmlf("<img id='logo' src='%s'/>\n", cgit_logo); |
222 | htmlf("<img id='logo' src='%s'/>\n", cgit_logo); |
220 | htmlf("</a>"); |
223 | htmlf("</a>"); |
221 | html_txt(title); |
224 | html_txt(title); |
222 | html("</div>"); |
225 | html("</div>"); |
223 | } |
226 | } |
224 | |
227 | |
225 | static void cgit_print_repolist() |
228 | static void cgit_print_repolist() |
226 | { |
229 | { |
227 | DIR *d; |
230 | DIR *d; |
228 | struct dirent *de; |
231 | struct dirent *de; |
229 | struct stat st; |
232 | struct stat st; |
230 | char *name; |
233 | char *name; |
231 | |
234 | |
232 | chdir(cgit_root); |
235 | chdir(cgit_root); |
233 | cgit_print_docstart(cgit_root_title); |
236 | cgit_print_docstart(cgit_root_title); |
234 | cgit_print_pageheader(cgit_root_title); |
237 | cgit_print_pageheader(cgit_root_title); |
235 | |
238 | |
236 | if (!(d = opendir("."))) { |
239 | if (!(d = opendir("."))) { |
237 | htmlf(cgit_lib_error, "Unable to scan repository directory", |
240 | htmlf(cgit_lib_error, "Unable to scan repository directory", |
238 | strerror(errno)); |
241 | strerror(errno)); |
239 | cgit_print_docend(); |
242 | cgit_print_docend(); |
240 | return; |
243 | return; |
241 | } |
244 | } |
242 | |
245 | |
243 | html("<h2>Repositories</h2>\n"); |
246 | html("<h2>Repositories</h2>\n"); |
244 | html("<table class='list'>"); |
247 | html("<table class='list'>"); |
245 | html("<tr><th>Name</th><th>Description</th><th>Owner</th></tr>\n"); |
248 | html("<tr><th>Name</th><th>Description</th><th>Owner</th></tr>\n"); |
246 | while ((de = readdir(d)) != NULL) { |
249 | while ((de = readdir(d)) != NULL) { |
247 | if (de->d_name[0] == '.') |
250 | if (de->d_name[0] == '.') |
248 | continue; |
251 | continue; |
249 | if (stat(de->d_name, &st) < 0) |
252 | if (stat(de->d_name, &st) < 0) |
250 | continue; |
253 | continue; |
251 | if (!S_ISDIR(st.st_mode)) |
254 | if (!S_ISDIR(st.st_mode)) |
252 | continue; |
255 | continue; |
253 | |
256 | |
254 | cgit_repo_name = cgit_repo_desc = cgit_repo_owner = NULL; |
257 | cgit_repo_name = cgit_repo_desc = cgit_repo_owner = NULL; |
255 | name = fmt("%s/info/cgit", de->d_name); |
258 | name = fmt("%s/info/cgit", de->d_name); |
256 | if (cgit_read_config(name, cgit_repo_config_cb)) |
259 | if (cgit_read_config(name, cgit_repo_config_cb)) |
257 | continue; |
260 | continue; |
258 | |
261 | |
259 | html("<tr><td>"); |
262 | html("<tr><td>"); |
260 | html_link_open(cgit_repourl(de->d_name), NULL, NULL); |
263 | html_link_open(cgit_repourl(de->d_name), NULL, NULL); |
261 | html_txt(cgit_repo_name); |
264 | html_txt(cgit_repo_name); |
262 | html_link_close(); |
265 | html_link_close(); |
263 | html("</td><td>"); |
266 | html("</td><td>"); |
264 | html_txt(cgit_repo_desc); |
267 | html_txt(cgit_repo_desc); |
265 | html("</td><td>"); |
268 | html("</td><td>"); |
266 | html_txt(cgit_repo_owner); |
269 | html_txt(cgit_repo_owner); |
267 | html("</td></tr>\n"); |
270 | html("</td></tr>\n"); |
268 | } |
271 | } |
269 | closedir(d); |
272 | closedir(d); |
270 | html("</table>"); |
273 | html("</table>"); |
271 | cgit_print_docend(); |
274 | cgit_print_docend(); |
272 | } |
275 | } |
273 | |
276 | |
274 | static void cgit_print_branches() |
277 | static void cgit_print_branches() |
275 | { |
278 | { |
276 | html("<table class='list'>"); |
279 | html("<table class='list'>"); |
277 | html("<tr><th>Branch name</th><th>Head commit</th></tr>\n"); |
280 | html("<tr><th>Branch name</th><th>Head commit</th></tr>\n"); |
278 | for_each_branch_ref(cgit_print_branch_cb, NULL); |
281 | for_each_branch_ref(cgit_print_branch_cb, NULL); |
279 | html("</table>"); |
282 | html("</table>"); |
280 | } |
283 | } |
281 | |
284 | |
282 | static int get_one_line(char *txt) |
285 | static int get_one_line(char *txt) |
283 | { |
286 | { |
284 | char *t; |
287 | char *t; |
285 | |
288 | |
286 | for(t=txt; *t != '\n' && t != '\0'; t++) |
289 | for(t=txt; *t != '\n' && t != '\0'; t++) |
287 | ; |
290 | ; |
288 | *t = '\0'; |
291 | *t = '\0'; |
289 | return t-txt-1; |
292 | return t-txt-1; |
290 | } |
293 | } |
291 | |
294 | |
292 | static void cgit_print_commit_shortlog(struct commit *commit) |
295 | static void cgit_print_commit_shortlog(struct commit *commit) |
293 | { |
296 | { |
294 | char *h, *t, *p; |
297 | char *h, *t, *p; |
295 | char *tree = NULL, *author = NULL, *subject = NULL; |
298 | char *tree = NULL, *author = NULL, *subject = NULL; |
296 | int len; |
299 | int len; |
297 | time_t sec; |
300 | time_t sec; |
298 | struct tm *time; |
301 | struct tm *time; |
299 | char buf[32]; |
302 | char buf[32]; |
300 | |
303 | |
301 | h = t = commit->buffer; |
304 | h = t = commit->buffer; |
302 | |
305 | |
303 | if (strncmp(h, "tree ", 5)) |
306 | if (strncmp(h, "tree ", 5)) |
304 | die("Bad commit format: %s", |
307 | die("Bad commit format: %s", |
305 | sha1_to_hex(commit->object.sha1)); |
308 | sha1_to_hex(commit->object.sha1)); |
306 | |
309 | |
307 | len = get_one_line(h); |
310 | len = get_one_line(h); |
308 | tree = h+5; |
311 | tree = h+5; |
309 | h += len + 2; |
312 | h += len + 2; |
310 | |
313 | |
311 | while (!strncmp(h, "parent ", 7)) |
314 | while (!strncmp(h, "parent ", 7)) |
312 | h += get_one_line(h) + 2; |
315 | h += get_one_line(h) + 2; |
313 | |
316 | |
314 | if (!strncmp(h, "author ", 7)) { |
317 | if (!strncmp(h, "author ", 7)) { |
315 | author = h+7; |
318 | author = h+7; |
316 | h += get_one_line(h) + 2; |
319 | h += get_one_line(h) + 2; |
317 | t = author; |
320 | t = author; |
318 | while(t!=h && *t!='<') |
321 | while(t!=h && *t!='<') |
319 | t++; |
322 | t++; |
320 | *t='\0'; |
323 | *t='\0'; |
321 | p = t; |
324 | p = t; |
322 | while(--t!=author && *t==' ') |
325 | while(--t!=author && *t==' ') |
323 | *t='\0'; |
326 | *t='\0'; |
324 | while(++p!=h && *p!='>') |
327 | while(++p!=h && *p!='>') |
325 | ; |
328 | ; |
326 | while(++p!=h && !isdigit(*p)) |
329 | while(++p!=h && !isdigit(*p)) |
327 | ; |
330 | ; |
328 | |
331 | |
329 | t = p; |
332 | t = p; |
330 | while(++p && isdigit(*p)) |
333 | while(++p && isdigit(*p)) |
331 | ; |
334 | ; |
332 | *p = '\0'; |
335 | *p = '\0'; |
333 | sec = atoi(t); |
336 | sec = atoi(t); |
334 | time = gmtime(&sec); |
337 | time = gmtime(&sec); |
335 | } |
338 | } |
336 | |
339 | |
337 | while((len = get_one_line(h)) > 0) |
340 | while((len = get_one_line(h)) > 0) |
338 | h += len+2; |
341 | h += len+2; |
339 | |
342 | |
340 | h++; |
343 | h++; |
341 | len = get_one_line(h); |
344 | len = get_one_line(h); |
342 | |
345 | |
343 | subject = h; |
346 | subject = h; |
344 | |
347 | |
345 | html("<tr><td>"); |
348 | html("<tr><td>"); |
346 | strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M:%S", time); |
349 | strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M:%S", time); |
347 | html_txt(buf); |
350 | html_txt(buf); |
348 | html("</td><td>"); |
351 | html("</td><td>"); |
349 | char *qry = fmt("id=%s", sha1_to_hex(commit->object.sha1)); |
352 | char *qry = fmt("id=%s", sha1_to_hex(commit->object.sha1)); |
350 | char *url = cgit_pageurl(cgit_query_repo, "view", qry); |
353 | char *url = cgit_pageurl(cgit_query_repo, "view", qry); |
351 | html_link_open(url, NULL, NULL); |
354 | html_link_open(url, NULL, NULL); |
352 | html_txt(subject); |
355 | html_txt(subject); |
353 | html_link_close(); |
356 | html_link_close(); |
354 | html("</td><td>"); |
357 | html("</td><td>"); |
355 | html_txt(author); |
358 | html_txt(author); |
356 | html("</td></tr>\n"); |
359 | html("</td></tr>\n"); |
357 | } |
360 | } |
358 | |
361 | |
359 | static void cgit_print_log(const char *tip, int ofs, int cnt) |
362 | static void cgit_print_log(const char *tip, int ofs, int cnt) |
360 | { |
363 | { |
361 | struct rev_info rev; |
364 | struct rev_info rev; |
362 | struct commit *commit; |
365 | struct commit *commit; |
363 | const char *argv[2] = {NULL, tip}; |
366 | const char *argv[2] = {NULL, tip}; |
364 | int n = 0; |
367 | int n = 0; |
365 | |
368 | |
366 | init_revisions(&rev, NULL); |
369 | init_revisions(&rev, NULL); |
367 | rev.abbrev = DEFAULT_ABBREV; |
370 | rev.abbrev = DEFAULT_ABBREV; |
368 | rev.commit_format = CMIT_FMT_DEFAULT; |
371 | rev.commit_format = CMIT_FMT_DEFAULT; |
369 | rev.verbose_header = 1; |
372 | rev.verbose_header = 1; |
370 | rev.show_root_diff = 0; |
373 | rev.show_root_diff = 0; |
371 | setup_revisions(2, argv, &rev, NULL); |
374 | setup_revisions(2, argv, &rev, NULL); |
372 | prepare_revision_walk(&rev); |
375 | prepare_revision_walk(&rev); |
373 | |
376 | |
374 | html("<h2>Log</h2>"); |
377 | html("<h2>Log</h2>"); |
375 | html("<table class='list'>"); |
378 | html("<table class='list'>"); |
376 | html("<tr><th>Date</th><th>Message</th><th>Author</th></tr>\n"); |
379 | html("<tr><th>Date</th><th>Message</th><th>Author</th></tr>\n"); |
377 | while ((commit = get_revision(&rev)) != NULL && n++ < 100) { |
380 | while ((commit = get_revision(&rev)) != NULL && n++ < 100) { |
378 | cgit_print_commit_shortlog(commit); |
381 | cgit_print_commit_shortlog(commit); |
379 | free(commit->buffer); |
382 | free(commit->buffer); |
380 | commit->buffer = NULL; |
383 | commit->buffer = NULL; |
381 | free_commit_list(commit->parents); |
384 | free_commit_list(commit->parents); |
382 | commit->parents = NULL; |
385 | commit->parents = NULL; |
383 | } |
386 | } |
384 | html("</table>\n"); |
387 | html("</table>\n"); |
385 | } |
388 | } |
386 | |
389 | |
387 | static void cgit_print_repo_summary() |
390 | static void cgit_print_repo_summary() |
388 | { |
391 | { |
389 | html("<h2>"); |
392 | html("<h2>"); |
390 | html_txt("Repo summary page"); |
393 | html_txt("Repo summary page"); |
391 | html("</h2>"); |
394 | html("</h2>"); |
392 | cgit_print_branches(); |
395 | cgit_print_branches(); |
393 | } |
396 | } |
394 | |
397 | |
395 | static void cgit_print_object(char *hex) |
398 | static void cgit_print_object(char *hex) |
396 | { |
399 | { |
397 | unsigned char sha1[20]; |
400 | unsigned char sha1[20]; |
398 | //struct object *object; |
401 | //struct object *object; |
399 | char type[20]; |
402 | char type[20]; |
400 | unsigned char *buf; |
403 | unsigned char *buf; |
401 | unsigned long size; |
404 | unsigned long size; |
402 | |
405 | |
403 | if (get_sha1_hex(hex, sha1)){ |
406 | if (get_sha1_hex(hex, sha1)){ |
404 | htmlf(cgit_error, "Bad hex value"); |
407 | htmlf(cgit_error, "Bad hex value"); |
405 | return; |
408 | return; |
406 | } |
409 | } |
407 | |
410 | |
408 | if (sha1_object_info(sha1, type, NULL)){ |
411 | if (sha1_object_info(sha1, type, NULL)){ |
409 | htmlf(cgit_error, "Bad object name"); |
412 | htmlf(cgit_error, "Bad object name"); |
410 | return; |
413 | return; |
411 | } |
414 | } |
412 | |
415 | |
413 | buf = read_sha1_file(sha1, type, &size); |
416 | buf = read_sha1_file(sha1, type, &size); |
414 | if (!buf) { |
417 | if (!buf) { |
415 | htmlf(cgit_error, "Error reading object"); |
418 | htmlf(cgit_error, "Error reading object"); |
416 | return; |
419 | return; |
417 | } |
420 | } |
418 | |
421 | |
419 | buf[size] = '\0'; |
422 | buf[size] = '\0'; |
420 | html("<h2>Object view</h2>"); |
423 | html("<h2>Object view</h2>"); |
421 | htmlf("sha1=%s<br/>type=%s<br/>size=%i<br/>", hex, type, size); |
424 | htmlf("sha1=%s<br/>type=%s<br/>size=%i<br/>", hex, type, size); |
422 | html("<pre>"); |
425 | html("<pre>"); |
423 | html_txt(buf); |
426 | html_txt(buf); |
424 | html("</pre>"); |
427 | html("</pre>"); |
425 | } |
428 | } |
426 | |
429 | |
427 | static void cgit_print_repo_page() |
430 | static void cgit_print_repo_page() |
428 | { |
431 | { |
429 | if (chdir(fmt("%s/%s", cgit_root, cgit_query_repo)) || |
432 | if (chdir(fmt("%s/%s", cgit_root, cgit_query_repo)) || |
430 | cgit_read_config("info/cgit", cgit_repo_config_cb)) { |
433 | cgit_read_config("info/cgit", cgit_repo_config_cb)) { |
431 | char *title = fmt("%s - %s", cgit_root_title, "Bad request"); |
434 | char *title = fmt("%s - %s", cgit_root_title, "Bad request"); |
432 | cgit_print_docstart(title); |
435 | cgit_print_docstart(title); |
433 | cgit_print_pageheader(title); |
436 | cgit_print_pageheader(title); |
434 | htmlf(cgit_lib_error, "Unable to scan repository", |
437 | htmlf(cgit_lib_error, "Unable to scan repository", |
435 | strerror(errno)); |
438 | strerror(errno)); |
436 | cgit_print_docend(); |
439 | cgit_print_docend(); |
437 | return; |
440 | return; |
438 | } |
441 | } |
439 | setenv("GIT_DIR", fmt("%s/%s", cgit_root, cgit_query_repo), 1); |
442 | setenv("GIT_DIR", fmt("%s/%s", cgit_root, cgit_query_repo), 1); |
440 | char *title = fmt("%s - %s", cgit_repo_name, cgit_repo_desc); |
443 | char *title = fmt("%s - %s", cgit_repo_name, cgit_repo_desc); |
441 | cgit_print_docstart(title); |
444 | cgit_print_docstart(title); |
442 | cgit_print_pageheader(title); |
445 | cgit_print_pageheader(title); |
443 | if (!cgit_query_page) |
446 | if (!cgit_query_page) |
444 | cgit_print_repo_summary(); |
447 | cgit_print_repo_summary(); |
445 | else if (!strcmp(cgit_query_page, "log")) { |
448 | else if (!strcmp(cgit_query_page, "log")) { |
446 | cgit_print_log(cgit_query_head, 0, 100); |
449 | cgit_print_log(cgit_query_head, 0, 100); |
447 | } else if (!strcmp(cgit_query_page, "view")) { |
450 | } else if (!strcmp(cgit_query_page, "view")) { |
448 | cgit_print_object(cgit_query_sha1); |
451 | cgit_print_object(cgit_query_sha1); |
449 | } |
452 | } |
450 | cgit_print_docend(); |
453 | cgit_print_docend(); |
451 | } |
454 | } |
452 | |
455 | |
453 | static void cgit_fill_cache(struct cacheitem *item) |
456 | static void cgit_fill_cache(struct cacheitem *item) |
454 | { |
457 | { |
455 | htmlfd = item->fd; |
458 | htmlfd = item->fd; |
456 | item->st.st_mtime = time(NULL); |
459 | item->st.st_mtime = time(NULL); |
457 | if (cgit_query_repo) |
460 | if (cgit_query_repo) |
458 | cgit_print_repo_page(); |
461 | cgit_print_repo_page(); |
459 | else |
462 | else |
460 | cgit_print_repolist(); |
463 | cgit_print_repolist(); |
461 | } |
464 | } |
462 | |
465 | |
463 | static void cgit_refresh_cache(struct cacheitem *item) |
466 | static void cgit_refresh_cache(struct cacheitem *item) |
464 | { |
467 | { |
465 | top: |
468 | top: |
466 | if (!cache_lookup(item)) { |
469 | if (!cache_lookup(item)) { |
467 | if (cache_lock(item)) { |
470 | if (cache_lock(item)) { |
468 | cgit_fill_cache(item); |
471 | cgit_fill_cache(item); |
469 | cache_unlock(item); |
472 | cache_unlock(item); |
470 | } else { |
473 | } else { |
471 | sched_yield(); |
474 | sched_yield(); |
472 | goto top; |
475 | goto top; |
473 | } |
476 | } |
474 | } else if (cache_expired(item)) { |
477 | } else if (cache_expired(item)) { |
475 | if (cache_lock(item)) { |
478 | if (cache_lock(item)) { |
476 | cgit_fill_cache(item); |
479 | cgit_fill_cache(item); |
477 | cache_unlock(item); |
480 | cache_unlock(item); |
478 | } |
481 | } |
479 | } |
482 | } |
480 | } |
483 | } |
481 | |
484 | |
482 | static void cgit_print_cache(struct cacheitem *item) |
485 | static void cgit_print_cache(struct cacheitem *item) |
483 | { |
486 | { |
484 | static char buf[4096]; |
487 | static char buf[4096]; |
485 | ssize_t i; |
488 | ssize_t i; |
486 | |
489 | |
487 | int fd = open(item->name, O_RDONLY); |
490 | int fd = open(item->name, O_RDONLY); |
488 | if (fd<0) |
491 | if (fd<0) |
489 | die("Unable to open cached file %s", item->name); |
492 | die("Unable to open cached file %s", item->name); |
490 | |
493 | |
491 | while((i=read(fd, buf, sizeof(buf))) > 0) |
494 | while((i=read(fd, buf, sizeof(buf))) > 0) |
492 | write(STDOUT_FILENO, buf, i); |
495 | write(STDOUT_FILENO, buf, i); |
493 | |
496 | |
494 | close(fd); |
497 | close(fd); |
495 | } |
498 | } |
496 | |
499 | |
497 | int main(int argc, const char **argv) |
500 | int main(int argc, const char **argv) |
498 | { |
501 | { |
499 | cgit_read_config("/etc/cgitrc", cgit_global_config_cb); |
502 | cgit_read_config("/etc/cgitrc", cgit_global_config_cb); |
500 | cgit_querystring = xstrdup(getenv("QUERY_STRING")); |
503 | cgit_querystring = xstrdup(getenv("QUERY_STRING")); |
501 | cgit_parse_query(cgit_querystring, cgit_querystring_cb); |
504 | cgit_parse_query(cgit_querystring, cgit_querystring_cb); |
502 | cgit_refresh_cache(&cacheitem); |
505 | cgit_refresh_cache(&cacheitem); |
503 | cgit_print_cache(&cacheitem); |
506 | cgit_print_cache(&cacheitem); |
504 | return 0; |
507 | return 0; |
505 | } |
508 | } |
|