1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- /**
- * [WeEngine System] Copyright (c) 2014 WE7.CC
- * WeEngine is NOT a free software, it under the license terms, visited http://www.we7.cc/ for more details.
- */
- defined('IN_IA') or exit('Access Denied');
-
-
- function code_verify($uniacid, $receiver, $code) {
- if (!is_numeric($receiver) || !is_numeric($code)) {
- return false;
- }
-
- $data = pdo_fetch('SELECT * FROM ' . tablename('uni_verifycode') . ' WHERE uniacid = :uniacid AND receiver = :receiver AND verifycode = :verifycode AND createtime > :createtime', array(':uniacid' => $uniacid, ':receiver' => $receiver, ':verifycode' => $code, ':createtime' => time() - 1800));
- if(empty($data)) {
- return false;
- }
- return true;
- }
-
-
- function utility_image_rename($image_source_url, $image_destination_url) {
- global $_W;
- load()->func('file');
- $image_source_url = str_replace(array("\0","%00","\r"),'',$image_source_url);
- if (empty($image_source_url) || !parse_path($image_source_url) || !file_is_image($image_source_url)) {
- return false;
- }
- if (!strexists($image_source_url, $_W['siteroot'])) {
- $img_local_path = file_remote_attach_fetch($image_source_url);
- if (is_error($img_local_path)) {
- return false;
- }
- $img_source_path = ATTACHMENT_ROOT . $img_local_path;
- } else {
- $img_local_path = substr($image_source_url, strlen($_W['siteroot']));
- $img_path_params = explode('/', $img_local_path);
- if ($img_path_params[0] != 'attachment') {
- return false;
- }
- $img_source_path = IA_ROOT . '/' . $img_local_path;
- }
- $result = copy($img_source_path, $image_destination_url);
- return $result;
- }
-
-
- function utility_smscode_verify($uniacid, $receiver, $verifycode = '') {
- $table = table('uni_verifycode');
- $verify_info = $table->getByReceiverVerifycode($uniacid, $receiver, $verifycode);
-
- if (empty($verify_info)) {
- $table->updateFailedCount($receiver);
- return error(-1, '短信验证码不正确');
- } else if ($verify_info['createtime'] + 120 < TIMESTAMP) {
- return error(-2, '短信验证码已过期,请重新获取');
- } else {
- return error(0, '短信验证码正确');
- }
-
- }
|