quguofeng 1 年之前
父節點
當前提交
8484eb8c30

+ 0 - 73
application/api/controller/Demo.php

@@ -1,73 +0,0 @@
-<?php
-
-namespace app\api\controller;
-
-use app\common\controller\Api;
-
-/**
- * 示例接口
- */
-class Demo extends Api
-{
-
-    //如果$noNeedLogin为空表示所有接口都需要登录才能请求
-    //如果$noNeedRight为空表示所有接口都需要验证权限才能请求
-    //如果接口已经设置无需登录,那也就无需鉴权了
-    //
-    // 无需登录的接口,*表示全部
-    protected $noNeedLogin = ['test', 'test1'];
-    // 无需鉴权的接口,*表示全部
-    protected $noNeedRight = ['test2'];
-
-    /**
-     * 测试方法
-     *
-     * @ApiTitle    (测试名称)
-     * @ApiSummary  (测试描述信息)
-     * @ApiMethod   (POST)
-     * @ApiRoute    (/api/demo/test/id/{id}/name/{name})
-     * @ApiHeaders  (name=token, type=string, required=true, description="请求的Token")
-     * @ApiParams   (name="id", type="integer", required=true, description="会员ID")
-     * @ApiParams   (name="name", type="string", required=true, description="用户名")
-     * @ApiParams   (name="data", type="object", sample="{'user_id':'int','user_name':'string','profile':{'email':'string','age':'integer'}}", description="扩展数据")
-     * @ApiReturnParams   (name="code", type="integer", required=true, sample="0")
-     * @ApiReturnParams   (name="msg", type="string", required=true, sample="返回成功")
-     * @ApiReturnParams   (name="data", type="object", sample="{'user_id':'int','user_name':'string','profile':{'email':'string','age':'integer'}}", description="扩展数据返回")
-     * @ApiReturn   ({
-         'code':'1',
-         'msg':'返回成功'
-        })
-     */
-    public function test()
-    {
-        $this->success('返回成功', $this->request->param());
-    }
-
-    /**
-     * 无需登录的接口
-     *
-     */
-    public function test1()
-    {
-        $this->success('返回成功', ['action' => 'test1']);
-    }
-
-    /**
-     * 需要登录的接口
-     *
-     */
-    public function test2()
-    {
-        $this->success('返回成功', ['action' => 'test2']);
-    }
-
-    /**
-     * 需要登录且需要验证有相应组的权限
-     *
-     */
-    public function test3()
-    {
-        $this->success('返回成功', ['action' => 'test3']);
-    }
-
-}

+ 0 - 96
application/api/controller/Ems.php

@@ -1,96 +0,0 @@
-<?php
-
-namespace app\api\controller;
-
-use app\common\controller\Api;
-use app\common\library\Ems as Emslib;
-use app\common\model\User;
-use think\Hook;
-
-/**
- * 邮箱验证码接口
- */
-class Ems extends Api
-{
-    protected $noNeedLogin = '*';
-    protected $noNeedRight = '*';
-
-    public function _initialize()
-    {
-        parent::_initialize();
-    }
-
-    /**
-     * 发送验证码
-     *
-     * @ApiMethod (POST)
-     * @param string $email 邮箱
-     * @param string $event 事件名称
-     */
-    public function send()
-    {
-        $email = $this->request->post("email");
-        $event = $this->request->post("event");
-        $event = $event ? $event : 'register';
-
-        $last = Emslib::get($email, $event);
-        if ($last && time() - $last['createtime'] < 60) {
-            $this->error(__('发送频繁'));
-        }
-        if ($event) {
-            $userinfo = User::getByEmail($email);
-            if ($event == 'register' && $userinfo) {
-                //已被注册
-                $this->error(__('已被注册'));
-            } elseif (in_array($event, ['changeemail']) && $userinfo) {
-                //被占用
-                $this->error(__('已被占用'));
-            } elseif (in_array($event, ['changepwd', 'resetpwd']) && !$userinfo) {
-                //未注册
-                $this->error(__('未注册'));
-            }
-        }
-        $ret = Emslib::send($email, null, $event);
-        if ($ret) {
-            $this->success(__('发送成功'));
-        } else {
-            $this->error(__('发送失败'));
-        }
-    }
-
-    /**
-     * 检测验证码
-     *
-     * @ApiMethod (POST)
-     * @param string $email   邮箱
-     * @param string $event   事件名称
-     * @param string $captcha 验证码
-     */
-    public function check()
-    {
-        $email = $this->request->post("email");
-        $event = $this->request->post("event");
-        $event = $event ? $event : 'register';
-        $captcha = $this->request->post("captcha");
-
-        if ($event) {
-            $userinfo = User::getByEmail($email);
-            if ($event == 'register' && $userinfo) {
-                //已被注册
-                $this->error(__('已被注册'));
-            } elseif (in_array($event, ['changeemail']) && $userinfo) {
-                //被占用
-                $this->error(__('已被占用'));
-            } elseif (in_array($event, ['changepwd', 'resetpwd']) && !$userinfo) {
-                //未注册
-                $this->error(__('未注册'));
-            }
-        }
-        $ret = Emslib::check($email, $captcha, $event);
-        if ($ret) {
-            $this->success(__('成功'));
-        } else {
-            $this->error(__('验证码不正确'));
-        }
-    }
-}

+ 0 - 42
application/api/controller/Token.php

