|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace LivePersonInc\LiveEngageLaravel\Collections; |
|
4
|
|
|
|
|
5
|
|
|
use Illuminate\Support\Collection; |
|
6
|
|
|
use LivePersonInc\LiveEngageLaravel\LiveEngageLaravel; |
|
7
|
|
|
use LivePersonInc\LiveEngageLaravel\Models\Conversation; |
|
8
|
|
|
|
|
9
|
|
|
class ConversationHistory extends Collection |
|
10
|
|
|
{ |
|
11
|
|
|
private $instance; |
|
12
|
|
|
|
|
13
|
|
|
public function __construct(array $models = [], LiveEngageLaravel $instance = null) |
|
14
|
|
|
{ |
|
15
|
|
|
$this->instance = $instance; |
|
16
|
|
|
|
|
17
|
|
|
parent::__construct($models); |
|
18
|
|
|
} |
|
19
|
|
|
|
|
20
|
|
|
public function find($engagementID) |
|
21
|
|
|
{ |
|
22
|
|
|
$result = $this->filter(function ($value, $key) use ($engagementID) { |
|
|
|
|
|
|
23
|
|
|
return $value->info->conversationId == $engagementID; |
|
24
|
|
|
}); |
|
25
|
|
|
|
|
26
|
|
|
return $result->first(); |
|
27
|
|
|
} |
|
28
|
|
|
|
|
29
|
|
|
public function next() |
|
30
|
|
|
{ |
|
31
|
|
|
if (! $this->instance) { |
|
32
|
|
|
return false; |
|
33
|
|
|
} |
|
34
|
|
|
|
|
35
|
|
|
$instance = $this->instance; |
|
36
|
|
|
|
|
37
|
|
|
$next = $instance->retrieveMsgHistory($instance->start, $instance->end, $instance->next); |
|
|
|
|
|
|
38
|
|
|
if (property_exists($next->_metadata, 'next')) { |
|
|
|
|
|
|
39
|
|
|
$instance->next = $next->_metadata->next->href; |
|
40
|
|
|
|
|
41
|
|
|
$history = []; |
|
42
|
|
|
foreach ($next->conversationHistoryRecords as $item) { |
|
|
|
|
|
|
43
|
|
|
$history[] = new Conversation((array) $item); |
|
44
|
|
|
} |
|
45
|
|
|
|
|
46
|
|
|
return $this->merge(new self($history)); |
|
47
|
|
|
} else { |
|
48
|
|
|
return false; |
|
49
|
|
|
} |
|
50
|
|
|
} |
|
51
|
|
|
|
|
52
|
|
|
public function prev() |
|
53
|
|
|
{ |
|
54
|
|
|
if (! $this->instance) { |
|
55
|
|
|
return false; |
|
56
|
|
|
} |
|
57
|
|
|
|
|
58
|
|
|
$instance = $this->instance; |
|
59
|
|
|
|
|
60
|
|
|
$prev = $instance->retrieveMsgHistory($instance->start, $instance->end, $instance->prev); |
|
|
|
|
|
|
61
|
|
|
if (property_exists($prev->_metadata, 'prev')) { |
|
|
|
|
|
|
62
|
|
|
$instance->prev = $prev->_metadata->prev->href; |
|
63
|
|
|
|
|
64
|
|
|
$history = []; |
|
65
|
|
|
foreach ($next->conversationHistoryRecords as $item) { |
|
|
|
|
|
|
66
|
|
|
$history[] = new Conversation((array) $item); |
|
67
|
|
|
} |
|
68
|
|
|
|
|
69
|
|
|
return $this->merge(new self($history)); |
|
70
|
|
|
} else { |
|
71
|
|
|
return false; |
|
72
|
|
|
} |
|
73
|
|
|
} |
|
74
|
|
|
} |
|
75
|
|
|
|
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.