forked from HubSpot/haPiHP
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclass.workflows.php
173 lines (157 loc) · 4.4 KB
/
class.workflows.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
<?php
/**
* Copyright 2013 HubSpot, Inc.
*
* Licensed under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the License for the specific
* language governing permissions and limitations under the
* License.
*/
require_once('class.baseclient.php');
class HubSpot_Workflows extends HubSpot_BaseClient{
protected $API_PATH = 'automation';
protected $API_VERSION = 'v2';
/**
* Get all Workflows
*
*
*
* @return JSON objects for all workflows
*
* @throws HubSpot_Exception
**/
public function get_all_workflows(){
$endpoint = 'workflows';
try{
return json_decode($this->execute_get_request($this->get_request_url($endpoint,null)));
}
catch(HubSpot_Exception $e){
throw new HubSpot_Exception('Unable to get workflows: '.$e);
}
}
/**
* Get Workflow by ID
*
*@param id: Unique ID for Workflow
*
* @return JSON object for requested Workflow
*
* @throws HubSpot_Exception
**/
public function get_workflow_by_ID($id){
$endpoint = 'workflows/'.$id;
try{
return json_decode($this->execute_get_request($this->get_request_url($endpoint,null)));
}
catch(HubSpot_Exception $e){
throw new HubSpot_Exception('Unable to get workflow: '.$e);
}
}
/**
* Enroll Contact in Workflow
*
*@param wfID: Unique ID for workflow
* email: Email address of Contact
*
* @return Response body from HTTP POST request
*
* @throws HubSpot_Exception
**/
public function enroll_contact_in_workflow($wfID, $email){
$endpoint = 'workflows/'.$wfID.'/enrollments/contacts/'.$email;
try{
return $this->execute_post_request($this->get_request_url($endpoint,null),null);
}
catch(HubSpot_Exception $e){
print_r('Unable to enroll contact: '.$e);
}
}
/**
* Unenroll Contact from Workflow
*
*@param wfID: Unique ID for workflow
* email: Email address of Contact
*
* @return Response body from HTTP POST request
*
* @throws HubSpot_Exception
**/
public function unenroll_contact_from_workflow($wfID, $email){
$endpoint = 'workflows/'.$wfID.'/enrollments/contacts/'.$email;
try {
return $this->execute_delete_request($this->get_request_url($endpoint,null),null);
} catch (HubSpot_Exception $e) {
print_r('Unable to unenroll contact: '.$e);
}
}
/**
* Get current Workflow enrollments from Contact vid
*
*@param vid: Unique ID for Contact
*
* @return Response body from HTTP GET request
*
* @throws HubSpot_Exception
**/
public function get_current_enrollments($vid){
$endpoint = 'workflows/enrollments/contacts/'.$vid;
try{
return json_decode($this->execute_get_request($this->get_request_url($endpoint,null)));
}
catch(HubSpot_Exception $e){
throw new HubSpot_Exception('Unable get enrollments for contact: '.$e);
}
}
/**
* Get log events for Contact in given Workflow
*
*@param wfID: Unique ID for Workflow
* vid: Unique ID for contact
* params: offset: timestamp from which results should start
* limitDate: timstamp for which events should not be past
*
* @return Response body from HTTP GET request
*
* @throws HubSpot_Exception
**/
public function get_log_events($wfID, $vid, $params){
$endpoint = 'workflows/'.$wfID.'/logevents/contacts/'.$vid.'/past';
try{
return json_decode($this->execute_get_request($this->get_request_url($endpoint,$params)));
}
catch(HubSpot_Exception $e){
throw new HubSpot_Exception('Unable get log events for contact: '.$e);
}
}
/**
* Get upcoming(scheduled) events for Contact in given Workflow
*
*@param wfID: Unique ID for Workflow
* vid: Unique ID for contact
* params: offset: timestamp from which results should start
* limitDate: timstamp for which events should not be past
*
* @return Response body from HTTP GET request
*
* @throws HubSpot_Exception
**/
public function get_upcoming_events($wfID, $vid, $params){
$endpoint = 'workflows/'.$wfID.'/logevents/contacts/'.$vid.'/upcoming';
try{
return json_decode($this->execute_get_request($this->get_request_url($endpoint,$params)));
}
catch(HubSpot_Exception $e){
throw new HubSpot_Exception('Unable get upcoming events for contact: '.$e);
}
}
}
?>