|
@@ -0,0 +1,217 @@
|
|
|
+<?php
|
|
|
+namespace Passport\Src\Lib;
|
|
|
+
|
|
|
+use Dever;
|
|
|
+use Dever\Img\Handle;
|
|
|
+use Dever\Routing\Uri;
|
|
|
+use Dever\Session\Oper as Save;
|
|
|
+use Dever\String\Encrypt;
|
|
|
+
|
|
|
+class Base
|
|
|
+{
|
|
|
+ const NAME = 'dever';
|
|
|
+
|
|
|
+ const CODE = 'dever_code';
|
|
|
+
|
|
|
+ const MCODE = 'dever_mcode';
|
|
|
+
|
|
|
+ protected $save;
|
|
|
+
|
|
|
+ public function __construct()
|
|
|
+ {
|
|
|
+ $this->save = new Save(false, 'cookie');
|
|
|
+ }
|
|
|
+
|
|
|
+ protected function info()
|
|
|
+ {
|
|
|
+ return $this->save->get(self::NAME);
|
|
|
+ }
|
|
|
+
|
|
|
+ protected function code($code = false)
|
|
|
+ {
|
|
|
+ if ($code) {
|
|
|
+ $save = $this->save->get(self::CODE);
|
|
|
+ return $code == $save;
|
|
|
+ }
|
|
|
+
|
|
|
+ $code = new Code();
|
|
|
+ $code->create();
|
|
|
+
|
|
|
+ $this->save->add(self::CODE, $code->code, 600);
|
|
|
+ }
|
|
|
+
|
|
|
+ protected function mcode($mobile, $code = false)
|
|
|
+ {
|
|
|
+ if ($code) {
|
|
|
+ $save = $this->save->get(self::MCODE);
|
|
|
+ return $mobile . '_' . $code == $save;
|
|
|
+ }
|
|
|
+
|
|
|
+ $day = date('Ymd', time());
|
|
|
+
|
|
|
+
|
|
|
+ $param['option_day'] = $day;
|
|
|
+ $param['option_mobile'] = $mobile;
|
|
|
+
|
|
|
+
|
|
|
+ $info = Dever::load('passport/code-total', $param);
|
|
|
+
|
|
|
+ if ($info >= 1) {
|
|
|
+ $check = Dever::load('passport/code-check', $param);
|
|
|
+
|
|
|
+ if ($check) {
|
|
|
+ if (time() - $check['cdate'] < Dever::config('base', 'passport')->mobileCode['time']) {
|
|
|
+ Dever::alert('请不要在一分钟之内申请多次验证码,请您稍后再试');
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ $total = Dever::config('base', 'passport')->mobileCode['total'];
|
|
|
+ if ($info >= $total) {
|
|
|
+ Dever::alert('很抱歉,您已经申请获取验证码超过' . $total . '次,今天您已经无法获取验证码了,请您明天再来');
|
|
|
+ }
|
|
|
+
|
|
|
+ $code = new Code();
|
|
|
+ $code->createM();
|
|
|
+
|
|
|
+
|
|
|
+ $insert['add_mobile'] = $mobile;
|
|
|
+ $insert['add_day'] = $day;
|
|
|
+ $insert['add_code'] = $code->mcode;
|
|
|
+ $id = Dever::load('passport/code-insert', $insert);
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ $text = str_replace('{code}', $code->mcode, Dever::config('base', 'passport')->mobileCode['msg']);
|
|
|
+
|
|
|
+
|
|
|
+ $this->send($mobile, $text, $id);
|
|
|
+
|
|
|
+ $this->save->add(self::MCODE, $mobile . '_' . $code->mcode, 600);
|
|
|
+
|
|
|
+ return $code->mcode;
|
|
|
+ }
|
|
|
+
|
|
|
+ private function send($mobile, $content, $id)
|
|
|
+ {
|
|
|
+ $url = Dever::config('base', 'passport')->mobileCode['url'];
|
|
|
+
|
|
|
+ if (Dever::config('base', 'passport')->mobileCode['signType'] == 1) {
|
|
|
+ $content = Dever::config('base', 'passport')->mobileCode['sign'] . $content;
|
|
|
+ } else {
|
|
|
+ $content .= Dever::config('base', 'passport')->mobileCode['sign'];
|
|
|
+ }
|
|
|
+
|
|
|
+ $param['phone'] = $mobile;
|
|
|
+ $param['message'] = $content;
|
|
|
+ $param['seqid'] = $id + 1000;
|
|
|
+ $param['smspriority'] = 1;
|
|
|
+
|
|
|
+ $url .= http_build_query($param);
|
|
|
+
|
|
|
+ Dever::curl($url);
|
|
|
+ }
|
|
|
+
|
|
|
+ protected function refer()
|
|
|
+ {
|
|
|
+ $refer = Dever::input('refer');
|
|
|
+
|
|
|
+ $project = 'main';
|
|
|
+
|
|
|
+ if ($refer) {
|
|
|
+ $url = parse_url(Encrypt::decode($refer));
|
|
|
+ $url['path'] = preg_replace('/^\//', '', $url['path']);
|
|
|
+ if (!isset($url['query'])) {
|
|
|
+ $url['query'] = '';
|
|
|
+ }
|
|
|
+
|
|
|
+ if (Uri::$type == '?') {
|
|
|
+ $refer = Dever::url(str_replace($url['path'] . Uri::$type, '', $url['query']), $project);
|
|
|
+ } else {
|
|
|
+ $refer = Dever::url($url['path'] . '?' . $url['query'], $project);
|
|
|
+ }
|
|
|
+
|
|
|
+ Dever::out($refer);
|
|
|
+ } else {
|
|
|
+ Dever::out(Dever::url('home', $project));
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ protected function save($user)
|
|
|
+ {
|
|
|
+ if (is_numeric($user)) {
|
|
|
+ $user = Dever::load('service/company-one', $user);
|
|
|
+ }
|
|
|
+
|
|
|
+ if ($user && is_array($user)) {
|
|
|
+ if (Dever::mobile()) {
|
|
|
+ $time = 30;
|
|
|
+ } else {
|
|
|
+ $time = 7;
|
|
|
+ }
|
|
|
+ $this->save->add(self::NAME, $user, 3600 * 24 * $time);
|
|
|
+
|
|
|
+ $user['signature'] = Dever::login($user['id']);
|
|
|
+
|
|
|
+ return $user;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public function createRefer()
|
|
|
+ {
|
|
|
+ return 'refer=' . Encrypt::encode(Dever::url());
|
|
|
+ }
|
|
|
+
|
|
|
+ protected function saveAvatar($value)
|
|
|
+ {
|
|
|
+ $base = DEVER_PATH . 'data/upload/';
|
|
|
+ $date = explode('-', date("Y-m-d"));
|
|
|
+ if (is_array($value)) {
|
|
|
+ $user = $value[1];
|
|
|
+ $value = $value[0];
|
|
|
+
|
|
|
+ if (is_array($value)) {
|
|
|
+ $name = md5($value['tmp_name'] . rand(0, 100) . microtime());
|
|
|
+ $path = 'avatar/' . $date[0] . '/' . $date[1] . '/' . $date[2] . '/';
|
|
|
+ $ext = '.jpg';
|
|
|
+ $temp = Dever::path($base, $path . $name . $ext);
|
|
|
+
|
|
|
+ move_uploaded_file($value['tmp_name'], $temp);
|
|
|
+
|
|
|
+ $value = $temp;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ $result = Dever::$global['host']['img'] . 'chead.jpg';
|
|
|
+ if ($value) {
|
|
|
+
|
|
|
+ $handle = new Handle();
|
|
|
+
|
|
|
+ $size = '200_200_2';
|
|
|
+
|
|
|
+ $user = isset($user) && $user ? $user : $this->init();
|
|
|
+ if ($user && isset($user['id']) && $user['id']) {
|
|
|
+ $name = md5($user['id']);
|
|
|
+ } else {
|
|
|
+ $name = md5($value . rand(0, 100) . microtime());
|
|
|
+ }
|
|
|
+
|
|
|
+ $path = 'avatar/' . $date[0] . '/' . $date[1] . '/' . $date[2] . '/';
|
|
|
+ $ext = '.jpg';
|
|
|
+ $file = Dever::path($base, $path . $name . $ext);
|
|
|
+ $temp = $file . '.temp.jpg';
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ $file = $handle->thumb($value, $size, true, $file);
|
|
|
+
|
|
|
+ if ($file) {
|
|
|
+ $result = Dever::$global['host']['image'] . $path . $name . $ext;
|
|
|
+ } else {
|
|
|
+ $result = $value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ return $result;
|
|
|
+ }
|
|
|
+}
|