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
;
17 unsigned int found_path
:1;
18 unsigned int file_only
:1;
21 static int walk_tree(const unsigned char *sha1
, struct strbuf
*base
,
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
->buf
, walk_tree_ctx
->match_path
, base
->len
)
29 || strcmp(walk_tree_ctx
->match_path
+ base
->len
, 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
) {
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_page(400, "Bad request",
130 "Bad hex value: %s", hex
);
134 if (get_sha1(head
, sha1
)) {
135 cgit_print_error_page(404, "Not found",
136 "Bad ref: %s", head
);
141 type
= sha1_object_info(sha1
, &size
);
143 if ((!hex
) && type
== OBJ_COMMIT
&& path
) {
144 commit
= lookup_commit_reference(sha1
);
145 read_tree_recursive(commit
->tree
, "", 0, 0, &paths
, walk_tree
, &walk_tree_ctx
);
146 type
= sha1_object_info(sha1
,&size
);
149 if (type
== OBJ_BAD
) {
150 cgit_print_error_page(404, "Not found",
151 "Bad object name: %s", hex
);
155 buf
= read_sha1_file(sha1
, &type
, &size
);
157 cgit_print_error_page(500, "Internal server error",
158 "Error reading object %s", hex
);
163 ctx
.page
.mimetype
= ctx
.qry
.mimetype
;
164 if (!ctx
.page
.mimetype
) {
165 if (buffer_is_binary(buf
, size
))
166 ctx
.page
.mimetype
= "application/octet-stream";
168 ctx
.page
.mimetype
= "text/plain";
170 ctx
.page
.filename
= path
;
171 cgit_print_http_headers();