|
diff --git a/cgit.c b/cgit.c index c263872..eff5b7a 100644 --- a/ cgit.c+++ b/ cgit.c |
|
@@ -114,113 +114,122 @@ void config_cb(const char *name, const char *value) |
114 | else if (!strcmp(name, "logo")) |
114 | else if (!strcmp(name, "logo")) |
115 | ctx.cfg.logo = xstrdup(value); |
115 | ctx.cfg.logo = xstrdup(value); |
116 | else if (!strcmp(name, "index-header")) |
116 | else if (!strcmp(name, "index-header")) |
117 | ctx.cfg.index_header = xstrdup(value); |
117 | ctx.cfg.index_header = xstrdup(value); |
118 | else if (!strcmp(name, "index-info")) |
118 | else if (!strcmp(name, "index-info")) |
119 | ctx.cfg.index_info = xstrdup(value); |
119 | ctx.cfg.index_info = xstrdup(value); |
120 | else if (!strcmp(name, "logo-link")) |
120 | else if (!strcmp(name, "logo-link")) |
121 | ctx.cfg.logo_link = xstrdup(value); |
121 | ctx.cfg.logo_link = xstrdup(value); |
122 | else if (!strcmp(name, "module-link")) |
122 | else if (!strcmp(name, "module-link")) |
123 | ctx.cfg.module_link = xstrdup(value); |
123 | ctx.cfg.module_link = xstrdup(value); |
124 | else if (!strcmp(name, "virtual-root")) { |
124 | else if (!strcmp(name, "virtual-root")) { |
125 | ctx.cfg.virtual_root = trim_end(value, '/'); |
125 | ctx.cfg.virtual_root = trim_end(value, '/'); |
126 | if (!ctx.cfg.virtual_root && (!strcmp(value, "/"))) |
126 | if (!ctx.cfg.virtual_root && (!strcmp(value, "/"))) |
127 | ctx.cfg.virtual_root = ""; |
127 | ctx.cfg.virtual_root = ""; |
128 | } else if (!strcmp(name, "nocache")) |
128 | } else if (!strcmp(name, "nocache")) |
129 | ctx.cfg.nocache = atoi(value); |
129 | ctx.cfg.nocache = atoi(value); |
130 | else if (!strcmp(name, "noplainemail")) |
130 | else if (!strcmp(name, "noplainemail")) |
131 | ctx.cfg.noplainemail = atoi(value); |
131 | ctx.cfg.noplainemail = atoi(value); |
132 | else if (!strcmp(name, "noheader")) |
132 | else if (!strcmp(name, "noheader")) |
133 | ctx.cfg.noheader = atoi(value); |
133 | ctx.cfg.noheader = atoi(value); |
134 | else if (!strcmp(name, "snapshots")) |
134 | else if (!strcmp(name, "snapshots")) |
135 | ctx.cfg.snapshots = cgit_parse_snapshots_mask(value); |
135 | ctx.cfg.snapshots = cgit_parse_snapshots_mask(value); |
136 | else if (!strcmp(name, "enable-filter-overrides")) |
136 | else if (!strcmp(name, "enable-filter-overrides")) |
137 | ctx.cfg.enable_filter_overrides = atoi(value); |
137 | ctx.cfg.enable_filter_overrides = atoi(value); |
| |
138 | else if (!strcmp(name, "enable-gitweb-owner")) |
| |
139 | ctx.cfg.enable_gitweb_owner = atoi(value); |
138 | else if (!strcmp(name, "enable-index-links")) |
140 | else if (!strcmp(name, "enable-index-links")) |
139 | ctx.cfg.enable_index_links = atoi(value); |
141 | ctx.cfg.enable_index_links = atoi(value); |
140 | else if (!strcmp(name, "enable-log-filecount")) |
142 | else if (!strcmp(name, "enable-log-filecount")) |
141 | ctx.cfg.enable_log_filecount = atoi(value); |
143 | ctx.cfg.enable_log_filecount = atoi(value); |
142 | else if (!strcmp(name, "enable-log-linecount")) |
144 | else if (!strcmp(name, "enable-log-linecount")) |
143 | ctx.cfg.enable_log_linecount = atoi(value); |
145 | ctx.cfg.enable_log_linecount = atoi(value); |
144 | else if (!strcmp(name, "enable-remote-branches")) |
146 | else if (!strcmp(name, "enable-remote-branches")) |
145 | ctx.cfg.enable_remote_branches = atoi(value); |
147 | ctx.cfg.enable_remote_branches = atoi(value); |
146 | else if (!strcmp(name, "enable-subject-links")) |
148 | else if (!strcmp(name, "enable-subject-links")) |
147 | ctx.cfg.enable_subject_links = atoi(value); |
149 | ctx.cfg.enable_subject_links = atoi(value); |
148 | else if (!strcmp(name, "enable-tree-linenumbers")) |
150 | else if (!strcmp(name, "enable-tree-linenumbers")) |
149 | ctx.cfg.enable_tree_linenumbers = atoi(value); |
151 | ctx.cfg.enable_tree_linenumbers = atoi(value); |
150 | else if (!strcmp(name, "max-stats")) |
152 | else if (!strcmp(name, "max-stats")) |
151 | ctx.cfg.max_stats = cgit_find_stats_period(value, NULL); |
153 | ctx.cfg.max_stats = cgit_find_stats_period(value, NULL); |
152 | else if (!strcmp(name, "cache-size")) |
154 | else if (!strcmp(name, "cache-size")) |
153 | ctx.cfg.cache_size = atoi(value); |
155 | ctx.cfg.cache_size = atoi(value); |
154 | else if (!strcmp(name, "cache-root")) |
156 | else if (!strcmp(name, "cache-root")) |
155 | ctx.cfg.cache_root = xstrdup(expand_macros(value)); |
157 | ctx.cfg.cache_root = xstrdup(expand_macros(value)); |
156 | else if (!strcmp(name, "cache-root-ttl")) |
158 | else if (!strcmp(name, "cache-root-ttl")) |
157 | ctx.cfg.cache_root_ttl = atoi(value); |
159 | ctx.cfg.cache_root_ttl = atoi(value); |
158 | else if (!strcmp(name, "cache-repo-ttl")) |
160 | else if (!strcmp(name, "cache-repo-ttl")) |
159 | ctx.cfg.cache_repo_ttl = atoi(value); |
161 | ctx.cfg.cache_repo_ttl = atoi(value); |
160 | else if (!strcmp(name, "cache-scanrc-ttl")) |
162 | else if (!strcmp(name, "cache-scanrc-ttl")) |
161 | ctx.cfg.cache_scanrc_ttl = atoi(value); |
163 | ctx.cfg.cache_scanrc_ttl = atoi(value); |
162 | else if (!strcmp(name, "cache-static-ttl")) |
164 | else if (!strcmp(name, "cache-static-ttl")) |
163 | ctx.cfg.cache_static_ttl = atoi(value); |
165 | ctx.cfg.cache_static_ttl = atoi(value); |
164 | else if (!strcmp(name, "cache-dynamic-ttl")) |
166 | else if (!strcmp(name, "cache-dynamic-ttl")) |
165 | ctx.cfg.cache_dynamic_ttl = atoi(value); |
167 | ctx.cfg.cache_dynamic_ttl = atoi(value); |
166 | else if (!strcmp(name, "about-filter")) |
168 | else if (!strcmp(name, "about-filter")) |
167 | ctx.cfg.about_filter = new_filter(value, 0); |
169 | ctx.cfg.about_filter = new_filter(value, 0); |
168 | else if (!strcmp(name, "commit-filter")) |
170 | else if (!strcmp(name, "commit-filter")) |
169 | ctx.cfg.commit_filter = new_filter(value, 0); |
171 | ctx.cfg.commit_filter = new_filter(value, 0); |
170 | else if (!strcmp(name, "embedded")) |
172 | else if (!strcmp(name, "embedded")) |
171 | ctx.cfg.embedded = atoi(value); |
173 | ctx.cfg.embedded = atoi(value); |
172 | else if (!strcmp(name, "max-atom-items")) |
174 | else if (!strcmp(name, "max-atom-items")) |
173 | ctx.cfg.max_atom_items = atoi(value); |
175 | ctx.cfg.max_atom_items = atoi(value); |
174 | else if (!strcmp(name, "max-message-length")) |
176 | else if (!strcmp(name, "max-message-length")) |
175 | ctx.cfg.max_msg_len = atoi(value); |
177 | ctx.cfg.max_msg_len = atoi(value); |
176 | else if (!strcmp(name, "max-repodesc-length")) |
178 | else if (!strcmp(name, "max-repodesc-length")) |
177 | ctx.cfg.max_repodesc_len = atoi(value); |
179 | ctx.cfg.max_repodesc_len = atoi(value); |
178 | else if (!strcmp(name, "max-blob-size")) |
180 | else if (!strcmp(name, "max-blob-size")) |
179 | ctx.cfg.max_blob_size = atoi(value); |
181 | ctx.cfg.max_blob_size = atoi(value); |
180 | else if (!strcmp(name, "max-repo-count")) |
182 | else if (!strcmp(name, "max-repo-count")) |
181 | ctx.cfg.max_repo_count = atoi(value); |
183 | ctx.cfg.max_repo_count = atoi(value); |
182 | else if (!strcmp(name, "max-commit-count")) |
184 | else if (!strcmp(name, "max-commit-count")) |
183 | ctx.cfg.max_commit_count = atoi(value); |
185 | ctx.cfg.max_commit_count = atoi(value); |
| |
186 | else if (!strcmp(name, "project-list")) |
| |
187 | ctx.cfg.project_list = xstrdup(expand_macros(value)); |
184 | else if (!strcmp(name, "scan-path")) |
188 | else if (!strcmp(name, "scan-path")) |
185 | if (!ctx.cfg.nocache && ctx.cfg.cache_size) |
189 | if (!ctx.cfg.nocache && ctx.cfg.cache_size) |
186 | process_cached_repolist(expand_macros(value)); |
190 | process_cached_repolist(expand_macros(value)); |
| |
191 | else if (ctx.cfg.project_list) |
| |
192 | scan_projects(expand_macros(value), |
| |
193 | ctx.cfg.project_list, repo_config); |
187 | else |
194 | else |
188 | scan_tree(expand_macros(value), repo_config); |
195 | scan_tree(expand_macros(value), repo_config); |
189 | else if (!strcmp(name, "source-filter")) |
196 | else if (!strcmp(name, "source-filter")) |
190 | ctx.cfg.source_filter = new_filter(value, 1); |
197 | ctx.cfg.source_filter = new_filter(value, 1); |
191 | else if (!strcmp(name, "summary-log")) |
198 | else if (!strcmp(name, "summary-log")) |
192 | ctx.cfg.summary_log = atoi(value); |
199 | ctx.cfg.summary_log = atoi(value); |
193 | else if (!strcmp(name, "summary-branches")) |
200 | else if (!strcmp(name, "summary-branches")) |
194 | ctx.cfg.summary_branches = atoi(value); |
201 | ctx.cfg.summary_branches = atoi(value); |
195 | else if (!strcmp(name, "summary-tags")) |
202 | else if (!strcmp(name, "summary-tags")) |
196 | ctx.cfg.summary_tags = atoi(value); |
203 | ctx.cfg.summary_tags = atoi(value); |
197 | else if (!strcmp(name, "side-by-side-diffs")) |
204 | else if (!strcmp(name, "side-by-side-diffs")) |
198 | ctx.cfg.ssdiff = atoi(value); |
205 | ctx.cfg.ssdiff = atoi(value); |
199 | else if (!strcmp(name, "agefile")) |
206 | else if (!strcmp(name, "agefile")) |
200 | ctx.cfg.agefile = xstrdup(value); |
207 | ctx.cfg.agefile = xstrdup(value); |
201 | else if (!strcmp(name, "renamelimit")) |
208 | else if (!strcmp(name, "renamelimit")) |
202 | ctx.cfg.renamelimit = atoi(value); |
209 | ctx.cfg.renamelimit = atoi(value); |
| |
210 | else if (!strcmp(name, "remove-suffix")) |
| |
211 | ctx.cfg.remove_suffix = atoi(value); |
203 | else if (!strcmp(name, "robots")) |
212 | else if (!strcmp(name, "robots")) |
204 | ctx.cfg.robots = xstrdup(value); |
213 | ctx.cfg.robots = xstrdup(value); |
205 | else if (!strcmp(name, "clone-prefix")) |
214 | else if (!strcmp(name, "clone-prefix")) |
206 | ctx.cfg.clone_prefix = xstrdup(value); |
215 | ctx.cfg.clone_prefix = xstrdup(value); |
207 | else if (!strcmp(name, "local-time")) |
216 | else if (!strcmp(name, "local-time")) |
208 | ctx.cfg.local_time = atoi(value); |
217 | ctx.cfg.local_time = atoi(value); |
209 | else if (!prefixcmp(name, "mimetype.")) |
218 | else if (!prefixcmp(name, "mimetype.")) |
210 | add_mimetype(name + 9, value); |
219 | add_mimetype(name + 9, value); |
211 | else if (!strcmp(name, "include")) |
220 | else if (!strcmp(name, "include")) |
212 | parse_configfile(expand_macros(value), config_cb); |
221 | parse_configfile(expand_macros(value), config_cb); |
213 | } |
222 | } |
214 | |
223 | |
215 | static void querystring_cb(const char *name, const char *value) |
224 | static void querystring_cb(const char *name, const char *value) |
216 | { |
225 | { |
217 | if (!value) |
226 | if (!value) |
218 | value = ""; |
227 | value = ""; |
219 | |
228 | |
220 | if (!strcmp(name,"r")) { |
229 | if (!strcmp(name,"r")) { |
221 | ctx.qry.repo = xstrdup(value); |
230 | ctx.qry.repo = xstrdup(value); |
222 | ctx.repo = cgit_get_repoinfo(value); |
231 | ctx.repo = cgit_get_repoinfo(value); |
223 | } else if (!strcmp(name, "p")) { |
232 | } else if (!strcmp(name, "p")) { |
224 | ctx.qry.page = xstrdup(value); |
233 | ctx.qry.page = xstrdup(value); |
225 | } else if (!strcmp(name, "url")) { |
234 | } else if (!strcmp(name, "url")) { |
226 | if (*value == '/') |
235 | if (*value == '/') |
@@ -265,58 +274,61 @@ static void querystring_cb(const char *name, const char *value) |
265 | } |
274 | } |
266 | } |
275 | } |
267 | |
276 | |
268 | char *xstrdupn(const char *str) |
277 | char *xstrdupn(const char *str) |
269 | { |
278 | { |
270 | return (str ? xstrdup(str) : NULL); |
279 | return (str ? xstrdup(str) : NULL); |
271 | } |
280 | } |
272 | |
281 | |
273 | static void prepare_context(struct cgit_context *ctx) |
282 | static void prepare_context(struct cgit_context *ctx) |
274 | { |
283 | { |
275 | memset(ctx, 0, sizeof(*ctx)); |
284 | memset(ctx, 0, sizeof(*ctx)); |
276 | ctx->cfg.agefile = "info/web/last-modified"; |
285 | ctx->cfg.agefile = "info/web/last-modified"; |
277 | ctx->cfg.nocache = 0; |
286 | ctx->cfg.nocache = 0; |
278 | ctx->cfg.cache_size = 0; |
287 | ctx->cfg.cache_size = 0; |
279 | ctx->cfg.cache_dynamic_ttl = 5; |
288 | ctx->cfg.cache_dynamic_ttl = 5; |
280 | ctx->cfg.cache_max_create_time = 5; |
289 | ctx->cfg.cache_max_create_time = 5; |
281 | ctx->cfg.cache_repo_ttl = 5; |
290 | ctx->cfg.cache_repo_ttl = 5; |
282 | ctx->cfg.cache_root = CGIT_CACHE_ROOT; |
291 | ctx->cfg.cache_root = CGIT_CACHE_ROOT; |
283 | ctx->cfg.cache_root_ttl = 5; |
292 | ctx->cfg.cache_root_ttl = 5; |
284 | ctx->cfg.cache_scanrc_ttl = 15; |
293 | ctx->cfg.cache_scanrc_ttl = 15; |
285 | ctx->cfg.cache_static_ttl = -1; |
294 | ctx->cfg.cache_static_ttl = -1; |
286 | ctx->cfg.css = "/cgit.css"; |
295 | ctx->cfg.css = "/cgit.css"; |
287 | ctx->cfg.logo = "/cgit.png"; |
296 | ctx->cfg.logo = "/cgit.png"; |
288 | ctx->cfg.local_time = 0; |
297 | ctx->cfg.local_time = 0; |
| |
298 | ctx->cfg.enable_gitweb_owner = 1; |
289 | ctx->cfg.enable_tree_linenumbers = 1; |
299 | ctx->cfg.enable_tree_linenumbers = 1; |
290 | ctx->cfg.max_repo_count = 50; |
300 | ctx->cfg.max_repo_count = 50; |
291 | ctx->cfg.max_commit_count = 50; |
301 | ctx->cfg.max_commit_count = 50; |
292 | ctx->cfg.max_lock_attempts = 5; |
302 | ctx->cfg.max_lock_attempts = 5; |
293 | ctx->cfg.max_msg_len = 80; |
303 | ctx->cfg.max_msg_len = 80; |
294 | ctx->cfg.max_repodesc_len = 80; |
304 | ctx->cfg.max_repodesc_len = 80; |
295 | ctx->cfg.max_blob_size = 0; |
305 | ctx->cfg.max_blob_size = 0; |
296 | ctx->cfg.max_stats = 0; |
306 | ctx->cfg.max_stats = 0; |
297 | ctx->cfg.module_link = "./?repo=%s&page=commit&id=%s"; |
307 | ctx->cfg.module_link = "./?repo=%s&page=commit&id=%s"; |
| |
308 | ctx->cfg.project_list = NULL; |
298 | ctx->cfg.renamelimit = -1; |
309 | ctx->cfg.renamelimit = -1; |
| |
310 | ctx->cfg.remove_suffix = 0; |
299 | ctx->cfg.robots = "index, nofollow"; |
311 | ctx->cfg.robots = "index, nofollow"; |
300 | ctx->cfg.root_title = "Git repository browser"; |
312 | ctx->cfg.root_title = "Git repository browser"; |
301 | ctx->cfg.root_desc = "a fast webinterface for the git dscm"; |
313 | ctx->cfg.root_desc = "a fast webinterface for the git dscm"; |
302 | ctx->cfg.script_name = CGIT_SCRIPT_NAME; |
314 | ctx->cfg.script_name = CGIT_SCRIPT_NAME; |
303 | ctx->cfg.section = ""; |
315 | ctx->cfg.section = ""; |
304 | ctx->cfg.summary_branches = 10; |
316 | ctx->cfg.summary_branches = 10; |
305 | ctx->cfg.summary_log = 10; |
317 | ctx->cfg.summary_log = 10; |
306 | ctx->cfg.summary_tags = 10; |
318 | ctx->cfg.summary_tags = 10; |
307 | ctx->cfg.max_atom_items = 10; |
319 | ctx->cfg.max_atom_items = 10; |
308 | ctx->cfg.ssdiff = 0; |
320 | ctx->cfg.ssdiff = 0; |
309 | ctx->env.cgit_config = xstrdupn(getenv("CGIT_CONFIG")); |
321 | ctx->env.cgit_config = xstrdupn(getenv("CGIT_CONFIG")); |
310 | ctx->env.http_host = xstrdupn(getenv("HTTP_HOST")); |
322 | ctx->env.http_host = xstrdupn(getenv("HTTP_HOST")); |
311 | ctx->env.https = xstrdupn(getenv("HTTPS")); |
323 | ctx->env.https = xstrdupn(getenv("HTTPS")); |
312 | ctx->env.no_http = xstrdupn(getenv("NO_HTTP")); |
324 | ctx->env.no_http = xstrdupn(getenv("NO_HTTP")); |
313 | ctx->env.path_info = xstrdupn(getenv("PATH_INFO")); |
325 | ctx->env.path_info = xstrdupn(getenv("PATH_INFO")); |
314 | ctx->env.query_string = xstrdupn(getenv("QUERY_STRING")); |
326 | ctx->env.query_string = xstrdupn(getenv("QUERY_STRING")); |
315 | ctx->env.request_method = xstrdupn(getenv("REQUEST_METHOD")); |
327 | ctx->env.request_method = xstrdupn(getenv("REQUEST_METHOD")); |
316 | ctx->env.script_name = xstrdupn(getenv("SCRIPT_NAME")); |
328 | ctx->env.script_name = xstrdupn(getenv("SCRIPT_NAME")); |
317 | ctx->env.server_name = xstrdupn(getenv("SERVER_NAME")); |
329 | ctx->env.server_name = xstrdupn(getenv("SERVER_NAME")); |
318 | ctx->env.server_port = xstrdupn(getenv("SERVER_PORT")); |
330 | ctx->env.server_port = xstrdupn(getenv("SERVER_PORT")); |
319 | ctx->page.mimetype = "text/html"; |
331 | ctx->page.mimetype = "text/html"; |
320 | ctx->page.charset = PAGE_ENCODING; |
332 | ctx->page.charset = PAGE_ENCODING; |
321 | ctx->page.filename = NULL; |
333 | ctx->page.filename = NULL; |
322 | ctx->page.size = 0; |
334 | ctx->page.size = 0; |
@@ -553,73 +565,84 @@ void print_repolist(FILE *f, struct cgit_repolist *list, int start) |
553 | print_repo(f, &list->repos[i]); |
565 | print_repo(f, &list->repos[i]); |
554 | } |
566 | } |
555 | |
567 | |
556 | /* Scan 'path' for git repositories, save the resulting repolist in 'cached_rc' |
568 | /* Scan 'path' for git repositories, save the resulting repolist in 'cached_rc' |
557 | * and return 0 on success. |
569 | * and return 0 on success. |
558 | */ |
570 | */ |
559 | static int generate_cached_repolist(const char *path, const char *cached_rc) |
571 | static int generate_cached_repolist(const char *path, const char *cached_rc) |
560 | { |
572 | { |
561 | char *locked_rc; |
573 | char *locked_rc; |
562 | int idx; |
574 | int idx; |
563 | FILE *f; |
575 | FILE *f; |
564 | |
576 | |
565 | locked_rc = xstrdup(fmt("%s.lock", cached_rc)); |
577 | locked_rc = xstrdup(fmt("%s.lock", cached_rc)); |
566 | f = fopen(locked_rc, "wx"); |
578 | f = fopen(locked_rc, "wx"); |
567 | if (!f) { |
579 | if (!f) { |
568 | /* Inform about the error unless the lockfile already existed, |
580 | /* Inform about the error unless the lockfile already existed, |
569 | * since that only means we've got concurrent requests. |
581 | * since that only means we've got concurrent requests. |
570 | */ |
582 | */ |
571 | if (errno != EEXIST) |
583 | if (errno != EEXIST) |
572 | fprintf(stderr, "[cgit] Error opening %s: %s (%d)\n", |
584 | fprintf(stderr, "[cgit] Error opening %s: %s (%d)\n", |
573 | locked_rc, strerror(errno), errno); |
585 | locked_rc, strerror(errno), errno); |
574 | return errno; |
586 | return errno; |
575 | } |
587 | } |
576 | idx = cgit_repolist.count; |
588 | idx = cgit_repolist.count; |
577 | scan_tree(path, repo_config); |
589 | if (ctx.cfg.project_list) |
| |
590 | scan_projects(path, ctx.cfg.project_list, repo_config); |
| |
591 | else |
| |
592 | scan_tree(path, repo_config); |
578 | print_repolist(f, &cgit_repolist, idx); |
593 | print_repolist(f, &cgit_repolist, idx); |
579 | if (rename(locked_rc, cached_rc)) |
594 | if (rename(locked_rc, cached_rc)) |
580 | fprintf(stderr, "[cgit] Error renaming %s to %s: %s (%d)\n", |
595 | fprintf(stderr, "[cgit] Error renaming %s to %s: %s (%d)\n", |
581 | locked_rc, cached_rc, strerror(errno), errno); |
596 | locked_rc, cached_rc, strerror(errno), errno); |
582 | fclose(f); |
597 | fclose(f); |
583 | return 0; |
598 | return 0; |
584 | } |
599 | } |
585 | |
600 | |
586 | static void process_cached_repolist(const char *path) |
601 | static void process_cached_repolist(const char *path) |
587 | { |
602 | { |
588 | struct stat st; |
603 | struct stat st; |
589 | char *cached_rc; |
604 | char *cached_rc; |
590 | time_t age; |
605 | time_t age; |
| |
606 | unsigned long hash; |
591 | |
607 | |
592 | cached_rc = xstrdup(fmt("%s/rc-%8x", ctx.cfg.cache_root, |
608 | hash = hash_str(path); |
593 | hash_str(path))); |
609 | if (ctx.cfg.project_list) |
| |
610 | hash += hash_str(ctx.cfg.project_list); |
| |
611 | cached_rc = xstrdup(fmt("%s/rc-%8x", ctx.cfg.cache_root, hash)); |
594 | |
612 | |
595 | if (stat(cached_rc, &st)) { |
613 | if (stat(cached_rc, &st)) { |
596 | /* Nothing is cached, we need to scan without forking. And |
614 | /* Nothing is cached, we need to scan without forking. And |
597 | * if we fail to generate a cached repolist, we need to |
615 | * if we fail to generate a cached repolist, we need to |
598 | * invoke scan_tree manually. |
616 | * invoke scan_tree manually. |
599 | */ |
617 | */ |
600 | if (generate_cached_repolist(path, cached_rc)) |
618 | if (generate_cached_repolist(path, cached_rc)) { |
601 | scan_tree(path, repo_config); |
619 | if (ctx.cfg.project_list) |
| |
620 | scan_projects(path, ctx.cfg.project_list, |
| |
621 | repo_config); |
| |
622 | else |
| |
623 | scan_tree(path, repo_config); |
| |
624 | } |
602 | return; |
625 | return; |
603 | } |
626 | } |
604 | |
627 | |
605 | parse_configfile(cached_rc, config_cb); |
628 | parse_configfile(cached_rc, config_cb); |
606 | |
629 | |
607 | /* If the cached configfile hasn't expired, lets exit now */ |
630 | /* If the cached configfile hasn't expired, lets exit now */ |
608 | age = time(NULL) - st.st_mtime; |
631 | age = time(NULL) - st.st_mtime; |
609 | if (age <= (ctx.cfg.cache_scanrc_ttl * 60)) |
632 | if (age <= (ctx.cfg.cache_scanrc_ttl * 60)) |
610 | return; |
633 | return; |
611 | |
634 | |
612 | /* The cached repolist has been parsed, but it was old. So lets |
635 | /* The cached repolist has been parsed, but it was old. So lets |
613 | * rescan the specified path and generate a new cached repolist |
636 | * rescan the specified path and generate a new cached repolist |
614 | * in a child-process to avoid latency for the current request. |
637 | * in a child-process to avoid latency for the current request. |
615 | */ |
638 | */ |
616 | if (fork()) |
639 | if (fork()) |
617 | return; |
640 | return; |
618 | |
641 | |
619 | exit(generate_cached_repolist(path, cached_rc)); |
642 | exit(generate_cached_repolist(path, cached_rc)); |
620 | } |
643 | } |
621 | |
644 | |
622 | static void cgit_parse_args(int argc, const char **argv) |
645 | static void cgit_parse_args(int argc, const char **argv) |
623 | { |
646 | { |
624 | int i; |
647 | int i; |
625 | int scan = 0; |
648 | int scan = 0; |
|