wangtengyu
2018-12-07 f459412e0dac4ed94106da043b4c6f8576bfe496
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
<?php
define('IN_ECS', true);
 
require (dirname(__FILE__) . '/includes/init.php');
/* 载入语言文件 */
require_once (ROOT_PATH . 'languages/' . $_CFG['lang'] . '/user.php');
 
$action = isset($_REQUEST['act']) ? trim($_REQUEST['act']) : 'default';
 
$function_name = 'action_' . $action;
 
if(! function_exists($function_name))
{
    $function_name = "action_default";
}
 
call_user_func($function_name);
 
return;
 
/**
 * 发送邮箱验证所需的验证码
 */
function action_send_email_code ()
{
    $_LANG = $GLOBALS['_LANG'];
    $_CFG = $GLOBALS['_CFG'];
    $smarty = $GLOBALS['smarty'];
    $db = $GLOBALS['db'];
    $ecs = $GLOBALS['ecs'];
 
    require_once (ROOT_PATH . 'includes/lib_validate_record.php');
    
    $email = trim($_SESSION[VT_EMAIL_VALIDATE]);
    
    if(empty($email))
    {
        exit("邮箱不能为空");
        return;
    }
    else if(! is_email($email))
    {
        exit("邮箱格式不正确");
        return;
    }
    else if(check_validate_record_exist($email))
    {
        
        $record = get_validate_record($email);
        
        /**
         * 检查是过了限制发送邮件的时间
         */
        if(time() - $record['last_send_time'] < 60)
        {
            echo ("每60秒内只能发送一次注册邮箱验证码,请稍候重试");
            return;
        }
    }
    
    require_once (ROOT_PATH . 'includes/lib_passport.php');
    
    /* 设置验证邮件模板所需要的内容信息 */
    $template = get_mail_template('email_validate');
    
    // 生成邮箱验证码
    $email_code = rand_number(6);
    
    $GLOBALS['smarty']->assign('email_code', $email_code);
    $GLOBALS['smarty']->assign('shop_name', $GLOBALS['_CFG']['shop_name']);
    $GLOBALS['smarty']->assign('send_date', date($GLOBALS['_CFG']['date_format']));
    
    $content = $GLOBALS['smarty']->fetch('str:' . $template['template_content']);
    
    /* 发送激活验证邮件 */
    $result = send_mail($email, $email, $template['template_subject'], $content, $template['is_html']);
    if($result)
    {
        // 保存验证码到Session中
        $_SESSION[VT_EMAIL_VALIDATE] = $email;
        // 保存验证记录
        save_validate_record($email, $email_code, VT_EMAIL_VALIDATE, time(), time() + 30 * 60);
        
        echo 'ok';
    }
    else
    {
        echo '邮箱验证码发送失败';
    }
}
 
/**
 * 发送手机验证所需的短信验证码
 */
function action_send_mobile_code ()
{
    $_LANG = $GLOBALS['_LANG'];
    $smarty = $GLOBALS['smarty'];
    $db = $GLOBALS['db'];
    $ecs = $GLOBALS['ecs'];
    
    require_once (ROOT_PATH . 'includes/lib_validate_record.php');
    
    $mobile_phone = trim($_SESSION[VT_MOBILE_VALIDATE]);
    
    if(empty($mobile_phone))
    {
        exit("手机号不能为空");
        return;
    }
    else if(! is_mobile_phone($mobile_phone))
    {
        exit("手机号格式不正确");
        return;
    }
    else if(check_validate_record_exist($mobile_phone))
    {
        // 获取数据库中的验证记录
        $record = get_validate_record($mobile_phone);
        
        /**
         * 检查是过了限制发送短信的时间
         */
        $last_send_time = $record['last_send_time'];
        $expired_time = $record['expired_time'];
        $create_time = $record['create_time'];
        $count = $record['count'];
        
        // 每天每个手机号最多发送的验证码数量
        $max_sms_count = 10;
        // 发送最多验证码数量的限制时间,默认为24小时
        $max_sms_count_time = 60 * 60 * 24;
        
        if((time() - $last_send_time) < 60)
        {
            echo ("每60秒内只能发送一次短信验证码,请稍候重试");
            return;
        }
        else if(time() - $create_time < $max_sms_count_time && $record['count'] > $max_sms_count)
        {
            echo ("您发送验证码太过于频繁,请稍后重试!");
            return;
        }
        else
        {
            $count ++;
        }
    }
    
    require_once (ROOT_PATH . 'includes/lib_passport.php');
    
    // 设置为空
    $_SESSION[VT_MOBILE_VALIDATE] = array();
    
    require_once (ROOT_PATH . 'sms/sms.php');
    
    // 生成6位短信验证码
    $mobile_code = rand_number(6);
    // 短信内容
    $content = sprintf($GLOBALS['_CFG']['sms_register_tpl'],$mobile_code,$GLOBALS['_CFG']['shop_name']);
    
    /* 发送激活验证邮件 */
    $result = sendSMS($mobile_phone, $content);
//     $result = true;
    if($result)
    {
        if(! isset($count))
        {
            $ext_info = array(
                "count" => 1
            );
        }
        else
        {
            $ext_info = array(
                "count" => $count
            );
        }
        // 保存验证的手机号
        $_SESSION[VT_MOBILE_VALIDATE] = $mobile_phone;
        // 保存验证信息
        save_validate_record($mobile_phone, $mobile_code, VT_MOBILE_VALIDATE, time(), time() + 30 * 60, $ext_info);
        echo 'ok';
    }
    else
    {
        echo '短信验证码发送失败';
    }
}
 
/**
 * 随机生成指定长度的数字
 *
 * @param number $length
 * @return number
 */
function rand_number ($length = 6)
{
    if($length < 1)
    {
        $length = 6;
    }
 
    $min = 1;
    for($i = 0; $i < $length - 1; $i ++)
    {
        $min = $min * 10;
    }
    $max = $min * 10 - 1;
 
    return rand($min, $max);
}
 
?>