-
Notifications
You must be signed in to change notification settings - Fork 0
/
delete-protected-user.pl
executable file
·89 lines (78 loc) · 2.64 KB
/
delete-protected-user.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#!/usr/bin/perl
use strict;
use warnings;
our $module_name;
=head1 delete-protected-user.pl
Removes a user from some protected directory.
This command removes a user from a protected directory, identified by the
C<--domain> and C<--path> flags. The user to delete must be selected with
the C<--user> flag.
=cut
package virtualmin_htpasswd;
if (!$module_name) {
no warnings "once";
$main::no_acl_check++;
use warnings "once";
$ENV{'WEBMIN_CONFIG'} ||= "/etc/webmin";
$ENV{'WEBMIN_VAR'} ||= "/var/webmin";
my $pwd;
if ($0 =~ /^(.*)\/[^\/]+$/) {
chdir($pwd = $1);
}
else {
chop($pwd = `pwd`);
}
$0 = "$pwd/created-protected-user.pl";
require './virtualmin-htpasswd-lib.pl';
$< == 0 || die "create-protected-user must be run as root";
}
my @OLDARGV = @ARGV;
# Parse command-line args
my ($dname, $path, $user, $pass, $encpass);
my $enabled = 1;
while(@ARGV > 0) {
my $a = shift(@ARGV);
if ($a eq "--domain") {
$dname = shift(@ARGV);
}
elsif ($a eq "--path") {
$path = shift(@ARGV);
}
elsif ($a eq "--user") {
$user = shift(@ARGV);
}
else {
&usage();
}
}
# Validate parameters
$dname || &usage("Missing --domain parameter");
$path || &usage("Missing --directory parameter");
my $d = &virtual_server::get_domain_by("dom", $dname);
$d || &usage("No domain named $dname found");
$user || &usage("Missing --user parameter");
# Get the directories for this domain
my @dirs = &htaccess_htpasswd::list_directories();
@dirs = grep { &can_directory($_->[0], $d) } @dirs;
my ($dir) = grep { $_->[0] eq $path ||
&remove_public_html($_->[0], $d) eq $path } @dirs;
$dir || &usage("Directory $path is not registered");
# Get the current users for the dir, and find the one to delete
my $users = $dir->[2] == 3 ?
&htaccess_htpasswd::list_digest_users($dir->[1]) :
&htaccess_htpasswd::list_users($dir->[1]);
my ($suser) = grep { $_->{'user'} eq $user } @$users;
$suser || &usage("No user named $user exists");
&virtual_server::write_as_domain_user($d,
sub { &htaccess_htpasswd::delete_user($suser, $dir->[1]) });
print "Deleted $suser->{'user'} in $dir->[1]\n";
sub usage
{
print "$_[0]\n\n" if ($_[0]);
print "Removes a user from some protected directory.\n";
print "\n";
print "virtualmin delete-protected-user --domain name\n";
print " --path directory\n";
print " --user username\n";
exit(1);
}