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
);
106 void cgit_print_blob(const char *hex
, char *path
, const char *head
, int file_only
)
108 unsigned char sha1
[20];
109 enum object_type type
;
112 struct commit
*commit
;
113 struct pathspec_item path_items
= {
115 .len
= path
? strlen(path
) : 0
117 struct pathspec paths
= {
121 struct walk_tree_context walk_tree_ctx
= {
123 .matched_sha1
= sha1
,
125 .file_only
= file_only
129 if (get_sha1_hex(hex
, sha1
)) {
130 cgit_print_error_page(400, "Bad request",
131 "Bad hex value: %s", hex
);
135 if (get_sha1(head
, sha1
)) {
136 cgit_print_error_page(404, "Not found",
137 "Bad ref: %s", head
);
142 type
= sha1_object_info(sha1
, &size
);
144 if ((!hex
) && type
== OBJ_COMMIT
&& path
) {
145 commit
= lookup_commit_reference(sha1
);
146 read_tree_recursive(commit
->tree
, "", 0, 0, &paths
, walk_tree
, &walk_tree_ctx
);
147 type
= sha1_object_info(sha1
,&size
);
150 if (type
== OBJ_BAD
) {
151 cgit_print_error_page(404, "Not found",
152 "Bad object name: %s", hex
);
156 buf
= read_sha1_file(sha1
, &type
, &size
);
158 cgit_print_error_page(500, "Internal server error",
159 "Error reading object %s", hex
);
164 ctx
.page
.mimetype
= ctx
.qry
.mimetype
;
165 if (!ctx
.page
.mimetype
) {
166 if (buffer_is_binary(buf
, size
))
167 ctx
.page
.mimetype
= "application/octet-stream";
169 ctx
.page
.mimetype
= "text/plain";
171 ctx
.page
.filename
= path
;
172 cgit_print_http_headers();