mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-23 20:00:27 +08:00
65 lines
1.5 KiB
PHP
65 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (c) 2021 深圳市酷瓜软件有限公司
|
|
* @license https://opensource.org/licenses/GPL-2.0
|
|
* @link https://www.koogua.com
|
|
*/
|
|
|
|
namespace App\Services\Logic\User\Console;
|
|
|
|
use App\Caches\User as UserCache;
|
|
use App\Services\Logic\Service as LogicService;
|
|
use App\Validators\User as UserValidator;
|
|
|
|
class ProfileUpdate extends LogicService
|
|
{
|
|
|
|
public function handle()
|
|
{
|
|
$post = $this->request->getPost();
|
|
|
|
$user = $this->getLoginUser();
|
|
|
|
$validator = new UserValidator();
|
|
|
|
$data = [];
|
|
|
|
if (!empty($post['name'])) {
|
|
$data['name'] = $validator->checkName($post['name']);
|
|
if ($data['name'] != $user->name) {
|
|
$validator->checkIfNameTaken($data['name']);
|
|
}
|
|
}
|
|
|
|
if (!empty($post['gender'])) {
|
|
$data['gender'] = $validator->checkGender($post['gender']);
|
|
}
|
|
|
|
if (!empty($post['area'])) {
|
|
$data['area'] = $validator->checkArea($post['area']);
|
|
}
|
|
|
|
if (!empty($post['about'])) {
|
|
$data['about'] = $validator->checkAbout($post['about']);
|
|
}
|
|
|
|
if (!empty($post['avatar'])) {
|
|
$data['avatar'] = $validator->checkAvatar($post['avatar']);
|
|
}
|
|
|
|
$user->update($data);
|
|
|
|
$this->rebuildUserCache($user->id);
|
|
|
|
return $user;
|
|
}
|
|
|
|
protected function rebuildUserCache($id)
|
|
{
|
|
$cache = new UserCache();
|
|
|
|
$cache->rebuild($id);
|
|
}
|
|
|
|
}
|