1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace SalesforceBulkApi\api; |
4
|
|
|
|
5
|
|
|
use SalesforceBulkApi\dto\CreateJobDto; |
6
|
|
|
use SalesforceBulkApi\dto\JobInfoDto; |
7
|
|
|
use SalesforceBulkApi\helpers\ApiHelper; |
8
|
|
|
use SalesforceBulkApi\services\ApiSalesforce; |
9
|
|
|
use GuzzleHttp\Psr7\Request; |
10
|
|
|
|
11
|
|
|
class JobApiSF |
12
|
|
|
{ |
13
|
|
|
/** |
14
|
|
|
* @var string |
15
|
|
|
*/ |
16
|
|
|
public static $endpoint = 'https://%s.salesforce.com/services/async/%s/job'; |
17
|
|
|
|
18
|
|
|
/** |
19
|
|
|
* @param ApiSalesforce $api |
20
|
|
|
* @param CreateJobDto $dto |
21
|
|
|
* |
22
|
|
|
* @return JobInfoDto |
23
|
|
|
* @throws \Exception |
24
|
|
|
*/ |
25
|
|
|
public static function create(ApiSalesforce $api, CreateJobDto $dto) |
26
|
|
|
{ |
27
|
|
|
$version = $api->getLoginParams()->getApiVersion(); |
28
|
|
|
$request = new Request( |
29
|
|
|
'POST', |
30
|
|
|
sprintf(self::$endpoint, $api->getSession()->getInstance(), $version), |
31
|
|
|
[ |
32
|
|
|
'Content-Type' => 'application/json; charset=UTF8', |
33
|
|
|
'X-SFDC-Session' => $api->getSession()->getSessionId() |
34
|
|
|
], |
35
|
|
|
$dto->toJson() |
36
|
|
|
); |
37
|
|
|
$response = ApiHelper::getResponse($request, $api); |
38
|
|
|
|
39
|
|
|
return new JobInfoDto($response->getBody()->getContents()); |
40
|
|
|
} |
41
|
|
|
|
42
|
|
|
/** |
43
|
|
|
* @param ApiSalesforce $api |
44
|
|
|
* @param JobInfoDto $job |
45
|
|
|
* |
46
|
|
|
* @return JobInfoDto |
47
|
|
|
* @throws \Exception |
48
|
|
|
*/ |
49
|
|
|
public static function detail(ApiSalesforce $api, JobInfoDto $job) |
50
|
|
|
{ |
51
|
|
|
$version = $api->getLoginParams()->getApiVersion(); |
52
|
|
|
$request = new Request( |
53
|
|
|
'GET', |
54
|
|
|
sprintf(self::$endpoint, $api->getSession()->getInstance(), $version) . '/' . $job->getId(), |
55
|
|
|
[ |
56
|
|
|
'Content-Type' => 'application/json; charset=UTF8', |
57
|
|
|
'X-SFDC-Session' => $api->getSession()->getSessionId() |
58
|
|
|
] |
59
|
|
|
); |
60
|
|
|
$response = ApiHelper::getResponse($request, $api); |
61
|
|
|
|
62
|
|
|
return new JobInfoDto($response->getBody()->getContents()); |
63
|
|
|
} |
64
|
|
|
|
65
|
|
|
/** |
66
|
|
|
* @param ApiSalesforce $api |
67
|
|
|
* @param JobInfoDto $job |
68
|
|
|
* |
69
|
|
|
* @return JobInfoDto |
70
|
|
|
* @throws \Exception |
71
|
|
|
*/ |
72
|
|
|
public static function close(ApiSalesforce $api, JobInfoDto $job) |
73
|
|
|
{ |
74
|
|
|
$version = $api->getLoginParams()->getApiVersion(); |
75
|
|
|
$request = new Request( |
76
|
|
|
'POST', |
77
|
|
|
sprintf(self::$endpoint, $api->getSession()->getInstance(), $version) . '/' . $job->getId(), |
78
|
|
|
[ |
79
|
|
|
'Content-Type' => 'application/json; charset=UTF8', |
80
|
|
|
'X-SFDC-Session' => $api->getSession()->getSessionId() |
81
|
|
|
], |
82
|
|
|
'{ "state" : "Closed" }' |
83
|
|
|
); |
84
|
|
|
$response = ApiHelper::getResponse($request, $api); |
85
|
|
|
|
86
|
|
|
return new JobInfoDto($response->getBody()->getContents()); |
87
|
|
|
} |
88
|
|
|
} |