Cheetah
forgot.php
Go to the documentation of this file.
1 <?php
2 
8 require_once( 'inc/header.inc.php' );
9 require_once( CH_DIRECTORY_PATH_INC . 'design.inc.php' );
10 require_once( CH_DIRECTORY_PATH_INC . 'profiles.inc.php' );
11 require_once( CH_DIRECTORY_PATH_INC . 'utils.inc.php' );
12 ch_import( 'ChWsbEmailTemplates' );
13 ch_import( 'ChTemplFormView' );
14 
16 {
17  public static function checkEmail($s)
18  {
19  if (!preg_match("/(([A-Za-z]{3,9}:(?:\/\/)?)(?:[\-;:&=\+\$,\w]+@)?[A-Za-z0-9\.\-]+|(?:www\.|[\-;:&=\+\$,\w]+@)[A-Za-z0-9\.\-]+)((?:\/[\+~%\/\.\w\-_]*)?\??(?:[\-\+=&;%@\.\w_]*)#?(?:[\.\!\/\\\w]*))?/", $s))
20  return false;
21 
22  $iID = (int)db_value( "SELECT `ID` FROM `Profiles` WHERE `Email` = '$s'" );
23  if (!$iID)
24  return _t( '_MEMBER_NOT_RECOGNIZED', $site['title'] );
25 
26  return true;
27  }
28 }
29 
30 // --------------- page variables and login
31 
32 $_page['name_index'] = 1;
33 
34 $logged['member'] = member_auth( 0, false );
35 
36 $_page['header'] = _t( "_Forgot password?" );
37 $_page['header_text'] = _t( "_Password retrieval", $site['title'] );
38 
39 // --------------- page components
40 
41 $_ni = $_page['name_index'];
42 
43 $aForm = array(
44  'form_attrs' => array(
45  'name' => 'forgot_form',
46  'action' => CH_WSB_URL_ROOT . 'forgot.php',
47  'method' => 'post',
48  ),
49  'params' => array (
50  'db' => array(
51  'submit_name' => 'do_submit',
52  ),
53  'checker_helper' => 'ChWsbForgotCheckerHelper',
54  ),
55  'inputs' => array(
56  array(
57  'type' => 'email',
58  'name' => 'Email',
59  'caption' => _t('_My Email'),
60  'value' => isset($_POST['Email']) ? $_POST['Email'] : '',
61  'required' => true,
62  'checker' => array(
63  'func' => 'email',
64  'error' => _t( '_Incorrect Email' )
65  ),
66  ),
67  array(
68  'type' => 'captcha',
69  'name' => 'captcha',
70  'caption' => _t('_Enter Captcha'),
71  'required' => true,
72  'checker' => array(
73  'func' => 'captcha',
74  'error' => _t( '_Incorrect Captcha' ),
75  ),
76  ),
77  array(
78  'type' => 'submit',
79  'name' => 'do_submit',
80  'value' => _t( "_Retrieve my information" ),
81  ),
82  )
83 );
84 
86 $oForm->initChecker();
87 
88 if ( $oForm->isSubmittedAndValid() ) {
89  // Check if entered email is in the base
90  $sEmail = process_db_input($_POST['Email'], CH_TAGS_STRIP);
91  $memb_arr = db_arr( "SELECT `ID` FROM `Profiles` WHERE `Email` = '$sEmail'" );
92 
93  $recipient = $sEmail;
94 
95  $rEmailTemplate = new ChWsbEmailTemplates();
96  $aTemplate = $rEmailTemplate -> getTemplate( 't_Forgot', $memb_arr['ID'] ) ;
97 
98  $aPlus['Password'] = generateUserNewPwd($memb_arr['ID']);
99  $aProfile = getProfileInfo($memb_arr['ID']);
100  $mail_ret = sendMail( $recipient, $aTemplate['Subject'], $aTemplate['Body'], $memb_arr['ID'], $aPlus, 'html', false, true );
101 
102  // create system event
103  require_once(CH_DIRECTORY_PATH_CLASSES . 'ChWsbAlerts.php');
104  $oZ = new ChWsbAlerts('profile', 'password_restore', $memb_arr['ID']);
105  $oZ->alert();
106 
107  $_page['header'] = _t( "_Recognized" );
108  $_page['header_text'] = _t( "_RECOGNIZED", $site['title'] );
109 
110  if ($mail_ret)
111  $action_result = _t( "_MEMBER_RECOGNIZED_MAIL_SENT", $site['url'], $site['title'] );
112  else
113  $action_result = _t( "_MEMBER_RECOGNIZED_MAIL_NOT_SENT", $site['title'] );
114 
115  $sForm = '';
116 } else {
117  $action_result = _t( "_FORGOT", $site['title'] );
118  $sForm = $oForm->getCode();
119 }
120 
121 $sPageCode = <<<BLAH
122  <div class="ch-def-margin-sec-bottom ch-def-font-large">
123  $action_result
124  </div>
125  $sForm
126 BLAH;
127 
128 $_page_cont[$_ni]['page_main_code'] = DesignBoxContent($_page['header_text'], $sPageCode, 11);
129 
130 // --------------- [END] page components
131 
132 PageCode();
133 
134 // --------------- page components functions
135 
137 {
138  $sPwd = genRndPwd();
139  $sSalt = genRndSalt();
140 
141  $sQuery = "
142  UPDATE `Profiles`
143  SET
144  `Password` = '" . encryptUserPwd($sPwd, $sSalt) . "',
145  `Salt` = '$sSalt'
146  WHERE
147  `ID`= ?
148  ";
149 
150  db_res($sQuery, [$ID]);
152 
153  require_once(CH_DIRECTORY_PATH_CLASSES . 'ChWsbAlerts.php');
154  $oZ = new ChWsbAlerts('profile', 'edit', $ID);
155  $oZ->alert();
156  return $sPwd;
157 }
process_db_input
process_db_input($sText, $iStripTags=0)
Definition: utils.inc.php:256
ChTemplFormView
Definition: ChTemplFormView.php:11
$_page_cont
$_page_cont[$_ni]['page_main_code']
Definition: forgot.php:128
genRndSalt
genRndSalt()
Definition: utils.inc.php:1637
$_ni
$_ni
Definition: forgot.php:41
ChWsbEmailTemplates
Definition: ChWsbEmailTemplates.php:11
$logged
$logged['member']
Definition: forgot.php:34
ch_import
ch_import($sClassName, $aModule=array())
Definition: utils.inc.php:1218
sendMail
sendMail( $sRecipientEmail, $sMailSubject, $sMailBody, $iRecipientID=0, $aPlus=array(), $sEmailFlag='html', $isDisableAlert=false, $bForceSend=false)
Definition: utils.inc.php:461
php
$oZ
$oZ
Definition: db.php:20
$sPwd
$sPwd
Definition: r.php:14
$oForm
$oForm
Definition: forgot.php:85
ChWsbAlerts
Definition: ChWsbAlerts.php:39
db_arr
db_arr($query, $bindings=[])
Definition: db.inc.php:76
createUserDataFile
createUserDataFile( $userID)
Definition: profiles.inc.php:192
$aProfile
$aProfile
Definition: flash.php:14
$site
$site['ver']
Definition: version.inc.php:8
genRndPwd
genRndPwd($iLength=8, $bSpecialCharacters=true)
Definition: utils.inc.php:1618
_t
_t($key, $arg0="", $arg1="", $arg2="")
Definition: languages.inc.php:509
PageCode
PageCode($oTemplate=null)
Definition: design.inc.php:91
member_auth
member_auth($member=0, $error_handle=true, $bAjx=false)
Definition: admin.inc.php:262
ChWsbForgotCheckerHelper\checkEmail
static checkEmail($s)
Definition: forgot.php:17
CH_TAGS_STRIP
const CH_TAGS_STRIP
Definition: utils.inc.php:22
$s
$s
Definition: embed.php:13
generateUserNewPwd
generateUserNewPwd($ID)
Definition: forgot.php:136
db_res
db_res($query, $bindings=[])
Definition: db.inc.php:39
ChWsbForgotCheckerHelper
Definition: forgot.php:16
db_value
db_value($query, $bindings=[], $error_checking=true, $index=0)
Definition: db.inc.php:98
getProfileInfo
getProfileInfo($iProfileID=0, $checkActiveStatus=false, $forceCache=false)
Definition: profiles.inc.php:249
$aForm
$aForm
Definition: forgot.php:43
$sPageCode
$sPageCode
Definition: forgot.php:121
encryptUserPwd
encryptUserPwd($sPwd, $sSalt)
Definition: utils.inc.php:1643
$ID
$ID
Definition: click.php:11
$sForm
$sForm
Definition: forgot.php:118
ChWsbFormCheckerHelper
Definition: ChWsbForm.php:461
DesignBoxContent
DesignBoxContent($title, $content, $db_num=0, $caption_item='', $bottom_item='')
Definition: design.inc.php:78
$_page
$_page['name_index']
Definition: forgot.php:32