forked from HubSpot/haPiHP
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclass.socialmedia.php
158 lines (136 loc) · 3.68 KB
/
class.socialmedia.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
<?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_SocialMedia extends HubSpot_Baseclient{
protected $API_PATH = 'broadcast';
protected $API_VERSION = 'v1';
/**
* Get Publishing Channels
*
*
*
*@return returns objects for each publishing channel
*
*@throws HubSpot_Exception
**/
public function get_publishing_channels(){
$endpoint = 'channels/setting/publish/current';
try{
return json_decode($this->execute_get_request($this->get_request_url($endpoint,null)));
}
catch(HubSpot_Exception $e){
print_r('Unable to retrieve channels: '.$e);
}
}
/**
* Get specific Publishing Channel
*
*@param guid: Unique ID for the channel
*
*@return returns object for requested publishing channel
*
*@throws HubSpot_Exception
**/
public function get_publishing_channel($guid){
$endpoint = 'channels/'.$guid;
try{
return json_decode($this->execute_get_request($this->get_request_url($endpoint,null)));
}
catch(HubSpot_Exception $e){
print_r('Unable to retrieve channel: '.$e);
}
}
/**
* Get Broadcast Messages
*
*@param params: Optional query parameters to search for specific types of broadcasts.
* This includes status, since, channelGuid, count
*
*@return returns objects for requested broadcasts
*
*@throws HubSpot_Exception
**/
public function get_broadcasts($params){
$endpoint = 'broadcasts';
try{
return json_decode($this->execute_get_request($this->get_request_url($endpoint,$params)));
}
catch(HubSpot_Exception $e){
print_r('Unable to retrieve broadcasts: '.$e);
}
}
/**
* Get specific Broadcast Message
*
*@param guid: Unique ID for the broadcast
*
*@return returns object for requested broadcast message
*
*@throws HubSpot_Exception
**/
public function get_broadcast($guid){
$endpoint = 'broadcasts/'.$guid;
try{
return json_decode($this->execute_get_request($this->get_request_url($endpoint,null)));
}
catch(HubSpot_Exception $e){
print_r('Unable to retrieve broadcast: '.$e);
}
}
/**
* Create a Broadcast Message
*
* @param broadcast: Array containing the info for the message. This includes:
* channelGuid: the unique ID for the channel to post to
* triggerAt: Timestamp at which the broadcast should be sent
* content: An array with the content of the message
*
*@return returns object for the created broadcast message
*
*@throws HubSpot_Exception
**/
public function create_broadcast($broadcast){
$endpoint = 'broadcasts';
try{
return json_decode($this->execute_JSON_post_request($this->get_request_url($endpoint,null),json_encode($broadcast)));
}
catch(HubSpot_Exception $e){
print_r('Unable to create broadcast: '.$e);
}
}
/**
* Cancel specific Broadcast Message
*
*@param guid: Unique ID for the broadcast
*
*@return returns response body for HTTP DELETE request
*
*@throws HubSpot_Exception
**/
public function cancel_broadcast($guid){
$endpoint = 'broadcasts/'.$guid;
try{
return json_decode($this->execute_delete_request($this->get_request_url($endpoint,null),null));
}
catch(HubSpot_Exception $e){
print_r('Unable to delete broadcast: '.$e);
}
}
}
?>