mirror of
https://github.com/Mibew/mibew.git
synced 2025-04-06 08:10:12 +03:00
Add "userId" and "agentId" fields to thread at client side
This commit is contained in:
parent
3984c260b0
commit
3dd80070c7
@ -203,6 +203,8 @@
|
|||||||
"function": "update",
|
"function": "update",
|
||||||
"arguments": {
|
"arguments": {
|
||||||
"return": {
|
"return": {
|
||||||
|
'threadState': 'threadState',
|
||||||
|
'threadAgentId': 'threadAgentId',
|
||||||
'typing': 'typing',
|
'typing': 'typing',
|
||||||
'canPost': 'canPost'
|
'canPost': 'canPost'
|
||||||
},
|
},
|
||||||
@ -232,6 +234,11 @@
|
|||||||
Mibew.Objects.Models.user.set({
|
Mibew.Objects.Models.user.set({
|
||||||
canPost: args.canPost || false
|
canPost: args.canPost || false
|
||||||
});
|
});
|
||||||
|
// Update thread fields
|
||||||
|
Mibew.Objects.Models.thread.set({
|
||||||
|
'agentId': args.threadAgentId,
|
||||||
|
'state': args.threadState
|
||||||
|
});
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
@ -26,7 +26,6 @@
|
|||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* A list of default model values.
|
* A list of default model values.
|
||||||
* Inherits values from Mibew.Models.User
|
|
||||||
* @type Object
|
* @type Object
|
||||||
*/
|
*/
|
||||||
defaults: {
|
defaults: {
|
||||||
@ -48,6 +47,17 @@
|
|||||||
*/
|
*/
|
||||||
lastId: 0,
|
lastId: 0,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ID of the user related with the chat.
|
||||||
|
* @type String
|
||||||
|
*/
|
||||||
|
userId: null,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ID of the agent related with the chat.
|
||||||
|
*/
|
||||||
|
agentId: null,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thread's state
|
* Thread's state
|
||||||
* @type Number
|
* @type Number
|
||||||
|
@ -433,7 +433,9 @@ function setup_chatview(Thread $thread)
|
|||||||
// Set thread params
|
// Set thread params
|
||||||
$data['chat']['thread'] = array(
|
$data['chat']['thread'] = array(
|
||||||
'id' => $thread->id,
|
'id' => $thread->id,
|
||||||
'token' => $thread->lastToken
|
'token' => $thread->lastToken,
|
||||||
|
'agentId' => $thread->agentId,
|
||||||
|
'userId' => $thread->userId,
|
||||||
);
|
);
|
||||||
|
|
||||||
$data['page.title'] = empty($group['vcchattitle'])
|
$data['page.title'] = empty($group['vcchattitle'])
|
||||||
|
@ -265,6 +265,10 @@ class ThreadProcessor extends ClientSideProcessor implements RouterAwareInterfac
|
|||||||
* message
|
* message
|
||||||
* - 'canPost': indicates if agent(user can post message all the time)
|
* - 'canPost': indicates if agent(user can post message all the time)
|
||||||
* can post the message
|
* can post the message
|
||||||
|
* - 'threadState': current state of the thread. See Thread::STATE_*
|
||||||
|
* constants for details.
|
||||||
|
* - 'threadAgentId': ID of the agent that is currently related with the
|
||||||
|
* thread.
|
||||||
*/
|
*/
|
||||||
protected function apiUpdate($args)
|
protected function apiUpdate($args)
|
||||||
{
|
{
|
||||||
@ -310,6 +314,8 @@ class ThreadProcessor extends ClientSideProcessor implements RouterAwareInterfac
|
|||||||
$can_post = $args['user'] || $operator['operatorid'] == $thread->agentId;
|
$can_post = $args['user'] || $operator['operatorid'] == $thread->agentId;
|
||||||
|
|
||||||
return array(
|
return array(
|
||||||
|
'threadState' => $thread->state,
|
||||||
|
'threadAgentId' => $thread->agentId,
|
||||||
'typing' => $is_typing,
|
'typing' => $is_typing,
|
||||||
'canPost' => $can_post,
|
'canPost' => $can_post,
|
||||||
);
|
);
|
||||||
|
@ -319,6 +319,7 @@ class UsersProcessor extends ClientSideProcessor implements AuthenticationManage
|
|||||||
'userIp' => $user_ip,
|
'userIp' => $user_ip,
|
||||||
'remote' => $thread->remote,
|
'remote' => $thread->remote,
|
||||||
'userAgent' => get_user_agent_version($thread->userAgent),
|
'userAgent' => get_user_agent_version($thread->userAgent),
|
||||||
|
'agentId' => $thread->agentId,
|
||||||
'agentName' => $agent_name,
|
'agentName' => $agent_name,
|
||||||
'canOpen' => $can_open,
|
'canOpen' => $can_open,
|
||||||
'canView' => $can_view,
|
'canView' => $can_view,
|
||||||
|
@ -336,6 +336,8 @@ function setup_invitation_view(Thread $thread)
|
|||||||
$data['invitation']['thread'] = array(
|
$data['invitation']['thread'] = array(
|
||||||
'id' => $thread->id,
|
'id' => $thread->id,
|
||||||
'token' => $thread->lastToken,
|
'token' => $thread->lastToken,
|
||||||
|
'agentId' => $thread->agentId,
|
||||||
|
'userId' => $thread->userId,
|
||||||
);
|
);
|
||||||
|
|
||||||
$data['invitation']['user'] = array(
|
$data['invitation']['user'] = array(
|
||||||
|
Loading…
Reference in New Issue
Block a user