|
diff --git a/cgit.c b/cgit.c index c82587b..e09c86e 100644 --- a/ cgit.c+++ b/ cgit.c |
|
@@ -61,192 +61,194 @@ void config_cb(const char *name, const char *value) |
61 | else if (!strcmp(name, "cache-root-ttl")) |
61 | else if (!strcmp(name, "cache-root-ttl")) |
62 | ctx.cfg.cache_root_ttl = atoi(value); |
62 | ctx.cfg.cache_root_ttl = atoi(value); |
63 | else if (!strcmp(name, "cache-repo-ttl")) |
63 | else if (!strcmp(name, "cache-repo-ttl")) |
64 | ctx.cfg.cache_repo_ttl = atoi(value); |
64 | ctx.cfg.cache_repo_ttl = atoi(value); |
65 | else if (!strcmp(name, "cache-static-ttl")) |
65 | else if (!strcmp(name, "cache-static-ttl")) |
66 | ctx.cfg.cache_static_ttl = atoi(value); |
66 | ctx.cfg.cache_static_ttl = atoi(value); |
67 | else if (!strcmp(name, "cache-dynamic-ttl")) |
67 | else if (!strcmp(name, "cache-dynamic-ttl")) |
68 | ctx.cfg.cache_dynamic_ttl = atoi(value); |
68 | ctx.cfg.cache_dynamic_ttl = atoi(value); |
69 | else if (!strcmp(name, "max-message-length")) |
69 | else if (!strcmp(name, "max-message-length")) |
70 | ctx.cfg.max_msg_len = atoi(value); |
70 | ctx.cfg.max_msg_len = atoi(value); |
71 | else if (!strcmp(name, "max-repodesc-length")) |
71 | else if (!strcmp(name, "max-repodesc-length")) |
72 | ctx.cfg.max_repodesc_len = atoi(value); |
72 | ctx.cfg.max_repodesc_len = atoi(value); |
73 | else if (!strcmp(name, "max-repo-count")) |
73 | else if (!strcmp(name, "max-repo-count")) |
74 | ctx.cfg.max_repo_count = atoi(value); |
74 | ctx.cfg.max_repo_count = atoi(value); |
75 | else if (!strcmp(name, "max-commit-count")) |
75 | else if (!strcmp(name, "max-commit-count")) |
76 | ctx.cfg.max_commit_count = atoi(value); |
76 | ctx.cfg.max_commit_count = atoi(value); |
77 | else if (!strcmp(name, "summary-log")) |
77 | else if (!strcmp(name, "summary-log")) |
78 | ctx.cfg.summary_log = atoi(value); |
78 | ctx.cfg.summary_log = atoi(value); |
79 | else if (!strcmp(name, "summary-branches")) |
79 | else if (!strcmp(name, "summary-branches")) |
80 | ctx.cfg.summary_branches = atoi(value); |
80 | ctx.cfg.summary_branches = atoi(value); |
81 | else if (!strcmp(name, "summary-tags")) |
81 | else if (!strcmp(name, "summary-tags")) |
82 | ctx.cfg.summary_tags = atoi(value); |
82 | ctx.cfg.summary_tags = atoi(value); |
83 | else if (!strcmp(name, "agefile")) |
83 | else if (!strcmp(name, "agefile")) |
84 | ctx.cfg.agefile = xstrdup(value); |
84 | ctx.cfg.agefile = xstrdup(value); |
85 | else if (!strcmp(name, "renamelimit")) |
85 | else if (!strcmp(name, "renamelimit")) |
86 | ctx.cfg.renamelimit = atoi(value); |
86 | ctx.cfg.renamelimit = atoi(value); |
87 | else if (!strcmp(name, "robots")) |
87 | else if (!strcmp(name, "robots")) |
88 | ctx.cfg.robots = xstrdup(value); |
88 | ctx.cfg.robots = xstrdup(value); |
89 | else if (!strcmp(name, "clone-prefix")) |
89 | else if (!strcmp(name, "clone-prefix")) |
90 | ctx.cfg.clone_prefix = xstrdup(value); |
90 | ctx.cfg.clone_prefix = xstrdup(value); |
91 | else if (!strcmp(name, "local-time")) |
91 | else if (!strcmp(name, "local-time")) |
92 | ctx.cfg.local_time = atoi(value); |
92 | ctx.cfg.local_time = atoi(value); |
93 | else if (!strcmp(name, "repo.group")) |
93 | else if (!strcmp(name, "repo.group")) |
94 | ctx.cfg.repo_group = xstrdup(value); |
94 | ctx.cfg.repo_group = xstrdup(value); |
95 | else if (!strcmp(name, "repo.url")) |
95 | else if (!strcmp(name, "repo.url")) |
96 | ctx.repo = cgit_add_repo(value); |
96 | ctx.repo = cgit_add_repo(value); |
97 | else if (!strcmp(name, "repo.name")) |
97 | else if (!strcmp(name, "repo.name")) |
98 | ctx.repo->name = xstrdup(value); |
98 | ctx.repo->name = xstrdup(value); |
99 | else if (ctx.repo && !strcmp(name, "repo.path")) |
99 | else if (ctx.repo && !strcmp(name, "repo.path")) |
100 | ctx.repo->path = trim_end(value, '/'); |
100 | ctx.repo->path = trim_end(value, '/'); |
101 | else if (ctx.repo && !strcmp(name, "repo.clone-url")) |
101 | else if (ctx.repo && !strcmp(name, "repo.clone-url")) |
102 | ctx.repo->clone_url = xstrdup(value); |
102 | ctx.repo->clone_url = xstrdup(value); |
103 | else if (ctx.repo && !strcmp(name, "repo.desc")) |
103 | else if (ctx.repo && !strcmp(name, "repo.desc")) |
104 | ctx.repo->desc = xstrdup(value); |
104 | ctx.repo->desc = xstrdup(value); |
105 | else if (ctx.repo && !strcmp(name, "repo.owner")) |
105 | else if (ctx.repo && !strcmp(name, "repo.owner")) |
106 | ctx.repo->owner = xstrdup(value); |
106 | ctx.repo->owner = xstrdup(value); |
107 | else if (ctx.repo && !strcmp(name, "repo.defbranch")) |
107 | else if (ctx.repo && !strcmp(name, "repo.defbranch")) |
108 | ctx.repo->defbranch = xstrdup(value); |
108 | ctx.repo->defbranch = xstrdup(value); |
109 | else if (ctx.repo && !strcmp(name, "repo.snapshots")) |
109 | else if (ctx.repo && !strcmp(name, "repo.snapshots")) |
110 | ctx.repo->snapshots = ctx.cfg.snapshots & cgit_parse_snapshots_mask(value); /* XXX: &? */ |
110 | ctx.repo->snapshots = ctx.cfg.snapshots & cgit_parse_snapshots_mask(value); /* XXX: &? */ |
111 | else if (ctx.repo && !strcmp(name, "repo.enable-log-filecount")) |
111 | else if (ctx.repo && !strcmp(name, "repo.enable-log-filecount")) |
112 | ctx.repo->enable_log_filecount = ctx.cfg.enable_log_filecount * atoi(value); |
112 | ctx.repo->enable_log_filecount = ctx.cfg.enable_log_filecount * atoi(value); |
113 | else if (ctx.repo && !strcmp(name, "repo.enable-log-linecount")) |
113 | else if (ctx.repo && !strcmp(name, "repo.enable-log-linecount")) |
114 | ctx.repo->enable_log_linecount = ctx.cfg.enable_log_linecount * atoi(value); |
114 | ctx.repo->enable_log_linecount = ctx.cfg.enable_log_linecount * atoi(value); |
115 | else if (ctx.repo && !strcmp(name, "repo.module-link")) |
115 | else if (ctx.repo && !strcmp(name, "repo.module-link")) |
116 | ctx.repo->module_link= xstrdup(value); |
116 | ctx.repo->module_link= xstrdup(value); |
117 | else if (ctx.repo && !strcmp(name, "repo.readme") && value != NULL) { |
117 | else if (ctx.repo && !strcmp(name, "repo.readme") && value != NULL) { |
118 | if (*value == '/') |
118 | if (*value == '/') |
119 | ctx.repo->readme = xstrdup(value); |
119 | ctx.repo->readme = xstrdup(value); |
120 | else |
120 | else |
121 | ctx.repo->readme = xstrdup(fmt("%s/%s", ctx.repo->path, value)); |
121 | ctx.repo->readme = xstrdup(fmt("%s/%s", ctx.repo->path, value)); |
122 | } else if (!strcmp(name, "include")) |
122 | } else if (!strcmp(name, "include")) |
123 | parse_configfile(value, config_cb); |
123 | parse_configfile(value, config_cb); |
124 | } |
124 | } |
125 | |
125 | |
126 | static void querystring_cb(const char *name, const char *value) |
126 | static void querystring_cb(const char *name, const char *value) |
127 | { |
127 | { |
128 | if (!strcmp(name,"r")) { |
128 | if (!strcmp(name,"r")) { |
129 | ctx.qry.repo = xstrdup(value); |
129 | ctx.qry.repo = xstrdup(value); |
130 | ctx.repo = cgit_get_repoinfo(value); |
130 | ctx.repo = cgit_get_repoinfo(value); |
131 | } else if (!strcmp(name, "p")) { |
131 | } else if (!strcmp(name, "p")) { |
132 | ctx.qry.page = xstrdup(value); |
132 | ctx.qry.page = xstrdup(value); |
133 | } else if (!strcmp(name, "url")) { |
133 | } else if (!strcmp(name, "url")) { |
134 | ctx.qry.url = xstrdup(value); |
134 | ctx.qry.url = xstrdup(value); |
135 | cgit_parse_url(value); |
135 | cgit_parse_url(value); |
136 | } else if (!strcmp(name, "qt")) { |
136 | } else if (!strcmp(name, "qt")) { |
137 | ctx.qry.grep = xstrdup(value); |
137 | ctx.qry.grep = xstrdup(value); |
138 | } else if (!strcmp(name, "q")) { |
138 | } else if (!strcmp(name, "q")) { |
139 | ctx.qry.search = xstrdup(value); |
139 | ctx.qry.search = xstrdup(value); |
140 | } else if (!strcmp(name, "h")) { |
140 | } else if (!strcmp(name, "h")) { |
141 | ctx.qry.head = xstrdup(value); |
141 | ctx.qry.head = xstrdup(value); |
142 | ctx.qry.has_symref = 1; |
142 | ctx.qry.has_symref = 1; |
143 | } else if (!strcmp(name, "id")) { |
143 | } else if (!strcmp(name, "id")) { |
144 | ctx.qry.sha1 = xstrdup(value); |
144 | ctx.qry.sha1 = xstrdup(value); |
145 | ctx.qry.has_sha1 = 1; |
145 | ctx.qry.has_sha1 = 1; |
146 | } else if (!strcmp(name, "id2")) { |
146 | } else if (!strcmp(name, "id2")) { |
147 | ctx.qry.sha2 = xstrdup(value); |
147 | ctx.qry.sha2 = xstrdup(value); |
148 | ctx.qry.has_sha1 = 1; |
148 | ctx.qry.has_sha1 = 1; |
149 | } else if (!strcmp(name, "ofs")) { |
149 | } else if (!strcmp(name, "ofs")) { |
150 | ctx.qry.ofs = atoi(value); |
150 | ctx.qry.ofs = atoi(value); |
151 | } else if (!strcmp(name, "path")) { |
151 | } else if (!strcmp(name, "path")) { |
152 | ctx.qry.path = trim_end(value, '/'); |
152 | ctx.qry.path = trim_end(value, '/'); |
153 | } else if (!strcmp(name, "name")) { |
153 | } else if (!strcmp(name, "name")) { |
154 | ctx.qry.name = xstrdup(value); |
154 | ctx.qry.name = xstrdup(value); |
155 | } else if (!strcmp(name, "mimetype")) { |
155 | } else if (!strcmp(name, "mimetype")) { |
156 | ctx.qry.mimetype = xstrdup(value); |
156 | ctx.qry.mimetype = xstrdup(value); |
| |
157 | } else if (!strcmp(name, "s")){ |
| |
158 | ctx.qry.sort = xstrdup(value); |
157 | } |
159 | } |
158 | } |
160 | } |
159 | |
161 | |
160 | static void prepare_context(struct cgit_context *ctx) |
162 | static void prepare_context(struct cgit_context *ctx) |
161 | { |
163 | { |
162 | memset(ctx, 0, sizeof(ctx)); |
164 | memset(ctx, 0, sizeof(ctx)); |
163 | ctx->cfg.agefile = "info/web/last-modified"; |
165 | ctx->cfg.agefile = "info/web/last-modified"; |
164 | ctx->cfg.nocache = 0; |
166 | ctx->cfg.nocache = 0; |
165 | ctx->cfg.cache_size = 0; |
167 | ctx->cfg.cache_size = 0; |
166 | ctx->cfg.cache_dynamic_ttl = 5; |
168 | ctx->cfg.cache_dynamic_ttl = 5; |
167 | ctx->cfg.cache_max_create_time = 5; |
169 | ctx->cfg.cache_max_create_time = 5; |
168 | ctx->cfg.cache_repo_ttl = 5; |
170 | ctx->cfg.cache_repo_ttl = 5; |
169 | ctx->cfg.cache_root = CGIT_CACHE_ROOT; |
171 | ctx->cfg.cache_root = CGIT_CACHE_ROOT; |
170 | ctx->cfg.cache_root_ttl = 5; |
172 | ctx->cfg.cache_root_ttl = 5; |
171 | ctx->cfg.cache_static_ttl = -1; |
173 | ctx->cfg.cache_static_ttl = -1; |
172 | ctx->cfg.css = "/cgit.css"; |
174 | ctx->cfg.css = "/cgit.css"; |
173 | ctx->cfg.logo = "/git-logo.png"; |
175 | ctx->cfg.logo = "/git-logo.png"; |
174 | ctx->cfg.local_time = 0; |
176 | ctx->cfg.local_time = 0; |
175 | ctx->cfg.max_repo_count = 50; |
177 | ctx->cfg.max_repo_count = 50; |
176 | ctx->cfg.max_commit_count = 50; |
178 | ctx->cfg.max_commit_count = 50; |
177 | ctx->cfg.max_lock_attempts = 5; |
179 | ctx->cfg.max_lock_attempts = 5; |
178 | ctx->cfg.max_msg_len = 80; |
180 | ctx->cfg.max_msg_len = 80; |
179 | ctx->cfg.max_repodesc_len = 80; |
181 | ctx->cfg.max_repodesc_len = 80; |
180 | ctx->cfg.module_link = "./?repo=%s&page=commit&id=%s"; |
182 | ctx->cfg.module_link = "./?repo=%s&page=commit&id=%s"; |
181 | ctx->cfg.renamelimit = -1; |
183 | ctx->cfg.renamelimit = -1; |
182 | ctx->cfg.robots = "index, nofollow"; |
184 | ctx->cfg.robots = "index, nofollow"; |
183 | ctx->cfg.root_title = "Git repository browser"; |
185 | ctx->cfg.root_title = "Git repository browser"; |
184 | ctx->cfg.root_desc = "a fast webinterface for the git dscm"; |
186 | ctx->cfg.root_desc = "a fast webinterface for the git dscm"; |
185 | ctx->cfg.script_name = CGIT_SCRIPT_NAME; |
187 | ctx->cfg.script_name = CGIT_SCRIPT_NAME; |
186 | ctx->cfg.summary_branches = 10; |
188 | ctx->cfg.summary_branches = 10; |
187 | ctx->cfg.summary_log = 10; |
189 | ctx->cfg.summary_log = 10; |
188 | ctx->cfg.summary_tags = 10; |
190 | ctx->cfg.summary_tags = 10; |
189 | ctx->page.mimetype = "text/html"; |
191 | ctx->page.mimetype = "text/html"; |
190 | ctx->page.charset = PAGE_ENCODING; |
192 | ctx->page.charset = PAGE_ENCODING; |
191 | ctx->page.filename = NULL; |
193 | ctx->page.filename = NULL; |
192 | ctx->page.size = 0; |
194 | ctx->page.size = 0; |
193 | ctx->page.modified = time(NULL); |
195 | ctx->page.modified = time(NULL); |
194 | ctx->page.expires = ctx->page.modified; |
196 | ctx->page.expires = ctx->page.modified; |
195 | } |
197 | } |
196 | |
198 | |
197 | struct refmatch { |
199 | struct refmatch { |
198 | char *req_ref; |
200 | char *req_ref; |
199 | char *first_ref; |
201 | char *first_ref; |
200 | int match; |
202 | int match; |
201 | }; |
203 | }; |
202 | |
204 | |
203 | int find_current_ref(const char *refname, const unsigned char *sha1, |
205 | int find_current_ref(const char *refname, const unsigned char *sha1, |
204 | int flags, void *cb_data) |
206 | int flags, void *cb_data) |
205 | { |
207 | { |
206 | struct refmatch *info; |
208 | struct refmatch *info; |
207 | |
209 | |
208 | info = (struct refmatch *)cb_data; |
210 | info = (struct refmatch *)cb_data; |
209 | if (!strcmp(refname, info->req_ref)) |
211 | if (!strcmp(refname, info->req_ref)) |
210 | info->match = 1; |
212 | info->match = 1; |
211 | if (!info->first_ref) |
213 | if (!info->first_ref) |
212 | info->first_ref = xstrdup(refname); |
214 | info->first_ref = xstrdup(refname); |
213 | return info->match; |
215 | return info->match; |
214 | } |
216 | } |
215 | |
217 | |
216 | char *find_default_branch(struct cgit_repo *repo) |
218 | char *find_default_branch(struct cgit_repo *repo) |
217 | { |
219 | { |
218 | struct refmatch info; |
220 | struct refmatch info; |
219 | char *ref; |
221 | char *ref; |
220 | |
222 | |
221 | info.req_ref = repo->defbranch; |
223 | info.req_ref = repo->defbranch; |
222 | info.first_ref = NULL; |
224 | info.first_ref = NULL; |
223 | info.match = 0; |
225 | info.match = 0; |
224 | for_each_branch_ref(find_current_ref, &info); |
226 | for_each_branch_ref(find_current_ref, &info); |
225 | if (info.match) |
227 | if (info.match) |
226 | ref = info.req_ref; |
228 | ref = info.req_ref; |
227 | else |
229 | else |
228 | ref = info.first_ref; |
230 | ref = info.first_ref; |
229 | if (ref) |
231 | if (ref) |
230 | ref = xstrdup(ref); |
232 | ref = xstrdup(ref); |
231 | return ref; |
233 | return ref; |
232 | } |
234 | } |
233 | |
235 | |
234 | static int prepare_repo_cmd(struct cgit_context *ctx) |
236 | static int prepare_repo_cmd(struct cgit_context *ctx) |
235 | { |
237 | { |
236 | char *tmp; |
238 | char *tmp; |
237 | unsigned char sha1[20]; |
239 | unsigned char sha1[20]; |
238 | int nongit = 0; |
240 | int nongit = 0; |
239 | |
241 | |
240 | setenv("GIT_DIR", ctx->repo->path, 1); |
242 | setenv("GIT_DIR", ctx->repo->path, 1); |
241 | setup_git_directory_gently(&nongit); |
243 | setup_git_directory_gently(&nongit); |
242 | if (nongit) { |
244 | if (nongit) { |
243 | ctx->page.title = fmt("%s - %s", ctx->cfg.root_title, |
245 | ctx->page.title = fmt("%s - %s", ctx->cfg.root_title, |
244 | "config error"); |
246 | "config error"); |
245 | tmp = fmt("Not a git repository: '%s'", ctx->repo->path); |
247 | tmp = fmt("Not a git repository: '%s'", ctx->repo->path); |
246 | ctx->repo = NULL; |
248 | ctx->repo = NULL; |
247 | cgit_print_http_headers(ctx); |
249 | cgit_print_http_headers(ctx); |
248 | cgit_print_docstart(ctx); |
250 | cgit_print_docstart(ctx); |
249 | cgit_print_pageheader(ctx); |
251 | cgit_print_pageheader(ctx); |
250 | cgit_print_error(tmp); |
252 | cgit_print_error(tmp); |
251 | cgit_print_docend(); |
253 | cgit_print_docend(); |
252 | return 1; |
254 | return 1; |
|