about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--cgit.h3
m---------git0
-rw-r--r--ui-snapshot.c60
3 files changed, 38 insertions, 25 deletions
diff --git a/cgit.h b/cgit.h index f3d2556..c655bd8 100644 --- a/cgit.h +++ b/cgit.h
@@ -11,6 +11,7 @@
11#include <tag.h> 11#include <tag.h>
12#include <diff.h> 12#include <diff.h>
13#include <diffcore.h> 13#include <diffcore.h>
14#include <argv-array.h>
14#include <refs.h> 15#include <refs.h>
15#include <revision.h> 16#include <revision.h>
16#include <log-tree.h> 17#include <log-tree.h>
@@ -274,6 +275,8 @@ struct cgit_context {
274 struct cgit_page page; 275 struct cgit_page page;
275}; 276};
276 277
278typedef int (*write_archive_fn_t)(const char *, const char *);
279
277struct cgit_snapshot_format { 280struct cgit_snapshot_format {
278 const char *suffix; 281 const char *suffix;
279 const char *mimetype; 282 const char *mimetype;
diff --git a/git b/git
Subproject 15b7898c5e9fc6fed9a6064213cfcd08cf7d731 Subproject 8258858493ad3504630c3bfa7dfde61df811994
diff --git a/ui-snapshot.c b/ui-snapshot.c index 47432bd..7374d9d 100644 --- a/ui-snapshot.c +++ b/ui-snapshot.c
@@ -11,7 +11,31 @@
11#include "html.h" 11#include "html.h"
12#include "ui-shared.h" 12#include "ui-shared.h"
13 13
14static int write_compressed_tar_archive(struct archiver_args *args, char *filter_argv[]) 14static int write_archive_type(const char *format, const char *hex, const char *prefix)
15{
16 struct argv_array argv = ARGV_ARRAY_INIT;
17 argv_array_push(&argv, format);
18 if (prefix) {
19 argv_array_push(&argv, "--prefix");
20 argv_array_push(&argv, fmt("%s/", prefix));
21 }
22 argv_array_push(&argv, hex);
23 return write_archive(argv.argc, argv.argv, NULL, 1, NULL, 0);
24}
25
26static int write_tar_archive(const char *hex, const char *prefix)
27{
28 return write_archive_type("--format=tar", hex, prefix);
29}
30
31static int write_zip_archive(const char *hex, const char *prefix)
32{
33 return write_archive_type("--format=zip", hex, prefix);
34}
35
36static int write_compressed_tar_archive(const char *hex,
37 const char *prefix,
38 char *filter_argv[])
15{ 39{
16 int rv; 40 int rv;
17 struct cgit_filter f; 41 struct cgit_filter f;
@@ -19,27 +43,27 @@ static int write_compressed_tar_archive(struct archiver_args *args, char *filter
19 f.cmd = filter_argv[0]; 43 f.cmd = filter_argv[0];
20 f.argv = filter_argv; 44 f.argv = filter_argv;
21 cgit_open_filter(&f); 45 cgit_open_filter(&f);
22 rv = write_tar_archive(args); 46 rv = write_tar_archive(hex, prefix);
23 cgit_close_filter(&f); 47 cgit_close_filter(&f);
24 return rv; 48 return rv;
25} 49}
26 50
27static int write_tar_gzip_archive(struct archiver_args *args) 51static int write_tar_gzip_archive(const char *hex, const char *prefix)
28{ 52{
29 char *argv[] = { "gzip", "-n", NULL }; 53 char *argv[] = { "gzip", "-n", NULL };
30 return write_compressed_tar_archive(args, argv); 54 return write_compressed_tar_archive(hex, prefix, argv);
31} 55}
32 56
33static int write_tar_bzip2_archive(struct archiver_args *args) 57static int write_tar_bzip2_archive(const char *hex, const char *prefix)
34{ 58{
35 char *argv[] = { "bzip2", NULL }; 59 char *argv[] = { "bzip2", NULL };
36 return write_compressed_tar_archive(args, argv); 60 return write_compressed_tar_archive(hex, prefix, argv);
37} 61}
38 62
39static int write_tar_xz_archive(struct archiver_args *args) 63static int write_tar_xz_archive(const char *hex, const char *prefix)
40{ 64{
41 char *argv[] = { "xz", NULL }; 65 char *argv[] = { "xz", NULL };
42 return write_compressed_tar_archive(args, argv); 66 return write_compressed_tar_archive(hex, prefix, argv);
43} 67}
44 68
45const struct cgit_snapshot_format cgit_snapshot_formats[] = { 69const struct cgit_snapshot_format cgit_snapshot_formats[] = {
@@ -71,34 +95,20 @@ static int make_snapshot(const struct cgit_snapshot_format *format,
71 const char *hex, const char *prefix, 95 const char *hex, const char *prefix,
72 const char *filename) 96 const char *filename)
73{ 97{
74 struct archiver_args args;
75 struct commit *commit;
76 unsigned char sha1[20]; 98 unsigned char sha1[20];
77 99
78 if(get_sha1(hex, sha1)) { 100 if (get_sha1(hex, sha1)) {
79 cgit_print_error(fmt("Bad object id: %s", hex)); 101 cgit_print_error(fmt("Bad object id: %s", hex));
80 return 1; 102 return 1;
81 } 103 }
82 commit = lookup_commit_reference(sha1); 104 if (!lookup_commit_reference(sha1)) {
83 if(!commit) {
84 cgit_print_error(fmt("Not a commit reference: %s", hex)); 105 cgit_print_error(fmt("Not a commit reference: %s", hex));
85 return 1; 106 return 1;
86 } 107 }
87 memset(&args, 0, sizeof(args));
88 if (prefix) {
89 args.base = fmt("%s/", prefix);
90 args.baselen = strlen(prefix) + 1;
91 } else {
92 args.base = "";
93 args.baselen = 0;
94 }
95 args.tree = commit->tree;
96 args.time = commit->date;
97 args.compression_level = Z_DEFAULT_COMPRESSION;
98 ctx.page.mimetype = xstrdup(format->mimetype); 108 ctx.page.mimetype = xstrdup(format->mimetype);
99 ctx.page.filename = xstrdup(filename); 109 ctx.page.filename = xstrdup(filename);
100 cgit_print_http_headers(&ctx); 110 cgit_print_http_headers(&ctx);
101 format->write_func(&args); 111 format->write_func(hex, prefix);
102 return 0; 112 return 0;
103} 113}
104 114