FastMovieAI 二开基线 v1.0 (完整源码)
This commit is contained in:
@@ -0,0 +1,188 @@
|
||||
<?php
|
||||
|
||||
namespace plugin\user\expose\helper;
|
||||
|
||||
use app\expose\enum\EventName;
|
||||
use app\expose\utils\Rsa;
|
||||
use plugin\user\app\model\PluginUser;
|
||||
use Webman\Event\Event;
|
||||
|
||||
/**
|
||||
* 用户助手类
|
||||
*
|
||||
* Class User
|
||||
* @package app\helper
|
||||
*
|
||||
* @method static PluginUser create(array $data)
|
||||
* @method static PluginUser register(array $data)
|
||||
* @method static PluginUser login(array $data)
|
||||
* @method static PluginUser update(int $uid, array $data)
|
||||
* @method static PluginUser info(int $uid)
|
||||
* @method static string getIcode(int $uid)
|
||||
* @method static int getUidByIcode(string $icode)
|
||||
*
|
||||
*/
|
||||
class User
|
||||
{
|
||||
/**
|
||||
* 创建用户
|
||||
*
|
||||
* @param array $data
|
||||
* @param string $data['username'] 用户名(唯一性),可登录
|
||||
* @param string $data['mobile'] 手机号(唯一性),可登录
|
||||
* @param string $data['email'] 邮箱
|
||||
* @param string $data['password'] 密码
|
||||
* @param string $data['activation_time'] 激活时间
|
||||
*
|
||||
* @return PluginUser
|
||||
*/
|
||||
public static function create($data)
|
||||
{
|
||||
$insterData = [];
|
||||
if (empty($data['channels_uid'])) {
|
||||
throw new \Exception('渠道用户ID不能为空');
|
||||
}
|
||||
$insterData['channels_uid'] = $data['channels_uid'];
|
||||
if (!empty($data['icode'])) {
|
||||
$insterData['puid'] = self::getUidByIcode($data['icode']);
|
||||
}
|
||||
if (empty($data['username']) && empty($data['mobile'])) {
|
||||
throw new \Exception('用户名、手机号至少填写一项');
|
||||
}
|
||||
if (!empty($data['username'])) {
|
||||
$Find = PluginUser::where(['username' => $data['username']])->find();
|
||||
if ($Find) {
|
||||
return $Find;
|
||||
}
|
||||
$insterData['username'] = $data['username'];
|
||||
}
|
||||
if (!empty($data['mobile'])) {
|
||||
$Find = PluginUser::where(['mobile' => $data['mobile']])->find();
|
||||
if ($Find) {
|
||||
return $Find;
|
||||
}
|
||||
$insterData['mobile'] = $data['mobile'];
|
||||
}
|
||||
if (!empty($data['email'])) {
|
||||
$insterData['email'] = $data['email'];
|
||||
}
|
||||
if (!empty($data['password'])) {
|
||||
$insterData['password'] = $data['password'];
|
||||
}
|
||||
if (!empty($data['activation_time'])) {
|
||||
$insterData['activation_time'] = $data['activation_time'];
|
||||
}
|
||||
if (!empty($data['nickname'])) {
|
||||
$insterData['nickname'] = $data['nickname'];
|
||||
}
|
||||
if (!empty($data['headimg'])) {
|
||||
$insterData['headimg'] = $data['headimg'];
|
||||
}
|
||||
$model = new PluginUser();
|
||||
$model->save($insterData);
|
||||
// Event::emit(EventName::USER_REGISTER['value'], $model);
|
||||
return $model;
|
||||
}
|
||||
/**
|
||||
* 注册
|
||||
*
|
||||
* @param array $data
|
||||
* @param string $data['icode'] 邀请码
|
||||
* @param string $data['username'] 用户名(唯一性),可登录
|
||||
* @param string $data['mobile'] 手机号(唯一性),可登录
|
||||
* @param string $data['email'] 邮箱
|
||||
* @param string $data['password'] 密码
|
||||
*
|
||||
* @return PluginUser
|
||||
*/
|
||||
public static function register($data)
|
||||
{
|
||||
$request = request();
|
||||
if ($request->icode) {
|
||||
$data['icode'] = $request->icode;
|
||||
}
|
||||
return self::create($data);
|
||||
}
|
||||
/**
|
||||
* 更新
|
||||
*
|
||||
* @param int $uid 用户ID
|
||||
* @param array $data 更新数据
|
||||
* @param string $data['username'] 用户名
|
||||
* @param string $data['mobile'] 手机号
|
||||
* @param string $data['email'] 邮箱
|
||||
* @return PluginUser
|
||||
*/
|
||||
public static function update($uid, $data)
|
||||
{
|
||||
$user = PluginUser::where(['id' => $uid, 'channels_uid' => $data['channels_uid']])->find();
|
||||
if (!$user) {
|
||||
throw new \Exception('用户不存在');
|
||||
}
|
||||
if (!empty($data['password'])) {
|
||||
$user->password = $data['password'];
|
||||
}
|
||||
if (!empty($data['username'])) {
|
||||
$Find = PluginUser::where(['username' => $data['username']])->find();
|
||||
if ($Find && $Find->id != $uid) {
|
||||
throw new \Exception('用户名已存在');
|
||||
}
|
||||
$user->username = $data['username'];
|
||||
$user->username_time = date('Y-m-d H:i:s');
|
||||
}
|
||||
if (!empty($data['mobile'])) {
|
||||
$Find = PluginUser::where(['mobile' => $data['mobile']])->find();
|
||||
if ($Find && $Find->id != $uid) {
|
||||
throw new \Exception('手机号已存在');
|
||||
}
|
||||
$user->mobile = $data['mobile'];
|
||||
}
|
||||
if (!empty($data['email'])) {
|
||||
$user->email = $data['email'];
|
||||
}
|
||||
if (!empty($data['nickname'])) {
|
||||
$user->nickname = $data['nickname'];
|
||||
}
|
||||
if (!empty($data['headimg'])) {
|
||||
$user->headimg = $data['headimg'];
|
||||
}
|
||||
$user->save();
|
||||
Event::emit(EventName::USER_UPDATE['value'], $user);
|
||||
return $user;
|
||||
}
|
||||
/**
|
||||
* 获取用户信息
|
||||
*
|
||||
* @param int $uid 用户ID
|
||||
* @return PluginUser
|
||||
*/
|
||||
public static function info($uid)
|
||||
{
|
||||
$Find = PluginUser::where(['id' => $uid])->find();
|
||||
if (!$Find) {
|
||||
throw new \Exception('用户不存在');
|
||||
}
|
||||
return $Find;
|
||||
}
|
||||
/**
|
||||
* 获取邀请码
|
||||
*
|
||||
* @param int $uid 用户ID
|
||||
* @return string
|
||||
*/
|
||||
public static function getIcode($uid)
|
||||
{
|
||||
$user = PluginUser::where(['id' => $uid])->find();
|
||||
return Rsa::encryptNumber($user->id);
|
||||
}
|
||||
/**
|
||||
* 邀请码换取用户ID
|
||||
*
|
||||
* @param string $icode 邀请码
|
||||
* @return int
|
||||
*/
|
||||
public static function getUidByIcode($icode)
|
||||
{
|
||||
return Rsa::decryptNumber($icode);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user