mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-24 04:01:31 +08:00
60 lines
1.3 KiB
PHP
60 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Services\Logic\User\Console;
|
|
|
|
use App\Caches\User as UserCache;
|
|
use App\Services\Logic\Service;
|
|
use App\Validators\User as UserValidator;
|
|
|
|
class ProfileUpdate extends Service
|
|
{
|
|
|
|
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);
|
|
}
|
|
|
|
}
|