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
|
|
|
|
2018-08-28 16:18:37 +00:00
|
|
|
/* two commit hashes with two dots in between and termination */
|
|
|
|
#define REV_RANGE_LEN 2 * GIT_MAX_HEXSZ + 3
|
|
|
|
|
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;
|
2016-09-29 19:51:41 +00:00
|
|
|
struct object_id new_rev_oid, old_rev_oid;
|
2018-08-28 16:18:37 +00:00
|
|
|
char rev_range[REV_RANGE_LEN];
|
2016-11-24 19:14:54 +00:00
|
|
|
const char *rev_argv[] = { NULL, "--reverse", "--format=email", rev_range, "--", prefix, NULL };
|
|
|
|
int rev_argc = ARRAY_SIZE(rev_argv) - 1;
|
2007-12-10 20:47:29 +00:00
|
|
|
char *patchname;
|
|
|
|
|
2016-03-14 22:41:14 +00:00
|
|
|
if (!prefix)
|
|
|
|
rev_argc--;
|
|
|
|
|
2013-08-20 16:56:15 +00:00
|
|
|
if (!new_rev)
|
|
|
|
new_rev = ctx.qry.head;
|
2007-12-10 20:47:29 +00:00
|
|
|
|
2016-09-29 19:51:41 +00:00
|
|
|
if (get_oid(new_rev, &new_rev_oid)) {
|
2015-08-14 11:47:07 +00:00
|
|
|
cgit_print_error_page(404, "Not found",
|
|
|
|
"Bad object id: %s", new_rev);
|
2007-12-10 20:47:29 +00:00
|
|
|
return;
|
|
|
|
}
|
2018-08-28 16:27:00 +00:00
|
|
|
commit = lookup_commit_reference(the_repository, &new_rev_oid);
|
2007-12-10 20:47:29 +00:00
|
|
|
if (!commit) {
|
2015-08-14 11:47:07 +00:00
|
|
|
cgit_print_error_page(404, "Not found",
|
|
|
|
"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) {
|
2016-09-29 19:51:41 +00:00
|
|
|
if (get_oid(old_rev, &old_rev_oid)) {
|
2015-08-14 11:47:07 +00:00
|
|
|
cgit_print_error_page(404, "Not found",
|
|
|
|
"Bad object id: %s", old_rev);
|
2013-08-20 16:56:14 +00:00
|
|
|
return;
|
|
|
|
}
|
2018-08-28 16:27:00 +00:00
|
|
|
if (!lookup_commit_reference(the_repository, &old_rev_oid)) {
|
2015-08-14 11:47:07 +00:00
|
|
|
cgit_print_error_page(404, "Not found",
|
|
|
|
"Bad commit reference: %s", old_rev);
|
2013-08-20 16:56:14 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else if (commit->parents && commit->parents->item) {
|
2016-09-29 19:51:41 +00:00
|
|
|
oidcpy(&old_rev_oid, &commit->parents->item->object.oid);
|
2013-08-20 16:56:13 +00:00
|
|
|
} else {
|
2016-09-29 19:51:41 +00:00
|
|
|
oidclr(&old_rev_oid);
|
2013-08-20 16:56:14 +00:00
|
|
|
}
|
|
|
|
|
2016-09-29 19:51:41 +00:00
|
|
|
if (is_null_oid(&old_rev_oid)) {
|
2020-10-20 21:46:09 +00:00
|
|
|
memcpy(rev_range, oid_to_hex(&new_rev_oid), the_hash_algo->hexsz + 1);
|
2013-08-20 16:56:14 +00:00
|
|
|
} else {
|
2018-08-28 16:18:37 +00:00
|
|
|
xsnprintf(rev_range, REV_RANGE_LEN, "%s..%s", oid_to_hex(&old_rev_oid),
|
2016-09-29 19:51:41 +00:00
|
|
|
oid_to_hex(&new_rev_oid));
|
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;
|
2014-01-15 20:53:15 +00:00
|
|
|
cgit_print_http_headers();
|
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;
|
2014-12-28 13:10:33 +00:00
|
|
|
rev.diffopt.output_format |= DIFF_FORMAT_DIFFSTAT |
|
|
|
|
DIFF_FORMAT_PATCH | DIFF_FORMAT_SUMMARY;
|
2016-03-14 22:41:14 +00:00
|
|
|
if (prefix)
|
|
|
|
rev.diffopt.stat_sep = fmt("(limited to '%s')\n\n", prefix);
|
2016-11-24 19:14:54 +00:00
|
|
|
setup_revisions(rev_argc, rev_argv, &rev, NULL);
|
2013-08-20 16:56:13 +00:00
|
|
|
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
|
|
|
}
|