summaryrefslogtreecommitdiffabout
path: root/cgit.c
Unidiff
Diffstat (limited to 'cgit.c') (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/cgit.c b/cgit.c
index 2039ab1..779a464 100644
--- a/cgit.c
+++ b/cgit.c
@@ -1,147 +1,162 @@
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 "html.h"
14#include "ui-shared.h" 14#include "ui-shared.h"
15#include "ui-stats.h" 15#include "ui-stats.h"
16#include "scan-tree.h" 16#include "scan-tree.h"
17 17
18const char *cgit_version = CGIT_VERSION; 18const char *cgit_version = CGIT_VERSION;
19 19
20struct cgit_filter *new_filter(const char *cmd, int extra_args)
21{
22 struct cgit_filter *f;
23
24 if (!cmd)
25 return NULL;
26
27 f = xmalloc(sizeof(struct cgit_filter));
28 f->cmd = xstrdup(cmd);
29 f->argv = xmalloc((2 + extra_args) * sizeof(char *));
30 f->argv[0] = f->cmd;
31 f->argv[1] = NULL;
32 return f;
33}
34
20void config_cb(const char *name, const char *value) 35void config_cb(const char *name, const char *value)
21{ 36{
22 if (!strcmp(name, "root-title")) 37 if (!strcmp(name, "root-title"))
23 ctx.cfg.root_title = xstrdup(value); 38 ctx.cfg.root_title = xstrdup(value);
24 else if (!strcmp(name, "root-desc")) 39 else if (!strcmp(name, "root-desc"))
25 ctx.cfg.root_desc = xstrdup(value); 40 ctx.cfg.root_desc = xstrdup(value);
26 else if (!strcmp(name, "root-readme")) 41 else if (!strcmp(name, "root-readme"))
27 ctx.cfg.root_readme = xstrdup(value); 42 ctx.cfg.root_readme = xstrdup(value);
28 else if (!strcmp(name, "css")) 43 else if (!strcmp(name, "css"))
29 ctx.cfg.css = xstrdup(value); 44 ctx.cfg.css = xstrdup(value);
30 else if (!strcmp(name, "favicon")) 45 else if (!strcmp(name, "favicon"))
31 ctx.cfg.favicon = xstrdup(value); 46 ctx.cfg.favicon = xstrdup(value);
32 else if (!strcmp(name, "footer")) 47 else if (!strcmp(name, "footer"))
33 ctx.cfg.footer = xstrdup(value); 48 ctx.cfg.footer = xstrdup(value);
34 else if (!strcmp(name, "head-include")) 49 else if (!strcmp(name, "head-include"))
35 ctx.cfg.head_include = xstrdup(value); 50 ctx.cfg.head_include = xstrdup(value);
36 else if (!strcmp(name, "header")) 51 else if (!strcmp(name, "header"))
37 ctx.cfg.header = xstrdup(value); 52 ctx.cfg.header = xstrdup(value);
38 else if (!strcmp(name, "logo")) 53 else if (!strcmp(name, "logo"))
39 ctx.cfg.logo = xstrdup(value); 54 ctx.cfg.logo = xstrdup(value);
40 else if (!strcmp(name, "index-header")) 55 else if (!strcmp(name, "index-header"))
41 ctx.cfg.index_header = xstrdup(value); 56 ctx.cfg.index_header = xstrdup(value);
42 else if (!strcmp(name, "index-info")) 57 else if (!strcmp(name, "index-info"))
43 ctx.cfg.index_info = xstrdup(value); 58 ctx.cfg.index_info = xstrdup(value);
44 else if (!strcmp(name, "logo-link")) 59 else if (!strcmp(name, "logo-link"))
45 ctx.cfg.logo_link = xstrdup(value); 60 ctx.cfg.logo_link = xstrdup(value);
46 else if (!strcmp(name, "module-link")) 61 else if (!strcmp(name, "module-link"))
47 ctx.cfg.module_link = xstrdup(value); 62 ctx.cfg.module_link = xstrdup(value);
48 else if (!strcmp(name, "virtual-root")) { 63 else if (!strcmp(name, "virtual-root")) {
49 ctx.cfg.virtual_root = trim_end(value, '/'); 64 ctx.cfg.virtual_root = trim_end(value, '/');
50 if (!ctx.cfg.virtual_root && (!strcmp(value, "/"))) 65 if (!ctx.cfg.virtual_root && (!strcmp(value, "/")))
51 ctx.cfg.virtual_root = ""; 66 ctx.cfg.virtual_root = "";
52 } else if (!strcmp(name, "nocache")) 67 } else if (!strcmp(name, "nocache"))
53 ctx.cfg.nocache = atoi(value); 68 ctx.cfg.nocache = atoi(value);
54 else if (!strcmp(name, "noheader")) 69 else if (!strcmp(name, "noheader"))
55 ctx.cfg.noheader = atoi(value); 70 ctx.cfg.noheader = atoi(value);
56 else if (!strcmp(name, "snapshots")) 71 else if (!strcmp(name, "snapshots"))
57 ctx.cfg.snapshots = cgit_parse_snapshots_mask(value); 72 ctx.cfg.snapshots = cgit_parse_snapshots_mask(value);
58 else if (!strcmp(name, "enable-index-links")) 73 else if (!strcmp(name, "enable-index-links"))
59 ctx.cfg.enable_index_links = atoi(value); 74 ctx.cfg.enable_index_links = atoi(value);
60 else if (!strcmp(name, "enable-log-filecount")) 75 else if (!strcmp(name, "enable-log-filecount"))
61 ctx.cfg.enable_log_filecount = atoi(value); 76 ctx.cfg.enable_log_filecount = atoi(value);
62 else if (!strcmp(name, "enable-log-linecount")) 77 else if (!strcmp(name, "enable-log-linecount"))
63 ctx.cfg.enable_log_linecount = atoi(value); 78 ctx.cfg.enable_log_linecount = atoi(value);
64 else if (!strcmp(name, "max-stats")) 79 else if (!strcmp(name, "max-stats"))
65 ctx.cfg.max_stats = cgit_find_stats_period(value, NULL); 80 ctx.cfg.max_stats = cgit_find_stats_period(value, NULL);
66 else if (!strcmp(name, "cache-size")) 81 else if (!strcmp(name, "cache-size"))
67 ctx.cfg.cache_size = atoi(value); 82 ctx.cfg.cache_size = atoi(value);
68 else if (!strcmp(name, "cache-root")) 83 else if (!strcmp(name, "cache-root"))
69 ctx.cfg.cache_root = xstrdup(value); 84 ctx.cfg.cache_root = xstrdup(value);
70 else if (!strcmp(name, "cache-root-ttl")) 85 else if (!strcmp(name, "cache-root-ttl"))
71 ctx.cfg.cache_root_ttl = atoi(value); 86 ctx.cfg.cache_root_ttl = atoi(value);
72 else if (!strcmp(name, "cache-repo-ttl")) 87 else if (!strcmp(name, "cache-repo-ttl"))
73 ctx.cfg.cache_repo_ttl = atoi(value); 88 ctx.cfg.cache_repo_ttl = atoi(value);
74 else if (!strcmp(name, "cache-static-ttl")) 89 else if (!strcmp(name, "cache-static-ttl"))
75 ctx.cfg.cache_static_ttl = atoi(value); 90 ctx.cfg.cache_static_ttl = atoi(value);
76 else if (!strcmp(name, "cache-dynamic-ttl")) 91 else if (!strcmp(name, "cache-dynamic-ttl"))
77 ctx.cfg.cache_dynamic_ttl = atoi(value); 92 ctx.cfg.cache_dynamic_ttl = atoi(value);
78 else if (!strcmp(name, "embedded")) 93 else if (!strcmp(name, "embedded"))
79 ctx.cfg.embedded = atoi(value); 94 ctx.cfg.embedded = atoi(value);
80 else if (!strcmp(name, "max-message-length")) 95 else if (!strcmp(name, "max-message-length"))
81 ctx.cfg.max_msg_len = atoi(value); 96 ctx.cfg.max_msg_len = atoi(value);
82 else if (!strcmp(name, "max-repodesc-length")) 97 else if (!strcmp(name, "max-repodesc-length"))
83 ctx.cfg.max_repodesc_len = atoi(value); 98 ctx.cfg.max_repodesc_len = atoi(value);
84 else if (!strcmp(name, "max-repo-count")) 99 else if (!strcmp(name, "max-repo-count"))
85 ctx.cfg.max_repo_count = atoi(value); 100 ctx.cfg.max_repo_count = atoi(value);
86 else if (!strcmp(name, "max-commit-count")) 101 else if (!strcmp(name, "max-commit-count"))
87 ctx.cfg.max_commit_count = atoi(value); 102 ctx.cfg.max_commit_count = atoi(value);
88 else if (!strcmp(name, "summary-log")) 103 else if (!strcmp(name, "summary-log"))
89 ctx.cfg.summary_log = atoi(value); 104 ctx.cfg.summary_log = atoi(value);
90 else if (!strcmp(name, "summary-branches")) 105 else if (!strcmp(name, "summary-branches"))
91 ctx.cfg.summary_branches = atoi(value); 106 ctx.cfg.summary_branches = atoi(value);
92 else if (!strcmp(name, "summary-tags")) 107 else if (!strcmp(name, "summary-tags"))
93 ctx.cfg.summary_tags = atoi(value); 108 ctx.cfg.summary_tags = atoi(value);
94 else if (!strcmp(name, "agefile")) 109 else if (!strcmp(name, "agefile"))
95 ctx.cfg.agefile = xstrdup(value); 110 ctx.cfg.agefile = xstrdup(value);
96 else if (!strcmp(name, "renamelimit")) 111 else if (!strcmp(name, "renamelimit"))
97 ctx.cfg.renamelimit = atoi(value); 112 ctx.cfg.renamelimit = atoi(value);
98 else if (!strcmp(name, "robots")) 113 else if (!strcmp(name, "robots"))
99 ctx.cfg.robots = xstrdup(value); 114 ctx.cfg.robots = xstrdup(value);
100 else if (!strcmp(name, "clone-prefix")) 115 else if (!strcmp(name, "clone-prefix"))
101 ctx.cfg.clone_prefix = xstrdup(value); 116 ctx.cfg.clone_prefix = xstrdup(value);
102 else if (!strcmp(name, "local-time")) 117 else if (!strcmp(name, "local-time"))
103 ctx.cfg.local_time = atoi(value); 118 ctx.cfg.local_time = atoi(value);
104 else if (!strcmp(name, "repo.group")) 119 else if (!strcmp(name, "repo.group"))
105 ctx.cfg.repo_group = xstrdup(value); 120 ctx.cfg.repo_group = xstrdup(value);
106 else if (!strcmp(name, "repo.url")) 121 else if (!strcmp(name, "repo.url"))
107 ctx.repo = cgit_add_repo(value); 122 ctx.repo = cgit_add_repo(value);
108 else if (!strcmp(name, "repo.name")) 123 else if (!strcmp(name, "repo.name"))
109 ctx.repo->name = xstrdup(value); 124 ctx.repo->name = xstrdup(value);
110 else if (ctx.repo && !strcmp(name, "repo.path")) 125 else if (ctx.repo && !strcmp(name, "repo.path"))
111 ctx.repo->path = trim_end(value, '/'); 126 ctx.repo->path = trim_end(value, '/');
112 else if (ctx.repo && !strcmp(name, "repo.clone-url")) 127 else if (ctx.repo && !strcmp(name, "repo.clone-url"))
113 ctx.repo->clone_url = xstrdup(value); 128 ctx.repo->clone_url = xstrdup(value);
114 else if (ctx.repo && !strcmp(name, "repo.desc")) 129 else if (ctx.repo && !strcmp(name, "repo.desc"))
115 ctx.repo->desc = xstrdup(value); 130 ctx.repo->desc = xstrdup(value);
116 else if (ctx.repo && !strcmp(name, "repo.owner")) 131 else if (ctx.repo && !strcmp(name, "repo.owner"))
117 ctx.repo->owner = xstrdup(value); 132 ctx.repo->owner = xstrdup(value);
118 else if (ctx.repo && !strcmp(name, "repo.defbranch")) 133 else if (ctx.repo && !strcmp(name, "repo.defbranch"))
119 ctx.repo->defbranch = xstrdup(value); 134 ctx.repo->defbranch = xstrdup(value);
120 else if (ctx.repo && !strcmp(name, "repo.snapshots")) 135 else if (ctx.repo && !strcmp(name, "repo.snapshots"))
121 ctx.repo->snapshots = ctx.cfg.snapshots & cgit_parse_snapshots_mask(value); /* XXX: &? */ 136 ctx.repo->snapshots = ctx.cfg.snapshots & cgit_parse_snapshots_mask(value); /* XXX: &? */
122 else if (ctx.repo && !strcmp(name, "repo.enable-log-filecount")) 137 else if (ctx.repo && !strcmp(name, "repo.enable-log-filecount"))
123 ctx.repo->enable_log_filecount = ctx.cfg.enable_log_filecount * atoi(value); 138 ctx.repo->enable_log_filecount = ctx.cfg.enable_log_filecount * atoi(value);
124 else if (ctx.repo && !strcmp(name, "repo.enable-log-linecount")) 139 else if (ctx.repo && !strcmp(name, "repo.enable-log-linecount"))
125 ctx.repo->enable_log_linecount = ctx.cfg.enable_log_linecount * atoi(value); 140 ctx.repo->enable_log_linecount = ctx.cfg.enable_log_linecount * atoi(value);
126 else if (ctx.repo && !strcmp(name, "repo.max-stats")) 141 else if (ctx.repo && !strcmp(name, "repo.max-stats"))
127 ctx.repo->max_stats = cgit_find_stats_period(value, NULL); 142 ctx.repo->max_stats = cgit_find_stats_period(value, NULL);
128 else if (ctx.repo && !strcmp(name, "repo.module-link")) 143 else if (ctx.repo && !strcmp(name, "repo.module-link"))
129 ctx.repo->module_link= xstrdup(value); 144 ctx.repo->module_link= xstrdup(value);
130 else if (ctx.repo && !strcmp(name, "repo.readme") && value != NULL) { 145 else if (ctx.repo && !strcmp(name, "repo.readme") && value != NULL) {
131 if (*value == '/') 146 if (*value == '/')
132 ctx.repo->readme = xstrdup(value); 147 ctx.repo->readme = xstrdup(value);
133 else 148 else
134 ctx.repo->readme = xstrdup(fmt("%s/%s", ctx.repo->path, value)); 149 ctx.repo->readme = xstrdup(fmt("%s/%s", ctx.repo->path, value));
135 } else if (!strcmp(name, "include")) 150 } else if (!strcmp(name, "include"))
136 parse_configfile(value, config_cb); 151 parse_configfile(value, config_cb);
137} 152}
138 153
139static void querystring_cb(const char *name, const char *value) 154static void querystring_cb(const char *name, const char *value)
140{ 155{
141 if (!strcmp(name,"r")) { 156 if (!strcmp(name,"r")) {
142 ctx.qry.repo = xstrdup(value); 157 ctx.qry.repo = xstrdup(value);
143 ctx.repo = cgit_get_repoinfo(value); 158 ctx.repo = cgit_get_repoinfo(value);
144 } else if (!strcmp(name, "p")) { 159 } else if (!strcmp(name, "p")) {
145 ctx.qry.page = xstrdup(value); 160 ctx.qry.page = xstrdup(value);
146 } else if (!strcmp(name, "url")) { 161 } else if (!strcmp(name, "url")) {
147 ctx.qry.url = xstrdup(value); 162 ctx.qry.url = xstrdup(value);