2007-07-27 06:07:34 +02:00
|
|
|
/*
|
|
|
|
* Builtin "git verify-tag"
|
|
|
|
*
|
|
|
|
* Copyright (c) 2007 Carlos Rica <jasampler@gmail.com>
|
|
|
|
*
|
|
|
|
* Based on git-verify-tag.sh
|
|
|
|
*/
|
|
|
|
#include "cache.h"
|
|
|
|
#include "builtin.h"
|
|
|
|
#include "tag.h"
|
|
|
|
#include "run-command.h"
|
|
|
|
#include <signal.h>
|
2009-07-08 07:15:39 +02:00
|
|
|
#include "parse-options.h"
|
2011-09-08 06:19:47 +02:00
|
|
|
#include "gpg-interface.h"
|
2007-07-27 06:07:34 +02:00
|
|
|
|
2009-07-08 07:15:39 +02:00
|
|
|
static const char * const verify_tag_usage[] = {
|
2015-01-13 08:44:47 +01:00
|
|
|
N_("git verify-tag [-v | --verbose] <tag>..."),
|
2009-07-08 07:15:39 +02:00
|
|
|
NULL
|
|
|
|
};
|
2007-07-27 06:07:34 +02:00
|
|
|
|
2012-03-08 21:07:20 +01:00
|
|
|
static int git_verify_tag_config(const char *var, const char *value, void *cb)
|
|
|
|
{
|
|
|
|
int status = git_gpg_config(var, value, cb);
|
|
|
|
if (status)
|
|
|
|
return status;
|
|
|
|
return git_default_config(var, value, cb);
|
|
|
|
}
|
|
|
|
|
2007-07-27 06:07:34 +02:00
|
|
|
int cmd_verify_tag(int argc, const char **argv, const char *prefix)
|
|
|
|
{
|
|
|
|
int i = 1, verbose = 0, had_error = 0;
|
2015-06-22 01:14:43 +02:00
|
|
|
unsigned flags = 0;
|
2009-07-08 07:15:39 +02:00
|
|
|
const struct option verify_tag_options[] = {
|
2012-08-20 14:32:52 +02:00
|
|
|
OPT__VERBOSE(&verbose, N_("print tag contents")),
|
2015-06-22 01:14:43 +02:00
|
|
|
OPT_BIT(0, "raw", &flags, N_("print raw gpg status output"), GPG_VERIFY_RAW),
|
2009-07-08 07:15:39 +02:00
|
|
|
OPT_END()
|
|
|
|
};
|
2007-07-27 06:07:34 +02:00
|
|
|
|
2012-03-08 21:07:20 +01:00
|
|
|
git_config(git_verify_tag_config, NULL);
|
2007-07-27 06:07:34 +02:00
|
|
|
|
2009-07-08 07:15:39 +02:00
|
|
|
argc = parse_options(argc, argv, prefix, verify_tag_options,
|
|
|
|
verify_tag_usage, PARSE_OPT_KEEP_ARGV0);
|
2008-07-28 12:48:44 +02:00
|
|
|
if (argc <= i)
|
2009-07-08 07:15:39 +02:00
|
|
|
usage_with_options(verify_tag_usage, verify_tag_options);
|
2008-07-28 12:48:44 +02:00
|
|
|
|
2015-06-22 01:14:43 +02:00
|
|
|
if (verbose)
|
|
|
|
flags |= GPG_VERIFY_VERBOSE;
|
|
|
|
|
2016-04-19 19:47:19 +02:00
|
|
|
while (i < argc) {
|
|
|
|
unsigned char sha1[20];
|
|
|
|
const char *name = argv[i++];
|
|
|
|
if (get_sha1(name, sha1))
|
|
|
|
had_error = !!error("tag '%s' not found.", name);
|
2016-04-22 16:52:04 +02:00
|
|
|
else if (gpg_verify_tag(sha1, name, flags))
|
2007-07-27 06:07:34 +02:00
|
|
|
had_error = 1;
|
2016-04-19 19:47:19 +02:00
|
|
|
}
|
2007-07-27 06:07:34 +02:00
|
|
|
return had_error;
|
|
|
|
}
|