perf: 优化投票接口,加上事务锁

This commit is contained in:
wfs 2024-03-13 00:17:23 +08:00
parent b254fd5ce2
commit 5efe659cf5

View File

@ -2253,8 +2253,6 @@ class DialogController extends AbstractController
WebSocketDialog::checkDialog($dialog_id); WebSocketDialog::checkDialog($dialog_id);
// //
$action = null; $action = null;
$userid = $user->userid;
$result = [];
if ($type != 'create') { if ($type != 'create') {
if ($type == 'vote' && empty($votes)) { if ($type == 'vote' && empty($votes)) {
return Base::retError('参数错误'); return Base::retError('参数错误');
@ -2262,12 +2260,16 @@ class DialogController extends AbstractController
if (empty($uuid)) { if (empty($uuid)) {
return Base::retError('参数错误'); return Base::retError('参数错误');
} }
return AbstractModel::transaction(function () use ($user, $uuid, $dialog_id, $type, $votes) {
//
$dialogMsgs = WebSocketDialogMsg::whereDialogId($dialog_id) $dialogMsgs = WebSocketDialogMsg::whereDialogId($dialog_id)
->lockForUpdate()
->whereType('vote') ->whereType('vote')
->orderByDesc('created_at') ->orderByDesc('created_at')
->where('msg', 'like', "%$uuid%") ->where('msg', 'like', "%$uuid%")
->get(); ->get();
// //
$result = [];
if ($type == 'again') { if ($type == 'again') {
$res = WebSocketDialogMsg::sendMsg(null, $dialog_id, 'vote', $dialogMsgs[0]->msg, $user->userid); $res = WebSocketDialogMsg::sendMsg(null, $dialog_id, 'vote', $dialogMsgs[0]->msg, $user->userid);
if (Base::isError($res)) { if (Base::isError($res)) {
@ -2282,15 +2284,16 @@ class DialogController extends AbstractController
$msgData['state'] = 0; $msgData['state'] = 0;
} else { } else {
$msgDataVotes = $msgData['votes'] ?? []; $msgDataVotes = $msgData['votes'] ?? [];
if (in_array($userid, array_column($msgDataVotes, 'userid'))) { if (in_array($user->userid, array_column($msgDataVotes, 'userid'))) {
return Base::retError('不能重复投票'); return Base::retError('不能重复投票');
} }
$msgDataVotes[] = [ $msgDataVotes[] = [
'userid' => $userid, 'userid' => $user->userid,
'votes' => $votes, 'votes' => $votes,
]; ];
$msgData['votes'] = $msgDataVotes; $msgData['votes'] = $msgDataVotes;
} }
//
$res = WebSocketDialogMsg::sendMsg($action, $dialog_id, 'vote', $msgData, $user->userid); $res = WebSocketDialogMsg::sendMsg($action, $dialog_id, 'vote', $msgData, $user->userid);
if (Base::isError($res)) { if (Base::isError($res)) {
return $res; return $res;
@ -2298,6 +2301,9 @@ class DialogController extends AbstractController
$result[] = $res['data']; $result[] = $res['data'];
} }
} }
//
return Base::retSuccess('发送成功', $result);
});
} else { } else {
$strlen = mb_strlen($text); $strlen = mb_strlen($text);
$noimglen = mb_strlen(preg_replace("/<img[^>]*?>/i", "", $text)); $noimglen = mb_strlen(preg_replace("/<img[^>]*?>/i", "", $text));
@ -2310,7 +2316,7 @@ class DialogController extends AbstractController
$msgData = [ $msgData = [
'text' => $text, 'text' => $text,
'list' => $list, 'list' => $list,
'userid' => $userid, 'userid' => $user->userid,
'uuid' => $uuid ?: Base::generatePassword(36), 'uuid' => $uuid ?: Base::generatePassword(36),
'multiple' => $multiple, 'multiple' => $multiple,
'anonymous' => $anonymous, 'anonymous' => $anonymous,
@ -2321,9 +2327,8 @@ class DialogController extends AbstractController
if (Base::isError($res)) { if (Base::isError($res)) {
return $res; return $res;
} }
$result[] = $res['data']; return Base::retSuccess('发送成功', [$res['data']]);
} }
return Base::retSuccess('发送成功', $result);
} }
/** /**