-
Notifications
You must be signed in to change notification settings - Fork 5
/
posterous-api.php
233 lines (183 loc) · 6.07 KB
/
posterous-api.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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
<?php /*
Name: Posterous API Library
Description: Object-oriented PHP class for accessing the Posterous API
Author: Calvin Freitas
Version: 0.1.0
Author URI: http://calvinf.com/
License: MIT License (see LICENSE) http://creativecommons.org/licenses/MIT/
Warranties: None
Last Modified: December 07, 2009
Requirements: PHP 5 or higher.
*/
/* Define Static Variables */
define('POSTEROUS_API_LIBRARY_VERSION','1.0');
define('POSTEROUS_API_LIBRARY_RELEASE_DATE','December 07, 2009');
define('POSTEROUS_API_LIBRARY_URL','http://calvinf.com/projects/posterous-api-library-php/');
define('POSTEROUS_API_LIBRARY_AUTHOR_NAME','Calvin Freitas');
define('POSTEROUS_API_LIBRARY_AUTHOR_URL','http://calvinf.com/');
define('POSTEROUS_API_LIBRARY_AUTHOR_EMAIL','[email protected]');
define('POSTEROUS_API_URL', 'http://posterous.com/api/');
// ensure Curl extension installed
if(!extension_loaded("curl")) {
throw(new Exception("The Curl extension for PHP is required for PosterousAPI to work."));
}
/* Useful to catch this exception separately from standard PHP Exceptions */
class PosterousException extends Exception {}
/* This class contains functions for calling the Posterous API */
class PosterousAPI {
private $user;
private $pass;
function __construct($user = NULL, $pass = NULL) {
$this->user = $user;
$this->pass = $pass;
}
/* Reading Methods - http://posterous.com/api/reading */
function getsites() {
$api_method = 'getsites';
$xml = $this->_call( $api_method );
return $xml;
}
function readposts($args) {
$api_method = 'readposts';
$valid_args = array('hostname','site_id','num_posts','page','tag');
$method_args = $this->_validate($args, $valid_args);
$xml = $this->_call( $api_method, $method_args );
return $xml;
}
function gettags($args) {
$api_method = 'gettags';
$valid_args = array('hostname','site_id');
$method_args = $this->_validate($args, $valid_args);
$xml = $this->_call( $api_method, $method_args );
return $xml;
}
/* Posting Methods - http://posterous.com/api/posting */
function newpost($args) {
$api_method = 'newpost';
if (!$this->_auth()) {
throw new PosterousException('Posterous API call "' . $api_method . '" requires authentication.');
}
$valid_args = array('site_id','media','title','body','autopost','private','date','tags','source','sourceLink');
$method_args = $this->_validate($args, $valid_args);
$xml = $this->_call( $api_method, $method_args );
return $xml;
}
function updatepost($args) {
$api_method = 'updatepost';
if (!$this->_auth()) {
throw new PosterousException('Posterous API call "' . $api_method . '" requires authentication.');
}
$valid_args = array('post_id','media','title','body');
$method_args = $this->_validate($args, $valid_args);
$xml = $this->_call( $api_method, $method_args );
return $xml;
}
function newcomment($args) {
$api_method = 'newcomment';
$valid_args = array('post_id','comment','name','email','date');
$method_args = $this->_validate($args, $valid_args);
$xml = $this->_call( $api_method, $method_args );
return $xml;
}
/* Post.ly Methods - http://posterous.com/api/postly */
function getpost($args) {
$api_method = 'getpost';
$valid_args = array('id');
$method_args = $this->_validate($args, $valid_args);
$xml = $this->_call( $api_method, $method_args );
return $xml;
}
/* Twitter Methods - http://posterous.com/api/twitter */
function upload() {
$api_method = 'upload';
$valid_args = array('username','password','media','message','body','source','sourceLink');
$method_args = $this->_validate( $args, $method_args );
$xml = $this->_call( $api_method, $method_args );
return $xml;
}
function uploadAndPost() {
$api_method = 'uploadAndPost';
$valid_args = array('username','password','media','message','body','source','sourceLink');
$method_args = $this->_validate( $args, $method_args );
$xml = $this->_call( $api_method, $method_args );
return $xml;
}
/* Helper Functions */
private function _call($api_method, $method_args = NULL) {
$method_url = POSTEROUS_API_URL . $api_method;
$postfields = '';
if ( is_array($method_args) && !empty($method_args) ) {
foreach ($method_args as $key => $value) {
$postfields .= "$key=" . urlencode($value) . '&';
}
$postfields = substr($postfields, 0, -1);
}
$user = $this->user();
$pass = $this->pass();
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $method_url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
if (isset($user) && isset($pass) && $user != '' && $pass != '') {
curl_setopt($ch, CURLOPT_USERPWD, $user . ':' . $pass);
}
curl_setopt($ch, CURLOPT_POST, 1);
if ($postfields != '') {
curl_setopt($ch, CURLOPT_POSTFIELDS, $postfields);
}
$data = curl_exec($ch);
//$response_code = curl_getinfo($curl, CURLINFO_HTTP_CODE);
curl_close($ch);
$xml = '';
try {
$xml = new SimpleXMLElement($data);
$response_status = $xml['stat'];
if ($response_status == 'ok') {
return $xml;
}
elseif ($response_status == 'fail') {
throw new PosterousException('Error Code ' . $xml->err['code'] . ': ' . $xml->err['msg']);
}
else {
throw new PosterousException('Error: Invalid Posterous response status.');
}
}
catch (Exception $e) {
throw $e;
}
}
private function _validate($args, $valid_args) {
$method_args = array();
foreach($args as $key => $value) {
if( in_array($key, $valid_args) ) {
$method_args[$key] = $value;
}
}
return $method_args;
}
private function _auth() {
//checks if object has user & password, does not verify w/ Posterous
if (isset($user) && isset($pass) && $user != '' && $pass != '') {
return TRUE;
}
else {
return FALSE;
}
}
/* Getters & Setters */
function user($user = NULL) {
if ($user) {
$this->user = $user;
}
return $this->user;
}
function pass($pass = NULL) {
if ($pass) {
$this->pass = $pass;
}
return $this->pass;
}
}
?>