2008-03-24 01:09:39 +01:00
|
|
|
/* cmd.c: the cgit command dispatcher
|
|
|
|
*
|
2017-10-02 06:39:08 +02:00
|
|
|
* Copyright (C) 2006-2017 cgit Development Team <cgit@lists.zx2c4.com>
|
2008-03-24 01:09:39 +01:00
|
|
|
*
|
|
|
|
* Licensed under GNU General Public License v2
|
|
|
|
* (see COPYING for full license text)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "cgit.h"
|
|
|
|
#include "cmd.h"
|
2008-04-28 12:10:13 +02:00
|
|
|
#include "cache.h"
|
|
|
|
#include "ui-shared.h"
|
2008-05-21 08:17:54 +02:00
|
|
|
#include "ui-atom.h"
|
2017-10-02 06:39:08 +02:00
|
|
|
#include "ui-blame.h"
|
2008-03-24 16:38:47 +01:00
|
|
|
#include "ui-blob.h"
|
2008-08-06 01:20:24 +02:00
|
|
|
#include "ui-clone.h"
|
2008-03-24 16:38:47 +01:00
|
|
|
#include "ui-commit.h"
|
|
|
|
#include "ui-diff.h"
|
|
|
|
#include "ui-log.h"
|
|
|
|
#include "ui-patch.h"
|
2008-08-06 10:53:50 +02:00
|
|
|
#include "ui-plain.h"
|
2008-03-24 16:38:47 +01:00
|
|
|
#include "ui-refs.h"
|
|
|
|
#include "ui-repolist.h"
|
|
|
|
#include "ui-snapshot.h"
|
2008-12-06 17:38:19 +01:00
|
|
|
#include "ui-stats.h"
|
2008-03-24 16:38:47 +01:00
|
|
|
#include "ui-summary.h"
|
|
|
|
#include "ui-tag.h"
|
|
|
|
#include "ui-tree.h"
|
2008-03-24 01:09:39 +01:00
|
|
|
|
2014-01-15 21:53:15 +01:00
|
|
|
static void HEAD_fn(void)
|
2008-08-06 01:20:24 +02:00
|
|
|
{
|
2014-01-15 21:53:15 +01:00
|
|
|
cgit_clone_head();
|
2008-08-06 01:20:24 +02:00
|
|
|
}
|
|
|
|
|
2014-01-15 21:53:15 +01:00
|
|
|
static void atom_fn(void)
|
2008-05-21 08:17:54 +02:00
|
|
|
{
|
2014-01-15 21:53:15 +01:00
|
|
|
cgit_print_atom(ctx.qry.head, ctx.qry.path, ctx.cfg.max_atom_items);
|
2008-05-21 08:17:54 +02:00
|
|
|
}
|
|
|
|
|
2014-01-15 21:53:15 +01:00
|
|
|
static void about_fn(void)
|
2008-04-29 01:09:41 +02:00
|
|
|
{
|
2015-08-14 15:54:32 +02:00
|
|
|
if (ctx.repo) {
|
2016-02-26 13:14:43 +01:00
|
|
|
size_t path_info_len = ctx.env.path_info ? strlen(ctx.env.path_info) : 0;
|
2015-08-14 15:54:32 +02:00
|
|
|
if (!ctx.qry.path &&
|
|
|
|
ctx.qry.url[strlen(ctx.qry.url) - 1] != '/' &&
|
2016-02-26 13:14:43 +01:00
|
|
|
(!path_info_len || ctx.env.path_info[path_info_len - 1] != '/')) {
|
2015-10-09 13:15:49 +02:00
|
|
|
char *currenturl = cgit_currenturl();
|
|
|
|
char *redirect = fmtalloc("%s/", currenturl);
|
|
|
|
cgit_redirect(redirect, true);
|
|
|
|
free(currenturl);
|
|
|
|
free(redirect);
|
2016-02-22 16:33:49 +01:00
|
|
|
} else if (ctx.repo->readme.nr)
|
2015-08-14 15:54:32 +02:00
|
|
|
cgit_print_repo_readme(ctx.qry.path);
|
2016-02-22 16:33:49 +01:00
|
|
|
else if (ctx.repo->homepage)
|
|
|
|
cgit_redirect(ctx.repo->homepage, false);
|
|
|
|
else {
|
|
|
|
char *currenturl = cgit_currenturl();
|
|
|
|
char *redirect = fmtalloc("%s../", currenturl);
|
|
|
|
cgit_redirect(redirect, false);
|
|
|
|
free(currenturl);
|
|
|
|
free(redirect);
|
|
|
|
}
|
2015-08-14 15:54:32 +02:00
|
|
|
} else
|
2008-04-29 01:09:41 +02:00
|
|
|
cgit_print_site_readme();
|
|
|
|
}
|
|
|
|
|
2017-10-02 06:39:08 +02:00
|
|
|
static void blame_fn(void)
|
|
|
|
{
|
|
|
|
if (ctx.cfg.enable_blame)
|
|
|
|
cgit_print_blame();
|
|
|
|
else
|
|
|
|
cgit_print_error_page(403, "Forbidden", "Blame is disabled");
|
|
|
|
}
|
|
|
|
|
2014-01-15 21:53:15 +01:00
|
|
|
static void blob_fn(void)
|
2008-03-24 01:09:39 +01:00
|
|
|
{
|
2014-01-15 21:53:15 +01:00
|
|
|
cgit_print_blob(ctx.qry.sha1, ctx.qry.path, ctx.qry.head, 0);
|
2008-03-24 01:09:39 +01:00
|
|
|
}
|
|
|
|
|
2014-01-15 21:53:15 +01:00
|
|
|
static void commit_fn(void)
|
2008-03-24 01:09:39 +01:00
|
|
|
{
|
2014-01-15 21:53:15 +01:00
|
|
|
cgit_print_commit(ctx.qry.sha1, ctx.qry.path);
|
2008-03-24 01:09:39 +01:00
|
|
|
}
|
|
|
|
|
2014-01-15 21:53:15 +01:00
|
|
|
static void diff_fn(void)
|
2008-03-24 01:09:39 +01:00
|
|
|
{
|
2014-01-15 21:53:15 +01:00
|
|
|
cgit_print_diff(ctx.qry.sha1, ctx.qry.sha2, ctx.qry.path, 1, 0);
|
2008-03-24 01:09:39 +01:00
|
|
|
}
|
|
|
|
|
2014-01-15 21:53:15 +01:00
|
|
|
static void rawdiff_fn(void)
|
2013-08-14 10:50:33 +02:00
|
|
|
{
|
2014-01-15 21:53:15 +01:00
|
|
|
cgit_print_diff(ctx.qry.sha1, ctx.qry.sha2, ctx.qry.path, 1, 1);
|
2013-08-14 10:50:33 +02:00
|
|
|
}
|
|
|
|
|
2014-01-15 21:53:15 +01:00
|
|
|
static void info_fn(void)
|
2008-08-06 01:20:24 +02:00
|
|
|
{
|
2014-01-15 21:53:15 +01:00
|
|
|
cgit_clone_info();
|
2008-08-06 01:20:24 +02:00
|
|
|
}
|
|
|
|
|
2014-01-15 21:53:15 +01:00
|
|
|
static void log_fn(void)
|
2008-03-24 01:09:39 +01:00
|
|
|
{
|
2014-01-15 21:53:15 +01:00
|
|
|
cgit_print_log(ctx.qry.sha1, ctx.qry.ofs, ctx.cfg.max_commit_count,
|
|
|
|
ctx.qry.grep, ctx.qry.search, ctx.qry.path, 1,
|
|
|
|
ctx.repo->enable_commit_graph,
|
|
|
|
ctx.repo->commit_sort);
|
2008-03-24 01:09:39 +01:00
|
|
|
}
|
|
|
|
|
2014-01-15 21:53:15 +01:00
|
|
|
static void ls_cache_fn(void)
|
2008-04-28 12:10:13 +02:00
|
|
|
{
|
2014-01-15 21:53:15 +01:00
|
|
|
ctx.page.mimetype = "text/plain";
|
|
|
|
ctx.page.filename = "ls-cache.txt";
|
|
|
|
cgit_print_http_headers();
|
|
|
|
cache_ls(ctx.cfg.cache_root);
|
2008-04-28 12:10:13 +02:00
|
|
|
}
|
|
|
|
|
2014-01-15 21:53:15 +01:00
|
|
|
static void objects_fn(void)
|
2008-08-06 01:20:24 +02:00
|
|
|
{
|
2014-01-15 21:53:15 +01:00
|
|
|
cgit_clone_objects();
|
2008-08-06 01:20:24 +02:00
|
|
|
}
|
|
|
|
|
2014-01-15 21:53:15 +01:00
|
|
|
static void repolist_fn(void)
|
2008-04-28 12:10:13 +02:00
|
|
|
{
|
|
|
|
cgit_print_repolist();
|
|
|
|
}
|
|
|
|
|
2014-01-15 21:53:15 +01:00
|
|
|
static void patch_fn(void)
|
2008-03-24 01:09:39 +01:00
|
|
|
{
|
2014-01-15 21:53:15 +01:00
|
|
|
cgit_print_patch(ctx.qry.sha1, ctx.qry.sha2, ctx.qry.path);
|
2008-03-24 01:09:39 +01:00
|
|
|
}
|
|
|
|
|
2014-01-15 21:53:15 +01:00
|
|
|
static void plain_fn(void)
|
2008-08-06 10:53:50 +02:00
|
|
|
{
|
2014-01-15 21:53:15 +01:00
|
|
|
cgit_print_plain();
|
2008-08-06 10:53:50 +02:00
|
|
|
}
|
|
|
|
|
2014-01-15 21:53:15 +01:00
|
|
|
static void refs_fn(void)
|
2008-03-24 01:09:39 +01:00
|
|
|
{
|
|
|
|
cgit_print_refs();
|
|
|
|
}
|
|
|
|
|
2014-01-15 21:53:15 +01:00
|
|
|
static void snapshot_fn(void)
|
2008-03-24 01:09:39 +01:00
|
|
|
{
|
2014-01-15 21:53:15 +01:00
|
|
|
cgit_print_snapshot(ctx.qry.head, ctx.qry.sha1, ctx.qry.path,
|
2014-02-08 14:37:29 +01:00
|
|
|
ctx.qry.nohead);
|
2008-03-24 01:09:39 +01:00
|
|
|
}
|
|
|
|
|
2014-01-15 21:53:15 +01:00
|
|
|
static void stats_fn(void)
|
2008-12-06 17:38:19 +01:00
|
|
|
{
|
2014-01-15 21:53:15 +01:00
|
|
|
cgit_show_stats();
|
2008-12-06 17:38:19 +01:00
|
|
|
}
|
|
|
|
|
2014-01-15 21:53:15 +01:00
|
|
|
static void summary_fn(void)
|
2008-03-24 01:09:39 +01:00
|
|
|
{
|
|
|
|
cgit_print_summary();
|
|
|
|
}
|
|
|
|
|
2014-01-15 21:53:15 +01:00
|
|
|
static void tag_fn(void)
|
2008-03-24 01:09:39 +01:00
|
|
|
{
|
2014-01-15 21:53:15 +01:00
|
|
|
cgit_print_tag(ctx.qry.sha1);
|
2008-03-24 01:09:39 +01:00
|
|
|
}
|
|
|
|
|
2014-01-15 21:53:15 +01:00
|
|
|
static void tree_fn(void)
|
2008-03-24 01:09:39 +01:00
|
|
|
{
|
2014-01-15 21:53:15 +01:00
|
|
|
cgit_print_tree(ctx.qry.sha1, ctx.qry.path);
|
2008-03-24 01:09:39 +01:00
|
|
|
}
|
|
|
|
|
2015-08-14 13:47:21 +02:00
|
|
|
#define def_cmd(name, want_repo, want_vpath, is_clone) \
|
2015-08-14 16:20:23 +02:00
|
|
|
{#name, name##_fn, want_repo, want_vpath, is_clone}
|
2008-03-24 01:09:39 +01:00
|
|
|
|
2014-01-15 21:53:15 +01:00
|
|
|
struct cgit_cmd *cgit_get_cmd(void)
|
2008-03-24 01:09:39 +01:00
|
|
|
{
|
|
|
|
static struct cgit_cmd cmds[] = {
|
2015-08-14 13:47:21 +02:00
|
|
|
def_cmd(HEAD, 1, 0, 1),
|
|
|
|
def_cmd(atom, 1, 0, 0),
|
2015-08-14 15:54:32 +02:00
|
|
|
def_cmd(about, 0, 0, 0),
|
2017-10-02 06:39:08 +02:00
|
|
|
def_cmd(blame, 1, 1, 0),
|
2015-08-14 13:47:21 +02:00
|
|
|
def_cmd(blob, 1, 0, 0),
|
|
|
|
def_cmd(commit, 1, 1, 0),
|
|
|
|
def_cmd(diff, 1, 1, 0),
|
|
|
|
def_cmd(info, 1, 0, 1),
|
|
|
|
def_cmd(log, 1, 1, 0),
|
|
|
|
def_cmd(ls_cache, 0, 0, 0),
|
|
|
|
def_cmd(objects, 1, 0, 1),
|
|
|
|
def_cmd(patch, 1, 1, 0),
|
|
|
|
def_cmd(plain, 1, 0, 0),
|
|
|
|
def_cmd(rawdiff, 1, 1, 0),
|
|
|
|
def_cmd(refs, 1, 0, 0),
|
|
|
|
def_cmd(repolist, 0, 0, 0),
|
|
|
|
def_cmd(snapshot, 1, 0, 0),
|
|
|
|
def_cmd(stats, 1, 1, 0),
|
|
|
|
def_cmd(summary, 1, 0, 0),
|
|
|
|
def_cmd(tag, 1, 0, 0),
|
|
|
|
def_cmd(tree, 1, 1, 0),
|
2008-03-24 01:09:39 +01:00
|
|
|
};
|
|
|
|
int i;
|
|
|
|
|
2014-01-15 21:53:15 +01:00
|
|
|
if (ctx.qry.page == NULL) {
|
|
|
|
if (ctx.repo)
|
|
|
|
ctx.qry.page = "summary";
|
2008-03-24 01:09:39 +01:00
|
|
|
else
|
2014-01-15 21:53:15 +01:00
|
|
|
ctx.qry.page = "repolist";
|
2008-03-24 01:09:39 +01:00
|
|
|
}
|
|
|
|
|
2013-03-04 05:21:33 +01:00
|
|
|
for (i = 0; i < sizeof(cmds)/sizeof(*cmds); i++)
|
2014-01-15 21:53:15 +01:00
|
|
|
if (!strcmp(ctx.qry.page, cmds[i].name))
|
2008-03-24 01:09:39 +01:00
|
|
|
return &cmds[i];
|
|
|
|
return NULL;
|
|
|
|
}
|