增加任务隐私模式

Signed-off-by: 545522390@qq.com <liweisen825>
This commit is contained in:
vilson 2019-01-22 16:04:42 +08:00 committed by 545522390@qq.com
parent d7367c6e58
commit d0f09bae6b
5 changed files with 52 additions and 3 deletions

View File

@ -14,7 +14,7 @@ use think\facade\Hook;
*/
class Task extends CommonModel
{
protected $append = ['priText', 'liked', 'stared', 'childCount', 'hasComment', 'hasSource'];
protected $append = ['priText', 'liked', 'stared', 'childCount', 'hasComment', 'hasSource', 'canRead'];
public function read($code)
{
@ -537,6 +537,29 @@ class Task extends CommonModel
return $sources;
}
/**
* 是否有阅读权限
* @param $value
* @param $data
* @return bool
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public function getCanReadAttr($value, $data)
{
$canRead = 1;
if (isset($data['private'])) {
if ($data['private']) {
$taskMember = TaskMember::where(['task_code' => $data['code'], 'member_code' => getCurrentMember()['code']])->field('id')->find();
if (!$taskMember) {
$canRead = 0;
}
}
}
return $canRead;
}
public function getLikedAttr($value, $data)
{
$like = 0;

View File

@ -54,7 +54,7 @@ $gateway->startPort = 2900;
$gateway->registerAddress = '192.168.0.159:2346';
// 心跳间隔
$gateway->pingInterval = 10;
$gateway->pingInterval = 60;
// 心跳数据
$data = ['action' => 'ping'];
$gateway->pingData = json_encode($data);

View File

@ -236,7 +236,7 @@ class Index extends BasicApi
$uid = $request::param('uid');
$messageService = new MessageService();
$messageService->sendToUid($uid, '888', 'notice');
$this->success();
$this->success('', $messageService->isUidOnline($uid));
}

View File

@ -270,6 +270,25 @@ class Task extends BasicApi
$this->error("操作失败,请稍候再试!");
}
/**
* 设置隐私模式
* @param Request $request
* @throws \Exception
*/
public function setPrivate(Request $request)
{
$private = intval($request::post('private', 0));
$code = $request::post('taskCode');
if ($private === 0 || $private === 1) {
$result = $this->model->edit($code, ['private' => $private]);
if ($result) {
$this->success();
}
$this->error("操作失败,请稍候再试!");
}
$this->success();
}
/**
* 点赞
* @param Request $request
@ -366,6 +385,7 @@ class Task extends BasicApi
}
$this->success('', $list);
}
/**
* 批量放入回收站
*/

View File

@ -13,6 +13,7 @@ use GatewayWorker\Lib\Gateway;
*/
class MessageService
{
/**
* MessageService constructor.
*/
@ -28,6 +29,11 @@ class MessageService
Gateway::$registerAddress = '192.168.0.159:2346';
}
public function isUidOnline($uid)
{
return Gateway::isUidOnline($uid);
}
public function sendToAll($message, $action = '', $client_id_array = null, $exclude_client_id = null, $raw = false)
{
Gateway::sendToAll($this->messageFormat($message, $action), $client_id_array, $exclude_client_id, $raw);