|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace LivePersonInc\LiveEngageLaravel\Collections; |
|
4
|
|
|
|
|
5
|
|
|
use Illuminate\Support\Collection; |
|
6
|
|
|
use LivePersonInc\LiveEngageLaravel\LiveEngageLaravel; |
|
7
|
|
|
use LivePersonInc\LiveEngageLaravel\Facades\LiveEngageLaravel as LiveEngage; |
|
8
|
|
|
use LivePersonInc\LiveEngageLaravel\Models\MetaData; |
|
9
|
|
|
use LivePersonInc\LiveEngageLaravel\Models\Conversation; |
|
10
|
|
|
use LivePersonInc\LiveEngageLaravel\Models\Info; |
|
11
|
|
|
use LivePersonInc\LiveEngageLaravel\Models\Visitor; |
|
12
|
|
|
use LivePersonInc\LiveEngageLaravel\Models\Campaign; |
|
13
|
|
|
|
|
14
|
|
|
class ConversationHistory extends Collection |
|
15
|
|
|
{ |
|
16
|
|
|
public $metaData; |
|
17
|
|
|
|
|
18
|
1 |
|
public function __construct(array $models = []) |
|
19
|
|
|
{ |
|
20
|
|
|
$models = array_map(function($item) { |
|
21
|
1 |
|
return is_a($item, 'LivePersonInc\LiveEngageLaravel\Models\Conversation') ? $item : new Conversation((array) $item); |
|
22
|
1 |
|
}, $models); |
|
23
|
1 |
|
$this->metaData = new MetaData(); |
|
24
|
1 |
|
parent::__construct($models); |
|
25
|
1 |
|
} |
|
26
|
|
|
|
|
27
|
|
|
public function find($engagementID) |
|
28
|
|
|
{ |
|
29
|
|
|
$result = $this->filter(function($value) use ($engagementID) { |
|
30
|
|
|
return $value->info->conversationId == $engagementID; |
|
31
|
|
|
}); |
|
32
|
|
|
|
|
33
|
|
|
return $result->first(); |
|
34
|
|
|
} |
|
35
|
|
|
|
|
36
|
1 |
|
public function next() |
|
37
|
|
|
{ |
|
38
|
|
|
/** @scrutinizer ignore-call */ |
|
39
|
1 |
|
if ($this->metaData->next) { |
|
|
|
|
|
|
40
|
|
|
/** @scrutinizer ignore-call */ |
|
41
|
1 |
|
$next = LiveEngage::retrieveMsgHistory($this->metaData->start, $this->metaData->end, $this->metaData->next->href); |
|
|
|
|
|
|
42
|
1 |
|
if ($next) { |
|
43
|
|
|
|
|
44
|
1 |
|
$next->_metadata->start = $this->metaData->start; |
|
45
|
1 |
|
$next->_metadata->end = $this->metaData->end; |
|
46
|
|
|
|
|
47
|
1 |
|
$meta = new MetaData((array) $next->_metadata); |
|
48
|
|
|
|
|
49
|
1 |
|
$collection = new self($next->conversationHistoryRecords); |
|
50
|
1 |
|
$collection->metaData = $meta; |
|
51
|
|
|
|
|
52
|
1 |
|
return $collection; |
|
53
|
|
|
|
|
54
|
|
|
} else { |
|
55
|
|
|
return false; |
|
56
|
|
|
} |
|
57
|
|
|
} |
|
58
|
|
|
|
|
59
|
|
|
return false; |
|
60
|
|
|
|
|
61
|
|
|
} |
|
62
|
|
|
|
|
63
|
1 |
|
public function prev() |
|
64
|
|
|
{ |
|
65
|
|
|
/** @scrutinizer ignore-call */ |
|
66
|
1 |
|
if ($this->metaData->prev) { |
|
|
|
|
|
|
67
|
|
|
/** @scrutinizer ignore-call */ |
|
68
|
1 |
|
$prev = LiveEngage::retrieveMsgHistory($this->metaData->start, $this->metaData->end, $this->metaData->prev->href); |
|
|
|
|
|
|
69
|
1 |
|
if ($prev) { |
|
70
|
|
|
|
|
71
|
1 |
|
$prev->_metadata->start = $this->metaData->start; |
|
72
|
1 |
|
$prev->_metadata->end = $this->metaData->end; |
|
73
|
|
|
|
|
74
|
1 |
|
$meta = new MetaData((array) $prev->_metadata); |
|
75
|
|
|
|
|
76
|
1 |
|
$collection = new self($prev->conversationHistoryRecords); |
|
77
|
1 |
|
$collection->metaData = $meta; |
|
78
|
|
|
|
|
79
|
1 |
|
return $collection; |
|
80
|
|
|
|
|
81
|
|
|
} else { |
|
82
|
|
|
return false; |
|
83
|
|
|
} |
|
84
|
|
|
} |
|
85
|
|
|
|
|
86
|
|
|
return false; |
|
87
|
|
|
|
|
88
|
|
|
} |
|
89
|
|
|
|
|
90
|
|
|
public function merge($collection) { |
|
91
|
|
|
|
|
92
|
|
|
$meta = $collection->metaData; |
|
93
|
|
|
$collection = parent::merge($collection); |
|
94
|
|
|
$this->metaData = $meta; |
|
95
|
|
|
$collection->metaData = $meta; |
|
96
|
|
|
|
|
97
|
|
|
return $collection; |
|
98
|
|
|
|
|
99
|
|
|
} |
|
100
|
|
|
} |
|
101
|
|
|
|
Checks if undeclared accessed properties appear in database migrations and if the creating migration is correct.