144 lines
4.2 KiB
PHP
144 lines
4.2 KiB
PHP
<?php
|
|
/**
|
|
* This is my open source code, please do not use it for commercial applications.
|
|
* For the full copyright and license information,
|
|
* please view the LICENSE file that was distributed with this source code
|
|
*
|
|
* @author Yuandong<837215079@qq.com>
|
|
* @link https://github.com/gzydong/hyperf-chat
|
|
*/
|
|
|
|
namespace App\Controller\Api\V1;
|
|
|
|
use App\Model\UsersFriend;
|
|
use App\Service\UserService;
|
|
use Hyperf\Di\Annotation\Inject;
|
|
use Hyperf\HttpServer\Annotation\Controller;
|
|
use Hyperf\HttpServer\Annotation\RequestMapping;
|
|
use Hyperf\HttpServer\Annotation\Middleware;
|
|
use App\Middleware\JWTAuthMiddleware;
|
|
use Psr\Http\Message\ResponseInterface;
|
|
use App\Service\ContactsService;
|
|
use App\Service\SocketClientService;
|
|
use App\Model\TalkList;
|
|
use App\Cache\FriendApply;
|
|
use App\Cache\FriendRemark;
|
|
use App\Cache\ServerRunID;
|
|
|
|
/**
|
|
* Class ContactsController
|
|
* @Controller(prefix="/api/v1/contacts")
|
|
* @Middleware(JWTAuthMiddleware::class)
|
|
*
|
|
* @package App\Controller\Api\V1
|
|
*/
|
|
class ContactsController extends CController
|
|
{
|
|
/**
|
|
* @Inject
|
|
* @var ContactsService
|
|
*/
|
|
private $service;
|
|
|
|
/**
|
|
* 获取用户联系人列表
|
|
* @RequestMapping(path="list", methods="get")
|
|
*
|
|
* @return ResponseInterface
|
|
*/
|
|
public function getContacts(UserService $service)
|
|
{
|
|
$rows = $service->getUserFriends($this->uid());
|
|
if ($rows) {
|
|
$runArr = ServerRunID::getInstance()->getServerRunIdAll();
|
|
foreach ($rows as $k => $row) {
|
|
$rows[$k]['is_online'] = container()->get(SocketClientService::class)->isOnlineAll($row['id'], $runArr);
|
|
}
|
|
}
|
|
|
|
return $this->response->success($rows);
|
|
}
|
|
|
|
/**
|
|
* 删除联系人
|
|
* @RequestMapping(path="delete", methods="post")
|
|
*
|
|
* @return ResponseInterface
|
|
*/
|
|
public function deleteContact()
|
|
{
|
|
$params = $this->request->inputs(['friend_id']);
|
|
$this->validate($params, [
|
|
'friend_id' => 'required|integer'
|
|
]);
|
|
|
|
$user_id = $this->uid();
|
|
if (!$this->service->delete($user_id, intval($params['friend_id']))) {
|
|
return $this->response->fail('好友关系解除失败!');
|
|
}
|
|
|
|
// 删除好友会话列表
|
|
TalkList::delItem($user_id, $params['friend_id'], 2);
|
|
TalkList::delItem($params['friend_id'], $user_id, 2);
|
|
|
|
// TODO 推送消息(待完善)
|
|
|
|
return $this->response->success([], '好友关系解除成功...');
|
|
}
|
|
|
|
/**
|
|
* 获取联系人申请未读数
|
|
* @RequestMapping(path="apply-unread-num", methods="get")
|
|
*
|
|
* @return ResponseInterface
|
|
*/
|
|
public function getContactApplyUnreadNum()
|
|
{
|
|
return $this->response->success([
|
|
'unread_num' => (int)FriendApply::getInstance()->get(strval($this->uid()))
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* 搜索联系人
|
|
* @RequestMapping(path="search", methods="get")
|
|
*
|
|
* @return ResponseInterface
|
|
*/
|
|
public function searchContacts()
|
|
{
|
|
$params = $this->request->inputs(['mobile']);
|
|
$this->validate($params, [
|
|
'mobile' => "present|regex:/^1[3456789][0-9]{9}$/"
|
|
]);
|
|
|
|
$result = $this->service->findContact($params['mobile']);
|
|
return $this->response->success($result);
|
|
}
|
|
|
|
/**
|
|
* 编辑联系人备注
|
|
* @RequestMapping(path="edit-remark", methods="post")
|
|
*
|
|
* @return ResponseInterface
|
|
*/
|
|
public function editContactRemark()
|
|
{
|
|
$params = $this->request->inputs(['friend_id', 'remarks']);
|
|
$this->validate($params, [
|
|
'friend_id' => 'required|integer|min:1',
|
|
'remarks' => "required|max:20"
|
|
]);
|
|
|
|
$user_id = $this->uid();
|
|
$isTrue = $this->service->editRemark($user_id, intval($params['friend_id']), $params['remarks']);
|
|
if (!$isTrue) {
|
|
return $this->response->fail('备注修改失败!');
|
|
}
|
|
|
|
FriendRemark::getInstance()->save($user_id, (int)$params['friend_id'], $params['remarks']);
|
|
|
|
return $this->response->success([], '备注修改成功...');
|
|
}
|
|
}
|