]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/verify-tag.c
Merge branch 'js/azure-pipelines-msvc'
[thirdparty/git.git] / builtin / verify-tag.c
CommitLineData
2ae68fcb
CR
1/*
2 * Builtin "git verify-tag"
3 *
4 * Copyright (c) 2007 Carlos Rica <jasampler@gmail.com>
5 *
6 * Based on git-verify-tag.sh
7 */
8#include "cache.h"
b2141fc1 9#include "config.h"
2ae68fcb
CR
10#include "builtin.h"
11#include "tag.h"
12#include "run-command.h"
4855b2a2 13#include "parse-options.h"
2f47eae2 14#include "gpg-interface.h"
ff3c8c8f 15#include "ref-filter.h"
2ae68fcb 16
4855b2a2 17static const char * const verify_tag_usage[] = {
ff3c8c8f 18 N_("git verify-tag [-v | --verbose] [--format=<format>] <tag>..."),
4855b2a2
SB
19 NULL
20};
2ae68fcb 21
a2c25061
AZ
22static int git_verify_tag_config(const char *var, const char *value, void *cb)
23{
24 int status = git_gpg_config(var, value, cb);
25 if (status)
26 return status;
27 return git_default_config(var, value, cb);
28}
29
2ae68fcb
CR
30int cmd_verify_tag(int argc, const char **argv, const char *prefix)
31{
32 int i = 1, verbose = 0, had_error = 0;
e18443ec 33 unsigned flags = 0;
4a68e36d 34 struct ref_format format = REF_FORMAT_INIT;
4855b2a2 35 const struct option verify_tag_options[] = {
f6008eb2 36 OPT__VERBOSE(&verbose, N_("print tag contents")),
e18443ec 37 OPT_BIT(0, "raw", &flags, N_("print raw gpg status output"), GPG_VERIFY_RAW),
4a68e36d 38 OPT_STRING(0, "format", &format.format, N_("format"), N_("format to use for the output")),
4855b2a2
SB
39 OPT_END()
40 };
2ae68fcb 41
a2c25061 42 git_config(git_verify_tag_config, NULL);
2ae68fcb 43
4855b2a2
SB
44 argc = parse_options(argc, argv, prefix, verify_tag_options,
45 verify_tag_usage, PARSE_OPT_KEEP_ARGV0);
d2761895 46 if (argc <= i)
4855b2a2 47 usage_with_options(verify_tag_usage, verify_tag_options);
d2761895 48
e18443ec 49 if (verbose)
50 flags |= GPG_VERIFY_VERBOSE;
51
4a68e36d
JK
52 if (format.format) {
53 if (verify_ref_format(&format))
2eda0102
JK
54 usage_with_options(verify_tag_usage,
55 verify_tag_options);
ff3c8c8f
ST
56 flags |= GPG_VERIFY_OMIT_STATUS;
57 }
58
78ccd441 59 while (i < argc) {
84571760 60 struct object_id oid;
78ccd441 61 const char *name = argv[i++];
84571760
SB
62
63 if (get_oid(name, &oid)) {
78ccd441 64 had_error = !!error("tag '%s' not found.", name);
ff3c8c8f
ST
65 continue;
66 }
67
84571760 68 if (gpg_verify_tag(&oid, name, flags)) {
2ae68fcb 69 had_error = 1;
ff3c8c8f
ST
70 continue;
71 }
72
4a68e36d 73 if (format.format)
53df97a2 74 pretty_print_ref(name, &oid, &format);
78ccd441 75 }
2ae68fcb
CR
76 return had_error;
77}