bhq@iemsoft.cn
2018-11-27 e2b48dac099e43f4b3243cdf19a7522e4b5eccbe
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
<?php
 
/**
 * 保存一个验证记录到数据库,如果存在则更新
 *
 * @param string $key
 *            验证标识
 * @param string $code
 *            验证值
 * @param string $type
 *            验证类型
 * @param datetime $expired_time
 *            过期时间
 * @param array $ext_info
 *            扩展信息
 */
function save_validate_record ($key, $code, $type, $last_send_time, $expired_time, $ext_info = array())
{
    $record = array(
        // 验证代码
        "record_code" => $code,
        // 业务类型
        "record_type" => $type,
        // 业务类型
        "last_send_time" => $last_send_time,
        // 过期时间
        "expired_time" => $expired_time,
        // 扩展信息
        "ext_info" => serialize($ext_info)
    );
    
    $exist = check_validate_record_exist($key);
    
    if(! $exist)
    {
        $record['record_key'] = $key;
        // 记录创建时间
        $record["create_time"] = time();
        
        /* insert */
        $GLOBALS['db']->autoExecute($GLOBALS['ecs']->table('validate_record'), $record, 'INSERT');
    }
    else
    {
        /* update */
        $GLOBALS['db']->autoExecute($GLOBALS['ecs']->table('validate_record'), $record, 'UPDATE', "record_key = '$key'");
    }
}
 
/**
 * 检查验证记录在数据库中是否已经存在
 *
 * @param string $key            
 * @return boolean
 */
function check_validate_record_exist ($key)
{
    $sql = "select count(*) from " . $GLOBALS['ecs']->table('validate_record') . " where record_key = '" . $key . "'";
    $count = $GLOBALS['db']->getOne($sql);
    
    if($count > 0)
    {
        return true;
    }
    else
    {
        return false;
    }
}
 
/**
 * 从数据库中删除过期的验证记录
 */
function delete_validate_record ()
{
    $current_time = time();
    $sql = "delete from " . $GLOBALS['ecs']->table('validate_record') . " where expired_time < '$current_time'";
    return $GLOBALS['db']->query($sql);
}
 
/**
 * 根据键删除验证记录
 * 
 * @param string $key            
 */
function remove_validate_record ($key)
{
    $sql = "delete from " . $GLOBALS['ecs']->table('validate_record') . " where record_key = '$key'";
    return $GLOBALS['db']->query($sql);
}
 
/**
 * 基本验证
 * 
 * @param string $key            
 * @param string $value            
 * @return int 0-验证信息不存在,1-验证码已过期, 2-验证码错误
 */
function validate_code ($key, $code)
{
    $record = get_validate_record($key);
    
    if($record == false)
    {
        return ERR_VALIDATE_KEY_NOT_EXIST;
    }
    else if($record['expired_time'] < time())
    {
        return ERR_VALIDATE_EXPIRED_TIME;
    }
    else if($record['record_code'] != $code)
    {
        return ERR_VALIDATE_CODE_NOT_MATCH;
    }
    else
    {
        return true;
    }
}
 
/**
 * 从数据库中获取验证记录信息,会将ext_info数组解析与结果合并
 * 
 * @param string $key            
 * @return boolean|array:
 */
function get_validate_record ($key)
{
    $sql = "select * from " . $GLOBALS['ecs']->table('validate_record') . " where record_key = '$key'";
    $row = $GLOBALS['db']->getRow($sql);
    
    if($row == false)
    {
        return false;
    }
    
    $row['ext_info'] = unserialize($row['ext_info']);
    
    $record = array(
        // 验证代码
        "record_key" => $row['record_key'],
        // 验证代码
        "record_code" => $row['record_code'],
        // 业务类型
        "record_type" => $row['record_type'],
        // 开始时间
        "last_send_time" => $row['last_send_time'],
        // 过期时间
        "expired_time" => $row['expired_time'],
        // 创建时间
        "create_time" => $row['create_time']
    );
    
    $record = array_merge($record, $row['ext_info']);
    
    return $record;
}
 
?>