Introduce struct cgit_context

This struct will hold all the cgit runtime information currently found in
a multitude of global variables.

The first cleanup removes all querystring-related variables.

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
lh/pretty-blob-view
Lars Hjemli 16 years ago
parent e5ed227ef0
commit d14d77fe95

@ -57,10 +57,10 @@ int cache_create_dirs()
if (mkdir(path, S_IRWXU) && errno!=EEXIST) if (mkdir(path, S_IRWXU) && errno!=EEXIST)
return 0; return 0;
if (cgit_query_page) { if (ctx.qry.page) {
path = fmt("%s/%s/%s", cgit_cache_root, path = fmt("%s/%s/%s", cgit_cache_root,
cache_safe_filename(cgit_repo->url), cache_safe_filename(cgit_repo->url),
cgit_query_page); ctx.qry.page);
if (mkdir(path, S_IRWXU) && errno!=EEXIST) if (mkdir(path, S_IRWXU) && errno!=EEXIST)
return 0; return 0;
} }

@ -10,11 +10,11 @@
static int cgit_prepare_cache(struct cacheitem *item) static int cgit_prepare_cache(struct cacheitem *item)
{ {
if (!cgit_repo && cgit_query_repo) { if (!cgit_repo && ctx.qry.repo) {
char *title = fmt("%s - %s", cgit_root_title, "Bad request"); char *title = fmt("%s - %s", cgit_root_title, "Bad request");
cgit_print_docstart(title, item); cgit_print_docstart(title, item);
cgit_print_pageheader(title, 0); cgit_print_pageheader(title, 0);
cgit_print_error(fmt("Unknown repo: %s", cgit_query_repo)); cgit_print_error(fmt("Unknown repo: %s", ctx.qry.repo));
cgit_print_docend(); cgit_print_docend();
return 0; return 0;
} }
@ -28,16 +28,16 @@ static int cgit_prepare_cache(struct cacheitem *item)
if (!cgit_cmd) { if (!cgit_cmd) {
item->name = xstrdup(fmt("%s/%s/index.%s.html", cgit_cache_root, item->name = xstrdup(fmt("%s/%s/index.%s.html", cgit_cache_root,
cache_safe_filename(cgit_repo->url), cache_safe_filename(cgit_repo->url),
cache_safe_filename(cgit_querystring))); cache_safe_filename(ctx.qry.raw)));
item->ttl = cgit_cache_repo_ttl; item->ttl = cgit_cache_repo_ttl;
} else { } else {
item->name = xstrdup(fmt("%s/%s/%s/%s.html", cgit_cache_root, item->name = xstrdup(fmt("%s/%s/%s/%s.html", cgit_cache_root,
cache_safe_filename(cgit_repo->url), cache_safe_filename(cgit_repo->url),
cgit_query_page, ctx.qry.page,
cache_safe_filename(cgit_querystring))); cache_safe_filename(ctx.qry.raw)));
if (cgit_query_has_symref) if (ctx.qry.has_symref)
item->ttl = cgit_cache_dynamic_ttl; item->ttl = cgit_cache_dynamic_ttl;
else if (cgit_query_has_sha1) else if (ctx.qry.has_sha1)
item->ttl = cgit_cache_static_ttl; item->ttl = cgit_cache_static_ttl;
else else
item->ttl = cgit_cache_repo_ttl; item->ttl = cgit_cache_repo_ttl;
@ -98,12 +98,12 @@ static void cgit_print_repo_page(struct cacheitem *item)
show_search = 0; show_search = 0;
setenv("GIT_DIR", cgit_repo->path, 1); setenv("GIT_DIR", cgit_repo->path, 1);
if (!cgit_query_head) { if (!ctx.qry.head) {
cgit_query_head = xstrdup(find_default_branch(cgit_repo)); ctx.qry.head = xstrdup(find_default_branch(cgit_repo));
cgit_repo->defbranch = cgit_query_head; cgit_repo->defbranch = ctx.qry.head;
} }
if (!cgit_query_head) { if (!ctx.qry.head) {
cgit_print_docstart(title, item); cgit_print_docstart(title, item);
cgit_print_pageheader(title, 0); cgit_print_pageheader(title, 0);
cgit_print_error("Repository seems to be empty"); cgit_print_error("Repository seems to be empty");
@ -111,9 +111,9 @@ static void cgit_print_repo_page(struct cacheitem *item)
return; return;
} }
if (get_sha1(cgit_query_head, sha1)) { if (get_sha1(ctx.qry.head, sha1)) {
tmp = xstrdup(cgit_query_head); tmp = xstrdup(ctx.qry.head);
cgit_query_head = cgit_repo->defbranch; ctx.qry.head = cgit_repo->defbranch;
cgit_print_docstart(title, item); cgit_print_docstart(title, item);
cgit_print_pageheader(title, 0); cgit_print_pageheader(title, 0);
cgit_print_error(fmt("Invalid branch: %s", tmp)); cgit_print_error(fmt("Invalid branch: %s", tmp));
@ -122,20 +122,20 @@ static void cgit_print_repo_page(struct cacheitem *item)
} }
if ((cgit_cmd == CMD_SNAPSHOT) && cgit_repo->snapshots) { if ((cgit_cmd == CMD_SNAPSHOT) && cgit_repo->snapshots) {
cgit_print_snapshot(item, cgit_query_head, cgit_query_sha1, cgit_print_snapshot(item, ctx.qry.head, ctx.qry.sha1,
cgit_repobasename(cgit_repo->url), cgit_repobasename(cgit_repo->url),
cgit_query_path, ctx.qry.path,
cgit_repo->snapshots ); cgit_repo->snapshots );
return; return;
} }
if (cgit_cmd == CMD_PATCH) { if (cgit_cmd == CMD_PATCH) {
cgit_print_patch(cgit_query_sha1, item); cgit_print_patch(ctx.qry.sha1, item);
return; return;
} }
if (cgit_cmd == CMD_BLOB) { if (cgit_cmd == CMD_BLOB) {
cgit_print_blob(item, cgit_query_sha1, cgit_query_path); cgit_print_blob(item, ctx.qry.sha1, ctx.qry.path);
return; return;
} }
@ -148,28 +148,28 @@ static void cgit_print_repo_page(struct cacheitem *item)
return; return;
} }
cgit_print_pageheader(cgit_query_page, show_search); cgit_print_pageheader(ctx.qry.page, show_search);
switch(cgit_cmd) { switch(cgit_cmd) {
case CMD_LOG: case CMD_LOG:
cgit_print_log(cgit_query_sha1, cgit_query_ofs, cgit_print_log(ctx.qry.sha1, ctx.qry.ofs,
cgit_max_commit_count, cgit_query_grep, cgit_query_search, cgit_max_commit_count, ctx.qry.grep, ctx.qry.search,
cgit_query_path, 1); ctx.qry.path, 1);
break; break;
case CMD_TREE: case CMD_TREE:
cgit_print_tree(cgit_query_sha1, cgit_query_path); cgit_print_tree(ctx.qry.sha1, ctx.qry.path);
break; break;
case CMD_COMMIT: case CMD_COMMIT:
cgit_print_commit(cgit_query_sha1); cgit_print_commit(ctx.qry.sha1);
break; break;
case CMD_REFS: case CMD_REFS:
cgit_print_refs(); cgit_print_refs();
break; break;
case CMD_TAG: case CMD_TAG:
cgit_print_tag(cgit_query_sha1); cgit_print_tag(ctx.qry.sha1);
break; break;
case CMD_DIFF: case CMD_DIFF:
cgit_print_diff(cgit_query_sha1, cgit_query_sha2, cgit_query_path); cgit_print_diff(ctx.qry.sha1, ctx.qry.sha2, ctx.qry.path);
break; break;
default: default:
cgit_print_error("Invalid request"); cgit_print_error("Invalid request");
@ -264,24 +264,24 @@ static void cgit_parse_args(int argc, const char **argv)
cgit_nocache = 1; cgit_nocache = 1;
} }
if (!strncmp(argv[i], "--query=", 8)) { if (!strncmp(argv[i], "--query=", 8)) {
cgit_querystring = xstrdup(argv[i]+8); ctx.qry.raw = xstrdup(argv[i]+8);
} }
if (!strncmp(argv[i], "--repo=", 7)) { if (!strncmp(argv[i], "--repo=", 7)) {
cgit_query_repo = xstrdup(argv[i]+7); ctx.qry.repo = xstrdup(argv[i]+7);
} }
if (!strncmp(argv[i], "--page=", 7)) { if (!strncmp(argv[i], "--page=", 7)) {
cgit_query_page = xstrdup(argv[i]+7); ctx.qry.page = xstrdup(argv[i]+7);
} }
if (!strncmp(argv[i], "--head=", 7)) { if (!strncmp(argv[i], "--head=", 7)) {
cgit_query_head = xstrdup(argv[i]+7); ctx.qry.head = xstrdup(argv[i]+7);
cgit_query_has_symref = 1; ctx.qry.has_symref = 1;
} }
if (!strncmp(argv[i], "--sha1=", 7)) { if (!strncmp(argv[i], "--sha1=", 7)) {
cgit_query_sha1 = xstrdup(argv[i]+7); ctx.qry.sha1 = xstrdup(argv[i]+7);
cgit_query_has_sha1 = 1; ctx.qry.has_sha1 = 1;
} }
if (!strncmp(argv[i], "--ofs=", 6)) { if (!strncmp(argv[i], "--ofs=", 6)) {
cgit_query_ofs = atoi(argv[i]+6); ctx.qry.ofs = atoi(argv[i]+6);
} }
} }
} }
@ -303,9 +303,9 @@ int main(int argc, const char **argv)
if (getenv("SCRIPT_NAME")) if (getenv("SCRIPT_NAME"))
cgit_script_name = xstrdup(getenv("SCRIPT_NAME")); cgit_script_name = xstrdup(getenv("SCRIPT_NAME"));
if (getenv("QUERY_STRING")) if (getenv("QUERY_STRING"))
cgit_querystring = xstrdup(getenv("QUERY_STRING")); ctx.qry.raw = xstrdup(getenv("QUERY_STRING"));
cgit_parse_args(argc, argv); cgit_parse_args(argc, argv);
cgit_parse_query(cgit_querystring, cgit_querystring_cb); cgit_parse_query(ctx.qry.raw, cgit_querystring_cb);
if (!cgit_prepare_cache(&item)) if (!cgit_prepare_cache(&item))
return 0; return 0;
if (cgit_nocache) { if (cgit_nocache) {

@ -123,10 +123,31 @@ struct reflist {
int count; int count;
}; };
struct cgit_query {
int has_symref;
int has_sha1;
char *raw;
char *repo;
char *page;
char *search;
char *grep;
char *head;
char *sha1;
char *sha2;
char *path;
char *name;
int ofs;
};
struct cgit_context {
struct cgit_query qry;
};
extern const char *cgit_version; extern const char *cgit_version;
extern struct repolist cgit_repolist; extern struct repolist cgit_repolist;
extern struct repoinfo *cgit_repo; extern struct repoinfo *cgit_repo;
extern struct cgit_context ctx;
extern int cgit_cmd; extern int cgit_cmd;
extern char *cgit_root_title; extern char *cgit_root_title;
@ -163,20 +184,6 @@ extern int cgit_max_msg_len;
extern int cgit_max_repodesc_len; extern int cgit_max_repodesc_len;
extern int cgit_max_commit_count; extern int cgit_max_commit_count;
extern int cgit_query_has_symref;
extern int cgit_query_has_sha1;
extern char *cgit_querystring;
extern char *cgit_query_repo;
extern char *cgit_query_page;
extern char *cgit_query_search;
extern char *cgit_query_grep;
extern char *cgit_query_head;
extern char *cgit_query_sha1;
extern char *cgit_query_sha2;
extern char *cgit_query_path;
extern char *cgit_query_name;
extern int cgit_query_ofs;
extern int htmlfd; extern int htmlfd;

@ -149,7 +149,7 @@ void cgit_parse_url(const char *url)
cgit_repo = cgit_get_repoinfo(url); cgit_repo = cgit_get_repoinfo(url);
if (cgit_repo) { if (cgit_repo) {
cgit_query_repo = cgit_repo->url; ctx.qry.repo = cgit_repo->url;
return; return;
} }
@ -163,15 +163,15 @@ void cgit_parse_url(const char *url)
continue; continue;
} }
cgit_query_repo = cgit_repo->url; ctx.qry.repo = cgit_repo->url;
p = strchr(cmd + 1, '/'); p = strchr(cmd + 1, '/');
if (p) { if (p) {
p[0] = '\0'; p[0] = '\0';
if (p[1]) if (p[1])
cgit_query_path = trim_end(p + 1, '/'); ctx.qry.path = trim_end(p + 1, '/');
} }
cgit_cmd = cgit_get_cmd_index(cmd + 1); cgit_cmd = cgit_get_cmd_index(cmd + 1);
cgit_query_page = xstrdup(cmd + 1); ctx.qry.page = xstrdup(cmd + 1);
return; return;
} }
} }

