2007-07-27 04:07:34 +00:00
|
|
|
/*
|
|
|
|
* Builtin "git verify-tag"
|
|
|
|
*
|
|
|
|
* Copyright (c) 2007 Carlos Rica <jasampler@gmail.com>
|
|
|
|
*
|
|
|
|
* Based on git-verify-tag.sh
|
|
|
|
*/
|
|
|
|
#include "builtin.h"
|
2023-05-16 06:33:57 +00:00
|
|
|
#include "config.h"
|
2023-03-21 06:25:54 +00:00
|
|
|
#include "gettext.h"
|
2007-07-27 04:07:34 +00:00
|
|
|
#include "tag.h"
|
2023-04-11 07:41:49 +00:00
|
|
|
#include "object-name.h"
|
2009-07-08 05:15:39 +00:00
|
|
|
#include "parse-options.h"
|
2011-09-08 04:19:47 +00:00
|
|
|
#include "gpg-interface.h"
|
2017-01-17 23:37:20 +00:00
|
|
|
#include "ref-filter.h"
|
2007-07-27 04:07:34 +00:00
|
|
|
|
2009-07-08 05:15:39 +00:00
|
|
|
static const char * const verify_tag_usage[] = {
|
2022-10-13 15:39:13 +00:00
|
|
|
N_("git verify-tag [-v | --verbose] [--format=<format>] [--raw] <tag>..."),
|
2009-07-08 05:15:39 +00:00
|
|
|
NULL
|
|
|
|
};
|
2007-07-27 04:07:34 +00:00
|
|
|
|
|
|
|
int cmd_verify_tag(int argc, const char **argv, const char *prefix)
|
|
|
|
{
|
|
|
|
int i = 1, verbose = 0, had_error = 0;
|
2015-06-21 23:14:43 +00:00
|
|
|
unsigned flags = 0;
|
2017-07-13 15:01:18 +00:00
|
|
|
struct ref_format format = REF_FORMAT_INIT;
|
2009-07-08 05:15:39 +00:00
|
|
|
const struct option verify_tag_options[] = {
|
2012-08-20 12:32:52 +00:00
|
|
|
OPT__VERBOSE(&verbose, N_("print tag contents")),
|
2015-06-21 23:14:43 +00:00
|
|
|
OPT_BIT(0, "raw", &flags, N_("print raw gpg status output"), GPG_VERIFY_RAW),
|
2017-07-13 15:01:18 +00:00
|
|
|
OPT_STRING(0, "format", &format.format, N_("format"), N_("format to use for the output")),
|
2009-07-08 05:15:39 +00:00
|
|
|
OPT_END()
|
|
|
|
};
|
2007-07-27 04:07:34 +00:00
|
|
|
|
2023-02-26 22:40:46 +00:00
|
|
|
git_config(git_default_config, NULL);
|
2007-07-27 04:07:34 +00:00
|
|
|
|
2009-07-08 05:15:39 +00:00
|
|
|
argc = parse_options(argc, argv, prefix, verify_tag_options,
|
|
|
|
verify_tag_usage, PARSE_OPT_KEEP_ARGV0);
|
2008-07-28 10:48:44 +00:00
|
|
|
if (argc <= i)
|
2009-07-08 05:15:39 +00:00
|
|
|
usage_with_options(verify_tag_usage, verify_tag_options);
|
2008-07-28 10:48:44 +00:00
|
|
|
|
2015-06-21 23:14:43 +00:00
|
|
|
if (verbose)
|
|
|
|
flags |= GPG_VERIFY_VERBOSE;
|
|
|
|
|
2017-07-13 15:01:18 +00:00
|
|
|
if (format.format) {
|
|
|
|
if (verify_ref_format(&format))
|
2017-07-13 14:56:10 +00:00
|
|
|
usage_with_options(verify_tag_usage,
|
|
|
|
verify_tag_options);
|
2017-01-17 23:37:20 +00:00
|
|
|
flags |= GPG_VERIFY_OMIT_STATUS;
|
|
|
|
}
|
|
|
|
|
2016-04-19 17:47:19 +00:00
|
|
|
while (i < argc) {
|
2017-07-13 00:44:15 +00:00
|
|
|
struct object_id oid;
|
2016-04-19 17:47:19 +00:00
|
|
|
const char *name = argv[i++];
|
2017-07-13 00:44:15 +00:00
|
|
|
|
2023-03-28 13:58:46 +00:00
|
|
|
if (repo_get_oid(the_repository, name, &oid)) {
|
2016-04-19 17:47:19 +00:00
|
|
|
had_error = !!error("tag '%s' not found.", name);
|
2017-01-17 23:37:20 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-07-13 00:44:15 +00:00
|
|
|
if (gpg_verify_tag(&oid, name, flags)) {
|
2007-07-27 04:07:34 +00:00
|
|
|
had_error = 1;
|
2017-01-17 23:37:20 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-07-13 15:01:18 +00:00
|
|
|
if (format.format)
|
2018-04-06 18:58:32 +00:00
|
|
|
pretty_print_ref(name, &oid, &format);
|
2016-04-19 17:47:19 +00:00
|
|
|
}
|
2007-07-27 04:07:34 +00:00
|
|
|
return had_error;
|
|
|
|
}
|