|
- <?php
- if (!defined('DEDEINC')) exit('dedebiz');
- /**
- * 密码函数
- *
- * @version $Id: inc_pwd_functions.php 1 15:18 2010年7月9日Z tianya $
- * @package DedeBIZ.User
- * @copyright Copyright (c) 2022, DedeBIZ.COM
- * @license https://www.dedebiz.com/license
- * @link https://www.dedebiz.com
- */
- /**
- * 验证码生成函数
- *
- * @param int $length 需要生成的长度
- * @param int $numeric 是否为数字
- * @return string
- */
- function random($length, $numeric = 0)
- {
- PHP_VERSION < '4.2.0' && mt_srand((float)microtime() * 1000000);
- if ($numeric) {
- $hash = sprintf('%0'.$length.'d', mt_rand(0, pow(10, $length) - 1));
- } else {
- $hash = '';
- $chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz';
- $max = strlen($chars) - 1;
- for ($i = 0; $i < $length; $i++) {
- $hash .= $chars[mt_rand(0, $max)];
- }
- }
- return $hash;
- }
-
- /**
- * 邮件发送函数
- *
- * @param string $email E-mail地址
- * @param string $mailtitle E-mail标题
- * @param string $mailbody E-mail内容
- * @param string $headers 头信息
- * @return void
- */
- function sendmail($email, $mailtitle, $mailbody, $headers)
- {
- global $cfg_sendmail_bysmtp, $cfg_smtp_server, $cfg_smtp_port, $cfg_smtp_usermail, $cfg_smtp_user, $cfg_smtp_password, $cfg_adminemail;
- global $cfg_bizcore_appid,$cfg_bizcore_key,$cfg_bizcore_hostname,$cfg_bizcore_port;
- if (!empty($cfg_bizcore_appid) && !empty($cfg_bizcore_key)) {
- $client = new DedeBizClient($cfg_bizcore_hostname, $cfg_bizcore_port);
- $client->appid = $cfg_bizcore_appid;
- $client->key = $cfg_bizcore_key;
- $client->MailSend($email,$mailtitle,$mailtitle,$mailbody);
- $client->Close();
- } else {
- if ($cfg_sendmail_bysmtp == 'Y') {
- $mailtype = 'TXT';
- require_once(DEDEINC.'/mail.class.php');
- $smtp = new smtp($cfg_smtp_server, $cfg_smtp_port, true, $cfg_smtp_usermail, $cfg_smtp_password);
- $smtp->debug = false;
- $smtp->sendmail($email, $cfg_webname, $cfg_smtp_usermail, $mailtitle, $mailbody, $mailtype);
- } else {
- @mail($email, $mailtitle, $mailbody, $headers);
- }
- }
- }
-
- /**
- * 发送邮件;type为INSERT新建验证码,UPDATE修改验证码;
- *
- * @param int $mid 会员ID
- * @param int $userid 用户ID
- * @param string $mailto 发送到
- * @param string $type 类型
- * @param string $send 发送到
- * @return string
- */
- function newmail($mid, $userid, $mailto, $type, $send)
- {
- global $db, $cfg_adminemail, $cfg_webname, $cfg_basehost, $cfg_memberurl;
- $mailtime = time();
- $randval = random(8);
- $mailtitle = $cfg_webname.":密码修改";
- $mailto = $mailto;
- $headers = "From: ".$cfg_adminemail."\r\nReply-To: $cfg_adminemail";
- $mailbody = "亲爱的".$userid.":\r\n您好感谢您使用".$cfg_webname."网\r\n".$cfg_webname."应您的要求,重新设置密码:(注:如果您没有提出申请,请检查您的信息是否泄漏)\r\n本次临时登录密码为:".$randval." 请于三天内登录下面网址确认修改\r\n".$cfg_basehost.$cfg_memberurl."/resetpassword.php?dopost=getpasswd&id=".$mid;
- if ($type == 'INSERT') {
- $key = md5($randval);
- $sql = "INSERT INTO `#@__pwd_tmp` (`mid` ,`membername` ,`pwd` ,`mailtime`)VALUES ('$mid', '$userid', '$key', '$mailtime');";
- if ($db->ExecuteNoneQuery($sql)) {
- if ($send == 'Y') {
- sendmail($mailto, $mailtitle, $mailbody, $headers);
- return ShowMsg('EMAIL修改验证码已经发送到原来的邮箱请查收', 'login.php', '', '5000');
- } else if ($send == 'N') {
- return ShowMsg('稍后跳转到修改页', $cfg_basehost.$cfg_memberurl."/resetpassword.php?dopost=getpasswd&id=".$mid."&key=".$randval);
- }
- } else {
- return ShowMsg('对不起修改失败,请联系管理员', 'login.php');
- }
- } elseif ($type == 'UPDATE') {
- $key = md5($randval);
- $sql = "UPDATE `#@__pwd_tmp` SET `pwd` = '$key',mailtime = '$mailtime' WHERE `mid` ='$mid';";
- if ($db->ExecuteNoneQuery($sql)) {
- if ($send == 'Y') {
- sendmail($mailto, $mailtitle, $mailbody, $headers);
- ShowMsg('EMAIL修改验证码已经发送到原来的邮箱请查收', 'login.php');
- } elseif ($send == 'N') {
- return ShowMsg('稍后跳转到修改页', $cfg_basehost.$cfg_memberurl."/resetpassword.php?dopost=getpasswd&id=".$mid."&key=".$randval);
- }
- } else {
- ShowMsg('对不起修改失败,请与管理员联系', 'login.php');
- }
- }
- }
-
- /**
- * 查询会员信息mail用户输入邮箱地址;userid用户名
- *
- * @param string $mail 邮件
- * @param string $userid 用户ID
- * @return string
- */
- function member($mail, $userid)
- {
- global $db;
- $sql = "SELECT mid,email,safequestion FROM `#@__member` WHERE email='$mail' AND userid = '$userid'";
- $row = $db->GetOne($sql);
- if (!is_array($row)) return ShowMsg("对不起,用户ID输入错误", "-1");
- else return $row;
- }
-
- /**
- * 查询是否发送过验证码
- *
- * @param string $mid 会员ID
- * @param string $userid 用户名称
- * @param string $mailto 发送邮件地址
- * @param string $send 为Y发送邮件,为N不发送邮件默认为Y
- * @return string
- */
- function sn($mid, $userid, $mailto, $send = 'Y')
- {
- global $db;
- $tptim = (60 * 10);
- $dtime = time();
- $sql = "SELECT * FROM #@__pwd_tmp WHERE mid = '$mid'";
- $row = $db->GetOne($sql);
- if (!is_array($row)) {
- //发送新邮件;
- newmail($mid, $userid, $mailto, 'INSERT', $send);
- }
- //10分钟后可以再次发送新验证码;
- elseif ($dtime - $tptim > $row['mailtime']) {
- newmail($mid, $userid, $mailto, 'UPDATE', $send);
- }
- //重新发送新的验证码确认邮件;
- else {
- return ShowMsg('对不起,请10分钟后再重新申请', 'login.php');
- }
- }
|