|
@@ -13,7 +13,7 @@ use think\Validate;
|
|
|
*/
|
|
|
class User extends Api
|
|
|
{
|
|
|
- protected $noNeedLogin = ['login', 'mobilelogin', 'register', 'resetpwd', 'changeemail', 'changemobile', 'third'];
|
|
|
+ protected $noNeedLogin = ['login', 'mobilelogin', 'register', 'resetpwd', 'changeemail', 'changemobile', 'third', 'apiRegister'];
|
|
|
protected $noNeedRight = '*';
|
|
|
|
|
|
public function _initialize()
|
|
@@ -127,6 +127,32 @@ class User extends Api
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ public function apiRegister()
|
|
|
+ {
|
|
|
+ $username = '';
|
|
|
+ while (true) {
|
|
|
+ // 随机生成一个8位数字作为账号
|
|
|
+ $username = Random::numeric(8);
|
|
|
+ // 判断数据库是否存在当前账号, 存在就重新生成
|
|
|
+ if (\app\common\model\User::where('username', $username)->find()) {
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ }
|
|
|
+
|
|
|
+ $password = Random::alnum(6);
|
|
|
+ $email = "test@qq.com";
|
|
|
+ $mobile = "18888888888";
|
|
|
+
|
|
|
+ if ($ret = $this->auth->register($username, $password, $email, $mobile, [])) {
|
|
|
+ var_dump($username);
|
|
|
+ var_dump($password);
|
|
|
+ var_dump($ret);
|
|
|
+ die;
|
|
|
+ }
|
|
|
+ print_r("创建失败");
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 注销登录
|
|
|
*/
|