Add authcomplex-passwd script
[plack-middleware-auth-complex.git] / authcomplex-passwd
CommitLineData
cc5b1b68
MG
1#!/usr/bin/perl
2use 5.014000;
3use strict;
4use warnings;
5
6use IO::Prompter;
7use Plack::Middleware::Auth::Complex;
8
9if (@ARGV < 1) {
10 say STDERR "$0 USERNAME [DSN [DB_USER [DB_PASSWD]]]";
11 exit 1;
12}
13
14my ($username, $dsn, $dbuser, $dbpasswd) = @ARGV;
15$dsn //= $ENV{AUTHCOMPLEX_DSN};
16$dbuser //= $ENV{AUTHCOMPLEX_DBUSER};
17$dbpasswd //= $ENV{AUTHCOMPLEX_DBPASSWD};
18
19$dsn //= 'dbi:Pg:';
20$dbuser //= '';
21$dbpasswd //= '';
22
23my $password = prompt 'Password: ', -echo => '*', -in => *STDIN;
24my $confirm = prompt 'Confirm password: ', -echo => '*', -in => *STDIN;
25
26if ($password ne $confirm) {
27 say STDERR 'The passwords do not match';
28 exit 1;
29}
30
31my $ac = Plack::Middleware::Auth::Complex->new({
32 dbi_connect => [$dsn, $dbuser, $dbpasswd]
33});
34
35$ac->init;
36$ac->set_passphrase($username, $password) or die "$@\n";
37say 'Password changed successfully';
38
391;
40__END__
41
42=encoding utf-8
43
44=head1 NAME
45
46authcomplex-passwd - change user password
47
48=head1 SYNOPSIS
49
50 authcomplex-passwd USERNAME [DSN [DB_USER [DB_PASSWD]]]
51
52 # For example:
53 authcomplex-passwd myuser # dsn defaults to 'dbi:Pg:'
54 authcomplex-passwd myuser 'dbi:Pg:dbname=www-data'
55 authcomplex-passwd myuser 'dbi:Pg:dbname=www-data' db_superuser password123
56
57=head1 DESCRIPTION
58
59The authcomplex-passwd script changes the password for an user.
60Takes one mandatory argument, the user whose password should be changed.
61
62The DBI Data Source Name is the second argument to the script, or the
63value of the AUTHCOMPLEX_DSN environment variable if set, or
64C<dbi:Pg:> otherwise.
65
66The username for the database is the third argument to the script, or
67the value of the AUTHCOMPLEX_DBUSER environment variable if set, or an
68empty string otherwise.
69
70The password for the database is the fourth argument to the script, or
71the value of the AUTHCOMPLEX_DBPASSWD environment variable if set, or
72an empty string otherwise.
73
74=head1 AUTHOR
75
76Marius Gavrilescu, E<lt>marius@ieval.roE<gt>
77
78=head1 COPYRIGHT AND LICENSE
79
80Copyright (C) 2015-2017 by Marius Gavrilescu
81
82This library is free software; you can redistribute it and/or modify
83it under the same terms as Perl itself, either Perl version 5.20.1 or,
84at your option, any later version of Perl 5 you may have available.
85
86
87=cut
This page took 0.012446 seconds and 4 git commands to generate.