1 /* ui-blob.c: show blob content
3 * Copyright (C) 2006-2014 cgit Development Team <cgit@lists.zx2c4.com>
5 * Licensed under GNU General Public License v2
6 * (see COPYING for full license text)
12 #include "ui-shared.h"
14 struct walk_tree_context
{
15 const char *match_path
;
16 unsigned char *matched_sha1
;
21 static int walk_tree(const unsigned char *sha1
, const char *base
, int baselen
,
22 const char *pathname
, unsigned mode
, int stage
, void *cbdata
)
24 struct walk_tree_context
*walk_tree_ctx
= cbdata
;
26 if (walk_tree_ctx
->file_only
&& !S_ISREG(mode
))
27 return READ_TREE_RECURSIVE
;
28 if (strncmp(base
, walk_tree_ctx
->match_path
, baselen
)
29 || strcmp(walk_tree_ctx
->match_path
+ baselen
, pathname
))
30 return READ_TREE_RECURSIVE
;
31 memmove(walk_tree_ctx
->matched_sha1
, sha1
, 20);
32 walk_tree_ctx
->found_path
= 1;
36 int cgit_ref_path_exists(const char *path
, const char *ref
, int file_only
)
38 unsigned char sha1
[20];
40 struct pathspec_item path_items
= {
44 struct pathspec paths
= {
48 struct walk_tree_context walk_tree_ctx
= {
52 .file_only
= file_only
55 if (get_sha1(ref
, sha1
))
57 if (sha1_object_info(sha1
, &size
) != OBJ_COMMIT
)
59 read_tree_recursive(lookup_commit_reference(sha1
)->tree
, "", 0, 0, &paths
, walk_tree
, &walk_tree_ctx
);
60 return walk_tree_ctx
.found_path
;
63 int cgit_print_file(char *path
, const char *head
, int file_only
)
65 unsigned char sha1
[20];
66 enum object_type type
;
69 struct commit
*commit
;
70 struct pathspec_item path_items
= {
74 struct pathspec paths
= {
78 struct walk_tree_context walk_tree_ctx
= {
82 .file_only
= file_only
85 if (get_sha1(head
, sha1
))
87 type
= sha1_object_info(sha1
, &size
);
88 if (type
== OBJ_COMMIT
&& path
) {
89 commit
= lookup_commit_reference(sha1
);
90 read_tree_recursive(commit
->tree
, "", 0, 0, &paths
, walk_tree
, &walk_tree_ctx
);
91 if (!walk_tree_ctx
.found_path
)
93 type
= sha1_object_info(sha1
, &size
);
97 buf
= read_sha1_file(sha1
, &type
, &size
);
105 void cgit_print_blob(const char *hex
, char *path
, const char *head
, int file_only
)
107 unsigned char sha1
[20];
108 enum object_type type
;
111 struct commit
*commit
;
112 struct pathspec_item path_items
= {
114 .len
= path
? strlen(path
) : 0
116 struct pathspec paths
= {
120 struct walk_tree_context walk_tree_ctx
= {
122 .matched_sha1
= sha1
,
124 .file_only
= file_only
128 if (get_sha1_hex(hex
, sha1
)) {
129 cgit_print_error("Bad hex value: %s", hex
);
133 if (get_sha1(head
, sha1
)) {
134 cgit_print_error("Bad ref: %s", head
);
139 type
= sha1_object_info(sha1
, &size
);
141 if ((!hex
) && type
== OBJ_COMMIT
&& path
) {
142 commit
= lookup_commit_reference(sha1
);
143 read_tree_recursive(commit
->tree
, "", 0, 0, &paths
, walk_tree
, &walk_tree_ctx
);
144 type
= sha1_object_info(sha1
,&size
);
147 if (type
== OBJ_BAD
) {
148 cgit_print_error("Bad object name: %s", hex
);
152 buf
= read_sha1_file(sha1
, &type
, &size
);
154 cgit_print_error("Error reading object %s", hex
);
159 ctx
.page
.mimetype
= ctx
.qry
.mimetype
;
160 if (!ctx
.page
.mimetype
) {
161 if (buffer_is_binary(buf
, size
))
162 ctx
.page
.mimetype
= "application/octet-stream";
164 ctx
.page
.mimetype
= "text/plain";
166 ctx
.page
.filename
= path
;
167 cgit_print_http_headers(&ctx
);