|
diff --git a/cgit.c b/cgit.c index 3e7e595..e5d8fbd 100644 --- a/ cgit.c+++ b/ cgit.c |
|
@@ -1,67 +1,53 @@ |
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 | |
10 | |
11 | const char cgit_version[] = CGIT_VERSION; |
11 | const char cgit_version[] = CGIT_VERSION; |
12 | |
12 | |
13 | |
13 | |
14 | static struct repoinfo *cgit_get_repoinfo(char *url) |
| |
15 | { |
| |
16 | int i; |
| |
17 | struct repoinfo *repo; |
| |
18 | |
| |
19 | for (i=0; i<cgit_repolist.count; i++) { |
| |
20 | repo = &cgit_repolist.repos[i]; |
| |
21 | if (!strcmp(repo->url, url)) |
| |
22 | return repo; |
| |
23 | } |
| |
24 | return NULL; |
| |
25 | } |
| |
26 | |
| |
27 | |
| |
28 | static int cgit_prepare_cache(struct cacheitem *item) |
14 | static int cgit_prepare_cache(struct cacheitem *item) |
29 | { |
15 | { |
30 | if (!cgit_query_repo) { |
16 | if (!cgit_repo && cgit_query_repo) { |
31 | item->name = xstrdup(fmt("%s/index.html", cgit_cache_root)); |
| |
32 | item->ttl = cgit_cache_root_ttl; |
| |
33 | return 1; |
| |
34 | } |
| |
35 | cgit_repo = cgit_get_repoinfo(cgit_query_repo); |
| |
36 | if (!cgit_repo) { |
| |
37 | char *title = fmt("%s - %s", cgit_root_title, "Bad request"); |
17 | char *title = fmt("%s - %s", cgit_root_title, "Bad request"); |
38 | cgit_print_docstart(title, item); |
18 | cgit_print_docstart(title, item); |
39 | cgit_print_pageheader(title, 0); |
19 | cgit_print_pageheader(title, 0); |
40 | cgit_print_error(fmt("Unknown repo: %s", cgit_query_repo)); |
20 | cgit_print_error(fmt("Unknown repo: %s", cgit_query_repo)); |
41 | cgit_print_docend(); |
21 | cgit_print_docend(); |
42 | return 0; |
22 | return 0; |
43 | } |
23 | } |
44 | |
24 | |
45 | if (!cgit_query_page) { |
25 | if (!cgit_repo) { |
| |
26 | item->name = xstrdup(fmt("%s/index.html", cgit_cache_root)); |
| |
27 | item->ttl = cgit_cache_root_ttl; |
| |
28 | return 1; |
| |
29 | } |
| |
30 | |
| |
31 | if (!cgit_cmd) { |
46 | item->name = xstrdup(fmt("%s/%s/index.html", cgit_cache_root, |
32 | item->name = xstrdup(fmt("%s/%s/index.html", cgit_cache_root, |
47 | cgit_repo->url)); |
33 | cache_safe_filename(cgit_repo->url))); |
48 | item->ttl = cgit_cache_repo_ttl; |
34 | item->ttl = cgit_cache_repo_ttl; |
49 | } else { |
35 | } else { |
50 | item->name = xstrdup(fmt("%s/%s/%s/%s.html", cgit_cache_root, |
36 | item->name = xstrdup(fmt("%s/%s/%s/%s.html", cgit_cache_root, |
51 | cgit_repo->url, cgit_query_page, |
37 | cache_safe_filename(cgit_repo->url), cgit_query_page, |
52 | cache_safe_filename(cgit_querystring))); |
38 | cache_safe_filename(cgit_querystring))); |
53 | if (cgit_query_has_symref) |
39 | if (cgit_query_has_symref) |
54 | item->ttl = cgit_cache_dynamic_ttl; |
40 | item->ttl = cgit_cache_dynamic_ttl; |
55 | else if (cgit_query_has_sha1) |
41 | else if (cgit_query_has_sha1) |
56 | item->ttl = cgit_cache_static_ttl; |
42 | item->ttl = cgit_cache_static_ttl; |
57 | else |
43 | else |
58 | item->ttl = cgit_cache_repo_ttl; |
44 | item->ttl = cgit_cache_repo_ttl; |
59 | } |
45 | } |
60 | return 1; |
46 | return 1; |
61 | } |
47 | } |
62 | |
48 | |
63 | static void cgit_print_repo_page(struct cacheitem *item) |
49 | static void cgit_print_repo_page(struct cacheitem *item) |
64 | { |
50 | { |
65 | char *title; |
51 | char *title; |
66 | int show_search; |
52 | int show_search; |
67 | |
53 | |
@@ -69,94 +55,95 @@ static void cgit_print_repo_page(struct cacheitem *item) |
69 | cgit_query_head = cgit_repo->defbranch; |
55 | cgit_query_head = cgit_repo->defbranch; |
70 | |
56 | |
71 | if (chdir(cgit_repo->path)) { |
57 | if (chdir(cgit_repo->path)) { |
72 | title = fmt("%s - %s", cgit_root_title, "Bad request"); |
58 | title = fmt("%s - %s", cgit_root_title, "Bad request"); |
73 | cgit_print_docstart(title, item); |
59 | cgit_print_docstart(title, item); |
74 | cgit_print_pageheader(title, 0); |
60 | cgit_print_pageheader(title, 0); |
75 | cgit_print_error(fmt("Unable to scan repository: %s", |
61 | cgit_print_error(fmt("Unable to scan repository: %s", |
76 | strerror(errno))); |
62 | strerror(errno))); |
77 | cgit_print_docend(); |
63 | cgit_print_docend(); |
78 | return; |
64 | return; |
79 | } |
65 | } |
80 | |
66 | |
81 | title = fmt("%s - %s", cgit_repo->name, cgit_repo->desc); |
67 | title = fmt("%s - %s", cgit_repo->name, cgit_repo->desc); |
82 | show_search = 0; |
68 | show_search = 0; |
83 | setenv("GIT_DIR", cgit_repo->path, 1); |
69 | setenv("GIT_DIR", cgit_repo->path, 1); |
84 | |
70 | |
85 | if (cgit_query_page) { |
71 | if ((cgit_cmd == CMD_SNAPSHOT) && cgit_repo->snapshots) { |
86 | if (cgit_repo->snapshots && !strcmp(cgit_query_page, "snapshot")) { |
| |
87 | cgit_print_snapshot(item, cgit_query_sha1, "zip", |
72 | cgit_print_snapshot(item, cgit_query_sha1, "zip", |
88 | cgit_repo->url, cgit_query_name); |
73 | cgit_repo->url, cgit_query_name); |
89 | return; |
74 | return; |
90 | } |
| |
91 | if (!strcmp(cgit_query_page, "blob")) { |
| |
92 | cgit_print_blob(item, cgit_query_sha1, cgit_query_path); |
| |
93 | return; |
| |
94 | } |
| |
95 | } |
75 | } |
96 | |
76 | |
97 | if (cgit_query_page && !strcmp(cgit_query_page, "log")) |
77 | if (cgit_cmd == CMD_BLOB) { |
98 | show_search = 1; |
78 | cgit_print_blob(item, cgit_query_sha1, cgit_query_path); |
| |
79 | return; |
| |
80 | } |
99 | |
81 | |
| |
82 | show_search = (cgit_cmd == CMD_LOG); |
100 | cgit_print_docstart(title, item); |
83 | cgit_print_docstart(title, item); |
101 | |
84 | if (!cgit_cmd) { |
102 | |
| |
103 | if (!cgit_query_page) { |
| |
104 | cgit_print_pageheader("summary", show_search); |
85 | cgit_print_pageheader("summary", show_search); |
105 | cgit_print_summary(); |
86 | cgit_print_summary(); |
106 | cgit_print_docend(); |
87 | cgit_print_docend(); |
107 | return; |
88 | return; |
108 | } |
89 | } |
109 | |
90 | |
110 | cgit_print_pageheader(cgit_query_page, show_search); |
91 | cgit_print_pageheader(cgit_query_page, show_search); |
111 | |
92 | |
112 | if (!strcmp(cgit_query_page, "log")) { |
93 | switch(cgit_cmd) { |
| |
94 | case CMD_LOG: |
113 | cgit_print_log(cgit_query_head, cgit_query_ofs, |
95 | cgit_print_log(cgit_query_head, cgit_query_ofs, |
114 | cgit_max_commit_count, cgit_query_search, |
96 | cgit_max_commit_count, cgit_query_search, |
115 | cgit_query_path); |
97 | cgit_query_path); |
116 | } else if (!strcmp(cgit_query_page, "tree")) { |
98 | break; |
| |
99 | case CMD_TREE: |
117 | cgit_print_tree(cgit_query_head, cgit_query_sha1, cgit_query_path); |
100 | cgit_print_tree(cgit_query_head, cgit_query_sha1, cgit_query_path); |
118 | } else if (!strcmp(cgit_query_page, "commit")) { |
101 | break; |
| |
102 | case CMD_COMMIT: |
119 | cgit_print_commit(cgit_query_head); |
103 | cgit_print_commit(cgit_query_head); |
120 | } else if (!strcmp(cgit_query_page, "view")) { |
104 | break; |
| |
105 | case CMD_VIEW: |
121 | cgit_print_view(cgit_query_sha1, cgit_query_path); |
106 | cgit_print_view(cgit_query_sha1, cgit_query_path); |
122 | } else if (!strcmp(cgit_query_page, "diff")) { |
107 | break; |
| |
108 | case CMD_DIFF: |
123 | cgit_print_diff(cgit_query_head, cgit_query_sha1, cgit_query_sha2, |
109 | cgit_print_diff(cgit_query_head, cgit_query_sha1, cgit_query_sha2, |
124 | cgit_query_path); |
110 | cgit_query_path); |
125 | } else { |
111 | break; |
| |
112 | default: |
126 | cgit_print_error("Invalid request"); |
113 | cgit_print_error("Invalid request"); |
127 | } |
114 | } |
128 | cgit_print_docend(); |
115 | cgit_print_docend(); |
129 | } |
116 | } |
130 | |
117 | |
131 | static void cgit_fill_cache(struct cacheitem *item, int use_cache) |
118 | static void cgit_fill_cache(struct cacheitem *item, int use_cache) |
132 | { |
119 | { |
133 | static char buf[PATH_MAX]; |
120 | static char buf[PATH_MAX]; |
134 | int stdout2; |
121 | int stdout2; |
135 | |
122 | |
136 | getcwd(buf, sizeof(buf)); |
123 | getcwd(buf, sizeof(buf)); |
137 | item->st.st_mtime = time(NULL); |
124 | item->st.st_mtime = time(NULL); |
138 | |
125 | |
139 | if (use_cache) { |
126 | if (use_cache) { |
140 | stdout2 = chk_positive(dup(STDOUT_FILENO), |
127 | stdout2 = chk_positive(dup(STDOUT_FILENO), |
141 | "Preserving STDOUT"); |
128 | "Preserving STDOUT"); |
142 | chk_zero(close(STDOUT_FILENO), "Closing STDOUT"); |
129 | chk_zero(close(STDOUT_FILENO), "Closing STDOUT"); |
143 | chk_positive(dup2(item->fd, STDOUT_FILENO), "Dup2(cachefile)"); |
130 | chk_positive(dup2(item->fd, STDOUT_FILENO), "Dup2(cachefile)"); |
144 | } |
131 | } |
145 | |
132 | |
146 | if (cgit_query_repo) |
133 | if (cgit_repo) |
147 | cgit_print_repo_page(item); |
134 | cgit_print_repo_page(item); |
148 | else |
135 | else |
149 | cgit_print_repolist(item); |
136 | cgit_print_repolist(item); |
150 | |
137 | |
151 | if (use_cache) { |
138 | if (use_cache) { |
152 | chk_zero(close(STDOUT_FILENO), "Close redirected STDOUT"); |
139 | chk_zero(close(STDOUT_FILENO), "Close redirected STDOUT"); |
153 | chk_positive(dup2(stdout2, STDOUT_FILENO), |
140 | chk_positive(dup2(stdout2, STDOUT_FILENO), |
154 | "Restoring original STDOUT"); |
141 | "Restoring original STDOUT"); |
155 | chk_zero(close(stdout2), "Closing temporary STDOUT"); |
142 | chk_zero(close(stdout2), "Closing temporary STDOUT"); |
156 | } |
143 | } |
157 | |
144 | |
158 | chdir(buf); |
145 | chdir(buf); |
159 | } |
146 | } |
160 | |
147 | |
161 | static void cgit_check_cache(struct cacheitem *item) |
148 | static void cgit_check_cache(struct cacheitem *item) |
162 | { |
149 | { |
@@ -235,32 +222,33 @@ static void cgit_parse_args(int argc, const char **argv) |
235 | cgit_query_ofs = atoi(argv[i]+6); |
222 | cgit_query_ofs = atoi(argv[i]+6); |
236 | } |
223 | } |
237 | } |
224 | } |
238 | } |
225 | } |
239 | |
226 | |
240 | int main(int argc, const char **argv) |
227 | int main(int argc, const char **argv) |
241 | { |
228 | { |
242 | struct cacheitem item; |
229 | struct cacheitem item; |
243 | |
230 | |
244 | htmlfd = STDOUT_FILENO; |
231 | htmlfd = STDOUT_FILENO; |
245 | item.st.st_mtime = time(NULL); |
232 | item.st.st_mtime = time(NULL); |
246 | cgit_repolist.length = 0; |
233 | cgit_repolist.length = 0; |
247 | cgit_repolist.count = 0; |
234 | cgit_repolist.count = 0; |
248 | cgit_repolist.repos = NULL; |
235 | cgit_repolist.repos = NULL; |
249 | |
236 | |
250 | cgit_read_config(CGIT_CONFIG, cgit_global_config_cb); |
237 | cgit_read_config(CGIT_CONFIG, cgit_global_config_cb); |
| |
238 | cgit_repo = NULL; |
251 | if (getenv("SCRIPT_NAME")) |
239 | if (getenv("SCRIPT_NAME")) |
252 | cgit_script_name = xstrdup(getenv("SCRIPT_NAME")); |
240 | cgit_script_name = xstrdup(getenv("SCRIPT_NAME")); |
253 | if (getenv("QUERY_STRING")) |
241 | if (getenv("QUERY_STRING")) |
254 | cgit_querystring = xstrdup(getenv("QUERY_STRING")); |
242 | cgit_querystring = xstrdup(getenv("QUERY_STRING")); |
255 | cgit_parse_args(argc, argv); |
243 | cgit_parse_args(argc, argv); |
256 | cgit_parse_query(cgit_querystring, cgit_querystring_cb); |
244 | cgit_parse_query(cgit_querystring, cgit_querystring_cb); |
257 | if (!cgit_prepare_cache(&item)) |
245 | if (!cgit_prepare_cache(&item)) |
258 | return 0; |
246 | return 0; |
259 | if (cgit_nocache) { |
247 | if (cgit_nocache) { |
260 | cgit_fill_cache(&item, 0); |
248 | cgit_fill_cache(&item, 0); |
261 | } else { |
249 | } else { |
262 | cgit_check_cache(&item); |
250 | cgit_check_cache(&item); |
263 | cgit_print_cache(&item); |
251 | cgit_print_cache(&item); |
264 | } |
252 | } |
265 | return 0; |
253 | return 0; |
266 | } |
254 | } |
|