summaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/issue-api-key.pl25
1 files changed, 25 insertions, 0 deletions
diff --git a/contrib/issue-api-key.pl b/contrib/issue-api-key.pl
new file mode 100755
index 000000000..fe24f59df
--- /dev/null
+++ b/contrib/issue-api-key.pl
@@ -0,0 +1,25 @@
+#!/usr/bin/perl -w
+use strict;
+use feature 'say';
+
+use FindBin qw( $RealBin );
+use lib "$RealBin/..";
+use lib "$RealBin/../lib";
+
+use Bugzilla;
+use Bugzilla::Constants;
+use Bugzilla::User;
+use Bugzilla::User::APIKey;
+
+Bugzilla->usage_mode(USAGE_MODE_CMDLINE);
+
+my $login = shift
+ or die "syntax: $0 bugzilla-login [description]\n";
+my $description = shift;
+
+my $user = Bugzilla::User->check({ name => $login });
+my $api_key = Bugzilla::User::APIKey->create({
+ user_id => $user->id,
+ description => $description,
+});
+say $api_key->api_key;