diff options
Diffstat (limited to 'cgit.c')
| -rw-r--r-- | cgit.c | 42 |
1 files changed, 34 insertions, 8 deletions
| @@ -26,14 +26,27 @@ void add_mimetype(const char *name, const char *value) | |||
| 26 | item->util = xstrdup(value); | 26 | item->util = xstrdup(value); |
| 27 | } | 27 | } |
| 28 | 28 | ||
| 29 | struct cgit_filter *new_filter(const char *cmd, int extra_args) | 29 | struct cgit_filter *new_filter(const char *cmd, filter_type filtertype) |
| 30 | { | 30 | { |
| 31 | struct cgit_filter *f; | 31 | struct cgit_filter *f; |
| 32 | int args_size = 0; | 32 | int args_size = 0; |
| 33 | int extra_args; | ||
| 33 | 34 | ||
| 34 | if (!cmd || !cmd[0]) | 35 | if (!cmd || !cmd[0]) |
| 35 | return NULL; | 36 | return NULL; |
| 36 | 37 | ||
| 38 | switch (filtertype) { | ||
| 39 | case SOURCE: | ||
| 40 | extra_args = 1; | ||
| 41 | break; | ||
| 42 | |||
| 43 | case ABOUT: | ||
| 44 | case COMMIT: | ||
| 45 | default: | ||
| 46 | extra_args = 0; | ||
| 47 | break; | ||
| 48 | } | ||
| 49 | |||
| 37 | f = xmalloc(sizeof(struct cgit_filter)); | 50 | f = xmalloc(sizeof(struct cgit_filter)); |
| 38 | f->cmd = xstrdup(cmd); | 51 | f->cmd = xstrdup(cmd); |
| 39 | args_size = (2 + extra_args) * sizeof(char *); | 52 | args_size = (2 + extra_args) * sizeof(char *); |
| @@ -83,11 +96,11 @@ void repo_config(struct cgit_repo *repo, const char *name, const char *value) | |||
| 83 | repo->logo_link = xstrdup(value); | 96 | repo->logo_link = xstrdup(value); |
| 84 | else if (ctx.cfg.enable_filter_overrides) { | 97 | else if (ctx.cfg.enable_filter_overrides) { |
| 85 | if (!strcmp(name, "about-filter")) | 98 | if (!strcmp(name, "about-filter")) |
| 86 | repo->about_filter = new_filter(value, 0); | 99 | repo->about_filter = new_filter(value, ABOUT); |
| 87 | else if (!strcmp(name, "commit-filter")) | 100 | else if (!strcmp(name, "commit-filter")) |
| 88 | repo->commit_filter = new_filter(value, 0); | 101 | repo->commit_filter = new_filter(value, COMMIT); |
| 89 | else if (!strcmp(name, "source-filter")) | 102 | else if (!strcmp(name, "source-filter")) |
| 90 | repo->source_filter = new_filter(value, 1); | 103 | repo->source_filter = new_filter(value, SOURCE); |
| 91 | } | 104 | } |
| 92 | } | 105 | } |
| 93 | 106 | ||
| @@ -147,6 +160,8 @@ void config_cb(const char *name, const char *value) | |||
| 147 | ctx.cfg.enable_filter_overrides = atoi(value); | 160 | ctx.cfg.enable_filter_overrides = atoi(value); |
| 148 | else if (!strcmp(name, "enable-gitweb-owner")) | 161 | else if (!strcmp(name, "enable-gitweb-owner")) |
| 149 | ctx.cfg.enable_gitweb_owner = atoi(value); | 162 | ctx.cfg.enable_gitweb_owner = atoi(value); |
| 163 | else if (!strcmp(name, "enable-http-clone")) | ||
| 164 | ctx.cfg.enable_http_clone = atoi(value); | ||
| 150 | else if (!strcmp(name, "enable-index-links")) | 165 | else if (!strcmp(name, "enable-index-links")) |
| 151 | ctx.cfg.enable_index_links = atoi(value); | 166 | ctx.cfg.enable_index_links = atoi(value); |
| 152 | else if (!strcmp(name, "enable-commit-graph")) | 167 | else if (!strcmp(name, "enable-commit-graph")) |
| @@ -178,9 +193,9 @@ void config_cb(const char *name, const char *value) | |||
| 178 | else if (!strcmp(name, "cache-dynamic-ttl")) | 193 | else if (!strcmp(name, "cache-dynamic-ttl")) |
| 179 | ctx.cfg.cache_dynamic_ttl = atoi(value); | 194 | ctx.cfg.cache_dynamic_ttl = atoi(value); |
| 180 | else if (!strcmp(name, "about-filter")) | 195 | else if (!strcmp(name, "about-filter")) |
| 181 | ctx.cfg.about_filter = new_filter(value, 0); | 196 | ctx.cfg.about_filter = new_filter(value, ABOUT); |
| 182 | else if (!strcmp(name, "commit-filter")) | 197 | else if (!strcmp(name, "commit-filter")) |
| 183 | ctx.cfg.commit_filter = new_filter(value, 0); | 198 | ctx.cfg.commit_filter = new_filter(value, COMMIT); |
| 184 | else if (!strcmp(name, "embedded")) | 199 | else if (!strcmp(name, "embedded")) |
| 185 | ctx.cfg.embedded = atoi(value); | 200 | ctx.cfg.embedded = atoi(value); |
| 186 | else if (!strcmp(name, "max-atom-items")) | 201 | else if (!strcmp(name, "max-atom-items")) |
| @@ -210,7 +225,7 @@ void config_cb(const char *name, const char *value) | |||
| 210 | else if (!strcmp(name, "section-from-path")) | 225 | else if (!strcmp(name, "section-from-path")) |
| 211 | ctx.cfg.section_from_path = atoi(value); | 226 | ctx.cfg.section_from_path = atoi(value); |
| 212 | else if (!strcmp(name, "source-filter")) | 227 | else if (!strcmp(name, "source-filter")) |
| 213 | ctx.cfg.source_filter = new_filter(value, 1); | 228 | ctx.cfg.source_filter = new_filter(value, SOURCE); |
| 214 | else if (!strcmp(name, "summary-log")) | 229 | else if (!strcmp(name, "summary-log")) |
| 215 | ctx.cfg.summary_log = atoi(value); | 230 | ctx.cfg.summary_log = atoi(value); |
| 216 | else if (!strcmp(name, "summary-branches")) | 231 | else if (!strcmp(name, "summary-branches")) |
| @@ -229,6 +244,8 @@ void config_cb(const char *name, const char *value) | |||
| 229 | ctx.cfg.robots = xstrdup(value); | 244 | ctx.cfg.robots = xstrdup(value); |
| 230 | else if (!strcmp(name, "clone-prefix")) | 245 | else if (!strcmp(name, "clone-prefix")) |
| 231 | ctx.cfg.clone_prefix = xstrdup(value); | 246 | ctx.cfg.clone_prefix = xstrdup(value); |
| 247 | else if (!strcmp(name, "clone-url")) | ||
| 248 | ctx.cfg.clone_url = xstrdup(value); | ||
| 232 | else if (!strcmp(name, "local-time")) | 249 | else if (!strcmp(name, "local-time")) |
| 233 | ctx.cfg.local_time = atoi(value); | 250 | ctx.cfg.local_time = atoi(value); |
| 234 | else if (!prefixcmp(name, "mimetype.")) | 251 | else if (!prefixcmp(name, "mimetype.")) |
| @@ -312,6 +329,7 @@ static void prepare_context(struct cgit_context *ctx) | |||
| 312 | ctx->cfg.logo = "/cgit.png"; | 329 | ctx->cfg.logo = "/cgit.png"; |
| 313 | ctx->cfg.local_time = 0; | 330 | ctx->cfg.local_time = 0; |
| 314 | ctx->cfg.enable_gitweb_owner = 1; | 331 | ctx->cfg.enable_gitweb_owner = 1; |
| 332 | ctx->cfg.enable_http_clone = 1; | ||
| 315 | ctx->cfg.enable_tree_linenumbers = 1; | 333 | ctx->cfg.enable_tree_linenumbers = 1; |
| 316 | ctx->cfg.max_repo_count = 50; | 334 | ctx->cfg.max_repo_count = 50; |
| 317 | ctx->cfg.max_commit_count = 50; | 335 | ctx->cfg.max_commit_count = 50; |
| @@ -439,7 +457,7 @@ static int prepare_repo_cmd(struct cgit_context *ctx) | |||
| 439 | tmp = xstrdup(ctx->qry.head); | 457 | tmp = xstrdup(ctx->qry.head); |
| 440 | ctx->qry.head = ctx->repo->defbranch; | 458 | ctx->qry.head = ctx->repo->defbranch; |
| 441 | ctx->page.status = 404; | 459 | ctx->page.status = 404; |
| 442 | ctx->page.statusmsg = "not found"; | 460 | ctx->page.statusmsg = "Not found"; |
| 443 | cgit_print_http_headers(ctx); | 461 | cgit_print_http_headers(ctx); |
| 444 | cgit_print_docstart(ctx); | 462 | cgit_print_docstart(ctx); |
| 445 | cgit_print_pageheader(ctx); | 463 | cgit_print_pageheader(ctx); |
| @@ -447,6 +465,7 @@ static int prepare_repo_cmd(struct cgit_context *ctx) | |||
| 447 | cgit_print_docend(); | 465 | cgit_print_docend(); |
| 448 | return 1; | 466 | return 1; |
| 449 | } | 467 | } |
| 468 | cgit_prepare_repo_env(ctx->repo); | ||
| 450 | return 0; | 469 | return 0; |
| 451 | } | 470 | } |
| 452 | 471 | ||
| @@ -458,6 +477,8 @@ static void process_request(void *cbdata) | |||
| 458 | cmd = cgit_get_cmd(ctx); | 477 | cmd = cgit_get_cmd(ctx); |
| 459 | if (!cmd) { | 478 | if (!cmd) { |
| 460 | ctx->page.title = "cgit error"; | 479 | ctx->page.title = "cgit error"; |
| 480 | ctx->page.status = 404; | ||
| 481 | ctx->page.statusmsg = "Not found"; | ||
| 461 | cgit_print_http_headers(ctx); | 482 | cgit_print_http_headers(ctx); |
| 462 | cgit_print_docstart(ctx); | 483 | cgit_print_docstart(ctx); |
| 463 | cgit_print_pageheader(ctx); | 484 | cgit_print_pageheader(ctx); |
| @@ -466,6 +487,11 @@ static void process_request(void *cbdata) | |||
| 466 | return; | 487 | return; |
| 467 | } | 488 | } |
| 468 | 489 | ||
| 490 | if (!ctx->cfg.enable_http_clone && cmd->is_clone) { | ||
| 491 | html_status(404, "Not found", 0); | ||
| 492 | return; | ||
| 493 | } | ||
| 494 | |||
| 469 | /* If cmd->want_vpath is set, assume ctx->qry.path contains a "virtual" | 495 | /* If cmd->want_vpath is set, assume ctx->qry.path contains a "virtual" |
| 470 | * in-project path limit to be made available at ctx->qry.vpath. | 496 | * in-project path limit to be made available at ctx->qry.vpath. |
| 471 | * Otherwise, no path limit is in effect (ctx->qry.vpath = NULL). | 497 | * Otherwise, no path limit is in effect (ctx->qry.vpath = NULL). |
