2007-12-10 20:47:29 +00:00
|
|
|
/* ui-patch.c: generate patch view
|
|
|
|
*
|
2014-01-08 14:10:49 +00:00
|
|
|
* Copyright (C) 2006-2014 cgit Development Team <cgit@lists.zx2c4.com>
|
2007-12-10 20:47:29 +00:00
|
|
|
*
|
|
|
|
* Licensed under GNU General Public License v2
|
|
|
|
* (see COPYING for full license text)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "cgit.h"
|
2013-04-06 10:37:59 +00:00
|
|
|
#include "ui-patch.h"
|
2008-02-23 21:45:33 +00:00
|
|
|
#include "html.h"
|
2008-03-24 15:50:57 +00:00
|
|
|
#include "ui-shared.h"
|
2007-12-10 20:47:29 +00:00
|
|
|
|
2013-08-20 16:56:15 +00:00
|
|
|
void cgit_print_patch(const char *new_rev, const char *old_rev,
|
|
|
|
const char *prefix)
|
2007-12-10 20:47:29 +00:00
|
|
|
{
|
2013-08-20 16:56:13 +00:00
|
|
|
struct rev_info rev;
|
2007-12-10 20:47:29 +00:00
|
|
|
struct commit *commit;
|
2013-08-20 16:56:15 +00:00
|
|
|
unsigned char new_rev_sha1[20], old_rev_sha1[20];
|
2013-08-20 16:56:13 +00:00
|
|
|
char rev_range[2 * 40 + 3];
|
|
|
|
char *rev_argv[] = { NULL, "--reverse", "--format=email", rev_range };
|
2007-12-10 20:47:29 +00:00
|
|
|
char *patchname;
|
|
|
|
|
2013-08-20 16:56:15 +00:00
|
|
|
if (!new_rev)
|
|
|
|
new_rev = ctx.qry.head;
|
2007-12-10 20:47:29 +00:00
|
|
|
|
2013-08-20 16:56:15 +00:00
|
|
|
if (get_sha1(new_rev, new_rev_sha1)) {
|
|
|
|
cgit_print_error("Bad object id: %s", new_rev);
|
2007-12-10 20:47:29 +00:00
|
|
|
return;
|
|
|
|
}
|
2013-08-20 16:56:15 +00:00
|
|
|
commit = lookup_commit_reference(new_rev_sha1);
|
2007-12-10 20:47:29 +00:00
|
|
|
if (!commit) {
|
2013-08-20 16:56:15 +00:00
|
|
|
cgit_print_error("Bad commit reference: %s", new_rev);
|
2007-12-10 20:47:29 +00:00
|
|
|
return;
|
|
|
|
}
|
2008-03-17 22:13:16 +00:00
|
|
|
|
2013-08-20 16:56:14 +00:00
|
|
|
if (old_rev) {
|
2013-08-20 16:56:15 +00:00
|
|
|
if (get_sha1(old_rev, old_rev_sha1)) {
|
2013-08-20 16:56:14 +00:00
|
|
|
cgit_print_error("Bad object id: %s", old_rev);
|
|
|
|
return;
|
|
|
|
}
|
2013-08-20 16:56:15 +00:00
|
|
|
if (!lookup_commit_reference(old_rev_sha1)) {
|
2013-08-20 16:56:14 +00:00
|
|
|
cgit_print_error("Bad commit reference: %s", old_rev);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else if (commit->parents && commit->parents->item) {
|
2013-08-20 16:56:15 +00:00
|
|
|
hashcpy(old_rev_sha1, commit->parents->item->object.sha1);
|
2013-08-20 16:56:13 +00:00
|
|
|
} else {
|
2013-08-20 16:56:15 +00:00
|
|
|
hashclr(old_rev_sha1);
|
2013-08-20 16:56:14 +00:00
|
|
|
}
|
|
|
|
|
2013-08-20 16:56:15 +00:00
|
|
|
if (is_null_sha1(old_rev_sha1)) {
|
|
|
|
memcpy(rev_range, sha1_to_hex(new_rev_sha1), 41);
|
2013-08-20 16:56:14 +00:00
|
|
|
} else {
|
2013-08-20 16:56:15 +00:00
|
|
|
sprintf(rev_range, "%s..%s", sha1_to_hex(old_rev_sha1),
|
|
|
|
sha1_to_hex(new_rev_sha1));
|
2013-08-20 16:56:13 +00:00
|
|
|
}
|
2007-12-10 20:47:29 +00:00
|
|
|
|
2013-08-20 16:56:14 +00:00
|
|
|
patchname = fmt("%s.patch", rev_range);
|
2008-03-23 23:51:19 +00:00
|
|
|
ctx.page.mimetype = "text/plain";
|
|
|
|
ctx.page.filename = patchname;
|
|
|
|
cgit_print_http_headers(&ctx);
|
2013-08-20 16:56:13 +00:00
|
|
|
|
|
|
|
if (ctx.cfg.noplainemail) {
|
|
|
|
rev_argv[2] = "--format=format:From %H Mon Sep 17 00:00:00 "
|
|
|
|
"2001%nFrom: %an%nDate: %aD%n%w(78,0,1)Subject: "
|
|
|
|
"%s%n%n%w(0)%b";
|
2009-08-07 12:05:17 +00:00
|
|
|
}
|
2013-08-20 16:56:13 +00:00
|
|
|
|
|
|
|
init_revisions(&rev, NULL);
|
|
|
|
rev.abbrev = DEFAULT_ABBREV;
|
|
|
|
rev.verbose_header = 1;
|
|
|
|
rev.diff = 1;
|
|
|
|
rev.show_root_diff = 1;
|
2013-08-22 12:48:47 +00:00
|
|
|
rev.max_parents = 1;
|
2013-08-20 16:56:13 +00:00
|
|
|
rev.diffopt.output_format |= DIFF_FORMAT_PATCH;
|
|
|
|
setup_revisions(ARRAY_SIZE(rev_argv), (const char **)rev_argv, &rev,
|
|
|
|
NULL);
|
|
|
|
prepare_revision_walk(&rev);
|
|
|
|
|
|
|
|
while ((commit = get_revision(&rev)) != NULL) {
|
|
|
|
log_tree_commit(&rev, commit);
|
2013-08-26 18:38:33 +00:00
|
|
|
printf("-- \ncgit %s\n\n", cgit_version);
|
2007-12-18 08:26:50 +00:00
|
|
|
}
|
2007-12-10 20:47:29 +00:00
|
|
|
}
|