PHP Classes

File: htdocs/lostpass.php

Recommend this page to a friend!
  Packages of Michael Beck   Xoops 2.5   htdocs/lostpass.php   Download  
File: htdocs/lostpass.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Xoops 2.5
Modular content management publication system
Author: By
Last change: Merge pull request #1577 from ggoffy/master

added groups to member list
updates
copyright update
PER-CS formatting
Merge pull request #1239 from Andrew-Staves-Activ/notificationhandler_subscribe_success

Merge branch 'feature/php8_templates' of https://github.com/mambax7/XoopsCore25 into feature/php8_templates

# Conflicts:
# htdocs/themes/xswatch4/modules/publisher/publisher_item.tpl
Template fixes user and profile for php8
Merge xswatch4
Date: 2 months ago
Size: 4,059 bytes
 

Contents

Class file image Download
<?php
/**
 * XOOPS password recovery
 *
 * You may not change or alter any portion of this comment or credits
 * of supporting developers from this source code or any supporting source code
 * which is considered copyrighted (c) material of the original comment or credit authors.
 * 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.
 *
 * @copyright (c) 2000-2025 XOOPS Project (https://xoops.org)
 * @license GNU GPL 2 (https://www.gnu.org/licenses/gpl-2.0.html)
 * @package core
 * @since 2.0.0
 */

use Xmf\Request;

include
__DIR__ . '/mainfile.php';

$xoopsPreload = XoopsPreload::getInstance();
$xoopsPreload->triggerEvent('core.lostpass.start');

xoops_loadLanguage('user');

$email = Request::getEmail('email', '', 'GET');
$email = Request::getEmail('email', $email, 'POST');

if (
$email == '') {
   
redirect_header('user.php', 2, _US_SORRYNOTFOUND);
}

$myts = \MyTextSanitizer::getInstance();
/** @var XoopsMemberHandler $member_handler */
$member_handler = xoops_getHandler('member');
$getuser = $member_handler->getUsers(new Criteria('email', $xoopsDB->escape($email)));

if (empty(
$getuser)) {
   
$msg = _US_SORRYNOTFOUND;
   
redirect_header('user.php', 2, $msg);
} else {
   
$code = Request::getString('code', '', 'GET');
   
$areyou = substr(md5($getuser[0]->getVar('pass')), 0, 5);
    if (
$code != '' && $areyou == $code) {
       
$newpass = xoops_makepass();
       
$xoopsMailer = xoops_getMailer();
       
$xoopsMailer->useMail();
       
$xoopsMailer->setTemplate('lostpass2.tpl');
       
$xoopsMailer->assign('SITENAME', $xoopsConfig['sitename']);
       
$xoopsMailer->assign('ADMINMAIL', $xoopsConfig['adminmail']);
       
$xoopsMailer->assign('SITEURL', XOOPS_URL . '/');
       
$xoopsMailer->assign('IP', $_SERVER['REMOTE_ADDR']);
       
$xoopsMailer->assign('NEWPWD', $newpass);
       
$xoopsMailer->setToUsers($getuser[0]);
       
$xoopsMailer->setFromEmail($xoopsConfig['adminmail']);
       
$xoopsMailer->setFromName($xoopsConfig['sitename']);
       
$xoopsMailer->setSubject(sprintf(_US_NEWPWDREQ, XOOPS_URL));
        if (!
$xoopsMailer->send()) {
            echo
$xoopsMailer->getErrors();
        }
       
// Next step: add the new password to the database
       
$sql = sprintf(
           
"UPDATE %s SET pass = '%s' WHERE uid = %u",
           
$xoopsDB->prefix('users'),
           
password_hash($newpass, PASSWORD_DEFAULT),
           
$getuser[0]->getVar('uid'),
        );
        if (!
$xoopsDB->exec($sql)) {
            include
$GLOBALS['xoops']->path('header.php');
            echo
_US_MAILPWDNG;
            include
$GLOBALS['xoops']->path('footer.php');
            exit();
        }
       
redirect_header('user.php', 3, sprintf(_US_PWDMAILED, $getuser[0]->getVar('uname')), false);
       
// If no Code, send it
   
} else {
       
$xoopsMailer = xoops_getMailer();
       
$xoopsMailer->useMail();
       
$xoopsMailer->setTemplate('lostpass1.tpl');
       
$xoopsMailer->assign('SITENAME', $xoopsConfig['sitename']);
       
$xoopsMailer->assign('ADMINMAIL', $xoopsConfig['adminmail']);
       
$xoopsMailer->assign('SITEURL', XOOPS_URL . '/');
       
$xoopsMailer->assign('IP', $_SERVER['REMOTE_ADDR']);
       
$xoopsMailer->assign('NEWPWD_LINK', XOOPS_URL . '/lostpass.php?email=' . $email . '&code=' . $areyou);
       
$xoopsMailer->setToUsers($getuser[0]);
       
$xoopsMailer->setFromEmail($xoopsConfig['adminmail']);
       
$xoopsMailer->setFromName($xoopsConfig['sitename']);
       
$xoopsMailer->setSubject(sprintf(_US_NEWPWDREQ, $xoopsConfig['sitename']));
        include
$GLOBALS['xoops']->path('header.php');
        if (!
$xoopsMailer->send()) {
            echo
$xoopsMailer->getErrors();
        }
        echo
'<h4>';
       
printf(_US_CONFMAIL, $getuser[0]->getVar('uname'));
        echo
'</h4>';
        include
$GLOBALS['xoops']->path('footer.php');
    }
}