|
diff --git a/cgit.c b/cgit.c index a47cad0..5a93fcd 100644 --- a/ cgit.c+++ b/ cgit.c |
|
@@ -3,24 +3,25 @@ |
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 | #include "cache.h" |
10 | #include "cache.h" |
11 | #include "cmd.h" |
11 | #include "cmd.h" |
12 | #include "configfile.h" |
12 | #include "configfile.h" |
13 | #include "html.h" |
13 | #include "html.h" |
14 | #include "ui-shared.h" |
14 | #include "ui-shared.h" |
| |
15 | #include "scan-tree.h" |
15 | |
16 | |
16 | const char *cgit_version = CGIT_VERSION; |
17 | const char *cgit_version = CGIT_VERSION; |
17 | |
18 | |
18 | void config_cb(const char *name, const char *value) |
19 | void config_cb(const char *name, const char *value) |
19 | { |
20 | { |
20 | if (!strcmp(name, "root-title")) |
21 | if (!strcmp(name, "root-title")) |
21 | ctx.cfg.root_title = xstrdup(value); |
22 | ctx.cfg.root_title = xstrdup(value); |
22 | else if (!strcmp(name, "root-desc")) |
23 | else if (!strcmp(name, "root-desc")) |
23 | ctx.cfg.root_desc = xstrdup(value); |
24 | ctx.cfg.root_desc = xstrdup(value); |
24 | else if (!strcmp(name, "root-readme")) |
25 | else if (!strcmp(name, "root-readme")) |
25 | ctx.cfg.root_readme = xstrdup(value); |
26 | ctx.cfg.root_readme = xstrdup(value); |
26 | else if (!strcmp(name, "css")) |
27 | else if (!strcmp(name, "css")) |
@@ -311,27 +312,57 @@ static void process_request(void *cbdata) |
311 | if (cmd->want_layout) { |
312 | if (cmd->want_layout) { |
312 | cgit_print_http_headers(ctx); |
313 | cgit_print_http_headers(ctx); |
313 | cgit_print_docstart(ctx); |
314 | cgit_print_docstart(ctx); |
314 | cgit_print_pageheader(ctx); |
315 | cgit_print_pageheader(ctx); |
315 | } |
316 | } |
316 | |
317 | |
317 | cmd->fn(ctx); |
318 | cmd->fn(ctx); |
318 | |
319 | |
319 | if (cmd->want_layout) |
320 | if (cmd->want_layout) |
320 | cgit_print_docend(); |
321 | cgit_print_docend(); |
321 | } |
322 | } |
322 | |
323 | |
| |
324 | int cmp_repos(const void *a, const void *b) |
| |
325 | { |
| |
326 | const struct cgit_repo *ra = a, *rb = b; |
| |
327 | return strcmp(ra->url, rb->url); |
| |
328 | } |
| |
329 | |
| |
330 | void print_repo(struct cgit_repo *repo) |
| |
331 | { |
| |
332 | printf("repo.url=%s\n", repo->url); |
| |
333 | printf("repo.name=%s\n", repo->name); |
| |
334 | printf("repo.path=%s\n", repo->path); |
| |
335 | if (repo->owner) |
| |
336 | printf("repo.owner=%s\n", repo->owner); |
| |
337 | if (repo->desc) |
| |
338 | printf("repo.desc=%s\n", repo->desc); |
| |
339 | if (repo->readme) |
| |
340 | printf("repo.readme=%s\n", repo->readme); |
| |
341 | printf("\n"); |
| |
342 | } |
| |
343 | |
| |
344 | void print_repolist(struct cgit_repolist *list) |
| |
345 | { |
| |
346 | int i; |
| |
347 | |
| |
348 | for(i = 0; i < list->count; i++) |
| |
349 | print_repo(&list->repos[i]); |
| |
350 | } |
| |
351 | |
| |
352 | |
323 | static void cgit_parse_args(int argc, const char **argv) |
353 | static void cgit_parse_args(int argc, const char **argv) |
324 | { |
354 | { |
325 | int i; |
355 | int i; |
| |
356 | int scan = 0; |
326 | |
357 | |
327 | for (i = 1; i < argc; i++) { |
358 | for (i = 1; i < argc; i++) { |
328 | if (!strncmp(argv[i], "--cache=", 8)) { |
359 | if (!strncmp(argv[i], "--cache=", 8)) { |
329 | ctx.cfg.cache_root = xstrdup(argv[i]+8); |
360 | ctx.cfg.cache_root = xstrdup(argv[i]+8); |
330 | } |
361 | } |
331 | if (!strcmp(argv[i], "--nocache")) { |
362 | if (!strcmp(argv[i], "--nocache")) { |
332 | ctx.cfg.nocache = 1; |
363 | ctx.cfg.nocache = 1; |
333 | } |
364 | } |
334 | if (!strncmp(argv[i], "--query=", 8)) { |
365 | if (!strncmp(argv[i], "--query=", 8)) { |
335 | ctx.qry.raw = xstrdup(argv[i]+8); |
366 | ctx.qry.raw = xstrdup(argv[i]+8); |
336 | } |
367 | } |
337 | if (!strncmp(argv[i], "--repo=", 7)) { |
368 | if (!strncmp(argv[i], "--repo=", 7)) { |
@@ -342,24 +373,34 @@ static void cgit_parse_args(int argc, const char **argv) |
342 | } |
373 | } |
343 | if (!strncmp(argv[i], "--head=", 7)) { |
374 | if (!strncmp(argv[i], "--head=", 7)) { |
344 | ctx.qry.head = xstrdup(argv[i]+7); |
375 | ctx.qry.head = xstrdup(argv[i]+7); |
345 | ctx.qry.has_symref = 1; |
376 | ctx.qry.has_symref = 1; |
346 | } |
377 | } |
347 | if (!strncmp(argv[i], "--sha1=", 7)) { |
378 | if (!strncmp(argv[i], "--sha1=", 7)) { |
348 | ctx.qry.sha1 = xstrdup(argv[i]+7); |
379 | ctx.qry.sha1 = xstrdup(argv[i]+7); |
349 | ctx.qry.has_sha1 = 1; |
380 | ctx.qry.has_sha1 = 1; |
350 | } |
381 | } |
351 | if (!strncmp(argv[i], "--ofs=", 6)) { |
382 | if (!strncmp(argv[i], "--ofs=", 6)) { |
352 | ctx.qry.ofs = atoi(argv[i]+6); |
383 | ctx.qry.ofs = atoi(argv[i]+6); |
353 | } |
384 | } |
| |
385 | if (!strncmp(argv[i], "--scan-tree=", 12)) { |
| |
386 | scan++; |
| |
387 | scan_tree(argv[i] + 12); |
| |
388 | } |
| |
389 | } |
| |
390 | if (scan) { |
| |
391 | qsort(cgit_repolist.repos, cgit_repolist.count, |
| |
392 | sizeof(struct cgit_repo), cmp_repos); |
| |
393 | print_repolist(&cgit_repolist); |
| |
394 | exit(0); |
354 | } |
395 | } |
355 | } |
396 | } |
356 | |
397 | |
357 | static int calc_ttl() |
398 | static int calc_ttl() |
358 | { |
399 | { |
359 | if (!ctx.repo) |
400 | if (!ctx.repo) |
360 | return ctx.cfg.cache_root_ttl; |
401 | return ctx.cfg.cache_root_ttl; |
361 | |
402 | |
362 | if (!ctx.qry.page) |
403 | if (!ctx.qry.page) |
363 | return ctx.cfg.cache_repo_ttl; |
404 | return ctx.cfg.cache_repo_ttl; |
364 | |
405 | |
365 | if (ctx.qry.has_symref) |
406 | if (ctx.qry.has_symref) |
@@ -374,32 +415,32 @@ static int calc_ttl() |
374 | int main(int argc, const char **argv) |
415 | int main(int argc, const char **argv) |
375 | { |
416 | { |
376 | const char *cgit_config_env = getenv("CGIT_CONFIG"); |
417 | const char *cgit_config_env = getenv("CGIT_CONFIG"); |
377 | const char *path; |
418 | const char *path; |
378 | char *qry; |
419 | char *qry; |
379 | int err, ttl; |
420 | int err, ttl; |
380 | |
421 | |
381 | prepare_context(&ctx); |
422 | prepare_context(&ctx); |
382 | cgit_repolist.length = 0; |
423 | cgit_repolist.length = 0; |
383 | cgit_repolist.count = 0; |
424 | cgit_repolist.count = 0; |
384 | cgit_repolist.repos = NULL; |
425 | cgit_repolist.repos = NULL; |
385 | |
426 | |
386 | parse_configfile(cgit_config_env ? cgit_config_env : CGIT_CONFIG, |
| |
387 | config_cb); |
| |
388 | ctx.repo = NULL; |
| |
389 | if (getenv("SCRIPT_NAME")) |
427 | if (getenv("SCRIPT_NAME")) |
390 | ctx.cfg.script_name = xstrdup(getenv("SCRIPT_NAME")); |
428 | ctx.cfg.script_name = xstrdup(getenv("SCRIPT_NAME")); |
391 | if (getenv("QUERY_STRING")) |
429 | if (getenv("QUERY_STRING")) |
392 | ctx.qry.raw = xstrdup(getenv("QUERY_STRING")); |
430 | ctx.qry.raw = xstrdup(getenv("QUERY_STRING")); |
393 | cgit_parse_args(argc, argv); |
431 | cgit_parse_args(argc, argv); |
| |
432 | parse_configfile(cgit_config_env ? cgit_config_env : CGIT_CONFIG, |
| |
433 | config_cb); |
| |
434 | ctx.repo = NULL; |
394 | http_parse_querystring(ctx.qry.raw, querystring_cb); |
435 | http_parse_querystring(ctx.qry.raw, querystring_cb); |
395 | |
436 | |
396 | /* If virtual-root isn't specified in cgitrc and no url |
437 | /* If virtual-root isn't specified in cgitrc and no url |
397 | * parameter is specified on the querystring, lets pretend |
438 | * parameter is specified on the querystring, lets pretend |
398 | * that virtualroot equals SCRIPT_NAME and use PATH_INFO as |
439 | * that virtualroot equals SCRIPT_NAME and use PATH_INFO as |
399 | * url. This allows cgit to work with virtual urls without |
440 | * url. This allows cgit to work with virtual urls without |
400 | * the need for rewriterules in the webserver (as long as |
441 | * the need for rewriterules in the webserver (as long as |
401 | * PATH_INFO is included in the cache lookup key). |
442 | * PATH_INFO is included in the cache lookup key). |
402 | */ |
443 | */ |
403 | if (!ctx.cfg.virtual_root && !ctx.qry.url) { |
444 | if (!ctx.cfg.virtual_root && !ctx.qry.url) { |
404 | ctx.cfg.virtual_root = ctx.cfg.script_name; |
445 | ctx.cfg.virtual_root = ctx.cfg.script_name; |
405 | path = getenv("PATH_INFO"); |
446 | path = getenv("PATH_INFO"); |
|