2008-03-24 01:09:39 +01:00
|
|
|
/* cmd.c: the cgit command dispatcher
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008 Lars Hjemli
|
2013-05-26 15:20:02 +02:00
|
|
|
* Copyright (C) 2013 Jason A. Donenfeld <Jason@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"
|
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
|
|
|
|
2008-08-06 01:20:24 +02:00
|
|
|
static void HEAD_fn(struct cgit_context *ctx)
|
|
|
|
{
|
|
|
|
cgit_clone_head(ctx);
|
|
|
|
}
|
|
|
|
|
2008-05-21 08:17:54 +02:00
|
|
|
static void atom_fn(struct cgit_context *ctx)
|
|
|
|
{
|
2010-02-05 01:08:16 +01:00
|
|
|
cgit_print_atom(ctx->qry.head, ctx->qry.path, ctx->cfg.max_atom_items);
|
2008-05-21 08:17:54 +02:00
|
|
|
}
|
|
|
|
|
2008-04-29 01:09:41 +02:00
|
|
|
static void about_fn(struct cgit_context *ctx)
|
|
|
|
{
|
|
|
|
if (ctx->repo)
|
2009-08-09 11:50:34 +02:00
|
|
|
cgit_print_repo_readme(ctx->qry.path);
|
2008-04-29 01:09:41 +02:00
|
|
|
else
|
|
|
|
cgit_print_site_readme();
|
|
|
|
}
|
|
|
|
|
2008-03-24 01:09:39 +01:00
|
|
|
static void blob_fn(struct cgit_context *ctx)
|
|
|
|
{
|
2013-05-26 15:20:02 +02:00
|
|
|
cgit_print_blob(ctx->qry.sha1, ctx->qry.path, ctx->qry.head, 0);
|
2008-03-24 01:09:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void commit_fn(struct cgit_context *ctx)
|
|
|
|
{
|
2010-06-10 01:09:32 +02:00
|
|
|
cgit_print_commit(ctx->qry.sha1, ctx->qry.path);
|
2008-03-24 01:09:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void diff_fn(struct cgit_context *ctx)
|
|
|
|
{
|
2011-03-06 23:59:56 +01:00
|
|
|
cgit_print_diff(ctx->qry.sha1, ctx->qry.sha2, ctx->qry.path, 1);
|
2008-03-24 01:09:39 +01:00
|
|
|
}
|
|
|
|
|
2008-08-06 01:20:24 +02:00
|
|
|
static void info_fn(struct cgit_context *ctx)
|
|
|
|
{
|
|
|
|
cgit_clone_info(ctx);
|
|
|
|
}
|
|
|
|
|
2008-03-24 01:09:39 +01:00
|
|
|
static void log_fn(struct cgit_context *ctx)
|
|
|
|
{
|
|
|
|
cgit_print_log(ctx->qry.sha1, ctx->qry.ofs, ctx->cfg.max_commit_count,
|
2010-11-15 18:39:52 +01:00
|
|
|
ctx->qry.grep, ctx->qry.search, ctx->qry.path, 1,
|
2012-10-13 16:10:30 +02:00
|
|
|
ctx->repo->enable_commit_graph,
|
|
|
|
ctx->repo->commit_sort);
|
2008-03-24 01:09:39 +01:00
|
|
|
}
|
|
|
|
|
2008-04-28 12:10:13 +02:00
|
|
|
static void ls_cache_fn(struct cgit_context *ctx)
|
|
|
|
{
|
|
|
|
ctx->page.mimetype = "text/plain";
|
|
|
|
ctx->page.filename = "ls-cache.txt";
|
|
|
|
cgit_print_http_headers(ctx);
|
|
|
|
cache_ls(ctx->cfg.cache_root);
|
|
|
|
}
|
|
|
|
|
2008-08-06 01:20:24 +02:00
|
|
|
static void objects_fn(struct cgit_context *ctx)
|
|
|
|
{
|
|
|
|
cgit_clone_objects(ctx);
|
|
|
|
}
|
|
|
|
|
2008-04-28 12:10:13 +02:00
|
|
|
static void repolist_fn(struct cgit_context *ctx)
|
|
|
|
{
|
|
|
|
cgit_print_repolist();
|
|
|
|
}
|
|
|
|
|
2008-03-24 01:09:39 +01:00
|
|
|
static void patch_fn(struct cgit_context *ctx)
|
|
|
|
{
|
2010-06-10 01:09:33 +02:00
|
|
|
cgit_print_patch(ctx->qry.sha1, ctx->qry.path);
|
2008-03-24 01:09:39 +01:00
|
|
|
}
|
|
|
|
|
2008-08-06 10:53:50 +02:00
|
|
|
static void plain_fn(struct cgit_context *ctx)
|
|
|
|
{
|
|
|
|
cgit_print_plain(ctx);
|
|
|
|
}
|
|
|
|
|
2008-03-24 01:09:39 +01:00
|
|
|
static void refs_fn(struct cgit_context *ctx)
|
|
|
|
{
|
|
|
|
cgit_print_refs();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void snapshot_fn(struct cgit_context *ctx)
|
|
|
|
{
|
2008-11-30 06:49:07 +01:00
|
|
|
cgit_print_snapshot(ctx->qry.head, ctx->qry.sha1, ctx->qry.path,
|
2008-10-11 20:09:42 +02:00
|
|
|
ctx->repo->snapshots, ctx->qry.nohead);
|
2008-03-24 01:09:39 +01:00
|
|
|
}
|
|
|
|
|
2008-12-06 17:38:19 +01:00
|
|
|
static void stats_fn(struct cgit_context *ctx)
|
|
|
|
{
|
2008-12-07 13:17:21 +01:00
|
|
|
cgit_show_stats(ctx);
|
2008-12-06 17:38:19 +01:00
|
|
|
}
|
|
|
|
|
2008-03-24 01:09:39 +01:00
|
|
|
static void summary_fn(struct cgit_context *ctx)
|
|
|
|
{
|
|
|
|
cgit_print_summary();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void tag_fn(struct cgit_context *ctx)
|
|
|
|
{
|
|
|
|
cgit_print_tag(ctx->qry.sha1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void tree_fn(struct cgit_context *ctx)
|
|
|
|
{
|
|
|
|
cgit_print_tree(ctx->qry.sha1, ctx->qry.path);
|
|
|
|
}
|
|
|
|
|
2011-01-12 19:06:06 +01:00
|
|
|
#define def_cmd(name, want_repo, want_layout, want_vpath, is_clone) \
|
|
|
|
{#name, name##_fn, want_repo, want_layout, want_vpath, is_clone}
|
2008-03-24 01:09:39 +01:00
|
|
|
|
|
|
|
struct cgit_cmd *cgit_get_cmd(struct cgit_context *ctx)
|
|
|
|
{
|
|
|
|
static struct cgit_cmd cmds[] = {
|
2011-01-12 19:06:06 +01:00
|
|
|
def_cmd(HEAD, 1, 0, 0, 1),
|
|
|
|
def_cmd(atom, 1, 0, 0, 0),
|
|
|
|
def_cmd(about, 0, 1, 0, 0),
|
|
|
|
def_cmd(blob, 1, 0, 0, 0),
|
|
|
|
def_cmd(commit, 1, 1, 1, 0),
|
|
|
|
def_cmd(diff, 1, 1, 1, 0),
|
|
|
|
def_cmd(info, 1, 0, 0, 1),
|
|
|
|
def_cmd(log, 1, 1, 1, 0),
|
|
|
|
def_cmd(ls_cache, 0, 0, 0, 0),
|
|
|
|
def_cmd(objects, 1, 0, 0, 1),
|
|
|
|
def_cmd(patch, 1, 0, 1, 0),
|
|
|
|
def_cmd(plain, 1, 0, 0, 0),
|
|
|
|
def_cmd(refs, 1, 1, 0, 0),
|
|
|
|
def_cmd(repolist, 0, 0, 0, 0),
|
|
|
|
def_cmd(snapshot, 1, 0, 0, 0),
|
|
|
|
def_cmd(stats, 1, 1, 1, 0),
|
|
|
|
def_cmd(summary, 1, 1, 0, 0),
|
|
|
|
def_cmd(tag, 1, 1, 0, 0),
|
|
|
|
def_cmd(tree, 1, 1, 1, 0),
|
2008-03-24 01:09:39 +01:00
|
|
|
};
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (ctx->qry.page == NULL) {
|
|
|
|
if (ctx->repo)
|
|
|
|
ctx->qry.page = "summary";
|
|
|
|
else
|
|
|
|
ctx->qry.page = "repolist";
|
|
|
|
}
|
|
|
|
|
2013-03-04 05:21:33 +01:00
|
|
|
for (i = 0; i < sizeof(cmds)/sizeof(*cmds); i++)
|
2008-03-24 01:09:39 +01:00
|
|
|
if (!strcmp(ctx->qry.page, cmds[i].name))
|
|
|
|
return &cmds[i];
|
|
|
|
return NULL;
|
|
|
|
}
|