parent
d7367c6e58
commit
d0f09bae6b
@ -14,7 +14,7 @@ use think\facade\Hook;
|
|||||||
*/
|
*/
|
||||||
class Task extends CommonModel
|
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)
|
public function read($code)
|
||||||
{
|
{
|
||||||
@ -537,6 +537,29 @@ class Task extends CommonModel
|
|||||||
return $sources;
|
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)
|
public function getLikedAttr($value, $data)
|
||||||
{
|
{
|
||||||
$like = 0;
|
$like = 0;
|
||||||
|
@ -54,7 +54,7 @@ $gateway->startPort = 2900;
|
|||||||
$gateway->registerAddress = '192.168.0.159:2346';
|
$gateway->registerAddress = '192.168.0.159:2346';
|
||||||
|
|
||||||
// 心跳间隔
|
// 心跳间隔
|
||||||
$gateway->pingInterval = 10;
|
$gateway->pingInterval = 60;
|
||||||
// 心跳数据
|
// 心跳数据
|
||||||
$data = ['action' => 'ping'];
|
$data = ['action' => 'ping'];
|
||||||
$gateway->pingData = json_encode($data);
|
$gateway->pingData = json_encode($data);
|
||||||
|
@ -236,7 +236,7 @@ class Index extends BasicApi
|
|||||||
$uid = $request::param('uid');
|
$uid = $request::param('uid');
|
||||||
$messageService = new MessageService();
|
$messageService = new MessageService();
|
||||||
$messageService->sendToUid($uid, '888', 'notice');
|
$messageService->sendToUid($uid, '888', 'notice');
|
||||||
$this->success();
|
$this->success('', $messageService->isUidOnline($uid));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -270,6 +270,25 @@ class Task extends BasicApi
|
|||||||
$this->error("操作失败,请稍候再试!");
|
$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
|
* @param Request $request
|
||||||
@ -366,6 +385,7 @@ class Task extends BasicApi
|
|||||||
}
|
}
|
||||||
$this->success('', $list);
|
$this->success('', $list);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 批量放入回收站
|
* 批量放入回收站
|
||||||
*/
|
*/
|
||||||
|
@ -13,6 +13,7 @@ use GatewayWorker\Lib\Gateway;
|
|||||||
*/
|
*/
|
||||||
class MessageService
|
class MessageService
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* MessageService constructor.
|
* MessageService constructor.
|
||||||
*/
|
*/
|
||||||
@ -28,6 +29,11 @@ class MessageService
|
|||||||
Gateway::$registerAddress = '192.168.0.159:2346';
|
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)
|
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);
|
Gateway::sendToAll($this->messageFormat($message, $action), $client_id_array, $exclude_client_id, $raw);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user