mirror of
https://git.zx2c4.com/cgit
synced 2024-11-08 09:38:41 +00:00
a6da40bf84
Update to git version v2.41.0, with lots of changes...
This requires changes for these upstream commits:
* 60ff56f50372c1498718938ef504e744fe011ffb
banned.h: mark `strtok()` and `strtok_r()` as banned
* 52acddf36c8cb3778ab2098a0d95cc2e375a4069
string-list: multi-delimiter `string_list_split_in_place()`
* d850b7a545fcfbd97460a921c7f7c59d933eb0f7
cocci: apply the "cache.h" part of "the_repository.pending"
* cb338c23d6d518947bf6f7240bf30e2ec232bd3b
cocci: apply the "commit-reach.h" part of "the_repository.pending"
* ecb5091fd4301ac647db0bd2504112b38f7ee06d
cocci: apply the "commit.h" part of "the_repository.pending"
* 085390328f5fe1dfba67039b1fd6cc51546a4e41
cocci: apply the "diff.h" part of "the_repository.pending"
* bc726bd075929aab6b3e09d4dd5c2b0726fd5350
cocci: apply the "object-store.h" part of "the_repository.pending"
* bab821646a74c446370fa8d01ca851f247df5033
cocci: apply the "pretty.h" part of "the_repository.pending"
* afe27c889429438829bc8818ed17e4960bd3ef02
cocci: apply the "packfile.h" part of "the_repository.pending"
* 12cb1c10a64170a5d600dd1c6c8abfeec105fb6b
cocci: apply the "refs.h" part of "the_repository.pending"
* 035c7de9e9ea11d26df5f9e4bb117f91ed11a9fd
cocci: apply the "revision.h" part of "the_repository.pending"
... and some more I missed to list 😜 - for example the move and cleanup
of headers and includes (see changes in `cgit.h`) comes to mind...
Signed-off-by: Christian Hesse <mail@eworm.de>
183 lines
4.4 KiB
C
183 lines
4.4 KiB
C
/* ui-blob.c: show blob content
|
|
*
|
|
* Copyright (C) 2006-2014 cgit Development Team <cgit@lists.zx2c4.com>
|
|
*
|
|
* Licensed under GNU General Public License v2
|
|
* (see COPYING for full license text)
|
|
*/
|
|
|
|
#include "cgit.h"
|
|
#include "ui-blob.h"
|
|
#include "html.h"
|
|
#include "ui-shared.h"
|
|
|
|
struct walk_tree_context {
|
|
const char *match_path;
|
|
struct object_id *matched_oid;
|
|
unsigned int found_path:1;
|
|
unsigned int file_only:1;
|
|
};
|
|
|
|
static int walk_tree(const struct object_id *oid, struct strbuf *base,
|
|
const char *pathname, unsigned mode, void *cbdata)
|
|
{
|
|
struct walk_tree_context *walk_tree_ctx = cbdata;
|
|
|
|
if (walk_tree_ctx->file_only && !S_ISREG(mode))
|
|
return READ_TREE_RECURSIVE;
|
|
if (strncmp(base->buf, walk_tree_ctx->match_path, base->len)
|
|
|| strcmp(walk_tree_ctx->match_path + base->len, pathname))
|
|
return READ_TREE_RECURSIVE;
|
|
oidcpy(walk_tree_ctx->matched_oid, oid);
|
|
walk_tree_ctx->found_path = 1;
|
|
return 0;
|
|
}
|
|
|
|
int cgit_ref_path_exists(const char *path, const char *ref, int file_only)
|
|
{
|
|
struct object_id oid;
|
|
unsigned long size;
|
|
struct pathspec_item path_items = {
|
|
.match = xstrdup(path),
|
|
.len = strlen(path)
|
|
};
|
|
struct pathspec paths = {
|
|
.nr = 1,
|
|
.items = &path_items
|
|
};
|
|
struct walk_tree_context walk_tree_ctx = {
|
|
.match_path = path,
|
|
.matched_oid = &oid,
|
|
.found_path = 0,
|
|
.file_only = file_only
|
|
};
|
|
|
|
if (repo_get_oid(the_repository, ref, &oid))
|
|
goto done;
|
|
if (oid_object_info(the_repository, &oid, &size) != OBJ_COMMIT)
|
|
goto done;
|
|
read_tree(the_repository,
|
|
repo_get_commit_tree(the_repository, lookup_commit_reference(the_repository, &oid)),
|
|
&paths, walk_tree, &walk_tree_ctx);
|
|
|
|
done:
|
|
free(path_items.match);
|
|
return walk_tree_ctx.found_path;
|
|
}
|
|
|
|
int cgit_print_file(char *path, const char *head, int file_only)
|
|
{
|
|
struct object_id oid;
|
|
enum object_type type;
|
|
char *buf;
|
|
unsigned long size;
|
|
struct commit *commit;
|
|
struct pathspec_item path_items = {
|
|
.match = path,
|
|
.len = strlen(path)
|
|
};
|
|
struct pathspec paths = {
|
|
.nr = 1,
|
|
.items = &path_items
|
|
};
|
|
struct walk_tree_context walk_tree_ctx = {
|
|
.match_path = path,
|
|
.matched_oid = &oid,
|
|
.found_path = 0,
|
|
.file_only = file_only
|
|
};
|
|
|
|
if (repo_get_oid(the_repository, head, &oid))
|
|
return -1;
|
|
type = oid_object_info(the_repository, &oid, &size);
|
|
if (type == OBJ_COMMIT) {
|
|
commit = lookup_commit_reference(the_repository, &oid);
|
|
read_tree(the_repository, repo_get_commit_tree(the_repository, commit),
|
|
&paths, walk_tree, &walk_tree_ctx);
|
|
if (!walk_tree_ctx.found_path)
|
|
return -1;
|
|
type = oid_object_info(the_repository, &oid, &size);
|
|
}
|
|
if (type == OBJ_BAD)
|
|
return -1;
|
|
buf = repo_read_object_file(the_repository, &oid, &type, &size);
|
|
if (!buf)
|
|
return -1;
|
|
buf[size] = '\0';
|
|
html_raw(buf, size);
|
|
free(buf);
|
|
return 0;
|
|
}
|
|
|
|
void cgit_print_blob(const char *hex, char *path, const char *head, int file_only)
|
|
{
|
|
struct object_id oid;
|
|
enum object_type type;
|
|
char *buf;
|
|
unsigned long size;
|
|
struct commit *commit;
|
|
struct pathspec_item path_items = {
|
|
.match = path,
|
|
.len = path ? strlen(path) : 0
|
|
};
|
|
struct pathspec paths = {
|
|
.nr = 1,
|
|
.items = &path_items
|
|
};
|
|
struct walk_tree_context walk_tree_ctx = {
|
|
.match_path = path,
|
|
.matched_oid = &oid,
|
|
.found_path = 0,
|
|
.file_only = file_only
|
|
};
|
|
|
|
if (hex) {
|
|
if (get_oid_hex(hex, &oid)) {
|
|
cgit_print_error_page(400, "Bad request",
|
|
"Bad hex value: %s", hex);
|
|
return;
|
|
}
|
|
} else {
|
|
if (repo_get_oid(the_repository, head, &oid)) {
|
|
cgit_print_error_page(404, "Not found",
|
|
"Bad ref: %s", head);
|
|
return;
|
|
}
|
|
}
|
|
|
|
type = oid_object_info(the_repository, &oid, &size);
|
|
|
|
if ((!hex) && type == OBJ_COMMIT && path) {
|
|
commit = lookup_commit_reference(the_repository, &oid);
|
|
read_tree(the_repository, repo_get_commit_tree(the_repository, commit),
|
|
&paths, walk_tree, &walk_tree_ctx);
|
|
type = oid_object_info(the_repository, &oid, &size);
|
|
}
|
|
|
|
if (type == OBJ_BAD) {
|
|
cgit_print_error_page(404, "Not found",
|
|
"Bad object name: %s", hex);
|
|
return;
|
|
}
|
|
|
|
buf = repo_read_object_file(the_repository, &oid, &type, &size);
|
|
if (!buf) {
|
|
cgit_print_error_page(500, "Internal server error",
|
|
"Error reading object %s", hex);
|
|
return;
|
|
}
|
|
|
|
buf[size] = '\0';
|
|
if (buffer_is_binary(buf, size))
|
|
ctx.page.mimetype = "application/octet-stream";
|
|
else
|
|
ctx.page.mimetype = "text/plain";
|
|
ctx.page.filename = path;
|
|
|
|
html("X-Content-Type-Options: nosniff\n");
|
|
html("Content-Security-Policy: default-src 'none'\n");
|
|
cgit_print_http_headers();
|
|
html_raw(buf, size);
|
|
free(buf);
|
|
}
|