-
Notifications
You must be signed in to change notification settings - Fork 20
/
ZohoCRMClient.php
211 lines (187 loc) · 4.73 KB
/
ZohoCRMClient.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
<?php
namespace CristianPontes\ZohoCRMClient;
use Buzz\Browser;
use Buzz\Client\Curl;
use CristianPontes\ZohoCRMClient\Request;
use CristianPontes\ZohoCRMClient\Transport;
use Psr\Log\LoggerAwareInterface;
use Psr\Log\LoggerInterface;
/**
* Main Class of the ZohoCRMClient library
* Only use this class directly
*/
class ZohoCRMClient implements LoggerAwareInterface
{
/** @var string */
private $module;
/** @var Transport\Transport */
protected $transport;
/** @var LoggerInterface */
private $logger;
/**
* ZohoCRMClient constructor.
* @param $module
* @param $authToken
* @param string $domain
* @param int $timeout
*/
public function __construct($module, $authToken, $domain = 'com', $timeout = 5)
{
$this->module = $module;
if ($authToken instanceof Transport\Transport) {
$this->transport = $authToken;
} else {
$curl_client = new Curl();
$curl_client->setTimeout($timeout);
$this->transport = new Transport\XmlDataTransportDecorator(
new Transport\AuthenticationTokenTransportDecorator(
$authToken,
new Transport\BuzzTransport(
new Browser($curl_client),
'https://crm.zoho.' . $domain . '/crm/private/xml/'
)
)
);
}
}
/**
* Sets a logger instance on the object
*
* @param LoggerInterface $logger
* @return void
*/
public function setLogger(LoggerInterface $logger)
{
$this->logger = $logger;
if ($this->transport instanceof LoggerAwareInterface) {
$this->transport->setLogger($logger);
}
}
/**
* Sets the Zoho CRM module, overriding the the actual value
* @param $module
*/
public function setModule($module)
{
$this->module = $module;
}
/**
* @return Request\GetRecords
*/
public function getRecords()
{
return new Request\GetRecords($this->request());
}
/**
* @param int|null $id
* @return Request\GetRecordById
*/
public function getRecordById($id = null)
{
$request = new Request\GetRecordById($this->request());
if ($id !== null) {
$request->id($id);
}
return $request;
}
/**
* @return Request\InsertRecords
*/
public function insertRecords()
{
return new Request\InsertRecords($this->request());
}
/**
* @return Request\UpdateRecords
*/
public function updateRecords()
{
return new Request\UpdateRecords($this->request());
}
/**
* @return Request\UpdateRelatedRecords
*/
public function updateRelatedRecords()
{
return new Request\UpdateRelatedRecords($this->request());
}
/**
* @return Request\ConvertLead
*/
public function convertLead()
{
return new Request\ConvertLead($this->request());
}
/**
* @return Request\GetFields
*/
public function getFields()
{
return new Request\GetFields($this->request());
}
/**
* @return Request\DeleteRecords
*/
public function deleteRecords()
{
return new Request\DeleteRecords($this->request());
}
/**
* @return Request\UploadFile
*/
public function uploadFile()
{
return new Request\UploadFile($this->request());
}
/**
* @return Request\DeleteFile
*/
public function deleteFile()
{
return new Request\DeleteFile($this->request());
}
/**
* @return Request\DownloadFile
*/
public function downloadFile()
{
return new Request\DownloadFile($this->request());
}
/**
* @return Request\SearchRecords
*/
public function searchRecords()
{
return new Request\SearchRecords($this->request());
}
/**
* @return Request\GetSearchRecordsByPDC
*/
public function getSearchRecordsByPDC()
{
return new Request\GetSearchRecordsByPDC($this->request());
}
/**
* @return Request\GetRelatedRecords
*/
public function getRelatedRecords()
{
return new Request\GetRelatedRecords($this->request());
}
/**
* @return Request\GetDeletedRecordIds
*/
public function getDeletedRecordIds()
{
return new Request\GetDeletedRecordIds($this->request());
}
/**
* @return \CristianPontes\ZohoCRMClient\Transport\TransportRequest
*/
protected function request()
{
$request = new Transport\TransportRequest($this->module);
$request->setTransport($this->transport);
return $request;
}
}