| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- <?php
- namespace App\Http\Controllers\Api;
- use App\Http\Controllers\Controller;
- use App\Module\Base;
- use App\Module\Chat;
- use App\Module\Users;
- use DB;
- use Request;
- /**
- * @apiDefine chat
- *
- * 聊天
- */
- class ChatController extends Controller
- {
- public function __invoke($method, $action = '')
- {
- $app = $method ? $method : 'main';
- if ($action) {
- $app .= "__" . $action;
- }
- return (method_exists($this, $app)) ? $this->$app() : Base::ajaxError("404 not found (" . str_replace("__", "/", $app) . ").");
- }
- /**
- * 对话列表
- */
- public function dialog__lists()
- {
- $user = Users::authE();
- if (Base::isError($user)) {
- return $user;
- } else {
- $user = $user['data'];
- }
- //
- $lists = Base::DBC2A(DB::table('chat_dialog')
- ->where(function ($query) use ($user) {
- return $query->where('user1', $user['username'])->where('del1', 0);
- })
- ->orWhere(function ($query) use ($user) {
- return $query->where('user2', $user['username'])->where('del2', 0);
- })
- ->orderByDesc('lastdate')
- ->take(200)
- ->get());
- if (count($lists) <= 0) {
- return Base::retError('暂无对话记录');
- }
- foreach ($lists AS $key => $item) {
- $lists[$key] = array_merge($item, Users::username2basic($item['user1'] == $user['username'] ? $item['user2'] : $item['user1']));
- $lists[$key]['lastdate'] = $item['lastdate'] ?: $item['indate'];
- $unread = 0;
- if ($item['user1'] == $user['username']) $unread+= $item['unread1'];
- if ($item['user2'] == $user['username']) $unread+= $item['unread2'];
- $lists[$key]['unread'] = $unread;
- }
- return Base::retSuccess('success', $lists);
- }
- /**
- * 清空聊天记录(删除对话)
- *
- * @apiParam {String} username 用户名
- * @apiParam {Number} [delete] 是否删除对话,1:是
- */
- public function dialog__clear()
- {
- $user = Users::authE();
- if (Base::isError($user)) {
- return $user;
- } else {
- $user = $user['data'];
- }
- //
- $delete = intval(Request::input('delete'));
- $res = Chat::openDialog($user['username'], trim(Request::input('username')));
- if (Base::isError($res)) {
- return $res;
- }
- $dialog = $res['data'];
- $lastMsg = Base::DBC2A(DB::table('chat_msg')
- ->select('id')
- ->where('did', $dialog['id'])
- ->orderByDesc('indate')
- ->orderByDesc('id')
- ->first());
- $upArray = [
- ($dialog['recField'] == 1 ? 'lastid2' : 'lastid1') => $lastMsg ? $lastMsg['id'] : 0
- ];
- if ($delete === 1) {
- $upArray[($dialog['recField'] == 1 ? 'del2' : 'del1')] = 1;
- }
- DB::table('chat_dialog')->where('id', $dialog['id'])->update($upArray);
- Chat::forgetDialog($dialog['user1'], $dialog['user2']);
- return Base::retSuccess($delete ? '删除成功!' : '清除成功!');
- }
- /**
- * 消息列表
- *
- * @apiParam {String} username 用户名
- */
- public function message__lists()
- {
- $user = Users::authE();
- if (Base::isError($user)) {
- return $user;
- } else {
- $user = $user['data'];
- }
- //
- $res = Chat::openDialog($user['username'], trim(Request::input('username')));
- if (Base::isError($res)) {
- return $res;
- }
- $dialog = $res['data'];
- $lastid = $dialog[($dialog['recField'] == 1 ? 'lastid2' : 'lastid1')];
- $whereArray = [];
- $whereArray[] = ['did', '=', $dialog['id']];
- if ($lastid > 0) {
- $whereArray[] = ['id', '>', $lastid];
- }
- $lists = DB::table('chat_msg')
- ->where($whereArray)
- ->orderByDesc('indate')
- ->orderByDesc('id')
- ->paginate(Min(Max(Base::nullShow(Request::input('pagesize'), 10), 1), 100));
- $lists = Base::getPageList($lists, false);
- //
- foreach ($lists['lists'] AS $key => $item) {
- $lists['lists'][$key]['userimg'] = Users::userimg($item['username']);
- $lists['lists'][$key]['message'] = Base::string2array($item['message']);
- }
- //
- return Base::retSuccess('success', $lists);
- }
- }
|