@ -10,6 +10,7 @@
struct repolist cgit_repolist; struct repolist cgit_repolist;
struct repoinfo *cgit_repo; struct repoinfo *cgit_repo;
struct cgit_context ctx;
int cgit_cmd; int cgit_cmd;
const char *cgit_version = CGIT_VERSION; const char *cgit_version = CGIT_VERSION;
@ -49,24 +50,8 @@ int cgit_max_msg_len = 60;
int cgit_max_repodesc_len = 60; int cgit_max_repodesc_len = 60;
int cgit_max_commit_count = 50; int cgit_max_commit_count = 50;
int cgit_query_has_symref = 0;
int cgit_query_has_sha1 = 0;
char *cgit_querystring = NULL;
char *cgit_query_repo = NULL;
char *cgit_query_page = NULL;
char *cgit_query_head = NULL;
char *cgit_query_search = NULL;
char *cgit_query_grep = NULL;
char *cgit_query_sha1 = NULL;
char *cgit_query_sha2 = NULL;
char *cgit_query_path = NULL;
char *cgit_query_name = NULL;
int cgit_query_ofs = 0;
int htmlfd = 0; int htmlfd = 0;
int cgit_get_cmd_index(const char *cmd) int cgit_get_cmd_index(const char *cmd)
{ {
static char *cmds[] = {"log", "commit", "diff", "tree", "blob", static char *cmds[] = {"log", "commit", "diff", "tree", "blob",
@ -239,32 +224,32 @@ void cgit_global_config_cb(const char *name, const char *value)
void cgit_querystring_cb(const char *name, const char *value) void cgit_querystring_cb(const char *name, const char *value)
{ {
if (!strcmp(name,"r")) { if (!strcmp(name,"r")) {
cgit_query_repo = xstrdup(value); ctx.qry.repo = xstrdup(value);
cgit_repo = cgit_get_repoinfo(value); cgit_repo = cgit_get_repoinfo(value);
} else if (!strcmp(name, "p")) { } else if (!strcmp(name, "p")) {
cgit_query_page = xstrdup(value); ctx.qry.page = xstrdup(value);
cgit_cmd = cgit_get_cmd_index(value); cgit_cmd = cgit_get_cmd_index(value);
} else if (!strcmp(name, "url")) { } else if (!strcmp(name, "url")) {
cgit_parse_url(value); cgit_parse_url(value);
} else if (!strcmp(name, "qt")) { } else if (!strcmp(name, "qt")) {
cgit_query_grep = xstrdup(value); ctx.qry.grep = xstrdup(value);
} else if (!strcmp(name, "q")) { } else if (!strcmp(name, "q")) {
cgit_query_search = xstrdup(value); ctx.qry.search = xstrdup(value);
} else if (!strcmp(name, "h")) { } else if (!strcmp(name, "h")) {
cgit_query_head = xstrdup(value); ctx.qry.head = xstrdup(value);
cgit_query_has_symref = 1; ctx.qry.has_symref = 1;
} else if (!strcmp(name, "id")) { } else if (!strcmp(name, "id")) {
cgit_query_sha1 = xstrdup(value); ctx.qry.sha1 = xstrdup(value);
cgit_query_has_sha1 = 1; ctx.qry.has_sha1 = 1;
} else if (!strcmp(name, "id2")) { } else if (!strcmp(name, "id2")) {
cgit_query_sha2 = xstrdup(value); ctx.qry.sha2 = xstrdup(value);
cgit_query_has_sha1 = 1; ctx.qry.has_sha1 = 1;
} else if (!strcmp(name, "ofs")) { } else if (!strcmp(name, "ofs")) {
cgit_query_ofs = atoi(value); ctx.qry.ofs = atoi(value);
} else if (!strcmp(name, "path")) { } else if (!strcmp(name, "path")) {
cgit_query_path = trim_end(value, '/'); ctx.qry.path = trim_end(value, '/');
} else if (!strcmp(name, "name")) { } else if (!strcmp(name, "name")) {
cgit_query_name = xstrdup(value); ctx.qry.name = xstrdup(value);
} }
} }

@ -75,7 +75,7 @@ void print_fileinfo(struct fileinfo *info)
html("]</span>"); html("]</span>");
} }
htmlf("</td><td class='%s'>", class); htmlf("</td><td class='%s'>", class);
cgit_diff_link(info->new_path, NULL, NULL, cgit_query_head, curr_rev, cgit_diff_link(info->new_path, NULL, NULL, ctx.qry.head, curr_rev,
NULL, info->new_path); NULL, info->new_path);
if (info->status == DIFF_STATUS_COPIED || info->status == DIFF_STATUS_RENAMED) if (info->status == DIFF_STATUS_COPIED || info->status == DIFF_STATUS_RENAMED)
htmlf(" (%s from %s)", htmlf(" (%s from %s)",
@ -143,7 +143,7 @@ void cgit_print_commit(char *hex)
int i; int i;
if (!hex) if (!hex)
hex = cgit_query_head; hex = ctx.qry.head;
curr_rev = hex; curr_rev = hex;
if (get_sha1(hex, sha1)) { if (get_sha1(hex, sha1)) {
@ -175,7 +175,7 @@ void cgit_print_commit(char *hex)
html("<tr><th>tree</th><td colspan='2' class='sha1'>"); html("<tr><th>tree</th><td colspan='2' class='sha1'>");
tmp = xstrdup(hex); tmp = xstrdup(hex);
cgit_tree_link(sha1_to_hex(commit->tree->object.sha1), NULL, NULL, cgit_tree_link(sha1_to_hex(commit->tree->object.sha1), NULL, NULL,
cgit_query_head, tmp, NULL); ctx.qry.head, tmp, NULL);
html("</td></tr>\n"); html("</td></tr>\n");
for (p = commit->parents; p ; p = p->next) { for (p = commit->parents; p ; p = p->next) {
parent = lookup_commit_reference(p->item->object.sha1); parent = lookup_commit_reference(p->item->object.sha1);
@ -188,15 +188,15 @@ void cgit_print_commit(char *hex)
html("<tr><th>parent</th>" html("<tr><th>parent</th>"
"<td colspan='2' class='sha1'>"); "<td colspan='2' class='sha1'>");
cgit_commit_link(sha1_to_hex(p->item->object.sha1), NULL, NULL, cgit_commit_link(sha1_to_hex(p->item->object.sha1), NULL, NULL,
cgit_query_head, sha1_to_hex(p->item->object.sha1)); ctx.qry.head, sha1_to_hex(p->item->object.sha1));
html(" ("); html(" (");
cgit_diff_link("diff", NULL, NULL, cgit_query_head, hex, cgit_diff_link("diff", NULL, NULL, ctx.qry.head, hex,
sha1_to_hex(p->item->object.sha1), NULL); sha1_to_hex(p->item->object.sha1), NULL);
html(")</td></tr>"); html(")</td></tr>");
} }
if (cgit_repo->snapshots) { if (cgit_repo->snapshots) {
html("<tr><th>download</th><td colspan='2' class='sha1'>"); html("<tr><th>download</th><td colspan='2' class='sha1'>");
cgit_print_snapshot_links(cgit_query_repo, cgit_query_head, cgit_print_snapshot_links(ctx.qry.repo, ctx.qry.head,
hex, cgit_repo->snapshots); hex, cgit_repo->snapshots);
html("</td></tr>"); html("</td></tr>");
} }
@ -218,7 +218,7 @@ void cgit_print_commit(char *hex)
html("<div class='diffstat-summary'>"); html("<div class='diffstat-summary'>");
htmlf("%d files changed, %d insertions, %d deletions (", htmlf("%d files changed, %d insertions, %d deletions (",
files, total_adds, total_rems); files, total_adds, total_rems);
cgit_diff_link("show diff", NULL, NULL, cgit_query_head, hex, cgit_diff_link("show diff", NULL, NULL, ctx.qry.head, hex,
NULL, NULL); NULL, NULL);
html(")</div>"); html(")</div>");
} }

@ -71,13 +71,13 @@ static void header(unsigned char *sha1, char *path1, int mode1,
} }
html("<br/>--- a/"); html("<br/>--- a/");
if (mode1 != 0) if (mode1 != 0)
cgit_tree_link(path1, NULL, NULL, cgit_query_head, cgit_tree_link(path1, NULL, NULL, ctx.qry.head,
sha1_to_hex(old_rev_sha1), path1); sha1_to_hex(old_rev_sha1), path1);
else else
html_txt(path1); html_txt(path1);
html("<br/>+++ b/"); html("<br/>+++ b/");
if (mode2 != 0) if (mode2 != 0)
cgit_tree_link(path2, NULL, NULL, cgit_query_head, cgit_tree_link(path2, NULL, NULL, ctx.qry.head,
sha1_to_hex(new_rev_sha1), path2); sha1_to_hex(new_rev_sha1), path2);
else else
html_txt(path2); html_txt(path2);
@ -107,7 +107,7 @@ void cgit_print_diff(const char *new_rev, const char *old_rev, const char *prefi
struct commit *commit, *commit2; struct commit *commit, *commit2;
if (!new_rev) if (!new_rev)
new_rev = cgit_query_head; new_rev = ctx.qry.head;
get_sha1(new_rev, new_rev_sha1); get_sha1(new_rev, new_rev_sha1);
type = sha1_object_info(new_rev_sha1, &size); type = sha1_object_info(new_rev_sha1, &size);
if (type == OBJ_BAD) { if (type == OBJ_BAD) {

@ -37,7 +37,7 @@ void print_commit(struct commit *commit)
html("<tr><td>"); html("<tr><td>");
cgit_print_age(commit->date, TM_WEEK * 2, FMT_SHORTDATE); cgit_print_age(commit->date, TM_WEEK * 2, FMT_SHORTDATE);
html("</td><td>"); html("</td><td>");
cgit_commit_link(info->subject, NULL, NULL, cgit_query_head, cgit_commit_link(info->subject, NULL, NULL, ctx.qry.head,
sha1_to_hex(commit->object.sha1)); sha1_to_hex(commit->object.sha1));
if (cgit_repo->enable_log_filecount) { if (cgit_repo->enable_log_filecount) {
files = 0; files = 0;
@ -67,7 +67,7 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *pattern
int i; int i;
if (!tip) if (!tip)
argv[1] = cgit_query_head; argv[1] = ctx.qry.head;
if (grep && pattern && (!strcmp(grep, "grep") || if (grep && pattern && (!strcmp(grep, "grep") ||
!strcmp(grep, "author") || !strcmp(grep, "author") ||
@ -123,17 +123,17 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *pattern
if (pager) { if (pager) {
html("<div class='pager'>"); html("<div class='pager'>");
if (ofs > 0) { if (ofs > 0) {
cgit_log_link("[prev]", NULL, NULL, cgit_query_head, cgit_log_link("[prev]", NULL, NULL, ctx.qry.head,
cgit_query_sha1, cgit_query_path, ctx.qry.sha1, ctx.qry.path,
ofs - cnt, cgit_query_grep, ofs - cnt, ctx.qry.grep,
cgit_query_search); ctx.qry.search);
html("&nbsp;"); html("&nbsp;");
} }
if ((commit = get_revision(&rev)) != NULL) { if ((commit = get_revision(&rev)) != NULL) {
cgit_log_link("[next]", NULL, NULL, cgit_query_head, cgit_log_link("[next]", NULL, NULL, ctx.qry.head,
cgit_query_sha1, cgit_query_path, ctx.qry.sha1, ctx.qry.path,
ofs + cnt, cgit_query_grep, ofs + cnt, ctx.qry.grep,
cgit_query_search); ctx.qry.search);
} }
html("</div>"); html("</div>");
} }

@ -76,7 +76,7 @@ void cgit_print_patch(char *hex, struct cacheitem *item)
char *patchname; char *patchname;
if (!hex) if (!hex)
hex = cgit_query_head; hex = ctx.qry.head;
if (get_sha1(hex, sha1)) { if (get_sha1(hex, sha1)) {
cgit_print_error(fmt("Bad object id: %s", hex)); cgit_print_error(fmt("Bad object id: %s", hex));

@ -16,9 +16,9 @@ void cgit_print_refs()
html("<table class='list nowrap'>"); html("<table class='list nowrap'>");
if (cgit_query_path && !strncmp(cgit_query_path, "heads", 5)) if (ctx.qry.path && !strncmp(ctx.qry.path, "heads", 5))
cgit_print_branches(0); cgit_print_branches(0);
else if (cgit_query_path && !strncmp(cgit_query_path, "tags", 4)) else if (ctx.qry.path && !strncmp(ctx.qry.path, "tags", 4))
cgit_print_tags(0); cgit_print_tags(0);
else { else {
cgit_print_branches(0); cgit_print_branches(0);

@ -112,10 +112,10 @@ char *cgit_currurl()
{ {
if (!cgit_virtual_root) if (!cgit_virtual_root)
return cgit_script_name; return cgit_script_name;
else if (cgit_query_page) else if (ctx.qry.page)
return fmt("%s/%s/%s/", cgit_virtual_root, cgit_query_repo, cgit_query_page); return fmt("%s/%s/%s/", cgit_virtual_root, ctx.qry.repo, ctx.qry.page);
else if (cgit_query_repo) else if (ctx.qry.repo)
return fmt("%s/%s/", cgit_virtual_root, cgit_query_repo); return fmt("%s/%s/", cgit_virtual_root, ctx.qry.repo);
else else
return fmt("%s/", cgit_virtual_root); return fmt("%s/", cgit_virtual_root);
} }
@ -179,7 +179,7 @@ static void reporevlink(char *page, char *name, char *title, char *class,
char *delim; char *delim;
delim = repolink(title, class, page, head, path); delim = repolink(title, class, page, head, path);
if (rev && strcmp(rev, cgit_query_head)) { if (rev && strcmp(rev, ctx.qry.head)) {
html(delim); html(delim);
html("id="); html("id=");
html_attr(rev); html_attr(rev);
@ -201,7 +201,7 @@ void cgit_log_link(char *name, char *title, char *class, char *head,
char *delim; char *delim;
delim = repolink(title, class, "log", head, path); delim = repolink(title, class, "log", head, path);
if (rev && strcmp(rev, cgit_query_head)) { if (rev && strcmp(rev, ctx.qry.head)) {
html(delim); html(delim);
html("id="); html("id=");
html_attr(rev); html_attr(rev);
@ -256,7 +256,7 @@ void cgit_diff_link(char *name, char *title, char *class, char *head,
char *delim; char *delim;
delim = repolink(title, class, "diff", head, path); delim = repolink(title, class, "diff", head, path);
if (new_rev && strcmp(new_rev, cgit_query_head)) { if (new_rev && strcmp(new_rev, ctx.qry.head)) {
html(delim); html(delim);
html("id="); html("id=");
html_attr(new_rev); html_attr(new_rev);
@ -284,7 +284,7 @@ void cgit_object_link(struct object *obj)
if (obj->type == OBJ_COMMIT) { if (obj->type == OBJ_COMMIT) {
cgit_commit_link(fmt("commit %s", sha1_to_hex(obj->sha1)), NULL, NULL, cgit_commit_link(fmt("commit %s", sha1_to_hex(obj->sha1)), NULL, NULL,
cgit_query_head, sha1_to_hex(obj->sha1)); ctx.qry.head, sha1_to_hex(obj->sha1));
return; return;
} else if (obj->type == OBJ_TREE) { } else if (obj->type == OBJ_TREE) {
page = "tree"; page = "tree";
@ -297,7 +297,7 @@ void cgit_object_link(struct object *obj)
arg = "id"; arg = "id";
} }
url = cgit_pageurl(cgit_query_repo, page, url = cgit_pageurl(ctx.qry.repo, page,
fmt("%s=%s", arg, sha1_to_hex(obj->sha1))); fmt("%s=%s", arg, sha1_to_hex(obj->sha1)));
html_link_open(url, NULL, NULL); html_link_open(url, NULL, NULL);
htmlf("%s %s", typename(obj->type), htmlf("%s %s", typename(obj->type),
@ -392,7 +392,7 @@ int print_branch_option(const char *refname, const unsigned char *sha1,
int flags, void *cb_data) int flags, void *cb_data)
{ {
char *name = (char *)refname; char *name = (char *)refname;
html_option(name, name, cgit_query_head); html_option(name, name, ctx.qry.head);
return 0; return 0;
} }
@ -426,7 +426,7 @@ int print_archive_ref(const char *refname, const unsigned char *sha1,
html("<h1>download</h1>\n"); html("<h1>download</h1>\n");
*header = 1; *header = 1;
} }
url = cgit_pageurl(cgit_query_repo, "blob", url = cgit_pageurl(ctx.qry.repo, "blob",
fmt("id=%s&amp;path=%s", sha1_to_hex(fileid), fmt("id=%s&amp;path=%s", sha1_to_hex(fileid),
buf)); buf));
html_link_open(url, NULL, "menu"); html_link_open(url, NULL, "menu");
@ -440,25 +440,25 @@ void add_hidden_formfields(int incl_head, int incl_search, char *page)
char *url; char *url;
if (!cgit_virtual_root) { if (!cgit_virtual_root) {
url = fmt("%s/%s", cgit_query_repo, page); url = fmt("%s/%s", ctx.qry.repo, page);
if (cgit_query_path) if (ctx.qry.path)
url = fmt("%s/%s", url, cgit_query_path); url = fmt("%s/%s", url, ctx.qry.path);
html_hidden("url", url); html_hidden("url", url);
} }
if (incl_head && strcmp(cgit_query_head, cgit_repo->defbranch)) if (incl_head && strcmp(ctx.qry.head, cgit_repo->defbranch))
html_hidden("h", cgit_query_head); html_hidden("h", ctx.qry.head);
if (cgit_query_sha1) if (ctx.qry.sha1)
html_hidden("id", cgit_query_sha1); html_hidden("id", ctx.qry.sha1);
if (cgit_query_sha2) if (ctx.qry.sha2)
html_hidden("id2", cgit_query_sha2); html_hidden("id2", ctx.qry.sha2);
if (incl_search) { if (incl_search) {
if (cgit_query_grep) if (ctx.qry.grep)
html_hidden("qt", cgit_query_grep); html_hidden("qt", ctx.qry.grep);
if (cgit_query_search) if (ctx.qry.search)
html_hidden("q", cgit_query_search); html_hidden("q", ctx.qry.search);
} }
} }
@ -476,7 +476,7 @@ void cgit_print_pageheader(char *title, int show_search)
htmlf("'><img src='%s' alt='cgit'/></a>\n", htmlf("'><img src='%s' alt='cgit'/></a>\n",
cgit_logo); cgit_logo);
html("</td></tr>\n<tr><td class='sidebar'>\n"); html("</td></tr>\n<tr><td class='sidebar'>\n");
if (cgit_query_repo) { if (ctx.qry.repo) {
html("<h1 class='first'>"); html("<h1 class='first'>");
html_txt(strrpart(cgit_repo->name, 20)); html_txt(strrpart(cgit_repo->name, 20));
html("</h1>\n"); html("</h1>\n");
@ -486,18 +486,18 @@ void cgit_print_pageheader(char *title, int show_search)
html_txt(cgit_repo->owner); html_txt(cgit_repo->owner);
} }
html("<h1>navigate</h1>\n"); html("<h1>navigate</h1>\n");
reporevlink(NULL, "summary", NULL, "menu", cgit_query_head, reporevlink(NULL, "summary", NULL, "menu", ctx.qry.head,
NULL, NULL); NULL, NULL);
cgit_log_link("log", NULL, "menu", cgit_query_head, NULL, NULL, cgit_log_link("log", NULL, "menu", ctx.qry.head, NULL, NULL,
0, NULL, NULL); 0, NULL, NULL);
cgit_tree_link("tree", NULL, "menu", cgit_query_head, cgit_tree_link("tree", NULL, "menu", ctx.qry.head,
cgit_query_sha1, NULL); ctx.qry.sha1, NULL);
cgit_commit_link("commit", NULL, "menu", cgit_query_head, cgit_commit_link("commit", NULL, "menu", ctx.qry.head,
cgit_query_sha1); ctx.qry.sha1);
cgit_diff_link("diff", NULL, "menu", cgit_query_head, cgit_diff_link("diff", NULL, "menu", ctx.qry.head,
cgit_query_sha1, cgit_query_sha2, NULL); ctx.qry.sha1, ctx.qry.sha2, NULL);
cgit_patch_link("patch", NULL, "menu", cgit_query_head, cgit_patch_link("patch", NULL, "menu", ctx.qry.head,
cgit_query_sha1); ctx.qry.sha1);
for_each_ref(print_archive_ref, &header); for_each_ref(print_archive_ref, &header);
@ -519,10 +519,10 @@ void cgit_print_pageheader(char *title, int show_search)
html("<h1>branch</h1>\n"); html("<h1>branch</h1>\n");
html("<form method='get' action=''>\n"); html("<form method='get' action=''>\n");
add_hidden_formfields(0, 1, cgit_query_page); add_hidden_formfields(0, 1, ctx.qry.page);
// html("<table summary='branch selector' class='grid'><tr><td id='branch-dropdown-cell'>"); // html("<table summary='branch selector' class='grid'><tr><td id='branch-dropdown-cell'>");
html("<select name='h' onchange='this.form.submit();'>\n"); html("<select name='h' onchange='this.form.submit();'>\n");
for_each_branch_ref(print_branch_option, cgit_query_head); for_each_branch_ref(print_branch_option, ctx.qry.head);
html("</select>\n"); html("</select>\n");
// html("</td><td>"); // html("</td><td>");
html("<noscript><input type='submit' id='switch-btn' value='switch'/></noscript>\n"); html("<noscript><input type='submit' id='switch-btn' value='switch'/></noscript>\n");
@ -532,17 +532,17 @@ void cgit_print_pageheader(char *title, int show_search)
html("<h1>search</h1>\n"); html("<h1>search</h1>\n");
html("<form method='get' action='"); html("<form method='get' action='");
if (cgit_virtual_root) if (cgit_virtual_root)
html_attr(cgit_fileurl(cgit_query_repo, "log", html_attr(cgit_fileurl(ctx.qry.repo, "log",
cgit_query_path, NULL)); ctx.qry.path, NULL));
html("'>\n"); html("'>\n");
add_hidden_formfields(1, 0, "log"); add_hidden_formfields(1, 0, "log");
html("<select name='qt'>\n"); html("<select name='qt'>\n");
html_option("grep", "log msg", cgit_query_grep); html_option("grep", "log msg", ctx.qry.grep);
html_option("author", "author", cgit_query_grep); html_option("author", "author", ctx.qry.grep);
html_option("committer", "committer", cgit_query_grep); html_option("committer", "committer", ctx.qry.grep);
html("</select>\n"); html("</select>\n");
html("<input class='txt' type='text' name='q' value='"); html("<input class='txt' type='text' name='q' value='");
html_attr(cgit_query_search); html_attr(ctx.qry.search);
html("'/>\n"); html("'/>\n");
html("</form>\n"); html("</form>\n");
} else { } else {

@ -94,7 +94,7 @@ static int print_tag(struct refinfo *ref)
if (!tag || !info) if (!tag || !info)
return 1; return 1;
html("<tr><td>"); html("<tr><td>");
url = cgit_pageurl(cgit_query_repo, "tag", url = cgit_pageurl(ctx.qry.repo, "tag",
fmt("id=%s", name)); fmt("id=%s", name));
html_link_open(url, NULL, NULL); html_link_open(url, NULL, NULL);
html_txt(name); html_txt(name);
@ -123,7 +123,7 @@ static int print_tag(struct refinfo *ref)
static void print_refs_link(char *path) static void print_refs_link(char *path)
{ {
html("<tr class='nohover'><td colspan='4'>"); html("<tr class='nohover'><td colspan='4'>");
cgit_refs_link("[...]", NULL, NULL, cgit_query_head, NULL, path); cgit_refs_link("[...]", NULL, NULL, ctx.qry.head, NULL, path);
html("</td></tr>"); html("</td></tr>");
} }
@ -188,7 +188,7 @@ void cgit_print_summary()
html("</div>"); html("</div>");
} }
if (cgit_summary_log > 0) if (cgit_summary_log > 0)
cgit_print_log(cgit_query_head, 0, cgit_summary_log, NULL, cgit_print_log(ctx.qry.head, 0, cgit_summary_log, NULL,
NULL, NULL, 0); NULL, NULL, 0);
html("<table summary='repository info' class='list nowrap'>"); html("<table summary='repository info' class='list nowrap'>");
if (cgit_summary_log > 0) if (cgit_summary_log > 0)

@ -34,7 +34,7 @@ static void print_object(const unsigned char *sha1, char *path)
} }
html(" blob: <a href='"); html(" blob: <a href='");
html_attr(cgit_pageurl(cgit_query_repo, "blob", fmt("id=%s", sha1_to_hex(sha1)))); html_attr(cgit_pageurl(ctx.qry.repo, "blob", fmt("id=%s", sha1_to_hex(sha1))));
htmlf("'>%s</a>",sha1_to_hex(sha1)); htmlf("'>%s</a>",sha1_to_hex(sha1));
html("<table summary='blob content' class='blob'>\n"); html("<table summary='blob content' class='blob'>\n");
@ -67,8 +67,8 @@ static int ls_item(const unsigned char *sha1, const char *base, int baselen,
unsigned long size = 0; unsigned long size = 0;
name = xstrdup(pathname); name = xstrdup(pathname);
fullpath = fmt("%s%s%s", cgit_query_path ? cgit_query_path : "", fullpath = fmt("%s%s%s", ctx.qry.path ? ctx.qry.path : "",
cgit_query_path ? "/" : "", name); ctx.qry.path ? "/" : "", name);
type = sha1_object_info(sha1, &size); type = sha1_object_info(sha1, &size);
if (type == OBJ_BAD && !S_ISGITLINK(mode)) { if (type == OBJ_BAD && !S_ISGITLINK(mode)) {
@ -90,16 +90,16 @@ static int ls_item(const unsigned char *sha1, const char *base, int baselen,
html_txt(name); html_txt(name);
html("</a>"); html("</a>");
} else if (S_ISDIR(mode)) { } else if (S_ISDIR(mode)) {
cgit_tree_link(name, NULL, "ls-dir", cgit_query_head, cgit_tree_link(name, NULL, "ls-dir", ctx.qry.head,
curr_rev, fullpath); curr_rev, fullpath);
} else { } else {
cgit_tree_link(name, NULL, "ls-blob", cgit_query_head, cgit_tree_link(name, NULL, "ls-blob", ctx.qry.head,
curr_rev, fullpath); curr_rev, fullpath);
} }
htmlf("</td><td class='ls-size'>%li</td>", size); htmlf("</td><td class='ls-size'>%li</td>", size);
html("<td>"); html("<td>");
cgit_log_link("log", NULL, "button", cgit_query_head, curr_rev, cgit_log_link("log", NULL, "button", ctx.qry.head, curr_rev,
fullpath, 0, NULL, NULL); fullpath, 0, NULL, NULL);
html("</td></tr>\n"); html("</td></tr>\n");
free(name); free(name);
@ -153,10 +153,10 @@ static int walk_tree(const unsigned char *sha1, const char *base, int baselen,
if (state == 0) { if (state == 0) {
memcpy(buffer, base, baselen); memcpy(buffer, base, baselen);
strcpy(buffer+baselen, pathname); strcpy(buffer+baselen, pathname);
url = cgit_pageurl(cgit_query_repo, "tree", url = cgit_pageurl(ctx.qry.repo, "tree",
fmt("h=%s&amp;path=%s", curr_rev, buffer)); fmt("h=%s&amp;path=%s", curr_rev, buffer));
html("/"); html("/");
cgit_tree_link(xstrdup(pathname), NULL, NULL, cgit_query_head, cgit_tree_link(xstrdup(pathname), NULL, NULL, ctx.qry.head,
curr_rev, buffer); curr_rev, buffer);
if (strcmp(match_path, buffer)) if (strcmp(match_path, buffer))
@ -188,7 +188,7 @@ void cgit_print_tree(const char *rev, char *path)
const char *paths[] = {path, NULL}; const char *paths[] = {path, NULL};
if (!rev) if (!rev)
rev = cgit_query_head; rev = ctx.qry.head;
curr_rev = xstrdup(rev); curr_rev = xstrdup(rev);
if (get_sha1(rev, sha1)) { if (get_sha1(rev, sha1)) {
@ -202,7 +202,7 @@ void cgit_print_tree(const char *rev, char *path)
} }
html("path: <a href='"); html("path: <a href='");
html_attr(cgit_pageurl(cgit_query_repo, "tree", fmt("h=%s", rev))); html_attr(cgit_pageurl(ctx.qry.repo, "tree", fmt("h=%s", rev)));
html("'>root</a>"); html("'>root</a>");
if (path == NULL) { if (path == NULL) {

Loading…
Cancel
Save