123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749 |
- # Copyright (C) 2004 Fletcher T. Penney <fletcher@freeshell.org>
- #
- # This program is free software; you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation; either version 3 of the License, or
- # (at your option) any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with this program. If not, see <http://www.gnu.org/licenses/>.
- use strict;
- use v5.10;
- AddModuleDescription('login.pl', 'Login Module');
- our ($q, %Action, $SiteName, @MyAdminCode, $IndexFile, $DataDir, $FullUrl);
- our ($RegistrationForm, $MinimumPasswordLength, $RegistrationsMustBeApproved, $LoginForm, $PasswordFile, $PasswordFileToUse, $PendingPasswordFile, $RequireLoginToEdit, $ConfirmEmailAddress, $UnconfirmedPasswordFile, $EmailSenderAddress, $EmailCommand, $EmailRegExp, $NotifyPendingRegistrations, $EmailConfirmationMessage, $ResetPasswordMessage, $LogoutForm, $ResetForm, $ChangePassForm, $RequireCamelUserName, $UsernameRegExp);
- my $EncryptedPassword = "";
- push(@MyAdminCode, \&LoginAdminRule);
- $EmailRegExp = '[\w\.\-]+@([\w\-]+\.)+[\w]+';
- $UsernameRegExp = '([A-Z][a-z]+){2,}';
- $RequireCamelUserName = 0 unless defined $RequireCamelUserName;
- $RequireLoginToEdit = 1 unless defined $RequireLoginToEdit;
- $MinimumPasswordLength = 6 unless defined $MinimumPasswordLength;
- $PasswordFile = "$DataDir/passwords" unless defined $PasswordFile;
- $RegistrationsMustBeApproved = 1 unless defined $RegistrationsMustBeApproved;
- $PendingPasswordFile = "$DataDir/pending" unless defined $PendingPasswordFile;
- $ConfirmEmailAddress = 1 unless defined $ConfirmEmailAddress;
- $UnconfirmedPasswordFile = "$DataDir/uncomfirmed" unless defined $UnconfirmedPasswordFile;
- $EmailSenderAddress = "fletcher\@freeshell.org" unless defined $EmailSenderAddress;
- $EmailCommand = "/usr/sbin/sendmail -oi -t" unless defined $EmailCommand;
- $NotifyPendingRegistrations = "fletcher\@mercury.local" unless defined $NotifyPendingRegistrations;
- $EmailConfirmationMessage = qq!From: $EmailSenderAddress
- Subject: $SiteName Registration Confirmation
- This email address was used to create an account at $SiteName. If you did not register at this site, you do not need to do anything.
- Otherwise, in order to confirm your account, follow the link below.
- Thank you...
- ! unless defined $EmailConfirmationMessage;
- $ResetPasswordMessage = qq!From: $EmailSenderAddress
- Subject: $SiteName Password Reset
- We received a request to reset your password on our website. Your password has been reset (see below). You may log in and change to a password of your choice.
- Thank you...
- ! unless defined $ResetPasswordMessage;
- $PasswordFileToUse = $RegistrationsMustBeApproved
- ? $PendingPasswordFile : $PasswordFile;
- $PasswordFileToUse = $ConfirmEmailAddress
- ? $UnconfirmedPasswordFile : $PasswordFileToUse;
- $RegistrationForm = <<'EOT' unless defined $RegistrationForm;
- <p>Your Username should be a CamelCase form of your real name, e.g. JohnDoe.</p>
- <p>Your password must be at least 6 characters long.</p>
- <p>Your email address must be real, as a confirmation email will be sent to you. Your email address will not be shared with anyone else, or used for any other purpose.</p>
- <form method="post">
- <input type="hidden" name="action" value="process_registration" />
- <table class="form">
- <tr><td class="label">
- Username:
- </td><td class="input">
- <input type="text" name="username" value="%username%" />
- </td></tr>
- <tr><td class="label">
- Password:
- </td><td class="input">
- <input type="password" name="pwd1" value="" />
- </td></tr>
- <tr><td class="label">
- Reenter:
- </td><td class="input">
- <input type="password" name="pwd2" value="" />
- </td></tr>
- <tr><td class="label">
- Email:
- </td><td class="input">
- <input type="text" name="email" value="%email%" />
- </td></tr>
- <tr><td colspan="2" class="button">
- <input type="submit" value="Register" />
- </td></tr>
- </table>
- </form>
- EOT
- $LoginForm = <<'EOT' unless defined $LoginForm;
- <form method="post">
- <input type="hidden" name="action" value="process_login" />
- <table class="form">
- <tr><td class="label">
- Username:
- </td><td class="input">
- <input type="text" name="username" value="%username%" />
- </td></tr>
- <tr><td class="label">
- Password:
- </td><td class="input">
- <input type="password" name="pwd" value="" />
- </td></tr>
- <tr><td colspan="2" class="button">
- <input type="submit" value="Login" />
- </td></tr>
- </table>
- </form>
- EOT
- $LogoutForm = <<'EOT' unless defined $LogoutForm;
- <form method="post">
- <input type="hidden" name="action" value="process_logout" />
- <input type="hidden" name="pwd" value="" />
- <table class="form">
- <tr><td colspan="2" class="button">
- <input type="submit" value="Logout" />
- </td></tr>
- </table>
- </form>
- EOT
- $ResetForm = <<'EOT' unless defined $ResetForm;
- <p>Submit your username in order to reset your password.</p>
- <p>A temporary password will be mailed to you.</p>
- <form method="post">
- <input type="hidden" name="action" value="reset_password" />
- <input type="hidden" name="pwd" value="" />
- <table class="form">
- <tr><td class="label">
- Username:
- </td><td class="input">
- <input type="text" name="username" value="%username%" />
- </td></tr>
- <tr><td colspan="2" class="button">
- <input type="submit" value="Reset" />
- </td></tr>
- </table>
- </form>
- EOT
- $ChangePassForm = <<'EOT' unless defined $ChangePassForm;
- <form method="post">
- <input type="hidden" name="action" value="change_password" />
- <table class="form">
- <tr><td class="label">
- Username:
- </td><td class="input">
- <input type="text" name="username" value="%username%" />
- </td></tr>
- <tr><td class="label">
- Old Password:
- </td><td class="input">
- <input type="password" name="oldpwd" value="" />
- </td></tr>
- <tr><td class="label">
- Password:
- </td><td class="input">
- <input type="password" name="pwd1" value="" />
- </td></tr>
- <tr><td class="label">
- Reenter:
- </td><td class="input">
- <input type="password" name="pwd2" value="" />
- </td></tr>
- <tr><td colspan="2" class="button">
- <input type="submit" value="Submit" />
- </td></tr>
- </table>
- </form>
- EOT
- $Action{register} = \&DoRegister;
- sub DoRegister {
- my $id = shift;
- print GetHeader('', Ts('Register for %s', $SiteName), '');
- print '<div class="content">';
- $RegistrationForm =~ s/\%([a-z]+)\%/GetParam($1)/egi;
- $RegistrationForm =~ s/\$([a-z]+)\$/$q->span({-class=>'param'}, GetParam($1))
- . $q->input({-type=>'hidden', -name=>$1, -value=>GetParam($1)})/eg;
- print $RegistrationForm;
- print '</div>';
- PrintFooter();
- }
- $Action{process_registration} = \&DoProcessRegistration;
- sub DoProcessRegistration {
- my $id = shift;
- my $username = GetParam('username', '');
- my $pwd1 = GetParam('pwd1', '');
- my $pwd2 = GetParam('pwd2', '');
- my $email = GetParam('email', '');
- if ($RequireCamelUserName) {
- ReportError(T('Please choose a username of the form "FirstLast" using your real name.'))
- unless ($username =~ /$UsernameRegExp/);
- }
- ReportError(T('The passwords do not match.'))
- unless ($pwd1 eq $pwd2);
- ReportError(Ts('The password must be at least %s characters.', $MinimumPasswordLength))
- unless (length($pwd1) > ($MinimumPasswordLength-1));
- ReportError(T('That email address is invalid.'))
- unless ($email =~ /$EmailRegExp/);
- ReportError(Ts('The username %s has already been registered.', $username))
- if (UserExists($username));
- print GetHeader('', Ts('Register for %s', $SiteName), '');
- if ($RegistrationsMustBeApproved) {
- if (AddUser($username, $pwd1, $email, $PasswordFileToUse)) {
- print Ts('Your registration for %s has been submitted.', $SiteName);
- print " ";
- print T('Please allow time for the webmaster to approve your request.');
- print " ";
- if ($ConfirmEmailAddress) {
- print Ts('An email has been sent to "%s" with further instructions.', $email);
- print " ";
- } else {
- SendNotification($username);
- }
- } else {
- ReportError(T('There was an error saving your registration.'));
- }
- } else {
- if (AddUser($username, $pwd1, $email, $PasswordFileToUse)) {
- print Ts('An account was created for %s.', $username);
- print " ";
- if ($ConfirmEmailAddress) {
- print Ts('An email has been sent to "%s" with further instructions.', $email);
- print " ";
- }
- } else {
- ReportError(T('There was an error saving your registration.'));
- }
- }
- SendConfirmationEmail($username,$email) if ($ConfirmEmailAddress);
- PrintFooter();
- }
- $Action{login} = \&DoLogin;
- sub DoLogin {
- my $id = shift;
- print GetHeader('', Ts('Login to %s', $SiteName), '');
- print '<div class="content">';
- $LoginForm =~ s/\%([a-z]+)\%/GetParam($1)/eg;
- $LoginForm =~ s/\$([a-z]+)\$/$q->span({-class=>'param'}, GetParam($1))
- . $q->input({-type=>'hidden', -name=>$1, -value=>GetParam($1)})/eg;
- print $LoginForm;
- print '</div>';
- PrintFooter();
- }
- $Action{process_login} = \&DoProcessLogin;
- sub DoProcessLogin {
- my $id = shift;
- my $username = GetParam('username', '');
- my $pwd = GetParam('pwd', '');
- my $email = GetParam('email', '');
- ReportError(T('Username and/or password are incorrect.'))
- unless (AuthenticateUser($username,$pwd));
- Unlink($IndexFile);
- print GetHeader('', Ts('Register for %s', $SiteName), '');
- print '<div class="content">';
- print Ts('Logged in as %s.', $username);
- print '</div>';
- PrintFooter();
- }
- $Action{logout} = \&DoLogout;
- sub DoLogout {
- my $id = shift;
- print GetHeader('', Ts('Logout of %s', $SiteName), '');
- print '<div class="content">';
- print '<p>' . Ts('Logout of %s?',$SiteName) . '</p>';
- $LogoutForm =~ s/\%([a-z]+)\%/GetParam($1)/eg;
- $LogoutForm =~ s/\$([a-z]+)\$/$q->span({-class=>'param'}, GetParam($1))
- . $q->input({-type=>'hidden', -name=>$1, -value=>GetParam($1)})/eg;
- print $LogoutForm;
- print '</div>';
- PrintFooter();
- }
- $Action{process_logout} = \&DoProcessLogout;
- sub DoProcessLogout {
- SetParam('pwd','');
- SetParam('username','');
- Unlink($IndexFile); # I shouldn't have to do this...
- print GetHeader('', Ts('Logged out of %s', $SiteName), '');
- print '<div class="content">';
- print T('You are now logged out.');
- print '</div>';
- PrintFooter();
- }
- sub UserExists {
- my $username = shift;
- if (open (my $PASSWD, '<', encode_utf8($PasswordFile))) {
- while ( <$PASSWD> ) {
- if ($_ =~ /^$username:/) {
- return 1;
- }
- }
- close $PASSWD;
- }
- if ($RegistrationsMustBeApproved) {
- if (open (my $PASSWD, '<', encode_utf8($PendingPasswordFile))) {
- while ( <$PASSWD> ) {
- if ($_ =~ /^$username:/) {
- return 1;
- }
- }
- close $PASSWD;
- }
- }
- if ($ConfirmEmailAddress) {
- if (open (my $PASSWD, '<', encode_utf8($UnconfirmedPasswordFile))) {
- while ( <$PASSWD> ) {
- if ($_ =~ /^$username:/) {
- return 1;
- }
- }
- close $PASSWD;
- }
- }
- return 0;
- }
- sub AddUser {
- my ($username, $pwd, $email, $FileToUse) = @_;
- my @salts = ('a'..'z', 'A'..'Z', 0..9, '.', '/');
- my $salt=$salts[rand @salts];
- $salt.=$salts[rand @salts];
- my $encrypted = crypt($pwd,$salt);
- $EncryptedPassword = $encrypted;
- my %passwords = ();
- my %emails = ();
- if (open (my $PASSWD, '<', $FileToUse)) {
- while ( <$PASSWD> ) {
- if ($_ =~ /^(.*):(.*):(.*)$/) {
- $passwords{$1}=$2;
- $emails{$1}=$3;
- }
- }
- close $PASSWD;
- }
- $passwords{$username} = $encrypted;
- $emails{$username} = $email;
- open (my $PASSWD, '>', $FileToUse);
- foreach my $key ( sort keys(%passwords)) {
- print $PASSWD "$key:$passwords{$key}:$emails{$key}\n";
- }
- close $PASSWD;
- return 1;
- }
- *OldUserCanEdit = \&UserCanEdit;
- *UserCanEdit = \&LoginUserCanEdit;
- sub LoginUserCanEdit {
- my ($id, $editing) = @_;
- my $user = GetParam('username', '');
- my $pwd = GetParam('pwd', '');
- if ($RequireLoginToEdit) {
- if ($user and $pwd) {
- # If not logged in, return 0. Otherwise, let Oddmuse d$
- return 0 unless AuthenticateUser($user, $pwd);
- return OldUserCanEdit($id, $editing);
- }
- return 0;
- }
- return OldUserCanEdit($id, $editing);
- }
- sub AuthenticateUser {
- my ($username, $password) = @_;
- my $line;
- if (open(my $PASSWD, '<', $PasswordFile)) {
- while ($line = <$PASSWD>) {
- if ($line =~ /^$username:(.*):(.*)/) {
- if (crypt($password,$1) eq $1) {
- close $PASSWD;
- return 1;
- }
- }
- }
- close $PASSWD;
- }
- return 0;
- }
- sub LoginAdminRule {
- my ($id, $menuref) = @_;
- push(@$menuref, ScriptLink('action=register', T('Register a new account'), 'register'));
- push(@$menuref, ScriptLink('action=login', T('Login'), 'login'));
- push(@$menuref, ScriptLink('action=logout', T('Logout'), 'logout'));
- push(@$menuref, ScriptLink('action=whoami', T('Who am I?'), 'whoami'));
- push(@$menuref, ScriptLink('action=reset', T('Forgot your password?'), 'reset'));
- push(@$menuref, ScriptLink('action=change', T('Change your password'), 'change'));
- if (UserIsAdmin()) {
- push(@$menuref, ScriptLink('action=approve_pending', T('Approve pending registrations'), 'approve'));
- }
- }
- sub SendConfirmationEmail {
- my ($username, $email) = @_;
- my $key = $EncryptedPassword;
- my @salts = ('a'..'z', 'A'..'Z', 0..9, '.', '/');
- my $salt=$salts[rand @salts];
- $salt.=$salts[rand @salts];
- my $encrypted = crypt($key,$salt);
- my $confirmationLink = "$FullUrl?action=confirm_registration;account=$username;key=$encrypted;";
- open (my $MAIL, '|', $EmailCommand);
- print $MAIL "To: $email\n$EmailConfirmationMessage\n\nClick on the following link to confirm:\n\n$confirmationLink\n\n";
- close $MAIL;
- }
- $Action{confirm_registration} = \&DoConfirmRegistration;
- sub DoConfirmRegistration {
- my $id = shift;
- my $account = GetParam('account', '');
- my $key = GetParam('key', '');
- if ( ConfirmUser($account,$key)) {
- print GetHeader('', Ts('Confirm Registration for %s', $SiteName), '');
- print Ts('%s, your registration has been approved. You can now use your password to login and edit this wiki.',$account);
- PrintFooter();
- } else {
- ReportError(Ts('Confirmation failed. Please email %s for help.', $EmailSenderAddress));
- }
- }
- sub ConfirmUser {
- my ($username, $key) = @_;
- my $FileToUse = $RegistrationsMustBeApproved
- ? $PendingPasswordFile : $PasswordFileToUse;
- if (open(my $PASSWD, '<', encode_utf8($UnconfirmedPasswordFile))) {
- while (<$PASSWD>) {
- if ($_ =~ /^$username:(.*):(.*)/) {
- if (crypt($1,$key) eq $key) {
- AddUser($username,$1,$2,$FileToUse);
- close $PASSWD;
- RemoveUser($username,$UnconfirmedPasswordFile);
- if ($RegistrationsMustBeApproved) {
- SendNotification($username);
- }
- return 1;
- }
- }
- }
- }
- return 0;
- }
- sub RemoveUser {
- my ($username, $FileToUse) = @_;
- my %passwords = ();
- my %emails = ();
- if (open (my $PASSWD, '<', encode_utf8($FileToUse))) {
- while ( <$PASSWD> ) {
- if ($_ =~ /^(.*):(.*):(.*)$/) {
- next if ($1 eq $username);
- $passwords{$1}=$2;
- $emails{$1}=$3;
- }
- }
- close $PASSWD;
- }
- open (my $PASSWD, '>', $FileToUse);
- foreach my $key ( sort keys(%passwords)) {
- print $PASSWD "$key:$passwords{$key}:$emails{$key}\n";
- }
- close $PASSWD;
- return 1;
- }
- $Action{whoami} = \&DoWhoAmI;
- sub DoWhoAmI {
- print GetHeader('', T('Who Am I?'), '');
- my $user = GetParam('username', '');
- my $pwd = GetParam('pwd', '');
- if (AuthenticateUser($user, $pwd)) {
- print Ts('You are logged in as %s.',GetParam('username', ''));
- } else {
- print T('You are not logged in.');
- }
- PrintFooter();
- }
- $Action{reset_password} = \&DoResetPassword;
- sub DoResetPassword {
- my $id = shift;
- my $username = GetParam('username', '');
- if (UserExists($username)) {
- my ($newpass, $newhash) = newpass();
- my $email = ChangePassword($username,$newhash);
- if ($email ne "") {
- print GetHeader('', T('Reset Password'), '');
- print Ts('The password for %s was reset. It has been emailed to the address on file.',$username);
- PrintFooter();
- SendResetEmail($email,$newpass);
- } else {
- ReportError(Ts('There was an error resetting the password for %s.',$username));
- }
- } else {
- ReportError(Ts('The username "%s" does not exist.',$username));
- }
- }
- sub newpass {
- # Create a random password
- my @salts = ('a'..'z', 'A'..'Z', 0..9, '.', '/');
- my $salt=$salts[rand @salts];
- $salt.=$salts[rand @salts];
- my $password = $salts[rand @salts];
- for (my $i = 0; $i < 7; $i++) {
- $password .= $salts[rand @salts];
- }
- my $hash = crypt($password, $salt);
- return ($password, $hash);
- }
- sub ChangePassword {
- my ($user, $hash) = @_;
- my %passwords = ();
- my %emails = ();
- if (open (my $PASSWD, '<', encode_utf8($PasswordFile))) {
- while ( <$PASSWD> ) {
- if ($_ =~ /^(.*):(.*):(.*)$/) {
- $passwords{$1}=$2;
- $emails{$1}=$3;
- }
- }
- close $PASSWD;
- }
- $passwords{$user} = $hash;
- open (my $PASSWD, '>', encode_utf8($PasswordFile));
- foreach my $key ( sort keys(%passwords)) {
- print $PASSWD "$key:$passwords{$key}:$emails{$key}\n";
- }
- close $PASSWD;
- return $emails{$user};
- }
- $Action{reset} = \&DoReset;
- sub DoReset {
- my $id = shift;
- print GetHeader('', Ts('Reset Password for %s', $SiteName), '');
- print '<div class="content">';
- print '<p>' . T('Reset Password?') . '</p>';
- $ResetForm =~ s/\%([a-z]+)\%/GetParam($1)/eg;
- $ResetForm =~ s/\$([a-z]+)\$/$q->span({-class=>'param'}, GetParam($1))
- . $q->input({-type=>'hidden', -name=>$1, -value=>GetParam($1)})/eg;
- print $ResetForm;
- print '</div>';
- PrintFooter();
- }
- sub SendResetEmail {
- my ($email, $newpass) = @_;
- open (my $MAIL, '|', $EmailCommand);
- print $MAIL "To: $email\n$EmailConfirmationMessage\n\nYour new temporary password:\n\n$newpass\n\n";
- close $MAIL;
- }
- $Action{change} = \&DoChangePassword;
- sub DoChangePassword {
- my $id = shift;
- print GetHeader('', Ts('Change Password for %s', $SiteName), '');
- print '<div class="content">';
- print '<p>' . T('Change Password?') . '</p>';
- $ChangePassForm =~ s/\%([a-z]+)\%/GetParam($1)/eg;
- $ChangePassForm =~ s/\$([a-z]+)\$/$q->span({-class=>'param'}, GetParam($1))
- . $q->input({-type=>'hidden', -name=>$1, -value=>GetParam($1)})/eg;
- print $ChangePassForm;
- print '</div>';
- PrintFooter();
- }
- $Action{change_password} = \&DoProcessChangePassword;
- sub DoProcessChangePassword {
- my $id = shift;
- my $username = GetParam('username', '');
- my $pwd1 = GetParam('pwd1', '');
- my $pwd2 = GetParam('pwd2', '');
- my $oldpwd = GetParam('oldpwd', '');
- ReportError(T('Your current password is incorrect.')) if
- (! AuthenticateUser($username,$oldpwd));
- ReportError(T('The passwords do not match.'))
- unless ($pwd1 eq $pwd2);
- ReportError(Ts('The password must be at least %s characters.', $MinimumPasswordLength))
- unless (length($pwd1) > ($MinimumPasswordLength-1));
- print GetHeader('', Ts('Register for %s', $SiteName), '');
- my @salts = ('a'..'z', 'A'..'Z', 0..9, '.', '/');
- my $salt=$salts[rand @salts];
- $salt.=$salts[rand @salts];
- my $encrypted = crypt($pwd1,$salt);
- ChangePassword($username,$encrypted);
- print T('Your password has been changed.');
- PrintFooter();
- }
- sub SendNotification {
- my $NewUser = shift;
- open (my $MAIL, '|', $EmailCommand);
- print $MAIL "To: $NotifyPendingRegistrations\nFrom: $EmailSenderAddress\nSubject: New User at $SiteName\n\nYou have a new pending registration at $SiteName:\n\n$NewUser\n\n";
- close $MAIL;
- }
- $Action{approve_pending} = \&DoApprovePending;
- sub DoApprovePending {
- my $id = shift;
- my $count = 0;
- my $ToBeApproved = GetParam('user','');
- UserIsAdminOrError();
- print GetHeader('', Ts('Approve Pending Registrations for %s', $SiteName), '');
- if ($ToBeApproved) {
- if (ApproveUser($ToBeApproved)) {
- print Ts('%s has been approved.',$ToBeApproved);
- } else {
- print Ts('There was an error approving %s.',$ToBeApproved);
- }
- } else {
- print '<ul>';
- if (open(my $PASSWD, '<', encode_utf8($PendingPasswordFile))) {
- while (<$PASSWD>) {
- if ($_ =~ /^(.*):(.*):(.*)$/) {
- print '<li>' . ScriptLink("action=approve_pending;user=$1;",$1) . ' - ' . $3 . '</li>';
- $count++;
- }
- }
- }
- print '</ul>';
- if ($count == 0) {
- print T('There are no pending registrations.');
- }
- }
- PrintFooter();
- }
- sub ApproveUser {
- my ($username) = @_;
- if (open(my $PASSWD, '<', encode_utf8($PendingPasswordFile))) {
- while (<$PASSWD>) {
- if ($_ =~ /^$username:(.*):(.*)/) {
- AddUser($username,$1,$2,$PasswordFile);
- close $PASSWD;
- RemoveUser($username,$PendingPasswordFile);
- return 1;
- }
- }
- }
- return 0;
- }
|