|
diff --git a/cgit.c b/cgit.c index 9305d0a..2c3ad73 100644 --- a/ cgit.c+++ b/ cgit.c |
|
@@ -363,128 +363,134 @@ static int prepare_repo_cmd(struct cgit_context *ctx) |
363 | int nongit = 0; |
363 | int nongit = 0; |
364 | |
364 | |
365 | setenv("GIT_DIR", ctx->repo->path, 1); |
365 | setenv("GIT_DIR", ctx->repo->path, 1); |
366 | setup_git_directory_gently(&nongit); |
366 | setup_git_directory_gently(&nongit); |
367 | if (nongit) { |
367 | if (nongit) { |
368 | ctx->page.title = fmt("%s - %s", ctx->cfg.root_title, |
368 | ctx->page.title = fmt("%s - %s", ctx->cfg.root_title, |
369 | "config error"); |
369 | "config error"); |
370 | tmp = fmt("Not a git repository: '%s'", ctx->repo->path); |
370 | tmp = fmt("Not a git repository: '%s'", ctx->repo->path); |
371 | ctx->repo = NULL; |
371 | ctx->repo = NULL; |
372 | cgit_print_http_headers(ctx); |
372 | cgit_print_http_headers(ctx); |
373 | cgit_print_docstart(ctx); |
373 | cgit_print_docstart(ctx); |
374 | cgit_print_pageheader(ctx); |
374 | cgit_print_pageheader(ctx); |
375 | cgit_print_error(tmp); |
375 | cgit_print_error(tmp); |
376 | cgit_print_docend(); |
376 | cgit_print_docend(); |
377 | return 1; |
377 | return 1; |
378 | } |
378 | } |
379 | ctx->page.title = fmt("%s - %s", ctx->repo->name, ctx->repo->desc); |
379 | ctx->page.title = fmt("%s - %s", ctx->repo->name, ctx->repo->desc); |
380 | |
380 | |
381 | if (!ctx->qry.head) { |
381 | if (!ctx->qry.head) { |
382 | ctx->qry.nohead = 1; |
382 | ctx->qry.nohead = 1; |
383 | ctx->qry.head = find_default_branch(ctx->repo); |
383 | ctx->qry.head = find_default_branch(ctx->repo); |
384 | ctx->repo->defbranch = ctx->qry.head; |
384 | ctx->repo->defbranch = ctx->qry.head; |
385 | } |
385 | } |
386 | |
386 | |
387 | if (!ctx->qry.head) { |
387 | if (!ctx->qry.head) { |
388 | cgit_print_http_headers(ctx); |
388 | cgit_print_http_headers(ctx); |
389 | cgit_print_docstart(ctx); |
389 | cgit_print_docstart(ctx); |
390 | cgit_print_pageheader(ctx); |
390 | cgit_print_pageheader(ctx); |
391 | cgit_print_error("Repository seems to be empty"); |
391 | cgit_print_error("Repository seems to be empty"); |
392 | cgit_print_docend(); |
392 | cgit_print_docend(); |
393 | return 1; |
393 | return 1; |
394 | } |
394 | } |
395 | |
395 | |
396 | if (get_sha1(ctx->qry.head, sha1)) { |
396 | if (get_sha1(ctx->qry.head, sha1)) { |
397 | tmp = xstrdup(ctx->qry.head); |
397 | tmp = xstrdup(ctx->qry.head); |
398 | ctx->qry.head = ctx->repo->defbranch; |
398 | ctx->qry.head = ctx->repo->defbranch; |
399 | ctx->page.status = 404; |
399 | ctx->page.status = 404; |
400 | ctx->page.statusmsg = "not found"; |
400 | ctx->page.statusmsg = "not found"; |
401 | cgit_print_http_headers(ctx); |
401 | cgit_print_http_headers(ctx); |
402 | cgit_print_docstart(ctx); |
402 | cgit_print_docstart(ctx); |
403 | cgit_print_pageheader(ctx); |
403 | cgit_print_pageheader(ctx); |
404 | cgit_print_error(fmt("Invalid branch: %s", tmp)); |
404 | cgit_print_error(fmt("Invalid branch: %s", tmp)); |
405 | cgit_print_docend(); |
405 | cgit_print_docend(); |
406 | return 1; |
406 | return 1; |
407 | } |
407 | } |
408 | return 0; |
408 | return 0; |
409 | } |
409 | } |
410 | |
410 | |
411 | static void process_request(void *cbdata) |
411 | static void process_request(void *cbdata) |
412 | { |
412 | { |
413 | struct cgit_context *ctx = cbdata; |
413 | struct cgit_context *ctx = cbdata; |
414 | struct cgit_cmd *cmd; |
414 | struct cgit_cmd *cmd; |
415 | |
415 | |
416 | cmd = cgit_get_cmd(ctx); |
416 | cmd = cgit_get_cmd(ctx); |
417 | if (!cmd) { |
417 | if (!cmd) { |
418 | ctx->page.title = "cgit error"; |
418 | ctx->page.title = "cgit error"; |
419 | cgit_print_http_headers(ctx); |
419 | cgit_print_http_headers(ctx); |
420 | cgit_print_docstart(ctx); |
420 | cgit_print_docstart(ctx); |
421 | cgit_print_pageheader(ctx); |
421 | cgit_print_pageheader(ctx); |
422 | cgit_print_error("Invalid request"); |
422 | cgit_print_error("Invalid request"); |
423 | cgit_print_docend(); |
423 | cgit_print_docend(); |
424 | return; |
424 | return; |
425 | } |
425 | } |
426 | |
426 | |
| |
427 | /* If cmd->want_vpath is set, assume ctx->qry.path contains a "virtual" |
| |
428 | * in-project path limit to be made available at ctx->qry.vpath. |
| |
429 | * Otherwise, no path limit is in effect (ctx->qry.vpath = NULL). |
| |
430 | */ |
| |
431 | ctx->qry.vpath = cmd->want_vpath ? ctx->qry.path : NULL; |
| |
432 | |
427 | if (cmd->want_repo && !ctx->repo) { |
433 | if (cmd->want_repo && !ctx->repo) { |
428 | cgit_print_http_headers(ctx); |
434 | cgit_print_http_headers(ctx); |
429 | cgit_print_docstart(ctx); |
435 | cgit_print_docstart(ctx); |
430 | cgit_print_pageheader(ctx); |
436 | cgit_print_pageheader(ctx); |
431 | cgit_print_error(fmt("No repository selected")); |
437 | cgit_print_error(fmt("No repository selected")); |
432 | cgit_print_docend(); |
438 | cgit_print_docend(); |
433 | return; |
439 | return; |
434 | } |
440 | } |
435 | |
441 | |
436 | if (ctx->repo && prepare_repo_cmd(ctx)) |
442 | if (ctx->repo && prepare_repo_cmd(ctx)) |
437 | return; |
443 | return; |
438 | |
444 | |
439 | if (cmd->want_layout) { |
445 | if (cmd->want_layout) { |
440 | cgit_print_http_headers(ctx); |
446 | cgit_print_http_headers(ctx); |
441 | cgit_print_docstart(ctx); |
447 | cgit_print_docstart(ctx); |
442 | cgit_print_pageheader(ctx); |
448 | cgit_print_pageheader(ctx); |
443 | } |
449 | } |
444 | |
450 | |
445 | cmd->fn(ctx); |
451 | cmd->fn(ctx); |
446 | |
452 | |
447 | if (cmd->want_layout) |
453 | if (cmd->want_layout) |
448 | cgit_print_docend(); |
454 | cgit_print_docend(); |
449 | } |
455 | } |
450 | |
456 | |
451 | int cmp_repos(const void *a, const void *b) |
457 | int cmp_repos(const void *a, const void *b) |
452 | { |
458 | { |
453 | const struct cgit_repo *ra = a, *rb = b; |
459 | const struct cgit_repo *ra = a, *rb = b; |
454 | return strcmp(ra->url, rb->url); |
460 | return strcmp(ra->url, rb->url); |
455 | } |
461 | } |
456 | |
462 | |
457 | char *build_snapshot_setting(int bitmap) |
463 | char *build_snapshot_setting(int bitmap) |
458 | { |
464 | { |
459 | const struct cgit_snapshot_format *f; |
465 | const struct cgit_snapshot_format *f; |
460 | char *result = xstrdup(""); |
466 | char *result = xstrdup(""); |
461 | char *tmp; |
467 | char *tmp; |
462 | int len; |
468 | int len; |
463 | |
469 | |
464 | for (f = cgit_snapshot_formats; f->suffix; f++) { |
470 | for (f = cgit_snapshot_formats; f->suffix; f++) { |
465 | if (f->bit & bitmap) { |
471 | if (f->bit & bitmap) { |
466 | tmp = result; |
472 | tmp = result; |
467 | result = xstrdup(fmt("%s%s ", tmp, f->suffix)); |
473 | result = xstrdup(fmt("%s%s ", tmp, f->suffix)); |
468 | free(tmp); |
474 | free(tmp); |
469 | } |
475 | } |
470 | } |
476 | } |
471 | len = strlen(result); |
477 | len = strlen(result); |
472 | if (len) |
478 | if (len) |
473 | result[len - 1] = '\0'; |
479 | result[len - 1] = '\0'; |
474 | return result; |
480 | return result; |
475 | } |
481 | } |
476 | |
482 | |
477 | char *get_first_line(char *txt) |
483 | char *get_first_line(char *txt) |
478 | { |
484 | { |
479 | char *t = xstrdup(txt); |
485 | char *t = xstrdup(txt); |
480 | char *p = strchr(t, '\n'); |
486 | char *p = strchr(t, '\n'); |
481 | if (p) |
487 | if (p) |
482 | *p = '\0'; |
488 | *p = '\0'; |
483 | return t; |
489 | return t; |
484 | } |
490 | } |
485 | |
491 | |
486 | void print_repo(FILE *f, struct cgit_repo *repo) |
492 | void print_repo(FILE *f, struct cgit_repo *repo) |
487 | { |
493 | { |
488 | fprintf(f, "repo.url=%s\n", repo->url); |
494 | fprintf(f, "repo.url=%s\n", repo->url); |
489 | fprintf(f, "repo.name=%s\n", repo->name); |
495 | fprintf(f, "repo.name=%s\n", repo->name); |
490 | fprintf(f, "repo.path=%s\n", repo->path); |
496 | fprintf(f, "repo.path=%s\n", repo->path); |
|