blob: bbde64b04ad566b8c7bc44a3f953bb979ffa3f41 [file] [log] [blame]
Lars Hjemli7640d902006-12-10 22:41:14 +01001/* cgit.c: cgi for the git scm
2 *
3 * Copyright (C) 2006 Lars Hjemli
4 *
5 * Licensed under GNU General Public License v2
6 * (see COPYING for full license text)
7 */
8
Lars Hjemli0d169ad2006-12-09 15:18:17 +01009#include "cgit.h"
Lars Hjemliee4056b2008-03-27 09:22:13 +010010#include "cache.h"
Lars Hjemlif3c1a182008-03-24 00:51:19 +010011#include "cmd.h"
Lars Hjemli20a33542008-03-28 00:09:11 +010012#include "configfile.h"
Lars Hjemlie87e8962008-04-08 21:11:36 +020013#include "html.h"
Lars Hjemlia4d1ca12008-03-24 16:50:57 +010014#include "ui-shared.h"
Lars Hjemli0d169ad2006-12-09 15:18:17 +010015
Lars Hjemli92908af2008-03-24 23:10:59 +010016const char *cgit_version = CGIT_VERSION;
17
Lars Hjemli163037e2008-03-24 17:26:08 +010018void config_cb(const char *name, const char *value)
19{
20 if (!strcmp(name, "root-title"))
21 ctx.cfg.root_title = xstrdup(value);
Lars Hjemli4c991602008-04-29 00:55:34 +020022 else if (!strcmp(name, "root-desc"))
23 ctx.cfg.root_desc = xstrdup(value);
Lars Hjemli163037e2008-03-24 17:26:08 +010024 else if (!strcmp(name, "css"))
25 ctx.cfg.css = xstrdup(value);
26 else if (!strcmp(name, "logo"))
27 ctx.cfg.logo = xstrdup(value);
28 else if (!strcmp(name, "index-header"))
29 ctx.cfg.index_header = xstrdup(value);
30 else if (!strcmp(name, "index-info"))
31 ctx.cfg.index_info = xstrdup(value);
32 else if (!strcmp(name, "logo-link"))
33 ctx.cfg.logo_link = xstrdup(value);
34 else if (!strcmp(name, "module-link"))
35 ctx.cfg.module_link = xstrdup(value);
36 else if (!strcmp(name, "virtual-root")) {
37 ctx.cfg.virtual_root = trim_end(value, '/');
38 if (!ctx.cfg.virtual_root && (!strcmp(value, "/")))
39 ctx.cfg.virtual_root = "";
40 } else if (!strcmp(name, "nocache"))
41 ctx.cfg.nocache = atoi(value);
42 else if (!strcmp(name, "snapshots"))
43 ctx.cfg.snapshots = cgit_parse_snapshots_mask(value);
44 else if (!strcmp(name, "enable-index-links"))
45 ctx.cfg.enable_index_links = atoi(value);
46 else if (!strcmp(name, "enable-log-filecount"))
47 ctx.cfg.enable_log_filecount = atoi(value);
48 else if (!strcmp(name, "enable-log-linecount"))
49 ctx.cfg.enable_log_linecount = atoi(value);
50 else if (!strcmp(name, "cache-root"))
51 ctx.cfg.cache_root = xstrdup(value);
52 else if (!strcmp(name, "cache-root-ttl"))
53 ctx.cfg.cache_root_ttl = atoi(value);
54 else if (!strcmp(name, "cache-repo-ttl"))
55 ctx.cfg.cache_repo_ttl = atoi(value);
56 else if (!strcmp(name, "cache-static-ttl"))
57 ctx.cfg.cache_static_ttl = atoi(value);
58 else if (!strcmp(name, "cache-dynamic-ttl"))
59 ctx.cfg.cache_dynamic_ttl = atoi(value);
60 else if (!strcmp(name, "max-message-length"))
61 ctx.cfg.max_msg_len = atoi(value);
62 else if (!strcmp(name, "max-repodesc-length"))
63 ctx.cfg.max_repodesc_len = atoi(value);
64 else if (!strcmp(name, "max-commit-count"))
65 ctx.cfg.max_commit_count = atoi(value);
66 else if (!strcmp(name, "summary-log"))
67 ctx.cfg.summary_log = atoi(value);
68 else if (!strcmp(name, "summary-branches"))
69 ctx.cfg.summary_branches = atoi(value);
70 else if (!strcmp(name, "summary-tags"))
71 ctx.cfg.summary_tags = atoi(value);
72 else if (!strcmp(name, "agefile"))
73 ctx.cfg.agefile = xstrdup(value);
74 else if (!strcmp(name, "renamelimit"))
75 ctx.cfg.renamelimit = atoi(value);
76 else if (!strcmp(name, "robots"))
77 ctx.cfg.robots = xstrdup(value);
78 else if (!strcmp(name, "clone-prefix"))
79 ctx.cfg.clone_prefix = xstrdup(value);
80 else if (!strcmp(name, "repo.group"))
81 ctx.cfg.repo_group = xstrdup(value);
82 else if (!strcmp(name, "repo.url"))
83 ctx.repo = cgit_add_repo(value);
84 else if (!strcmp(name, "repo.name"))
85 ctx.repo->name = xstrdup(value);
86 else if (ctx.repo && !strcmp(name, "repo.path"))
87 ctx.repo->path = trim_end(value, '/');
88 else if (ctx.repo && !strcmp(name, "repo.clone-url"))
89 ctx.repo->clone_url = xstrdup(value);
90 else if (ctx.repo && !strcmp(name, "repo.desc"))
91 ctx.repo->desc = xstrdup(value);
92 else if (ctx.repo && !strcmp(name, "repo.owner"))
93 ctx.repo->owner = xstrdup(value);
94 else if (ctx.repo && !strcmp(name, "repo.defbranch"))
95 ctx.repo->defbranch = xstrdup(value);
96 else if (ctx.repo && !strcmp(name, "repo.snapshots"))
97 ctx.repo->snapshots = ctx.cfg.snapshots & cgit_parse_snapshots_mask(value); /* XXX: &? */
98 else if (ctx.repo && !strcmp(name, "repo.enable-log-filecount"))
99 ctx.repo->enable_log_filecount = ctx.cfg.enable_log_filecount * atoi(value);
100 else if (ctx.repo && !strcmp(name, "repo.enable-log-linecount"))
101 ctx.repo->enable_log_linecount = ctx.cfg.enable_log_linecount * atoi(value);
102 else if (ctx.repo && !strcmp(name, "repo.module-link"))
103 ctx.repo->module_link= xstrdup(value);
104 else if (ctx.repo && !strcmp(name, "repo.readme") && value != NULL) {
105 if (*value == '/')
106 ctx.repo->readme = xstrdup(value);
107 else
108 ctx.repo->readme = xstrdup(fmt("%s/%s", ctx.repo->path, value));
109 } else if (!strcmp(name, "include"))
Lars Hjemli20a33542008-03-28 00:09:11 +0100110 parse_configfile(value, config_cb);
Lars Hjemli163037e2008-03-24 17:26:08 +0100111}
112
113static void querystring_cb(const char *name, const char *value)
114{
115 if (!strcmp(name,"r")) {
116 ctx.qry.repo = xstrdup(value);
117 ctx.repo = cgit_get_repoinfo(value);
118 } else if (!strcmp(name, "p")) {
119 ctx.qry.page = xstrdup(value);
120 } else if (!strcmp(name, "url")) {
121 cgit_parse_url(value);
122 } else if (!strcmp(name, "qt")) {
123 ctx.qry.grep = xstrdup(value);
124 } else if (!strcmp(name, "q")) {
125 ctx.qry.search = xstrdup(value);
126 } else if (!strcmp(name, "h")) {
127 ctx.qry.head = xstrdup(value);
128 ctx.qry.has_symref = 1;
129 } else if (!strcmp(name, "id")) {
130 ctx.qry.sha1 = xstrdup(value);
131 ctx.qry.has_sha1 = 1;
132 } else if (!strcmp(name, "id2")) {
133 ctx.qry.sha2 = xstrdup(value);
134 ctx.qry.has_sha1 = 1;
135 } else if (!strcmp(name, "ofs")) {
136 ctx.qry.ofs = atoi(value);
137 } else if (!strcmp(name, "path")) {
138 ctx.qry.path = trim_end(value, '/');
139 } else if (!strcmp(name, "name")) {
140 ctx.qry.name = xstrdup(value);
141 }
142}
143
144static void prepare_context(struct cgit_context *ctx)
145{
146 memset(ctx, 0, sizeof(ctx));
147 ctx->cfg.agefile = "info/web/last-modified";
148 ctx->cfg.cache_dynamic_ttl = 5;
149 ctx->cfg.cache_max_create_time = 5;
150 ctx->cfg.cache_repo_ttl = 5;
151 ctx->cfg.cache_root = CGIT_CACHE_ROOT;
152 ctx->cfg.cache_root_ttl = 5;
153 ctx->cfg.cache_static_ttl = -1;
154 ctx->cfg.css = "/cgit.css";
155 ctx->cfg.logo = "/git-logo.png";
156 ctx->cfg.max_commit_count = 50;
157 ctx->cfg.max_lock_attempts = 5;
158 ctx->cfg.max_msg_len = 60;
159 ctx->cfg.max_repodesc_len = 60;
160 ctx->cfg.module_link = "./?repo=%s&page=commit&id=%s";
161 ctx->cfg.renamelimit = -1;
162 ctx->cfg.robots = "index, nofollow";
163 ctx->cfg.root_title = "Git repository browser";
Lars Hjemli4c991602008-04-29 00:55:34 +0200164 ctx->cfg.root_desc = "a fast webinterface for the git dscm";
Lars Hjemli163037e2008-03-24 17:26:08 +0100165 ctx->cfg.script_name = CGIT_SCRIPT_NAME;
166 ctx->page.mimetype = "text/html";
167 ctx->page.charset = PAGE_ENCODING;
168 ctx->page.filename = NULL;
169}
170
Lars Hjemlice1c7332007-02-03 15:02:55 +0100171static int cgit_prepare_cache(struct cacheitem *item)
Lars Hjemli83a5f352007-01-12 00:00:15 +0100172{
Lars Hjemlid1f3bbe2008-02-16 13:56:09 +0100173 if (!ctx.repo && ctx.qry.repo) {
Lars Hjemlif3c1a182008-03-24 00:51:19 +0100174 ctx.page.title = fmt("%s - %s", ctx.cfg.root_title,
175 "Bad request");
176 cgit_print_http_headers(&ctx);
177 cgit_print_docstart(&ctx);
178 cgit_print_pageheader(&ctx);
Lars Hjemlid14d77f2008-02-16 11:53:40 +0100179 cgit_print_error(fmt("Unknown repo: %s", ctx.qry.repo));
Lars Hjemlice1c7332007-02-03 15:02:55 +0100180 cgit_print_docend();
181 return 0;
182 }
183
Lars Hjemlid1f3bbe2008-02-16 13:56:09 +0100184 if (!ctx.repo) {
Lars Hjemli78031f92008-04-14 23:07:52 +0200185 item->name = xstrdup(fmt("%s/index.%s.html",
186 ctx.cfg.cache_root,
187 cache_safe_filename(ctx.qry.raw)));
Lars Hjemlib228d4f2008-02-16 13:07:13 +0100188 item->ttl = ctx.cfg.cache_root_ttl;
Lars Hjemli30ccdca2007-05-18 03:00:54 +0200189 return 1;
190 }
191
Lars Hjemlidc3282f2008-03-25 02:00:09 +0100192 if (!ctx.qry.page) {
Lars Hjemlib228d4f2008-02-16 13:07:13 +0100193 item->name = xstrdup(fmt("%s/%s/index.%s.html", ctx.cfg.cache_root,
Lars Hjemlid1f3bbe2008-02-16 13:56:09 +0100194 cache_safe_filename(ctx.repo->url),
Lars Hjemlid14d77f2008-02-16 11:53:40 +0100195 cache_safe_filename(ctx.qry.raw)));
Lars Hjemlib228d4f2008-02-16 13:07:13 +0100196 item->ttl = ctx.cfg.cache_repo_ttl;
Lars Hjemli83a5f352007-01-12 00:00:15 +0100197 } else {
Lars Hjemlib228d4f2008-02-16 13:07:13 +0100198 item->name = xstrdup(fmt("%s/%s/%s/%s.html", ctx.cfg.cache_root,
Lars Hjemlid1f3bbe2008-02-16 13:56:09 +0100199 cache_safe_filename(ctx.repo->url),
Lars Hjemlid14d77f2008-02-16 11:53:40 +0100200 ctx.qry.page,
201 cache_safe_filename(ctx.qry.raw)));
202 if (ctx.qry.has_symref)
Lars Hjemlib228d4f2008-02-16 13:07:13 +0100203 item->ttl = ctx.cfg.cache_dynamic_ttl;
Lars Hjemlid14d77f2008-02-16 11:53:40 +0100204 else if (ctx.qry.has_sha1)
Lars Hjemlib228d4f2008-02-16 13:07:13 +0100205 item->ttl = ctx.cfg.cache_static_ttl;
Lars Hjemli83a5f352007-01-12 00:00:15 +0100206 else
Lars Hjemlib228d4f2008-02-16 13:07:13 +0100207 item->ttl = ctx.cfg.cache_repo_ttl;
Lars Hjemli83a5f352007-01-12 00:00:15 +0100208 }
Lars Hjemlice1c7332007-02-03 15:02:55 +0100209 return 1;
Lars Hjemli83a5f352007-01-12 00:00:15 +0100210}
211
Lars Hjemlif80ff372008-01-04 13:43:40 +0100212struct refmatch {
213 char *req_ref;
214 char *first_ref;
215 int match;
216};
217
218int find_current_ref(const char *refname, const unsigned char *sha1,
219 int flags, void *cb_data)
220{
221 struct refmatch *info;
222
223 info = (struct refmatch *)cb_data;
224 if (!strcmp(refname, info->req_ref))
225 info->match = 1;
226 if (!info->first_ref)
227 info->first_ref = xstrdup(refname);
228 return info->match;
229}
230
Lars Hjemlid1f3bbe2008-02-16 13:56:09 +0100231char *find_default_branch(struct cgit_repo *repo)
Lars Hjemlif80ff372008-01-04 13:43:40 +0100232{
233 struct refmatch info;
234
235 info.req_ref = repo->defbranch;
236 info.first_ref = NULL;
237 info.match = 0;
238 for_each_branch_ref(find_current_ref, &info);
239 if (info.match)
240 return info.req_ref;
241 else
242 return info.first_ref;
243}
244
Lars Hjemlie0e44782008-03-24 01:09:39 +0100245static int prepare_repo_cmd(struct cgit_context *ctx)
Lars Hjemli0d169ad2006-12-09 15:18:17 +0100246{
Lars Hjemlif3c1a182008-03-24 00:51:19 +0100247 char *tmp;
Lars Hjemlif80ff372008-01-04 13:43:40 +0100248 unsigned char sha1[20];
Lars Hjemlib88fb012008-02-16 21:16:53 +0100249 int nongit = 0;
Lars Hjemlib28b1052007-05-16 00:14:51 +0200250
Lars Hjemlie0e44782008-03-24 01:09:39 +0100251 setenv("GIT_DIR", ctx->repo->path, 1);
Lars Hjemlib88fb012008-02-16 21:16:53 +0100252 setup_git_directory_gently(&nongit);
253 if (nongit) {
Lars Hjemlie0e44782008-03-24 01:09:39 +0100254 ctx->page.title = fmt("%s - %s", ctx->cfg.root_title,
255 "config error");
256 tmp = fmt("Not a git repository: '%s'", ctx->repo->path);
257 ctx->repo = NULL;
258 cgit_print_http_headers(ctx);
259 cgit_print_docstart(ctx);
260 cgit_print_pageheader(ctx);
Lars Hjemlib88fb012008-02-16 21:16:53 +0100261 cgit_print_error(tmp);
Lars Hjemli0d169ad2006-12-09 15:18:17 +0100262 cgit_print_docend();
Lars Hjemlie0e44782008-03-24 01:09:39 +0100263 return 1;
264 }
265 ctx->page.title = fmt("%s - %s", ctx->repo->name, ctx->repo->desc);
266
267 if (!ctx->qry.head) {
268 ctx->qry.head = xstrdup(find_default_branch(ctx->repo));
269 ctx->repo->defbranch = ctx->qry.head;
Lars Hjemli0d169ad2006-12-09 15:18:17 +0100270 }
Lars Hjemlice1c7332007-02-03 15:02:55 +0100271
Lars Hjemlie0e44782008-03-24 01:09:39 +0100272 if (!ctx->qry.head) {
273 cgit_print_http_headers(ctx);
274 cgit_print_docstart(ctx);
275 cgit_print_pageheader(ctx);
Lars Hjemlif80ff372008-01-04 13:43:40 +0100276 cgit_print_error("Repository seems to be empty");
277 cgit_print_docend();
Lars Hjemlie0e44782008-03-24 01:09:39 +0100278 return 1;
Lars Hjemlif80ff372008-01-04 13:43:40 +0100279 }
280
Lars Hjemlie0e44782008-03-24 01:09:39 +0100281 if (get_sha1(ctx->qry.head, sha1)) {
282 tmp = xstrdup(ctx->qry.head);
283 ctx->qry.head = ctx->repo->defbranch;
284 cgit_print_http_headers(ctx);
285 cgit_print_docstart(ctx);
286 cgit_print_pageheader(ctx);
Lars Hjemlif80ff372008-01-04 13:43:40 +0100287 cgit_print_error(fmt("Invalid branch: %s", tmp));
288 cgit_print_docend();
Lars Hjemlie0e44782008-03-24 01:09:39 +0100289 return 1;
Lars Hjemlif80ff372008-01-04 13:43:40 +0100290 }
Lars Hjemlie0e44782008-03-24 01:09:39 +0100291 return 0;
292}
Lars Hjemlif80ff372008-01-04 13:43:40 +0100293
Lars Hjemlie0e44782008-03-24 01:09:39 +0100294static void process_request(struct cgit_context *ctx)
295{
296 struct cgit_cmd *cmd;
Lars Hjemliab2ab952007-02-08 13:53:13 +0100297
Lars Hjemlie0e44782008-03-24 01:09:39 +0100298 cmd = cgit_get_cmd(ctx);
299 if (!cmd) {
300 ctx->page.title = "cgit error";
301 ctx->repo = NULL;
302 cgit_print_http_headers(ctx);
303 cgit_print_docstart(ctx);
304 cgit_print_pageheader(ctx);
305 cgit_print_error("Invalid request");
Lars Hjemli66cacd02007-02-17 13:46:18 +0100306 cgit_print_docend();
307 return;
308 }
309
Lars Hjemlie0e44782008-03-24 01:09:39 +0100310 if (cmd->want_repo && prepare_repo_cmd(ctx))
311 return;
Lars Hjemli66cacd02007-02-17 13:46:18 +0100312
Lars Hjemlie0e44782008-03-24 01:09:39 +0100313 if (cmd->want_layout) {
314 cgit_print_http_headers(ctx);
315 cgit_print_docstart(ctx);
316 cgit_print_pageheader(ctx);
Lars Hjemli0d169ad2006-12-09 15:18:17 +0100317 }
Lars Hjemlie0e44782008-03-24 01:09:39 +0100318
319 cmd->fn(ctx);
320
321 if (cmd->want_layout)
322 cgit_print_docend();
Lars Hjemli0d169ad2006-12-09 15:18:17 +0100323}
324
Lars Hjemlif3c1a182008-03-24 00:51:19 +0100325static long ttl_seconds(long ttl)
326{
327 if (ttl<0)
328 return 60 * 60 * 24 * 365;
329 else
330 return ttl * 60;
331}
332
Lars Hjemliab2ab952007-02-08 13:53:13 +0100333static void cgit_fill_cache(struct cacheitem *item, int use_cache)
Lars Hjemli0d169ad2006-12-09 15:18:17 +0100334{
Lars Hjemliab2ab952007-02-08 13:53:13 +0100335 int stdout2;
Lars Hjemli7c849d92006-12-16 13:55:58 +0100336
Lars Hjemliab2ab952007-02-08 13:53:13 +0100337 if (use_cache) {
Lars Hjemli5b94c962007-05-14 22:58:01 +0200338 stdout2 = chk_positive(dup(STDOUT_FILENO),
Lars Hjemliab2ab952007-02-08 13:53:13 +0100339 "Preserving STDOUT");
340 chk_zero(close(STDOUT_FILENO), "Closing STDOUT");
341 chk_positive(dup2(item->fd, STDOUT_FILENO), "Dup2(cachefile)");
342 }
343
Lars Hjemlif3c1a182008-03-24 00:51:19 +0100344 ctx.page.modified = time(NULL);
345 ctx.page.expires = ctx.page.modified + ttl_seconds(item->ttl);
Lars Hjemlie0e44782008-03-24 01:09:39 +0100346 process_request(&ctx);
Lars Hjemliab2ab952007-02-08 13:53:13 +0100347
348 if (use_cache) {
349 chk_zero(close(STDOUT_FILENO), "Close redirected STDOUT");
Lars Hjemli5b94c962007-05-14 22:58:01 +0200350 chk_positive(dup2(stdout2, STDOUT_FILENO),
Lars Hjemliab2ab952007-02-08 13:53:13 +0100351 "Restoring original STDOUT");
352 chk_zero(close(stdout2), "Closing temporary STDOUT");
353 }
Lars Hjemli25105d72006-12-10 22:31:36 +0100354}
355
Lars Hjemli44923f82006-12-11 17:25:41 +0100356static void cgit_check_cache(struct cacheitem *item)
Lars Hjemli25105d72006-12-10 22:31:36 +0100357{
Lars Hjemli318d1062006-12-11 12:10:12 +0100358 int i = 0;
359
Lars Hjemli25105d72006-12-10 22:31:36 +0100360 top:
Lars Hjemlib228d4f2008-02-16 13:07:13 +0100361 if (++i > ctx.cfg.max_lock_attempts) {
Lars Hjemli318d1062006-12-11 12:10:12 +0100362 die("cgit_refresh_cache: unable to lock %s: %s",
363 item->name, strerror(errno));
364 }
Lars Hjemlif5069d82006-12-11 09:57:58 +0100365 if (!cache_exist(item)) {
366 if (!cache_lock(item)) {
Lars Hjemli318d1062006-12-11 12:10:12 +0100367 sleep(1);
Lars Hjemli25105d72006-12-10 22:31:36 +0100368 goto top;
369 }
Lars Hjemlifbaf1172006-12-11 22:53:50 +0100370 if (!cache_exist(item)) {
Lars Hjemliab2ab952007-02-08 13:53:13 +0100371 cgit_fill_cache(item, 1);
Lars Hjemlifbaf1172006-12-11 22:53:50 +0100372 cache_unlock(item);
373 } else {
374 cache_cancel_lock(item);
375 }
Lars Hjemlif5069d82006-12-11 09:57:58 +0100376 } else if (cache_expired(item) && cache_lock(item)) {
Lars Hjemlifbaf1172006-12-11 22:53:50 +0100377 if (cache_expired(item)) {
Lars Hjemliab2ab952007-02-08 13:53:13 +0100378 cgit_fill_cache(item, 1);
Lars Hjemlifbaf1172006-12-11 22:53:50 +0100379 cache_unlock(item);
380 } else {
381 cache_cancel_lock(item);
382 }
Lars Hjemli25105d72006-12-10 22:31:36 +0100383 }
384}
385
386static void cgit_print_cache(struct cacheitem *item)
387{
388 static char buf[4096];
389 ssize_t i;
390
391 int fd = open(item->name, O_RDONLY);
392 if (fd<0)
393 die("Unable to open cached file %s", item->name);
394
395 while((i=read(fd, buf, sizeof(buf))) > 0)
396 write(STDOUT_FILENO, buf, i);
397
398 close(fd);
399}
400
Lars Hjemli521dc7a2006-12-16 13:33:32 +0100401static void cgit_parse_args(int argc, const char **argv)
402{
403 int i;
404
405 for (i = 1; i < argc; i++) {
Lars Hjemli521dc7a2006-12-16 13:33:32 +0100406 if (!strncmp(argv[i], "--cache=", 8)) {
Lars Hjemlib228d4f2008-02-16 13:07:13 +0100407 ctx.cfg.cache_root = xstrdup(argv[i]+8);
Lars Hjemli521dc7a2006-12-16 13:33:32 +0100408 }
409 if (!strcmp(argv[i], "--nocache")) {
Lars Hjemlib228d4f2008-02-16 13:07:13 +0100410 ctx.cfg.nocache = 1;
Lars Hjemli521dc7a2006-12-16 13:33:32 +0100411 }
412 if (!strncmp(argv[i], "--query=", 8)) {
Lars Hjemlid14d77f2008-02-16 11:53:40 +0100413 ctx.qry.raw = xstrdup(argv[i]+8);
Lars Hjemli521dc7a2006-12-16 13:33:32 +0100414 }
415 if (!strncmp(argv[i], "--repo=", 7)) {
Lars Hjemlid14d77f2008-02-16 11:53:40 +0100416 ctx.qry.repo = xstrdup(argv[i]+7);
Lars Hjemli521dc7a2006-12-16 13:33:32 +0100417 }
418 if (!strncmp(argv[i], "--page=", 7)) {
Lars Hjemlid14d77f2008-02-16 11:53:40 +0100419 ctx.qry.page = xstrdup(argv[i]+7);
Lars Hjemli521dc7a2006-12-16 13:33:32 +0100420 }
421 if (!strncmp(argv[i], "--head=", 7)) {
Lars Hjemlid14d77f2008-02-16 11:53:40 +0100422 ctx.qry.head = xstrdup(argv[i]+7);
423 ctx.qry.has_symref = 1;
Lars Hjemli521dc7a2006-12-16 13:33:32 +0100424 }
425 if (!strncmp(argv[i], "--sha1=", 7)) {
Lars Hjemlid14d77f2008-02-16 11:53:40 +0100426 ctx.qry.sha1 = xstrdup(argv[i]+7);
427 ctx.qry.has_sha1 = 1;
Lars Hjemli521dc7a2006-12-16 13:33:32 +0100428 }
429 if (!strncmp(argv[i], "--ofs=", 6)) {
Lars Hjemlid14d77f2008-02-16 11:53:40 +0100430 ctx.qry.ofs = atoi(argv[i]+6);
Lars Hjemli521dc7a2006-12-16 13:33:32 +0100431 }
432 }
433}
434
Lars Hjemli25105d72006-12-10 22:31:36 +0100435int main(int argc, const char **argv)
436{
Lars Hjemli44923f82006-12-11 17:25:41 +0100437 struct cacheitem item;
Michael Krelin51f65472007-07-02 02:29:12 +0200438 const char *cgit_config_env = getenv("CGIT_CONFIG");
Lars Hjemli44923f82006-12-11 17:25:41 +0100439
Lars Hjemli163037e2008-03-24 17:26:08 +0100440 prepare_context(&ctx);
Lars Hjemlice1c7332007-02-03 15:02:55 +0100441 item.st.st_mtime = time(NULL);
442 cgit_repolist.length = 0;
443 cgit_repolist.count = 0;
444 cgit_repolist.repos = NULL;
445
Lars Hjemli20a33542008-03-28 00:09:11 +0100446 parse_configfile(cgit_config_env ? cgit_config_env : CGIT_CONFIG,
Lars Hjemli163037e2008-03-24 17:26:08 +0100447 config_cb);
Lars Hjemlic6f74762008-04-08 21:27:12 +0200448 ctx.repo = NULL;
Lars Hjemliea2831f2007-05-15 00:48:31 +0200449 if (getenv("SCRIPT_NAME"))
Lars Hjemlib228d4f2008-02-16 13:07:13 +0100450 ctx.cfg.script_name = xstrdup(getenv("SCRIPT_NAME"));
Lars Hjemli521dc7a2006-12-16 13:33:32 +0100451 if (getenv("QUERY_STRING"))
Lars Hjemlid14d77f2008-02-16 11:53:40 +0100452 ctx.qry.raw = xstrdup(getenv("QUERY_STRING"));
Lars Hjemli521dc7a2006-12-16 13:33:32 +0100453 cgit_parse_args(argc, argv);
Lars Hjemlie87e8962008-04-08 21:11:36 +0200454 http_parse_querystring(ctx.qry.raw, querystring_cb);
Lars Hjemlice1c7332007-02-03 15:02:55 +0100455 if (!cgit_prepare_cache(&item))
456 return 0;
Lars Hjemlib228d4f2008-02-16 13:07:13 +0100457 if (ctx.cfg.nocache) {
Lars Hjemliab2ab952007-02-08 13:53:13 +0100458 cgit_fill_cache(&item, 0);
Lars Hjemli521dc7a2006-12-16 13:33:32 +0100459 } else {
460 cgit_check_cache(&item);
461 cgit_print_cache(&item);
462 }
Lars Hjemli0d169ad2006-12-09 15:18:17 +0100463 return 0;
464}