vilson a807eee1ec 优化用户注册逻辑
Signed-off-by: vilson <545522390@qq.com>
2019-06-24 19:27:24 +08:00

159 lines
6.2 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace app\common\Model;
use service\JwtService;
use service\NodeService;
use service\RandomService;
use think\Db;
use think\File;
class Member extends CommonModel
{
protected $append = [];
public static function login($member)
{
// 更新登录信息
Db::name('Member')->where(['id' => $member['id']])->update([
'last_login_time' => Db::raw('now()'),
]);
$list = MemberAccount::where(['member_code' => $member['code']])->order('id asc')->select()->toArray();
$organizationList = [];
if ($list) {
foreach ($list as $item) {
$organization = Organization::where(['code' => $item['organization_code']])->find();
if ($organization) {
$organizationList[] = $organization;
}
}
}
$member['account_id'] = $list[0]['id'];
$member['is_owner'] = $list[0]['is_owner'];
$member['authorize'] = $list[0]['authorize'];
$member['position'] = $list[0]['position'];
$member['department'] = $list[0]['department'];
setCurrentMember($member);
!empty($member['authorize']) && NodeService::applyProjectAuthNode();
$member = getCurrentMember();
$tokenList = JwtService::initToken($member);
$accessTokenExp = JwtService::decodeToken($tokenList['accessToken'])->exp;
$tokenList['accessTokenExp'] = $accessTokenExp;
$loginInfo = ['member' => $member, 'tokenList' => $tokenList, 'organizationList' => $organizationList];
session('loginInfo', $loginInfo);
logRecord($loginInfo, 'info', 'member/login');
return $loginInfo;
}
/**
* @param $memberData
* @return Member
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public static function createMember($memberData)
{
//需要创建的信息。1、用户 2、用户所属组织 3、组织权限 4、所属组织账号
$memberData['create_time'] = nowTime();
(!isset($memberData['avatar']) || !$memberData['avatar']) && $memberData['avatar'] = 'https://static.vilson.xyz/cover.png';
!isset($memberData['status']) && $memberData['status'] = 1;
!isset($memberData['code']) && $memberData['code'] = createUniqueCode('member');
!isset($memberData['account']) && $memberData['account'] = RandomService::alnumLowercase();
if (isset($memberData['mobile']) && $memberData['mobile']) {
$has = self::where(['mobile' => $memberData['mobile']])->find();
if ($has) {
unset($memberData['mobile']);
}
}
if (isset($memberData['email']) && $memberData['email']) {
$has = self::where(['email' => $memberData['email']])->find();
if ($has) {
unset($memberData['email']);
}
}
$result = self::create($memberData);
Organization::createOrganization($result);
// $organizationData = [
// 'code' => createUniqueCode('organization'),
// 'name' => $memberData['name'] . '的个人项目',
// 'personal' => 1,
// 'create_time' => nowTime(),
// 'owner_code' => $memberData['code'],
// ];
// Organization::create($organizationData);
//
// $defaultAdminAuth = ProjectAuth::get(1)->toArray();
// $defaultMemberAuth = ProjectAuth::get(2)->toArray();
// unset($defaultAdminAuth['id']);
// unset($defaultMemberAuth['id']);
// $defaultAdminAuth['organization_code'] = $defaultMemberAuth['organization_code'] = $organizationData['code'];
// $defaultAdminAuth = ProjectAuth::create($defaultAdminAuth);
// $defaultMemberAuth = ProjectAuth::create($defaultMemberAuth);
// $defaultAdminAuthNode = ProjectAuthNode::where(['auth' => 1])->select()->toArray();
// $defaultMemberAuthNode = ProjectAuthNode::where(['auth' => 2])->select()->toArray();
// foreach ($defaultAdminAuthNode as &$item) {
// unset($item['id']);
// $item['auth'] = $defaultAdminAuth['id'];
// ProjectAuthNode::create($item);
// }
// foreach ($defaultMemberAuthNode as &$item) {
// unset($item['id']);
// $item['auth'] = $defaultMemberAuth['id'];
// ProjectAuthNode::create($item);
// }
//
// $memberAccountData = [
// 'position' => '资深工程师',
// 'department' => '某某公司某某某事业群某某平台部某某技术部BM',
// 'code' => createUniqueCode('organization'),
// 'member_code' => $memberData['code'],
// 'organization_code' => $organizationData['code'],
// 'is_owner' => 1,
// 'status' => 1,
// 'create_time' => nowTime(),
// 'avatar' => $memberData['avatar'],
// 'name' => $memberData['name'],
// 'email' => $memberData['email'],
// ];
// MemberAccount::create($memberAccountData);
return $result;
}
public static function dingtalkLogin($userInfo)
{
$unionid = $userInfo['unionid'];
$openid = $userInfo['openid'];
$member = self::where(['dingtalk_unionid' => $unionid])->find();
if (!$member) {
$memberData = [
'dingtalk_openid' => $openid,
'dingtalk_unionid' => $unionid,
'name' => $userInfo['nick'],
'avatar' => isset($userInfo['avatar']) ? $userInfo['avatar'] : '',
'mobile' => isset($userInfo['mobile']) ? $userInfo['mobile'] : '',
'email' => isset($userInfo['email']) ? $userInfo['email'] : '',
];
$member = self::createMember($memberData);
}
self::login($member);
return $member;
}
/**
* @param File $file
* @return array|bool
* @throws \think\Exception
* @throws \think\exception\PDOException
* @throws \Exception
*/
public function uploadImg(File $file)
{
return $this->_uploadImg($file, config('upload.base_path') . config('upload.member_avatar'));
}
}