@@ -1,42 +0,0 @@
-<?php
-
-namespace app\api\controller;
-
-use app\common\controller\Api;
-use fast\Random;
-
-/**
- * Token接口
- */
-class Token extends Api
-{
-    protected $noNeedLogin = [];
-    protected $noNeedRight = '*';
-
-    /**
-     * 检测Token是否过期
-     *
-     */
-    public function check()
-    {
-        $token = $this->auth->getToken();
-        $tokenInfo = \app\common\library\Token::get($token);
-        $this->success('', ['token' => $tokenInfo['token'], 'expires_in' => $tokenInfo['expires_in']]);
-    }
-
-    /**
-     * 刷新Token
-     *
-     */
-    public function refresh()
-    {
-        //删除源Token
-        $token = $this->auth->getToken();
-        \app\common\library\Token::delete($token);
-        //创建新Token
-        $token = Random::uuid();
-        \app\common\library\Token::set($token, $this->auth->id, 2592000);
-        $tokenInfo = \app\common\library\Token::get($token);
-        $this->success('', ['token' => $tokenInfo['token'], 'expires_in' => $tokenInfo['expires_in']]);
-    }
-}

+ 0 - 163
application/api/controller/Validate.php

@@ -1,163 +0,0 @@
-<?php
-
-namespace app\api\controller;
-
-use app\common\controller\Api;
-use app\common\model\User;
-
-/**
- * 验证接口
- */
-class Validate extends Api
-{
-    protected $noNeedLogin = '*';
-    protected $layout = '';
-    protected $error = null;
-
-    public function _initialize()
-    {
-        parent::_initialize();
-    }
-
-    /**
-     * 检测邮箱
-     *
-     * @ApiMethod (POST)
-     * @param string $email 邮箱
-     * @param string $id    排除会员ID
-     */
-    public function check_email_available()
-    {
-        $email = $this->request->post('email');
-        $id = (int)$this->request->post('id');
-        $count = User::where('email', '=', $email)->where('id', '<>', $id)->count();
-        if ($count > 0) {
-            $this->error(__('邮箱已经被占用'));
-        }
-        $this->success();
-    }
-
-    /**
-     * 检测用户名
-     *
-     * @ApiMethod (POST)
-     * @param string $username 用户名
-     * @param string $id       排除会员ID
-     */
-    public function check_username_available()
-    {
-        $username = $this->request->post('username');
-        $id = (int)$this->request->post('id');
-        $count = User::where('username', '=', $username)->where('id', '<>', $id)->count();
-        if ($count > 0) {
-            $this->error(__('用户名已经被占用'));
-        }
-        $this->success();
-    }
-
-    /**
-     * 检测昵称
-     *
-     * @ApiMethod (POST)
-     * @param string $nickname 昵称
-     * @param string $id       排除会员ID
-     */
-    public function check_nickname_available()
-    {
-        $nickname = $this->request->post('nickname');
-        $id = (int)$this->request->post('id');
-        $count = User::where('nickname', '=', $nickname)->where('id', '<>', $id)->count();
-        if ($count > 0) {
-            $this->error(__('昵称已经被占用'));
-        }
-        $this->success();
-    }
-
-    /**
-     * 检测手机
-     *
-     * @ApiMethod (POST)
-     * @param string $mobile 手机号
-     * @param string $id     排除会员ID
-     */
-    public function check_mobile_available()
-    {
-        $mobile = $this->request->post('mobile');
-        $id = (int)$this->request->post('id');
-        $count = User::where('mobile', '=', $mobile)->where('id', '<>', $id)->count();
-        if ($count > 0) {
-            $this->error(__('该手机号已经占用'));
-        }
-        $this->success();
-    }
-
-    /**
-     * 检测手机
-     *
-     * @ApiMethod (POST)
-     * @param string $mobile 手机号
-     */
-    public function check_mobile_exist()
-    {
-        $mobile = $this->request->post('mobile');
-        $count = User::where('mobile', '=', $mobile)->count();
-        if (!$count) {
-            $this->error(__('手机号不存在'));
-        }
-        $this->success();
-    }
-
-    /**
-     * 检测邮箱
-     *
-     * @ApiMethod (POST)
-     * @param string $mobile 邮箱
-     */
-    public function check_email_exist()
-    {
-        $email = $this->request->post('email');
-        $count = User::where('email', '=', $email)->count();
-        if (!$count) {
-            $this->error(__('邮箱不存在'));
-        }
-        $this->success();
-    }
-
-    /**
-     * 检测手机验证码
-     *
-     * @ApiMethod (POST)
-     * @param string $mobile  手机号
-     * @param string $captcha 验证码
-     * @param string $event   事件
-     */
-    public function check_sms_correct()
-    {
-        $mobile = $this->request->post('mobile');
-        $captcha = $this->request->post('captcha');
-        $event = $this->request->post('event');
-        if (!\app\common\library\Sms::check($mobile, $captcha, $event)) {
-            $this->error(__('验证码不正确'));
-        }
-        $this->success();
-    }
-
-    /**
-     * 检测邮箱验证码
-     *
-     * @ApiMethod (POST)
-     * @param string $email   邮箱
-     * @param string $captcha 验证码
-     * @param string $event   事件
-     */
-    public function check_ems_correct()
-    {
-        $email = $this->request->post('email');
-        $captcha = $this->request->post('captcha');
-        $event = $this->request->post('event');
-        if (!\app\common\library\Ems::check($email, $captcha, $event)) {
-            $this->error(__('验证码不正确'));
-        }
-        $this->success();
-    }
-}