summaryrefslogtreecommitdiffabout
path: root/cgit.c
Unidiff
Diffstat (limited to 'cgit.c') (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/cgit.c b/cgit.c
index a92383d..36777b5 100644
--- a/cgit.c
+++ b/cgit.c
@@ -192,128 +192,129 @@ static void querystring_cb(const char *name, const char *value)
192 } else if (!strcmp(name, "h")) { 192 } else if (!strcmp(name, "h")) {
193 ctx.qry.head = xstrdup(value); 193 ctx.qry.head = xstrdup(value);
194 ctx.qry.has_symref = 1; 194 ctx.qry.has_symref = 1;
195 } else if (!strcmp(name, "id")) { 195 } else if (!strcmp(name, "id")) {
196 ctx.qry.sha1 = xstrdup(value); 196 ctx.qry.sha1 = xstrdup(value);
197 ctx.qry.has_sha1 = 1; 197 ctx.qry.has_sha1 = 1;
198 } else if (!strcmp(name, "id2")) { 198 } else if (!strcmp(name, "id2")) {
199 ctx.qry.sha2 = xstrdup(value); 199 ctx.qry.sha2 = xstrdup(value);
200 ctx.qry.has_sha1 = 1; 200 ctx.qry.has_sha1 = 1;
201 } else if (!strcmp(name, "ofs")) { 201 } else if (!strcmp(name, "ofs")) {
202 ctx.qry.ofs = atoi(value); 202 ctx.qry.ofs = atoi(value);
203 } else if (!strcmp(name, "path")) { 203 } else if (!strcmp(name, "path")) {
204 ctx.qry.path = trim_end(value, '/'); 204 ctx.qry.path = trim_end(value, '/');
205 } else if (!strcmp(name, "name")) { 205 } else if (!strcmp(name, "name")) {
206 ctx.qry.name = xstrdup(value); 206 ctx.qry.name = xstrdup(value);
207 } else if (!strcmp(name, "mimetype")) { 207 } else if (!strcmp(name, "mimetype")) {
208 ctx.qry.mimetype = xstrdup(value); 208 ctx.qry.mimetype = xstrdup(value);
209 } else if (!strcmp(name, "s")){ 209 } else if (!strcmp(name, "s")){
210 ctx.qry.sort = xstrdup(value); 210 ctx.qry.sort = xstrdup(value);
211 } else if (!strcmp(name, "showmsg")) { 211 } else if (!strcmp(name, "showmsg")) {
212 ctx.qry.showmsg = atoi(value); 212 ctx.qry.showmsg = atoi(value);
213 } else if (!strcmp(name, "period")) { 213 } else if (!strcmp(name, "period")) {
214 ctx.qry.period = xstrdup(value); 214 ctx.qry.period = xstrdup(value);
215 } 215 }
216} 216}
217 217
218char *xstrdupn(const char *str) 218char *xstrdupn(const char *str)
219{ 219{
220 return (str ? xstrdup(str) : NULL); 220 return (str ? xstrdup(str) : NULL);
221} 221}
222 222
223static void prepare_context(struct cgit_context *ctx) 223static void prepare_context(struct cgit_context *ctx)
224{ 224{
225 memset(ctx, 0, sizeof(ctx)); 225 memset(ctx, 0, sizeof(ctx));
226 ctx->cfg.agefile = "info/web/last-modified"; 226 ctx->cfg.agefile = "info/web/last-modified";
227 ctx->cfg.nocache = 0; 227 ctx->cfg.nocache = 0;
228 ctx->cfg.cache_size = 0; 228 ctx->cfg.cache_size = 0;
229 ctx->cfg.cache_dynamic_ttl = 5; 229 ctx->cfg.cache_dynamic_ttl = 5;
230 ctx->cfg.cache_max_create_time = 5; 230 ctx->cfg.cache_max_create_time = 5;
231 ctx->cfg.cache_repo_ttl = 5; 231 ctx->cfg.cache_repo_ttl = 5;
232 ctx->cfg.cache_root = CGIT_CACHE_ROOT; 232 ctx->cfg.cache_root = CGIT_CACHE_ROOT;
233 ctx->cfg.cache_root_ttl = 5; 233 ctx->cfg.cache_root_ttl = 5;
234 ctx->cfg.cache_static_ttl = -1; 234 ctx->cfg.cache_static_ttl = -1;
235 ctx->cfg.css = "/cgit.css"; 235 ctx->cfg.css = "/cgit.css";
236 ctx->cfg.logo = "/git-logo.png"; 236 ctx->cfg.logo = "/git-logo.png";
237 ctx->cfg.local_time = 0; 237 ctx->cfg.local_time = 0;
238 ctx->cfg.max_repo_count = 50; 238 ctx->cfg.max_repo_count = 50;
239 ctx->cfg.max_commit_count = 50; 239 ctx->cfg.max_commit_count = 50;
240 ctx->cfg.max_lock_attempts = 5; 240 ctx->cfg.max_lock_attempts = 5;
241 ctx->cfg.max_msg_len = 80; 241 ctx->cfg.max_msg_len = 80;
242 ctx->cfg.max_repodesc_len = 80; 242 ctx->cfg.max_repodesc_len = 80;
243 ctx->cfg.max_stats = 0; 243 ctx->cfg.max_stats = 0;
244 ctx->cfg.module_link = "./?repo=%s&page=commit&id=%s"; 244 ctx->cfg.module_link = "./?repo=%s&page=commit&id=%s";
245 ctx->cfg.renamelimit = -1; 245 ctx->cfg.renamelimit = -1;
246 ctx->cfg.robots = "index, nofollow"; 246 ctx->cfg.robots = "index, nofollow";
247 ctx->cfg.root_title = "Git repository browser"; 247 ctx->cfg.root_title = "Git repository browser";
248 ctx->cfg.root_desc = "a fast webinterface for the git dscm"; 248 ctx->cfg.root_desc = "a fast webinterface for the git dscm";
249 ctx->cfg.script_name = CGIT_SCRIPT_NAME; 249 ctx->cfg.script_name = CGIT_SCRIPT_NAME;
250 ctx->cfg.summary_branches = 10; 250 ctx->cfg.summary_branches = 10;
251 ctx->cfg.summary_log = 10; 251 ctx->cfg.summary_log = 10;
252 ctx->cfg.summary_tags = 10; 252 ctx->cfg.summary_tags = 10;
253 ctx->env.cgit_config = xstrdupn(getenv("CGIT_CONFIG")); 253 ctx->env.cgit_config = xstrdupn(getenv("CGIT_CONFIG"));
254 ctx->env.http_host = xstrdupn(getenv("HTTP_HOST")); 254 ctx->env.http_host = xstrdupn(getenv("HTTP_HOST"));
255 ctx->env.https = xstrdupn(getenv("HTTPS")); 255 ctx->env.https = xstrdupn(getenv("HTTPS"));
256 ctx->env.no_http = xstrdupn(getenv("NO_HTTP"));
256 ctx->env.path_info = xstrdupn(getenv("PATH_INFO")); 257 ctx->env.path_info = xstrdupn(getenv("PATH_INFO"));
257 ctx->env.query_string = xstrdupn(getenv("QUERY_STRING")); 258 ctx->env.query_string = xstrdupn(getenv("QUERY_STRING"));
258 ctx->env.request_method = xstrdupn(getenv("REQUEST_METHOD")); 259 ctx->env.request_method = xstrdupn(getenv("REQUEST_METHOD"));
259 ctx->env.script_name = xstrdupn(getenv("SCRIPT_NAME")); 260 ctx->env.script_name = xstrdupn(getenv("SCRIPT_NAME"));
260 ctx->env.server_name = xstrdupn(getenv("SERVER_NAME")); 261 ctx->env.server_name = xstrdupn(getenv("SERVER_NAME"));
261 ctx->env.server_port = xstrdupn(getenv("SERVER_PORT")); 262 ctx->env.server_port = xstrdupn(getenv("SERVER_PORT"));
262 ctx->page.mimetype = "text/html"; 263 ctx->page.mimetype = "text/html";
263 ctx->page.charset = PAGE_ENCODING; 264 ctx->page.charset = PAGE_ENCODING;
264 ctx->page.filename = NULL; 265 ctx->page.filename = NULL;
265 ctx->page.size = 0; 266 ctx->page.size = 0;
266 ctx->page.modified = time(NULL); 267 ctx->page.modified = time(NULL);
267 ctx->page.expires = ctx->page.modified; 268 ctx->page.expires = ctx->page.modified;
268 ctx->page.etag = NULL; 269 ctx->page.etag = NULL;
269 memset(&ctx->cfg.mimetypes, 0, sizeof(struct string_list)); 270 memset(&ctx->cfg.mimetypes, 0, sizeof(struct string_list));
270 if (ctx->env.script_name) 271 if (ctx->env.script_name)
271 ctx->cfg.script_name = ctx->env.script_name; 272 ctx->cfg.script_name = ctx->env.script_name;
272 if (ctx->env.query_string) 273 if (ctx->env.query_string)
273 ctx->qry.raw = ctx->env.query_string; 274 ctx->qry.raw = ctx->env.query_string;
274 if (!ctx->env.cgit_config) 275 if (!ctx->env.cgit_config)
275 ctx->env.cgit_config = CGIT_CONFIG; 276 ctx->env.cgit_config = CGIT_CONFIG;
276} 277}
277 278
278struct refmatch { 279struct refmatch {
279 char *req_ref; 280 char *req_ref;
280 char *first_ref; 281 char *first_ref;
281 int match; 282 int match;
282}; 283};
283 284
284int find_current_ref(const char *refname, const unsigned char *sha1, 285int find_current_ref(const char *refname, const unsigned char *sha1,
285 int flags, void *cb_data) 286 int flags, void *cb_data)
286{ 287{
287 struct refmatch *info; 288 struct refmatch *info;
288 289
289 info = (struct refmatch *)cb_data; 290 info = (struct refmatch *)cb_data;
290 if (!strcmp(refname, info->req_ref)) 291 if (!strcmp(refname, info->req_ref))
291 info->match = 1; 292 info->match = 1;
292 if (!info->first_ref) 293 if (!info->first_ref)
293 info->first_ref = xstrdup(refname); 294 info->first_ref = xstrdup(refname);
294 return info->match; 295 return info->match;
295} 296}
296 297
297char *find_default_branch(struct cgit_repo *repo) 298char *find_default_branch(struct cgit_repo *repo)
298{ 299{
299 struct refmatch info; 300 struct refmatch info;
300 char *ref; 301 char *ref;
301 302
302 info.req_ref = repo->defbranch; 303 info.req_ref = repo->defbranch;
303 info.first_ref = NULL; 304 info.first_ref = NULL;
304 info.match = 0; 305 info.match = 0;
305 for_each_branch_ref(find_current_ref, &info); 306 for_each_branch_ref(find_current_ref, &info);
306 if (info.match) 307 if (info.match)
307 ref = info.req_ref; 308 ref = info.req_ref;
308 else 309 else
309 ref = info.first_ref; 310 ref = info.first_ref;
310 if (ref) 311 if (ref)
311 ref = xstrdup(ref); 312 ref = xstrdup(ref);
312 return ref; 313 return ref;
313} 314}
314 315
315static int prepare_repo_cmd(struct cgit_context *ctx) 316static int prepare_repo_cmd(struct cgit_context *ctx)
316{ 317{
317 char *tmp; 318 char *tmp;
318 unsigned char sha1[20]; 319 unsigned char sha1[20];
319 int nongit = 0; 320 int nongit = 0;
@@ -384,128 +385,131 @@ static void process_request(void *cbdata)
384 cgit_print_http_headers(ctx); 385 cgit_print_http_headers(ctx);
385 cgit_print_docstart(ctx); 386 cgit_print_docstart(ctx);
386 cgit_print_pageheader(ctx); 387 cgit_print_pageheader(ctx);
387 cgit_print_error(fmt("No repository selected")); 388 cgit_print_error(fmt("No repository selected"));
388 cgit_print_docend(); 389 cgit_print_docend();
389 return; 390 return;
390 } 391 }
391 392
392 if (ctx->repo && prepare_repo_cmd(ctx)) 393 if (ctx->repo && prepare_repo_cmd(ctx))
393 return; 394 return;
394 395
395 if (cmd->want_layout) { 396 if (cmd->want_layout) {
396 cgit_print_http_headers(ctx); 397 cgit_print_http_headers(ctx);
397 cgit_print_docstart(ctx); 398 cgit_print_docstart(ctx);
398 cgit_print_pageheader(ctx); 399 cgit_print_pageheader(ctx);
399 } 400 }
400 401
401 cmd->fn(ctx); 402 cmd->fn(ctx);
402 403
403 if (cmd->want_layout) 404 if (cmd->want_layout)
404 cgit_print_docend(); 405 cgit_print_docend();
405} 406}
406 407
407int cmp_repos(const void *a, const void *b) 408int cmp_repos(const void *a, const void *b)
408{ 409{
409 const struct cgit_repo *ra = a, *rb = b; 410 const struct cgit_repo *ra = a, *rb = b;
410 return strcmp(ra->url, rb->url); 411 return strcmp(ra->url, rb->url);
411} 412}
412 413
413void print_repo(struct cgit_repo *repo) 414void print_repo(struct cgit_repo *repo)
414{ 415{
415 printf("repo.url=%s\n", repo->url); 416 printf("repo.url=%s\n", repo->url);
416 printf("repo.name=%s\n", repo->name); 417 printf("repo.name=%s\n", repo->name);
417 printf("repo.path=%s\n", repo->path); 418 printf("repo.path=%s\n", repo->path);
418 if (repo->owner) 419 if (repo->owner)
419 printf("repo.owner=%s\n", repo->owner); 420 printf("repo.owner=%s\n", repo->owner);
420 if (repo->desc) 421 if (repo->desc)
421 printf("repo.desc=%s\n", repo->desc); 422 printf("repo.desc=%s\n", repo->desc);
422 if (repo->readme) 423 if (repo->readme)
423 printf("repo.readme=%s\n", repo->readme); 424 printf("repo.readme=%s\n", repo->readme);
424 printf("\n"); 425 printf("\n");
425} 426}
426 427
427void print_repolist(struct cgit_repolist *list) 428void print_repolist(struct cgit_repolist *list)
428{ 429{
429 int i; 430 int i;
430 431
431 for(i = 0; i < list->count; i++) 432 for(i = 0; i < list->count; i++)
432 print_repo(&list->repos[i]); 433 print_repo(&list->repos[i]);
433} 434}
434 435
435 436
436static void cgit_parse_args(int argc, const char **argv) 437static void cgit_parse_args(int argc, const char **argv)
437{ 438{
438 int i; 439 int i;
439 int scan = 0; 440 int scan = 0;
440 441
441 for (i = 1; i < argc; i++) { 442 for (i = 1; i < argc; i++) {
442 if (!strncmp(argv[i], "--cache=", 8)) { 443 if (!strncmp(argv[i], "--cache=", 8)) {
443 ctx.cfg.cache_root = xstrdup(argv[i]+8); 444 ctx.cfg.cache_root = xstrdup(argv[i]+8);
444 } 445 }
445 if (!strcmp(argv[i], "--nocache")) { 446 if (!strcmp(argv[i], "--nocache")) {
446 ctx.cfg.nocache = 1; 447 ctx.cfg.nocache = 1;
447 } 448 }
449 if (!strcmp(argv[i], "--nohttp")) {
450 ctx.env.no_http = "1";
451 }
448 if (!strncmp(argv[i], "--query=", 8)) { 452 if (!strncmp(argv[i], "--query=", 8)) {
449 ctx.qry.raw = xstrdup(argv[i]+8); 453 ctx.qry.raw = xstrdup(argv[i]+8);
450 } 454 }
451 if (!strncmp(argv[i], "--repo=", 7)) { 455 if (!strncmp(argv[i], "--repo=", 7)) {
452 ctx.qry.repo = xstrdup(argv[i]+7); 456 ctx.qry.repo = xstrdup(argv[i]+7);
453 } 457 }
454 if (!strncmp(argv[i], "--page=", 7)) { 458 if (!strncmp(argv[i], "--page=", 7)) {
455 ctx.qry.page = xstrdup(argv[i]+7); 459 ctx.qry.page = xstrdup(argv[i]+7);
456 } 460 }
457 if (!strncmp(argv[i], "--head=", 7)) { 461 if (!strncmp(argv[i], "--head=", 7)) {
458 ctx.qry.head = xstrdup(argv[i]+7); 462 ctx.qry.head = xstrdup(argv[i]+7);
459 ctx.qry.has_symref = 1; 463 ctx.qry.has_symref = 1;
460 } 464 }
461 if (!strncmp(argv[i], "--sha1=", 7)) { 465 if (!strncmp(argv[i], "--sha1=", 7)) {
462 ctx.qry.sha1 = xstrdup(argv[i]+7); 466 ctx.qry.sha1 = xstrdup(argv[i]+7);
463 ctx.qry.has_sha1 = 1; 467 ctx.qry.has_sha1 = 1;
464 } 468 }
465 if (!strncmp(argv[i], "--ofs=", 6)) { 469 if (!strncmp(argv[i], "--ofs=", 6)) {
466 ctx.qry.ofs = atoi(argv[i]+6); 470 ctx.qry.ofs = atoi(argv[i]+6);
467 } 471 }
468 if (!strncmp(argv[i], "--scan-tree=", 12)) { 472 if (!strncmp(argv[i], "--scan-tree=", 12)) {
469 scan++; 473 scan++;
470 scan_tree(argv[i] + 12); 474 scan_tree(argv[i] + 12);
471 } 475 }
472 } 476 }
473 if (scan) { 477 if (scan) {
474 qsort(cgit_repolist.repos, cgit_repolist.count, 478 qsort(cgit_repolist.repos, cgit_repolist.count,
475 sizeof(struct cgit_repo), cmp_repos); 479 sizeof(struct cgit_repo), cmp_repos);
476 print_repolist(&cgit_repolist); 480 print_repolist(&cgit_repolist);
477 exit(0); 481 exit(0);
478 } 482 }
479} 483}
480 484
481static int calc_ttl() 485static int calc_ttl()
482{ 486{
483 if (!ctx.repo) 487 if (!ctx.repo)
484 return ctx.cfg.cache_root_ttl; 488 return ctx.cfg.cache_root_ttl;
485 489
486 if (!ctx.qry.page) 490 if (!ctx.qry.page)
487 return ctx.cfg.cache_repo_ttl; 491 return ctx.cfg.cache_repo_ttl;
488 492
489 if (ctx.qry.has_symref) 493 if (ctx.qry.has_symref)
490 return ctx.cfg.cache_dynamic_ttl; 494 return ctx.cfg.cache_dynamic_ttl;
491 495
492 if (ctx.qry.has_sha1) 496 if (ctx.qry.has_sha1)
493 return ctx.cfg.cache_static_ttl; 497 return ctx.cfg.cache_static_ttl;
494 498
495 return ctx.cfg.cache_repo_ttl; 499 return ctx.cfg.cache_repo_ttl;
496} 500}
497 501
498int main(int argc, const char **argv) 502int main(int argc, const char **argv)
499{ 503{
500 const char *path; 504 const char *path;
501 char *qry; 505 char *qry;
502 int err, ttl; 506 int err, ttl;
503 507
504 prepare_context(&ctx); 508 prepare_context(&ctx);
505 cgit_repolist.length = 0; 509 cgit_repolist.length = 0;
506 cgit_repolist.count = 0; 510 cgit_repolist.count = 0;
507 cgit_repolist.repos = NULL; 511 cgit_repolist.repos = NULL;
508 512
509 cgit_parse_args(argc, argv); 513 cgit_parse_args(argc, argv);
510 parse_configfile(ctx.env.cgit_config, config_cb); 514 parse_configfile(ctx.env.cgit_config, config_cb);
511 ctx.repo = NULL; 515 ctx.repo = NULL;