|
diff --git a/cgit.c b/cgit.c index 1f46e0d..763242a 100644 --- a/ cgit.c+++ b/ cgit.c |
|
@@ -1,60 +1,61 @@ |
1 | /* cgit.c: cgi for the git scm |
1 | /* cgit.c: cgi for the git scm |
2 | * |
2 | * |
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 "ui-shared.h" |
14 | #include "ui-shared.h" |
14 | |
15 | |
15 | const char *cgit_version = CGIT_VERSION; |
16 | const char *cgit_version = CGIT_VERSION; |
16 | |
17 | |
17 | void config_cb(const char *name, const char *value) |
18 | void config_cb(const char *name, const char *value) |
18 | { |
19 | { |
19 | if (!strcmp(name, "root-title")) |
20 | if (!strcmp(name, "root-title")) |
20 | ctx.cfg.root_title = xstrdup(value); |
21 | ctx.cfg.root_title = xstrdup(value); |
21 | else if (!strcmp(name, "css")) |
22 | else if (!strcmp(name, "css")) |
22 | ctx.cfg.css = xstrdup(value); |
23 | ctx.cfg.css = xstrdup(value); |
23 | else if (!strcmp(name, "logo")) |
24 | else if (!strcmp(name, "logo")) |
24 | ctx.cfg.logo = xstrdup(value); |
25 | ctx.cfg.logo = xstrdup(value); |
25 | else if (!strcmp(name, "index-header")) |
26 | else if (!strcmp(name, "index-header")) |
26 | ctx.cfg.index_header = xstrdup(value); |
27 | ctx.cfg.index_header = xstrdup(value); |
27 | else if (!strcmp(name, "index-info")) |
28 | else if (!strcmp(name, "index-info")) |
28 | ctx.cfg.index_info = xstrdup(value); |
29 | ctx.cfg.index_info = xstrdup(value); |
29 | else if (!strcmp(name, "logo-link")) |
30 | else if (!strcmp(name, "logo-link")) |
30 | ctx.cfg.logo_link = xstrdup(value); |
31 | ctx.cfg.logo_link = xstrdup(value); |
31 | else if (!strcmp(name, "module-link")) |
32 | else if (!strcmp(name, "module-link")) |
32 | ctx.cfg.module_link = xstrdup(value); |
33 | ctx.cfg.module_link = xstrdup(value); |
33 | else if (!strcmp(name, "virtual-root")) { |
34 | else if (!strcmp(name, "virtual-root")) { |
34 | ctx.cfg.virtual_root = trim_end(value, '/'); |
35 | ctx.cfg.virtual_root = trim_end(value, '/'); |
35 | if (!ctx.cfg.virtual_root && (!strcmp(value, "/"))) |
36 | if (!ctx.cfg.virtual_root && (!strcmp(value, "/"))) |
36 | ctx.cfg.virtual_root = ""; |
37 | ctx.cfg.virtual_root = ""; |
37 | } else if (!strcmp(name, "nocache")) |
38 | } else if (!strcmp(name, "nocache")) |
38 | ctx.cfg.nocache = atoi(value); |
39 | ctx.cfg.nocache = atoi(value); |
39 | else if (!strcmp(name, "snapshots")) |
40 | else if (!strcmp(name, "snapshots")) |
40 | ctx.cfg.snapshots = cgit_parse_snapshots_mask(value); |
41 | ctx.cfg.snapshots = cgit_parse_snapshots_mask(value); |
41 | else if (!strcmp(name, "enable-index-links")) |
42 | else if (!strcmp(name, "enable-index-links")) |
42 | ctx.cfg.enable_index_links = atoi(value); |
43 | ctx.cfg.enable_index_links = atoi(value); |
43 | else if (!strcmp(name, "enable-log-filecount")) |
44 | else if (!strcmp(name, "enable-log-filecount")) |
44 | ctx.cfg.enable_log_filecount = atoi(value); |
45 | ctx.cfg.enable_log_filecount = atoi(value); |
45 | else if (!strcmp(name, "enable-log-linecount")) |
46 | else if (!strcmp(name, "enable-log-linecount")) |
46 | ctx.cfg.enable_log_linecount = atoi(value); |
47 | ctx.cfg.enable_log_linecount = atoi(value); |
47 | else if (!strcmp(name, "cache-root")) |
48 | else if (!strcmp(name, "cache-root")) |
48 | ctx.cfg.cache_root = xstrdup(value); |
49 | ctx.cfg.cache_root = xstrdup(value); |
49 | else if (!strcmp(name, "cache-root-ttl")) |
50 | else if (!strcmp(name, "cache-root-ttl")) |
50 | ctx.cfg.cache_root_ttl = atoi(value); |
51 | ctx.cfg.cache_root_ttl = atoi(value); |
51 | else if (!strcmp(name, "cache-repo-ttl")) |
52 | else if (!strcmp(name, "cache-repo-ttl")) |
52 | ctx.cfg.cache_repo_ttl = atoi(value); |
53 | ctx.cfg.cache_repo_ttl = atoi(value); |
53 | else if (!strcmp(name, "cache-static-ttl")) |
54 | else if (!strcmp(name, "cache-static-ttl")) |
54 | ctx.cfg.cache_static_ttl = atoi(value); |
55 | ctx.cfg.cache_static_ttl = atoi(value); |
55 | else if (!strcmp(name, "cache-dynamic-ttl")) |
56 | else if (!strcmp(name, "cache-dynamic-ttl")) |
56 | ctx.cfg.cache_dynamic_ttl = atoi(value); |
57 | ctx.cfg.cache_dynamic_ttl = atoi(value); |
57 | else if (!strcmp(name, "max-message-length")) |
58 | else if (!strcmp(name, "max-message-length")) |
58 | ctx.cfg.max_msg_len = atoi(value); |
59 | ctx.cfg.max_msg_len = atoi(value); |
59 | else if (!strcmp(name, "max-repodesc-length")) |
60 | else if (!strcmp(name, "max-repodesc-length")) |
60 | ctx.cfg.max_repodesc_len = atoi(value); |
61 | ctx.cfg.max_repodesc_len = atoi(value); |
@@ -399,59 +400,59 @@ static void cgit_parse_args(int argc, const char **argv) |
399 | for (i = 1; i < argc; i++) { |
400 | for (i = 1; i < argc; i++) { |
400 | if (!strncmp(argv[i], "--cache=", 8)) { |
401 | if (!strncmp(argv[i], "--cache=", 8)) { |
401 | ctx.cfg.cache_root = xstrdup(argv[i]+8); |
402 | ctx.cfg.cache_root = xstrdup(argv[i]+8); |
402 | } |
403 | } |
403 | if (!strcmp(argv[i], "--nocache")) { |
404 | if (!strcmp(argv[i], "--nocache")) { |
404 | ctx.cfg.nocache = 1; |
405 | ctx.cfg.nocache = 1; |
405 | } |
406 | } |
406 | if (!strncmp(argv[i], "--query=", 8)) { |
407 | if (!strncmp(argv[i], "--query=", 8)) { |
407 | ctx.qry.raw = xstrdup(argv[i]+8); |
408 | ctx.qry.raw = xstrdup(argv[i]+8); |
408 | } |
409 | } |
409 | if (!strncmp(argv[i], "--repo=", 7)) { |
410 | if (!strncmp(argv[i], "--repo=", 7)) { |
410 | ctx.qry.repo = xstrdup(argv[i]+7); |
411 | ctx.qry.repo = xstrdup(argv[i]+7); |
411 | } |
412 | } |
412 | if (!strncmp(argv[i], "--page=", 7)) { |
413 | if (!strncmp(argv[i], "--page=", 7)) { |
413 | ctx.qry.page = xstrdup(argv[i]+7); |
414 | ctx.qry.page = xstrdup(argv[i]+7); |
414 | } |
415 | } |
415 | if (!strncmp(argv[i], "--head=", 7)) { |
416 | if (!strncmp(argv[i], "--head=", 7)) { |
416 | ctx.qry.head = xstrdup(argv[i]+7); |
417 | ctx.qry.head = xstrdup(argv[i]+7); |
417 | ctx.qry.has_symref = 1; |
418 | ctx.qry.has_symref = 1; |
418 | } |
419 | } |
419 | if (!strncmp(argv[i], "--sha1=", 7)) { |
420 | if (!strncmp(argv[i], "--sha1=", 7)) { |
420 | ctx.qry.sha1 = xstrdup(argv[i]+7); |
421 | ctx.qry.sha1 = xstrdup(argv[i]+7); |
421 | ctx.qry.has_sha1 = 1; |
422 | ctx.qry.has_sha1 = 1; |
422 | } |
423 | } |
423 | if (!strncmp(argv[i], "--ofs=", 6)) { |
424 | if (!strncmp(argv[i], "--ofs=", 6)) { |
424 | ctx.qry.ofs = atoi(argv[i]+6); |
425 | ctx.qry.ofs = atoi(argv[i]+6); |
425 | } |
426 | } |
426 | } |
427 | } |
427 | } |
428 | } |
428 | |
429 | |
429 | int main(int argc, const char **argv) |
430 | int main(int argc, const char **argv) |
430 | { |
431 | { |
431 | struct cacheitem item; |
432 | struct cacheitem item; |
432 | const char *cgit_config_env = getenv("CGIT_CONFIG"); |
433 | const char *cgit_config_env = getenv("CGIT_CONFIG"); |
433 | |
434 | |
434 | prepare_context(&ctx); |
435 | prepare_context(&ctx); |
435 | item.st.st_mtime = time(NULL); |
436 | item.st.st_mtime = time(NULL); |
436 | cgit_repolist.length = 0; |
437 | cgit_repolist.length = 0; |
437 | cgit_repolist.count = 0; |
438 | cgit_repolist.count = 0; |
438 | cgit_repolist.repos = NULL; |
439 | cgit_repolist.repos = NULL; |
439 | |
440 | |
440 | parse_configfile(cgit_config_env ? cgit_config_env : CGIT_CONFIG, |
441 | parse_configfile(cgit_config_env ? cgit_config_env : CGIT_CONFIG, |
441 | config_cb); |
442 | config_cb); |
442 | if (getenv("SCRIPT_NAME")) |
443 | if (getenv("SCRIPT_NAME")) |
443 | ctx.cfg.script_name = xstrdup(getenv("SCRIPT_NAME")); |
444 | ctx.cfg.script_name = xstrdup(getenv("SCRIPT_NAME")); |
444 | if (getenv("QUERY_STRING")) |
445 | if (getenv("QUERY_STRING")) |
445 | ctx.qry.raw = xstrdup(getenv("QUERY_STRING")); |
446 | ctx.qry.raw = xstrdup(getenv("QUERY_STRING")); |
446 | cgit_parse_args(argc, argv); |
447 | cgit_parse_args(argc, argv); |
447 | cgit_parse_query(ctx.qry.raw, querystring_cb); |
448 | http_parse_querystring(ctx.qry.raw, querystring_cb); |
448 | if (!cgit_prepare_cache(&item)) |
449 | if (!cgit_prepare_cache(&item)) |
449 | return 0; |
450 | return 0; |
450 | if (ctx.cfg.nocache) { |
451 | if (ctx.cfg.nocache) { |
451 | cgit_fill_cache(&item, 0); |
452 | cgit_fill_cache(&item, 0); |
452 | } else { |
453 | } else { |
453 | cgit_check_cache(&item); |
454 | cgit_check_cache(&item); |
454 | cgit_print_cache(&item); |
455 | cgit_print_cache(&item); |
455 | } |
456 | } |
456 | return 0; |
457 | return 0; |
457 | } |
458 | } |
|
|
diff --git a/cgit.h b/cgit.h index 91d18f8..ee8c716 100644 --- a/ cgit.h+++ b/ cgit.h |
|
@@ -146,81 +146,79 @@ struct cgit_config { |
146 | int max_lock_attempts; |
146 | int max_lock_attempts; |
147 | int max_msg_len; |
147 | int max_msg_len; |
148 | int max_repodesc_len; |
148 | int max_repodesc_len; |
149 | int nocache; |
149 | int nocache; |
150 | int renamelimit; |
150 | int renamelimit; |
151 | int snapshots; |
151 | int snapshots; |
152 | int summary_branches; |
152 | int summary_branches; |
153 | int summary_log; |
153 | int summary_log; |
154 | int summary_tags; |
154 | int summary_tags; |
155 | }; |
155 | }; |
156 | |
156 | |
157 | struct cgit_page { |
157 | struct cgit_page { |
158 | time_t modified; |
158 | time_t modified; |
159 | time_t expires; |
159 | time_t expires; |
160 | char *mimetype; |
160 | char *mimetype; |
161 | char *charset; |
161 | char *charset; |
162 | char *filename; |
162 | char *filename; |
163 | char *title; |
163 | char *title; |
164 | }; |
164 | }; |
165 | |
165 | |
166 | struct cgit_context { |
166 | struct cgit_context { |
167 | struct cgit_query qry; |
167 | struct cgit_query qry; |
168 | struct cgit_config cfg; |
168 | struct cgit_config cfg; |
169 | struct cgit_repo *repo; |
169 | struct cgit_repo *repo; |
170 | struct cgit_page page; |
170 | struct cgit_page page; |
171 | }; |
171 | }; |
172 | |
172 | |
173 | struct cgit_snapshot_format { |
173 | struct cgit_snapshot_format { |
174 | const char *suffix; |
174 | const char *suffix; |
175 | const char *mimetype; |
175 | const char *mimetype; |
176 | write_archive_fn_t write_func; |
176 | write_archive_fn_t write_func; |
177 | int bit; |
177 | int bit; |
178 | }; |
178 | }; |
179 | |
179 | |
180 | extern const char *cgit_version; |
180 | extern const char *cgit_version; |
181 | |
181 | |
182 | extern struct cgit_repolist cgit_repolist; |
182 | extern struct cgit_repolist cgit_repolist; |
183 | extern struct cgit_context ctx; |
183 | extern struct cgit_context ctx; |
184 | extern const struct cgit_snapshot_format cgit_snapshot_formats[]; |
184 | extern const struct cgit_snapshot_format cgit_snapshot_formats[]; |
185 | |
185 | |
186 | extern struct cgit_repo *cgit_add_repo(const char *url); |
186 | extern struct cgit_repo *cgit_add_repo(const char *url); |
187 | extern struct cgit_repo *cgit_get_repoinfo(const char *url); |
187 | extern struct cgit_repo *cgit_get_repoinfo(const char *url); |
188 | extern void cgit_repo_config_cb(const char *name, const char *value); |
188 | extern void cgit_repo_config_cb(const char *name, const char *value); |
189 | |
189 | |
190 | extern int chk_zero(int result, char *msg); |
190 | extern int chk_zero(int result, char *msg); |
191 | extern int chk_positive(int result, char *msg); |
191 | extern int chk_positive(int result, char *msg); |
192 | extern int chk_non_negative(int result, char *msg); |
192 | extern int chk_non_negative(int result, char *msg); |
193 | |
193 | |
194 | extern int hextoint(char c); |
| |
195 | extern char *trim_end(const char *str, char c); |
194 | extern char *trim_end(const char *str, char c); |
196 | extern char *strlpart(char *txt, int maxlen); |
195 | extern char *strlpart(char *txt, int maxlen); |
197 | extern char *strrpart(char *txt, int maxlen); |
196 | extern char *strrpart(char *txt, int maxlen); |
198 | |
197 | |
199 | extern void cgit_add_ref(struct reflist *list, struct refinfo *ref); |
198 | extern void cgit_add_ref(struct reflist *list, struct refinfo *ref); |
200 | extern int cgit_refs_cb(const char *refname, const unsigned char *sha1, |
199 | extern int cgit_refs_cb(const char *refname, const unsigned char *sha1, |
201 | int flags, void *cb_data); |
200 | int flags, void *cb_data); |
202 | |
201 | |
203 | extern void *cgit_free_commitinfo(struct commitinfo *info); |
202 | extern void *cgit_free_commitinfo(struct commitinfo *info); |
204 | |
203 | |
205 | extern int cgit_diff_files(const unsigned char *old_sha1, |
204 | extern int cgit_diff_files(const unsigned char *old_sha1, |
206 | const unsigned char *new_sha1, |
205 | const unsigned char *new_sha1, |
207 | linediff_fn fn); |
206 | linediff_fn fn); |
208 | |
207 | |
209 | extern void cgit_diff_tree(const unsigned char *old_sha1, |
208 | extern void cgit_diff_tree(const unsigned char *old_sha1, |
210 | const unsigned char *new_sha1, |
209 | const unsigned char *new_sha1, |
211 | filepair_fn fn, const char *prefix); |
210 | filepair_fn fn, const char *prefix); |
212 | |
211 | |
213 | extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); |
212 | extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); |
214 | |
213 | |
215 | extern char *fmt(const char *format,...); |
214 | extern char *fmt(const char *format,...); |
216 | |
215 | |
217 | extern int cgit_parse_query(char *txt, configfn fn); |
| |
218 | extern struct commitinfo *cgit_parse_commit(struct commit *commit); |
216 | extern struct commitinfo *cgit_parse_commit(struct commit *commit); |
219 | extern struct taginfo *cgit_parse_tag(struct tag *tag); |
217 | extern struct taginfo *cgit_parse_tag(struct tag *tag); |
220 | extern void cgit_parse_url(const char *url); |
218 | extern void cgit_parse_url(const char *url); |
221 | |
219 | |
222 | extern const char *cgit_repobasename(const char *reponame); |
220 | extern const char *cgit_repobasename(const char *reponame); |
223 | |
221 | |
224 | extern int cgit_parse_snapshots_mask(const char *str); |
222 | extern int cgit_parse_snapshots_mask(const char *str); |
225 | |
223 | |
226 | #endif /* CGIT_H */ |
224 | #endif /* CGIT_H */ |
|
|
diff --git a/html.c b/html.c index 0962e71..98ffaf9 100644 --- a/ html.c+++ b/ html.c |
|
@@ -140,48 +140,112 @@ void html_option(char *value, char *text, char *selected_value) |
140 | html_attr(value); |
140 | html_attr(value); |
141 | html("'"); |
141 | html("'"); |
142 | if (selected_value && !strcmp(selected_value, value)) |
142 | if (selected_value && !strcmp(selected_value, value)) |
143 | html(" selected='selected'"); |
143 | html(" selected='selected'"); |
144 | html(">"); |
144 | html(">"); |
145 | html_txt(text); |
145 | html_txt(text); |
146 | html("</option>\n"); |
146 | html("</option>\n"); |
147 | } |
147 | } |
148 | |
148 | |
149 | void html_link_open(char *url, char *title, char *class) |
149 | void html_link_open(char *url, char *title, char *class) |
150 | { |
150 | { |
151 | html("<a href='"); |
151 | html("<a href='"); |
152 | html_attr(url); |
152 | html_attr(url); |
153 | if (title) { |
153 | if (title) { |
154 | html("' title='"); |
154 | html("' title='"); |
155 | html_attr(title); |
155 | html_attr(title); |
156 | } |
156 | } |
157 | if (class) { |
157 | if (class) { |
158 | html("' class='"); |
158 | html("' class='"); |
159 | html_attr(class); |
159 | html_attr(class); |
160 | } |
160 | } |
161 | html("'>"); |
161 | html("'>"); |
162 | } |
162 | } |
163 | |
163 | |
164 | void html_link_close(void) |
164 | void html_link_close(void) |
165 | { |
165 | { |
166 | html("</a>"); |
166 | html("</a>"); |
167 | } |
167 | } |
168 | |
168 | |
169 | void html_fileperm(unsigned short mode) |
169 | void html_fileperm(unsigned short mode) |
170 | { |
170 | { |
171 | htmlf("%c%c%c", (mode & 4 ? 'r' : '-'), |
171 | htmlf("%c%c%c", (mode & 4 ? 'r' : '-'), |
172 | (mode & 2 ? 'w' : '-'), (mode & 1 ? 'x' : '-')); |
172 | (mode & 2 ? 'w' : '-'), (mode & 1 ? 'x' : '-')); |
173 | } |
173 | } |
174 | |
174 | |
175 | int html_include(const char *filename) |
175 | int html_include(const char *filename) |
176 | { |
176 | { |
177 | FILE *f; |
177 | FILE *f; |
178 | char buf[4096]; |
178 | char buf[4096]; |
179 | size_t len; |
179 | size_t len; |
180 | |
180 | |
181 | if (!(f = fopen(filename, "r"))) |
181 | if (!(f = fopen(filename, "r"))) |
182 | return -1; |
182 | return -1; |
183 | while((len = fread(buf, 1, 4096, f)) > 0) |
183 | while((len = fread(buf, 1, 4096, f)) > 0) |
184 | write(htmlfd, buf, len); |
184 | write(htmlfd, buf, len); |
185 | fclose(f); |
185 | fclose(f); |
186 | return 0; |
186 | return 0; |
187 | } |
187 | } |
| |
188 | |
| |
189 | int hextoint(char c) |
| |
190 | { |
| |
191 | if (c >= 'a' && c <= 'f') |
| |
192 | return 10 + c - 'a'; |
| |
193 | else if (c >= 'A' && c <= 'F') |
| |
194 | return 10 + c - 'A'; |
| |
195 | else if (c >= '0' && c <= '9') |
| |
196 | return c - '0'; |
| |
197 | else |
| |
198 | return -1; |
| |
199 | } |
| |
200 | |
| |
201 | char *convert_query_hexchar(char *txt) |
| |
202 | { |
| |
203 | int d1, d2; |
| |
204 | if (strlen(txt) < 3) { |
| |
205 | *txt = '\0'; |
| |
206 | return txt-1; |
| |
207 | } |
| |
208 | d1 = hextoint(*(txt+1)); |
| |
209 | d2 = hextoint(*(txt+2)); |
| |
210 | if (d1<0 || d2<0) { |
| |
211 | strcpy(txt, txt+3); |
| |
212 | return txt-1; |
| |
213 | } else { |
| |
214 | *txt = d1 * 16 + d2; |
| |
215 | strcpy(txt+1, txt+3); |
| |
216 | return txt; |
| |
217 | } |
| |
218 | } |
| |
219 | |
| |
220 | int http_parse_querystring(char *txt, void (*fn)(const char *name, const char *value)) |
| |
221 | { |
| |
222 | char *t, *value = NULL, c; |
| |
223 | |
| |
224 | if (!txt) |
| |
225 | return 0; |
| |
226 | |
| |
227 | t = txt = strdup(txt); |
| |
228 | if (t == NULL) { |
| |
229 | printf("Out of memory\n"); |
| |
230 | exit(1); |
| |
231 | } |
| |
232 | while((c=*t) != '\0') { |
| |
233 | if (c=='=') { |
| |
234 | *t = '\0'; |
| |
235 | value = t+1; |
| |
236 | } else if (c=='+') { |
| |
237 | *t = ' '; |
| |
238 | } else if (c=='%') { |
| |
239 | t = convert_query_hexchar(t); |
| |
240 | } else if (c=='&') { |
| |
241 | *t = '\0'; |
| |
242 | (*fn)(txt, value); |
| |
243 | txt = t+1; |
| |
244 | value = NULL; |
| |
245 | } |
| |
246 | t++; |
| |
247 | } |
| |
248 | if (t!=txt) |
| |
249 | (*fn)(txt, value); |
| |
250 | return 0; |
| |
251 | } |
|
|
diff --git a/html.h b/html.h index 63f4551..e6fdc54 100644 --- a/ html.h+++ b/ html.h |
|
@@ -1,18 +1,20 @@ |
1 | #ifndef HTML_H |
1 | #ifndef HTML_H |
2 | #define HTML_H |
2 | #define HTML_H |
3 | |
3 | |
4 | extern int htmlfd; |
4 | extern int htmlfd; |
5 | |
5 | |
6 | extern void html(const char *txt); |
6 | extern void html(const char *txt); |
7 | extern void htmlf(const char *format,...); |
7 | extern void htmlf(const char *format,...); |
8 | extern void html_txt(char *txt); |
8 | extern void html_txt(char *txt); |
9 | extern void html_ntxt(int len, char *txt); |
9 | extern void html_ntxt(int len, char *txt); |
10 | extern void html_attr(char *txt); |
10 | extern void html_attr(char *txt); |
11 | extern void html_hidden(char *name, char *value); |
11 | extern void html_hidden(char *name, char *value); |
12 | extern void html_option(char *value, char *text, char *selected_value); |
12 | extern void html_option(char *value, char *text, char *selected_value); |
13 | extern void html_link_open(char *url, char *title, char *class); |
13 | extern void html_link_open(char *url, char *title, char *class); |
14 | extern void html_link_close(void); |
14 | extern void html_link_close(void); |
15 | extern void html_fileperm(unsigned short mode); |
15 | extern void html_fileperm(unsigned short mode); |
16 | extern int html_include(const char *filename); |
16 | extern int html_include(const char *filename); |
17 | |
17 | |
| |
18 | extern int http_parse_querystring(char *txt, void (*fn)(const char *name, const char *value)); |
| |
19 | |
18 | #endif /* HTML_H */ |
20 | #endif /* HTML_H */ |
|
|
diff --git a/parsing.c b/parsing.c index 9a4a7a3..66e8b3d 100644 --- a/ parsing.c+++ b/ parsing.c |
|
@@ -1,107 +1,58 @@ |
1 | /* config.c: parsing of config files |
1 | /* config.c: parsing of config files |
2 | * |
2 | * |
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 | |
10 | |
11 | char *convert_query_hexchar(char *txt) |
| |
12 | { |
| |
13 | int d1, d2; |
| |
14 | if (strlen(txt) < 3) { |
| |
15 | *txt = '\0'; |
| |
16 | return txt-1; |
| |
17 | } |
| |
18 | d1 = hextoint(*(txt+1)); |
| |
19 | d2 = hextoint(*(txt+2)); |
| |
20 | if (d1<0 || d2<0) { |
| |
21 | strcpy(txt, txt+3); |
| |
22 | return txt-1; |
| |
23 | } else { |
| |
24 | *txt = d1 * 16 + d2; |
| |
25 | strcpy(txt+1, txt+3); |
| |
26 | return txt; |
| |
27 | } |
| |
28 | } |
| |
29 | |
| |
30 | int cgit_parse_query(char *txt, configfn fn) |
| |
31 | { |
| |
32 | char *t, *value = NULL, c; |
| |
33 | |
| |
34 | if (!txt) |
| |
35 | return 0; |
| |
36 | |
| |
37 | t = txt = xstrdup(txt); |
| |
38 | |
| |
39 | while((c=*t) != '\0') { |
| |
40 | if (c=='=') { |
| |
41 | *t = '\0'; |
| |
42 | value = t+1; |
| |
43 | } else if (c=='+') { |
| |
44 | *t = ' '; |
| |
45 | } else if (c=='%') { |
| |
46 | t = convert_query_hexchar(t); |
| |
47 | } else if (c=='&') { |
| |
48 | *t = '\0'; |
| |
49 | (*fn)(txt, value); |
| |
50 | txt = t+1; |
| |
51 | value = NULL; |
| |
52 | } |
| |
53 | t++; |
| |
54 | } |
| |
55 | if (t!=txt) |
| |
56 | (*fn)(txt, value); |
| |
57 | return 0; |
| |
58 | } |
| |
59 | |
| |
60 | /* |
11 | /* |
61 | * url syntax: [repo ['/' cmd [ '/' path]]] |
12 | * url syntax: [repo ['/' cmd [ '/' path]]] |
62 | * repo: any valid repo url, may contain '/' |
13 | * repo: any valid repo url, may contain '/' |
63 | * cmd: log | commit | diff | tree | view | blob | snapshot |
14 | * cmd: log | commit | diff | tree | view | blob | snapshot |
64 | * path: any valid path, may contain '/' |
15 | * path: any valid path, may contain '/' |
65 | * |
16 | * |
66 | */ |
17 | */ |
67 | void cgit_parse_url(const char *url) |
18 | void cgit_parse_url(const char *url) |
68 | { |
19 | { |
69 | char *cmd, *p; |
20 | char *cmd, *p; |
70 | |
21 | |
71 | ctx.repo = NULL; |
22 | ctx.repo = NULL; |
72 | if (!url || url[0] == '\0') |
23 | if (!url || url[0] == '\0') |
73 | return; |
24 | return; |
74 | |
25 | |
75 | ctx.repo = cgit_get_repoinfo(url); |
26 | ctx.repo = cgit_get_repoinfo(url); |
76 | if (ctx.repo) { |
27 | if (ctx.repo) { |
77 | ctx.qry.repo = ctx.repo->url; |
28 | ctx.qry.repo = ctx.repo->url; |
78 | return; |
29 | return; |
79 | } |
30 | } |
80 | |
31 | |
81 | cmd = strchr(url, '/'); |
32 | cmd = strchr(url, '/'); |
82 | while (!ctx.repo && cmd) { |
33 | while (!ctx.repo && cmd) { |
83 | cmd[0] = '\0'; |
34 | cmd[0] = '\0'; |
84 | ctx.repo = cgit_get_repoinfo(url); |
35 | ctx.repo = cgit_get_repoinfo(url); |
85 | if (ctx.repo == NULL) { |
36 | if (ctx.repo == NULL) { |
86 | cmd[0] = '/'; |
37 | cmd[0] = '/'; |
87 | cmd = strchr(cmd + 1, '/'); |
38 | cmd = strchr(cmd + 1, '/'); |
88 | continue; |
39 | continue; |
89 | } |
40 | } |
90 | |
41 | |
91 | ctx.qry.repo = ctx.repo->url; |
42 | ctx.qry.repo = ctx.repo->url; |
92 | p = strchr(cmd + 1, '/'); |
43 | p = strchr(cmd + 1, '/'); |
93 | if (p) { |
44 | if (p) { |
94 | p[0] = '\0'; |
45 | p[0] = '\0'; |
95 | if (p[1]) |
46 | if (p[1]) |
96 | ctx.qry.path = trim_end(p + 1, '/'); |
47 | ctx.qry.path = trim_end(p + 1, '/'); |
97 | } |
48 | } |
98 | if (cmd[1]) |
49 | if (cmd[1]) |
99 | ctx.qry.page = xstrdup(cmd + 1); |
50 | ctx.qry.page = xstrdup(cmd + 1); |
100 | return; |
51 | return; |
101 | } |
52 | } |
102 | } |
53 | } |
103 | |
54 | |
104 | char *substr(const char *head, const char *tail) |
55 | char *substr(const char *head, const char *tail) |
105 | { |
56 | { |
106 | char *buf; |
57 | char *buf; |
107 | |
58 | |
|
|
diff --git a/shared.c b/shared.c index 48002ac..f5875e4 100644 --- a/ shared.c+++ b/ shared.c |
|
@@ -44,108 +44,96 @@ struct cgit_repo *cgit_add_repo(const char *url) |
44 | cgit_repolist.length *= 2; |
44 | cgit_repolist.length *= 2; |
45 | cgit_repolist.repos = xrealloc(cgit_repolist.repos, |
45 | cgit_repolist.repos = xrealloc(cgit_repolist.repos, |
46 | cgit_repolist.length * |
46 | cgit_repolist.length * |
47 | sizeof(struct cgit_repo)); |
47 | sizeof(struct cgit_repo)); |
48 | } |
48 | } |
49 | |
49 | |
50 | ret = &cgit_repolist.repos[cgit_repolist.count-1]; |
50 | ret = &cgit_repolist.repos[cgit_repolist.count-1]; |
51 | ret->url = trim_end(url, '/'); |
51 | ret->url = trim_end(url, '/'); |
52 | ret->name = ret->url; |
52 | ret->name = ret->url; |
53 | ret->path = NULL; |
53 | ret->path = NULL; |
54 | ret->desc = "[no description]"; |
54 | ret->desc = "[no description]"; |
55 | ret->owner = NULL; |
55 | ret->owner = NULL; |
56 | ret->group = ctx.cfg.repo_group; |
56 | ret->group = ctx.cfg.repo_group; |
57 | ret->defbranch = "master"; |
57 | ret->defbranch = "master"; |
58 | ret->snapshots = ctx.cfg.snapshots; |
58 | ret->snapshots = ctx.cfg.snapshots; |
59 | ret->enable_log_filecount = ctx.cfg.enable_log_filecount; |
59 | ret->enable_log_filecount = ctx.cfg.enable_log_filecount; |
60 | ret->enable_log_linecount = ctx.cfg.enable_log_linecount; |
60 | ret->enable_log_linecount = ctx.cfg.enable_log_linecount; |
61 | ret->module_link = ctx.cfg.module_link; |
61 | ret->module_link = ctx.cfg.module_link; |
62 | ret->readme = NULL; |
62 | ret->readme = NULL; |
63 | return ret; |
63 | return ret; |
64 | } |
64 | } |
65 | |
65 | |
66 | struct cgit_repo *cgit_get_repoinfo(const char *url) |
66 | struct cgit_repo *cgit_get_repoinfo(const char *url) |
67 | { |
67 | { |
68 | int i; |
68 | int i; |
69 | struct cgit_repo *repo; |
69 | struct cgit_repo *repo; |
70 | |
70 | |
71 | for (i=0; i<cgit_repolist.count; i++) { |
71 | for (i=0; i<cgit_repolist.count; i++) { |
72 | repo = &cgit_repolist.repos[i]; |
72 | repo = &cgit_repolist.repos[i]; |
73 | if (!strcmp(repo->url, url)) |
73 | if (!strcmp(repo->url, url)) |
74 | return repo; |
74 | return repo; |
75 | } |
75 | } |
76 | return NULL; |
76 | return NULL; |
77 | } |
77 | } |
78 | |
78 | |
79 | void *cgit_free_commitinfo(struct commitinfo *info) |
79 | void *cgit_free_commitinfo(struct commitinfo *info) |
80 | { |
80 | { |
81 | free(info->author); |
81 | free(info->author); |
82 | free(info->author_email); |
82 | free(info->author_email); |
83 | free(info->committer); |
83 | free(info->committer); |
84 | free(info->committer_email); |
84 | free(info->committer_email); |
85 | free(info->subject); |
85 | free(info->subject); |
86 | free(info->msg); |
86 | free(info->msg); |
87 | free(info->msg_encoding); |
87 | free(info->msg_encoding); |
88 | free(info); |
88 | free(info); |
89 | return NULL; |
89 | return NULL; |
90 | } |
90 | } |
91 | |
91 | |
92 | int hextoint(char c) |
| |
93 | { |
| |
94 | if (c >= 'a' && c <= 'f') |
| |
95 | return 10 + c - 'a'; |
| |
96 | else if (c >= 'A' && c <= 'F') |
| |
97 | return 10 + c - 'A'; |
| |
98 | else if (c >= '0' && c <= '9') |
| |
99 | return c - '0'; |
| |
100 | else |
| |
101 | return -1; |
| |
102 | } |
| |
103 | |
| |
104 | char *trim_end(const char *str, char c) |
92 | char *trim_end(const char *str, char c) |
105 | { |
93 | { |
106 | int len; |
94 | int len; |
107 | char *s, *t; |
95 | char *s, *t; |
108 | |
96 | |
109 | if (str == NULL) |
97 | if (str == NULL) |
110 | return NULL; |
98 | return NULL; |
111 | t = (char *)str; |
99 | t = (char *)str; |
112 | len = strlen(t); |
100 | len = strlen(t); |
113 | while(len > 0 && t[len - 1] == c) |
101 | while(len > 0 && t[len - 1] == c) |
114 | len--; |
102 | len--; |
115 | |
103 | |
116 | if (len == 0) |
104 | if (len == 0) |
117 | return NULL; |
105 | return NULL; |
118 | |
106 | |
119 | c = t[len]; |
107 | c = t[len]; |
120 | t[len] = '\0'; |
108 | t[len] = '\0'; |
121 | s = xstrdup(t); |
109 | s = xstrdup(t); |
122 | t[len] = c; |
110 | t[len] = c; |
123 | return s; |
111 | return s; |
124 | } |
112 | } |
125 | |
113 | |
126 | char *strlpart(char *txt, int maxlen) |
114 | char *strlpart(char *txt, int maxlen) |
127 | { |
115 | { |
128 | char *result; |
116 | char *result; |
129 | |
117 | |
130 | if (!txt) |
118 | if (!txt) |
131 | return txt; |
119 | return txt; |
132 | |
120 | |
133 | if (strlen(txt) <= maxlen) |
121 | if (strlen(txt) <= maxlen) |
134 | return txt; |
122 | return txt; |
135 | result = xmalloc(maxlen + 1); |
123 | result = xmalloc(maxlen + 1); |
136 | memcpy(result, txt, maxlen - 3); |
124 | memcpy(result, txt, maxlen - 3); |
137 | result[maxlen-1] = result[maxlen-2] = result[maxlen-3] = '.'; |
125 | result[maxlen-1] = result[maxlen-2] = result[maxlen-3] = '.'; |
138 | result[maxlen] = '\0'; |
126 | result[maxlen] = '\0'; |
139 | return result; |
127 | return result; |
140 | } |
128 | } |
141 | |
129 | |
142 | char *strrpart(char *txt, int maxlen) |
130 | char *strrpart(char *txt, int maxlen) |
143 | { |
131 | { |
144 | char *result; |
132 | char *result; |
145 | |
133 | |
146 | if (!txt) |
134 | if (!txt) |
147 | return txt; |
135 | return txt; |
148 | |
136 | |
149 | if (strlen(txt) <= maxlen) |
137 | if (strlen(txt) <= maxlen) |
150 | return txt; |
138 | return txt; |
151 | result = xmalloc(maxlen + 1); |
139 | result = xmalloc(maxlen + 1); |
|