X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=diaspora%2Fdiaspora.php;h=49a9cfc471bca2e57bbd5e9366958fd1b855f8ab;hb=7e516b541dd92691ad490e1fb6efae123599cd85;hp=0d0d2744070f544f294d6761f56041b72ead9773;hpb=96c41e56233765571870b56081efc366655bead4;p=friendica-addons.git diff --git a/diaspora/diaspora.php b/diaspora/diaspora.php index 0d0d2744..49a9cfc4 100644 --- a/diaspora/diaspora.php +++ b/diaspora/diaspora.php @@ -7,11 +7,13 @@ * Author: Michael Vogel */ -require_once("addon/diaspora/Diaspora_Connection.php"); +require_once 'addon/diaspora/Diaspora_Connection.php'; use Friendica\Core\Addon; +use Friendica\Core\L10n; use Friendica\Core\PConfig; use Friendica\Database\DBM; +use Friendica\Model\Queue; function diaspora_install() { Addon::registerHook('post_local', 'addon/diaspora/diaspora.php', 'diaspora_post_local'); @@ -40,7 +42,7 @@ function diaspora_jot_nets(&$a,&$b) { $diaspora_defpost = PConfig::get(local_user(),'diaspora','post_by_default'); $selected = ((intval($diaspora_defpost) == 1) ? ' checked="checked" ' : ''); $b .= '
' - . t('Post to Diaspora') . '
'; + . L10n::t('Post to Diaspora') . ''; } } @@ -53,8 +55,6 @@ function diaspora_queue_hook(&$a,&$b) { if(! count($qi)) return; - require_once('include/queue_fn.php'); - foreach($qi as $x) { if($x['network'] !== NETWORK_DIASPORA2) continue; @@ -94,20 +94,21 @@ function diaspora_queue_hook(&$a,&$b) { $conn->provider = $hostname; $conn->postStatusMessage($post, $aspect); - logger('diaspora_queue: send '.$userdata['uid'].' success', LOGGER_DEBUG); + logger('diaspora_queue: send '.$userdata['uid'].' success', LOGGER_DEBUG); - $success = true; + $success = true; - remove_queue_item($x['id']); + Queue::removeItem($x['id']); } catch (Exception $e) { logger("diaspora_queue: Send ".$userdata['uid']." failed: ".$e->getMessage(), LOGGER_DEBUG); } - } else + } else { logger('diaspora_queue: send '.$userdata['uid'].' missing username or password', LOGGER_DEBUG); + } if (!$success) { logger('diaspora_queue: delayed'); - update_queue_time($x['id']); + Queue::updateTime($x['id']); } } } @@ -139,9 +140,9 @@ function diaspora_settings(&$a,&$s) { $r = q("SELECT `addr` FROM `contact` WHERE `self` AND `uid` = %d", intval(local_user())); if (DBM::is_result($r)) { - $status = sprintf(t("Please remember: You can always be reached from Diaspora with your Friendica handle %s. "), $r[0]['addr']); - $status .= t('This connector is only meant if you still want to use your old Diaspora account for some time. '); - $status .= sprintf(t('However, it is preferred that you tell your Diaspora contacts the new handle %s instead.'), $r[0]['addr']); + $status = L10n::t("Please remember: You can always be reached from Diaspora with your Friendica handle %s. ", $r[0]['addr']); + $status .= L10n::t('This connector is only meant if you still want to use your old Diaspora account for some time. '); + $status .= L10n::t('However, it is preferred that you tell your Diaspora contacts the new handle %s instead.', $r[0]['addr']); } $aspects = false; @@ -151,18 +152,18 @@ function diaspora_settings(&$a,&$s) { $conn->logIn(); $aspects = $conn->getAspects(); if (!$aspects) { - $status = t("Can't login to your Diaspora account. Please check handle (in the format user@domain.tld) and password."); + $status = L10n::t("Can't login to your Diaspora account. Please check handle (in the format user@domain.tld) and password."); } } /* Add some HTML to the existing form */ $s .= ''; - $s .= '

'. t('Diaspora Export').'

'; + $s .= '

'. L10n::t('Diaspora Export').'

'; $s .= '
'; $s .= '
'; /* provide a submit button */ - $s .= '
'; + $s .= '
'; } @@ -337,7 +338,7 @@ function diaspora_send(&$a,&$b) { } while ($oldbody != $body); // convert to markdown - $body = bb2diaspora($body, false, true); + $body = bb2diaspora($body); // Adding the title if(strlen($title)) @@ -366,9 +367,9 @@ function diaspora_send(&$a,&$b) { $a->contact = $r[0]["id"]; $s = serialize(['url' => $url, 'item' => $b['id'], 'post' => $body]); - require_once('include/queue_fn.php'); - add_to_queue($a->contact,NETWORK_DIASPORA2,$s); - notice(t('Diaspora post failed. Queued for retry.').EOL); + + Queue::add($a->contact, NETWORK_DIASPORA2, $s); + notice(L10n::t('Diaspora post failed. Queued for retry.').EOL); } } }