X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=dwpost%2Fdwpost.php;h=a46f55b2a3d30c817ce6134349aef882af5c70a8;hb=bfd8e37fb89c74bc1ba588845c8d7a7e817e0544;hp=94d7937c8553b699af87b639d9f2215ed2c18108;hpb=0afd633346b517894ff8e92c705bd5d052dd06a2;p=friendica-addons.git diff --git a/dwpost/dwpost.php b/dwpost/dwpost.php index 94d7937c..a46f55b2 100644 --- a/dwpost/dwpost.php +++ b/dwpost/dwpost.php @@ -7,8 +7,13 @@ * Author: Michael Johnston * Author: Cat Gray */ + +use Friendica\Content\Text\BBCode; use Friendica\Core\Addon; +use Friendica\Core\L10n; use Friendica\Core\PConfig; +use Friendica\Util\DateTimeFormat; +use Friendica\Util\Network; function dwpost_install() { Addon::registerHook('post_local', 'addon/dwpost/dwpost.php', 'dwpost_post_local'); @@ -37,7 +42,7 @@ function dwpost_jot_nets(&$a,&$b) { $dw_defpost = PConfig::get(local_user(),'dwpost','post_by_default'); $selected = ((intval($dw_defpost) == 1) ? ' checked="checked" ' : ''); $b .= '
' - . t('Post to Dreamwidth') . '
'; + . L10n::t('Post to Dreamwidth') . ''; } } @@ -68,36 +73,36 @@ function dwpost_settings(&$a,&$s) { /* Add some HTML to the existing form */ $s .= ''; - $s .= '

'. t("Dreamwidth Export").'

'; + $s .= '

'. L10n::t("Dreamwidth Export").'

'; $s .= '
'; $s .= ''; + $s .= '
'; } @@ -174,16 +179,12 @@ function dwpost_send(&$a,&$b) { $dw_blog = 'http://www.dreamwidth.org/interface/xmlrpc'; if($dw_username && $dw_password && $dw_blog) { - - require_once('include/bbcode.php'); - require_once('include/datetime.php'); - $title = $b['title']; - $post = bbcode($b['body']); + $post = BBCode::convert($b['body']); $post = xmlify($post); $tags = dwpost_get_tags($b['tag']); - $date = datetime_convert('UTC',$tz,$b['created'],'Y-m-d H:i:s'); + $date = DateTimeFormat::convert($b['created'], $tz); $year = intval(substr($date,0,4)); $mon = intval(substr($date,5,2)); $day = intval(substr($date,8,2)); @@ -219,10 +220,10 @@ EOT; logger('dwpost: data: ' . $xml, LOGGER_DATA); - if($dw_blog !== 'test') - $x = post_url($dw_blog,$xml,["Content-Type: text/xml"]); + if($dw_blog !== 'test') { + $x = Network::post($dw_blog, $xml, ["Content-Type: text/xml"]); + } logger('posted to dreamwidth: ' . ($x) ? $x : '', LOGGER_DEBUG); - } }