disable posterous

This commit is contained in:
friendica 2012-05-03 02:06:04 -07:00
parent e536b2593c
commit 9cbd26dcc9
2 changed files with 7 additions and 1 deletions

Binary file not shown.

View file

@ -138,6 +138,10 @@ function posterous_post_local(&$a,&$b) {
function posterous_send(&$a,&$b) { function posterous_send(&$a,&$b) {
logger('posterous_send: invoked');
logger('posterous: plugin disabled. API endpoint no longer responds.');
return;
if($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited'])) if($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited']))
return; return;
@ -155,7 +159,7 @@ function posterous_send(&$a,&$b) {
if($pstr_username && $pstr_password && $pstr_blog) { if($pstr_username && $pstr_password && $pstr_blog) {
require_once('include/bbcode.php'); require_once('include/bbcode.php');
require_once('posterous-api.php'); require_once('addon/posterous/posterous-api.php');
$tag_arr = array(); $tag_arr = array();
$tags = ''; $tags = '';
$x = preg_match_all('/\#\[(.*?)\](.*?)\[/',$b['tag'],$matches,PREG_SET_ORDER); $x = preg_match_all('/\#\[(.*?)\](.*?)\[/',$b['tag'],$matches,PREG_SET_ORDER);
@ -179,6 +183,8 @@ function posterous_send(&$a,&$b) {
'body' => bbcode($b['body']) 'body' => bbcode($b['body'])
); );
logger('posterous: params: ' . print_r($params,true), LOGGER_DATA);
$api = new PosterousAPI($pstr_username,$pstr_password); $api = new PosterousAPI($pstr_username,$pstr_password);
$result = $api->newpost($params); $result = $api->newpost($params);