Joomla 1.5密码检查

时间:2013-03-09 23:10:14

标签: php joomla

我继承了一个joomla 1.5网站,该网站的重置密码组件无法正常运行。 ATM我可以将密码重置发送到用户输入的电子邮件,但该组件缺少检查现有用户以查看电子邮件是否有效的功能。我对PHP很新,所以我不是百分之百确定如何引入额外的if语句。

到目前为止,它是如何看待的:

public function submitemail() {
    $db = JFactory::getDBO() ;
    $requestedEmail =   JRequest::getVar('emailaddr' , '') ;
    $db->setQuery('select id , username, name, email from #__users where block = 0  and email = "'.$requestedEmail.'"') ;
    if( $user =  $db->loadObject() )  {

        // Make sure the user isn't a Super Admin.
        $juser = JFactory::getUser($user->id) ;
        //joomla 1.6 and 1.5 check  
        if ($juser->authorize('core.admin') || $juser->usertype == 'Super Administrator') {
            $this->setRedirect( 'index.php?option=com_resetpassword'  , 'Email is not valid' ) ;        
        }
        else {          
            $result = $this->sendPasswordResetEmail( $user ) ;
            $this->setRedirect( 'index.php?option=com_resetpassword&layout=success'  //, 'Please check your email and follow the instructions to reset your password ' 
                ) ;
        }
    }
    else {
        $this->setRedirect( 'index.php?option=com_resetpassword'  );
    }
}

我发现了一个相关帖子,我发现了这个片段。如何根据用户输入的重置电子邮件检查当前在我的数据库中的电子邮件地址?

function validate()
{ jimport('joomla.mail.helper');
$valid = true;
 if ($this->_data->email && !JMailHelper::isEmailAddress($this->_data->email))
{           
     $this->_app->enqueueMessage(JText::_('Invalid Email Address'),'error');                       
     $valid = false;           
}   
return $valid; 
}

1 个答案:

答案 0 :(得分:1)

这实际上就是它正在做的事情。 top会根据提交的电子邮件地址为用户加载行:

$requestedEmail =   JRequest::getVar('emailaddr' , '') ;
$db->setQuery('select id , username, name, email from #__users where block = 0  and email = "'.$requestedEmail.'"') ;
if( $user =  $db->loadObject() )  {
    ...

您可能需要做的就是在底部的else语句失败时添加一条消息:

else {
    $this->_app->enqueueMessage(JText::_('Invalid Email Address'),'error');
    $this->setRedirect( 'index.php?option=com_resetpassword'  );
}

如果未设置$this->_app,您应该可以通过使用此代码来实现:

JFactory::getApplication()->enqueueMessage(JText::_('Invalid Email Address'),'error');