Cleaned up
parent
6c84c9dfc9
commit
e895b55f6d
|
@ -33,7 +33,7 @@ use Friendica\Util\XML;
|
||||||
|
|
||||||
require 'addon/pumpio/oauth/http.php';
|
require 'addon/pumpio/oauth/http.php';
|
||||||
require 'addon/pumpio/oauth/oauth_client.php';
|
require 'addon/pumpio/oauth/oauth_client.php';
|
||||||
require_once "mod/share.php";
|
require_once 'mod/share.php';
|
||||||
|
|
||||||
define('PUMPIO_DEFAULT_POLL_INTERVAL', 5); // given in minutes
|
define('PUMPIO_DEFAULT_POLL_INTERVAL', 5); // given in minutes
|
||||||
|
|
||||||
|
@ -64,9 +64,10 @@ function pumpio_content(App $a)
|
||||||
|
|
||||||
if (isset(DI::args()->getArgv()[1])) {
|
if (isset(DI::args()->getArgv()[1])) {
|
||||||
switch (DI::args()->getArgv()[1]) {
|
switch (DI::args()->getArgv()[1]) {
|
||||||
case "connect":
|
case 'connect':
|
||||||
$o = pumpio_connect($a);
|
$o = pumpio_connect($a);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
$o = print_r(DI::args()->getArgv(), true);
|
$o = print_r(DI::args()->getArgv(), true);
|
||||||
break;
|
break;
|
||||||
|
@ -77,53 +78,54 @@ function pumpio_content(App $a)
|
||||||
return $o;
|
return $o;
|
||||||
}
|
}
|
||||||
|
|
||||||
function pumpio_check_item_notification(App $a, &$notification_data)
|
function pumpio_check_item_notification(App $a, array &$notification_data)
|
||||||
{
|
{
|
||||||
$hostname = DI::pConfig()->get($notification_data["uid"], 'pumpio', 'host');
|
$hostname = DI::pConfig()->get($notification_data['uid'], 'pumpio', 'host');
|
||||||
$username = DI::pConfig()->get($notification_data["uid"], "pumpio", "user");
|
$username = DI::pConfig()->get($notification_data['uid'], 'pumpio', 'user');
|
||||||
|
|
||||||
$notification_data["profiles"][] = "https://".$hostname."/".$username;
|
$notification_data['profiles'][] = 'https://' . $hostname . '/' . $username;
|
||||||
}
|
}
|
||||||
|
|
||||||
function pumpio_registerclient(App $a, $host)
|
function pumpio_registerclient(App $a, $host)
|
||||||
{
|
{
|
||||||
$url = "https://".$host."/api/client/register";
|
$url = 'https://' . $host . '/api/client/register';
|
||||||
|
|
||||||
$params = [];
|
$params = [];
|
||||||
|
|
||||||
$application_name = DI::config()->get('pumpio', 'application_name');
|
$application_name = DI::config()->get('pumpio', 'application_name');
|
||||||
|
|
||||||
if ($application_name == "") {
|
if ($application_name == '') {
|
||||||
$application_name = DI::baseUrl()->getHostname();
|
$application_name = DI::baseUrl()->getHostname();
|
||||||
}
|
}
|
||||||
|
|
||||||
$adminlist = explode(",", str_replace(" ", "", DI::config()->get('config', 'admin_email')));
|
$adminlist = explode(',', str_replace(' ', '', DI::config()->get('config', 'admin_email')));
|
||||||
|
|
||||||
$params["type"] = "client_associate";
|
$params['type'] = 'client_associate';
|
||||||
$params["contacts"] = $adminlist[0];
|
$params['contacts'] = $adminlist[0];
|
||||||
$params["application_type"] = "native";
|
$params['application_type'] = 'native';
|
||||||
$params["application_name"] = $application_name;
|
$params['application_name'] = $application_name;
|
||||||
$params["logo_url"] = DI::baseUrl()->get()."/images/friendica-256.png";
|
$params['logo_url'] = DI::baseUrl()->get() . '/images/friendica-256.png';
|
||||||
$params["redirect_uris"] = DI::baseUrl()->get()."/pumpio/connect";
|
$params['redirect_uris'] = DI::baseUrl()->get() . '/pumpio/connect';
|
||||||
|
|
||||||
Logger::info("pumpio_registerclient: ".$url." parameters ".print_r($params, true));
|
Logger::info('pumpio_registerclient: ' . $url . ' parameters', $params);
|
||||||
|
|
||||||
|
// @TODO Rewrite this to our own HTTP client
|
||||||
$ch = curl_init($url);
|
$ch = curl_init($url);
|
||||||
curl_setopt($ch, CURLOPT_HEADER, false);
|
curl_setopt($ch, CURLOPT_HEADER, false);
|
||||||
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
||||||
curl_setopt($ch, CURLOPT_POST,1);
|
curl_setopt($ch, CURLOPT_POST,1);
|
||||||
curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
|
curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
|
||||||
curl_setopt($ch, CURLOPT_USERAGENT, "Friendica");
|
curl_setopt($ch, CURLOPT_USERAGENT, 'Friendica');
|
||||||
|
|
||||||
$s = curl_exec($ch);
|
$s = curl_exec($ch);
|
||||||
$curl_info = curl_getinfo($ch);
|
$curl_info = curl_getinfo($ch);
|
||||||
|
|
||||||
if ($curl_info["http_code"] == "200") {
|
if ($curl_info['http_code'] == '200') {
|
||||||
$values = json_decode($s);
|
$values = json_decode($s);
|
||||||
Logger::info("pumpio_registerclient: success ".print_r($values, true));
|
Logger::info('pumpio_registerclient: success ', $values);
|
||||||
return $values;
|
return $values;
|
||||||
}
|
}
|
||||||
Logger::info("pumpio_registerclient: failed: ".print_r($curl_info, true));
|
Logger::info('pumpio_registerclient: failed: ', $curl_info);
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -135,8 +137,8 @@ function pumpio_connect(App $a)
|
||||||
$consumer_secret = DI::pConfig()->get(local_user(), 'pumpio', 'consumer_secret');
|
$consumer_secret = DI::pConfig()->get(local_user(), 'pumpio', 'consumer_secret');
|
||||||
$hostname = DI::pConfig()->get(local_user(), 'pumpio', 'host');
|
$hostname = DI::pConfig()->get(local_user(), 'pumpio', 'host');
|
||||||
|
|
||||||
if ((($consumer_key == "") || ($consumer_secret == "")) && ($hostname != "")) {
|
if ((($consumer_key == '') || ($consumer_secret == '')) && ($hostname != '')) {
|
||||||
Logger::notice("pumpio_connect: register client");
|
Logger::notice('pumpio_connect: register client');
|
||||||
$clientdata = pumpio_registerclient($a, $hostname);
|
$clientdata = pumpio_registerclient($a, $hostname);
|
||||||
DI::pConfig()->set(local_user(), 'pumpio', 'consumer_key', $clientdata->client_id);
|
DI::pConfig()->set(local_user(), 'pumpio', 'consumer_key', $clientdata->client_id);
|
||||||
DI::pConfig()->set(local_user(), 'pumpio', 'consumer_secret', $clientdata->client_secret);
|
DI::pConfig()->set(local_user(), 'pumpio', 'consumer_secret', $clientdata->client_secret);
|
||||||
|
@ -144,17 +146,17 @@ function pumpio_connect(App $a)
|
||||||
$consumer_key = DI::pConfig()->get(local_user(), 'pumpio', 'consumer_key');
|
$consumer_key = DI::pConfig()->get(local_user(), 'pumpio', 'consumer_key');
|
||||||
$consumer_secret = DI::pConfig()->get(local_user(), 'pumpio', 'consumer_secret');
|
$consumer_secret = DI::pConfig()->get(local_user(), 'pumpio', 'consumer_secret');
|
||||||
|
|
||||||
Logger::info("pumpio_connect: ckey: ".$consumer_key." csecrect: ".$consumer_secret);
|
Logger::info('pumpio_connect: ckey: ' . $consumer_key . ' csecrect: ' . $consumer_secret);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (($consumer_key == "") || ($consumer_secret == "")) {
|
if (($consumer_key == '') || ($consumer_secret == '')) {
|
||||||
Logger::notice("pumpio_connect: ".sprintf("Unable to register the client at the pump.io server '%s'.", $hostname));
|
Logger::notice('pumpio_connect: '.sprintf('Unable to register the client at the pump.io server "%s".', $hostname));
|
||||||
|
|
||||||
return DI::l10n()->t("Unable to register the client at the pump.io server '%s'.", $hostname);
|
return DI::l10n()->t("Unable to register the client at the pump.io server '%s'.", $hostname);
|
||||||
}
|
}
|
||||||
|
|
||||||
// The callback URL is the script that gets called after the user authenticates with pumpio
|
// The callback URL is the script that gets called after the user authenticates with pumpio
|
||||||
$callback_url = DI::baseUrl()->get()."/pumpio/connect";
|
$callback_url = DI::baseUrl()->get() . '/pumpio/connect';
|
||||||
|
|
||||||
// Let's begin. First we need a Request Token. The request token is required to send the user
|
// Let's begin. First we need a Request Token. The request token is required to send the user
|
||||||
// to pumpio's login page.
|
// to pumpio's login page.
|
||||||
|
@ -177,9 +179,9 @@ function pumpio_connect(App $a)
|
||||||
if (($success = $client->Initialize())) {
|
if (($success = $client->Initialize())) {
|
||||||
if (($success = $client->Process())) {
|
if (($success = $client->Process())) {
|
||||||
if (strlen($client->access_token)) {
|
if (strlen($client->access_token)) {
|
||||||
Logger::info("pumpio_connect: otoken: ".$client->access_token." osecrect: ".$client->access_token_secret);
|
Logger::info('pumpio_connect: otoken: ' . $client->access_token . ', osecrect: ' . $client->access_token_secret);
|
||||||
DI::pConfig()->set(local_user(), "pumpio", "oauth_token", $client->access_token);
|
DI::pConfig()->set(local_user(), 'pumpio', 'oauth_token', $client->access_token);
|
||||||
DI::pConfig()->set(local_user(), "pumpio", "oauth_token_secret", $client->access_token_secret);
|
DI::pConfig()->set(local_user(), 'pumpio', 'oauth_token_secret', $client->access_token_secret);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$success = $client->Finalize($success);
|
$success = $client->Finalize($success);
|
||||||
|
@ -189,11 +191,11 @@ function pumpio_connect(App $a)
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($success) {
|
if ($success) {
|
||||||
Logger::notice("pumpio_connect: authenticated");
|
Logger::notice('pumpio_connect: authenticated');
|
||||||
$o = DI::l10n()->t("You are now authenticated to pumpio.");
|
$o = DI::l10n()->t('You are now authenticated to pumpio.');
|
||||||
$o .= '<br /><a href="'.DI::baseUrl()->get().'/settings/connectors">'.DI::l10n()->t("return to the connector page").'</a>';
|
$o .= '<br /><a href="' . DI::baseUrl()->get() . '/settings/connectors">' . DI::l10n()->t('return to the connector page') . '</a>';
|
||||||
} else {
|
} else {
|
||||||
Logger::notice("pumpio_connect: could not connect");
|
Logger::notice('pumpio_connect: could not connect');
|
||||||
$o = 'Could not connect to pumpio. Refresh the page or try again later.';
|
$o = 'Could not connect to pumpio. Refresh the page or try again later.';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -288,8 +290,8 @@ function pumpio_settings_post(App $a, array &$b)
|
||||||
} elseif (!empty($_POST['pumpio-submit'])) {
|
} elseif (!empty($_POST['pumpio-submit'])) {
|
||||||
// filtering the username if it is filled wrong
|
// filtering the username if it is filled wrong
|
||||||
$user = $_POST['pumpio_user'];
|
$user = $_POST['pumpio_user'];
|
||||||
if (strstr($user, "@")) {
|
if (strstr($user, '@')) {
|
||||||
$pos = strpos($user, "@");
|
$pos = strpos($user, '@');
|
||||||
|
|
||||||
if ($pos > 0) {
|
if ($pos > 0) {
|
||||||
$user = substr($user, 0, $pos);
|
$user = substr($user, 0, $pos);
|
||||||
|
@ -299,7 +301,7 @@ function pumpio_settings_post(App $a, array &$b)
|
||||||
// Filtering the hostname if someone is entering it with "http"
|
// Filtering the hostname if someone is entering it with "http"
|
||||||
$host = $_POST['pumpio_host'];
|
$host = $_POST['pumpio_host'];
|
||||||
$host = trim($host);
|
$host = trim($host);
|
||||||
$host = str_replace(["https://", "http://"], ["", ""], $host);
|
$host = str_replace(['https://', 'http://'], ['', ''], $host);
|
||||||
|
|
||||||
DI::pConfig()->set(local_user(), 'pumpio', 'post' , $_POST['pumpio'] ?? false);
|
DI::pConfig()->set(local_user(), 'pumpio', 'post' , $_POST['pumpio'] ?? false);
|
||||||
DI::pConfig()->set(local_user(), 'pumpio', 'import' , $_POST['pumpio_import'] ?? false);
|
DI::pConfig()->set(local_user(), 'pumpio', 'import' , $_POST['pumpio_import'] ?? false);
|
||||||
|
@ -335,7 +337,7 @@ function pumpio_hook_fork(App $a, array &$b)
|
||||||
}
|
}
|
||||||
|
|
||||||
// if post comes from pump.io don't send it back
|
// if post comes from pump.io don't send it back
|
||||||
if ($post['app'] == "pump.io") {
|
if ($post['app'] == 'pump.io') {
|
||||||
$b['execute'] = false;
|
$b['execute'] = false;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -383,11 +385,11 @@ function pumpio_post_local(App $a, array &$b)
|
||||||
|
|
||||||
function pumpio_send(App $a, array &$b)
|
function pumpio_send(App $a, array &$b)
|
||||||
{
|
{
|
||||||
if (!DI::pConfig()->get($b["uid"], 'pumpio', 'import') && ($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited']))) {
|
if (!DI::pConfig()->get($b['uid'], 'pumpio', 'import') && ($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited']))) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Logger::debug("pumpio_send: parameter ".print_r($b, true));
|
Logger::debug('pumpio_send: parameter ', $b);
|
||||||
|
|
||||||
$b['body'] = Post\Media::addAttachmentsToBody($b['uri-id'], $b['body']);
|
$b['body'] = Post\Media::addAttachmentsToBody($b['uri-id'], $b['body']);
|
||||||
|
|
||||||
|
@ -397,7 +399,7 @@ function pumpio_send(App $a, array &$b)
|
||||||
$orig_post = Post::selectFirst([], $condition);
|
$orig_post = Post::selectFirst([], $condition);
|
||||||
|
|
||||||
if (!DBA::isResult($orig_post)) {
|
if (!DBA::isResult($orig_post)) {
|
||||||
Logger::notice("pumpio_send: no pumpio post ".$b["parent"]);
|
Logger::notice('pumpio_send: no pumpio post ' . $b['parent']);
|
||||||
return;
|
return;
|
||||||
} else {
|
} else {
|
||||||
$iscomment = true;
|
$iscomment = true;
|
||||||
|
@ -407,7 +409,7 @@ function pumpio_send(App $a, array &$b)
|
||||||
|
|
||||||
$receiver = pumpio_getreceiver($a, $b);
|
$receiver = pumpio_getreceiver($a, $b);
|
||||||
|
|
||||||
Logger::notice("pumpio_send: receiver ".print_r($receiver, true));
|
Logger::notice('pumpio_send: receiver ', $receiver);
|
||||||
|
|
||||||
if (!count($receiver) && ($b['private'] || !strstr($b['postopts'], 'pumpio'))) {
|
if (!count($receiver) && ($b['private'] || !strstr($b['postopts'], 'pumpio'))) {
|
||||||
return;
|
return;
|
||||||
|
@ -423,9 +425,9 @@ function pumpio_send(App $a, array &$b)
|
||||||
|
|
||||||
if ($b['verb'] == Activity::LIKE) {
|
if ($b['verb'] == Activity::LIKE) {
|
||||||
if ($b['deleted']) {
|
if ($b['deleted']) {
|
||||||
pumpio_action($a, $b["uid"], $b["thr-parent"], "unlike");
|
pumpio_action($a, $b['uid'], $b['thr-parent'], 'unlike');
|
||||||
} else {
|
} else {
|
||||||
pumpio_action($a, $b["uid"], $b["thr-parent"], "like");
|
pumpio_action($a, $b['uid'], $b['thr-parent'], 'like');
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -435,11 +437,11 @@ function pumpio_send(App $a, array &$b)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (($b['verb'] == Activity::POST) && ($b['created'] !== $b['edited']) && !$b['deleted']) {
|
if (($b['verb'] == Activity::POST) && ($b['created'] !== $b['edited']) && !$b['deleted']) {
|
||||||
pumpio_action($a, $b["uid"], $b["uri"], "update", $b["body"]);
|
pumpio_action($a, $b['uid'], $b['uri'], 'update', $b['body']);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (($b['verb'] == Activity::POST) && $b['deleted']) {
|
if (($b['verb'] == Activity::POST) && $b['deleted']) {
|
||||||
pumpio_action($a, $b["uid"], $b["uri"], "delete");
|
pumpio_action($a, $b['uid'], $b['uri'], 'delete');
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($b['deleted'] || ($b['created'] !== $b['edited'])) {
|
if ($b['deleted'] || ($b['created'] !== $b['edited'])) {
|
||||||
|
@ -447,7 +449,7 @@ function pumpio_send(App $a, array &$b)
|
||||||
}
|
}
|
||||||
|
|
||||||
// if post comes from pump.io don't send it back
|
// if post comes from pump.io don't send it back
|
||||||
if ($b['app'] == "pump.io") {
|
if ($b['app'] == 'pump.io') {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -455,14 +457,14 @@ function pumpio_send(App $a, array &$b)
|
||||||
// Support for native shares
|
// Support for native shares
|
||||||
// http://<hostname>/api/<type>/shares?id=<the-object-id>
|
// http://<hostname>/api/<type>/shares?id=<the-object-id>
|
||||||
|
|
||||||
$oauth_token = DI::pConfig()->get($b['uid'], "pumpio", "oauth_token");
|
$oauth_token = DI::pConfig()->get($b['uid'], 'pumpio', 'oauth_token');
|
||||||
$oauth_token_secret = DI::pConfig()->get($b['uid'], "pumpio", "oauth_token_secret");
|
$oauth_token_secret = DI::pConfig()->get($b['uid'], 'pumpio', 'oauth_token_secret');
|
||||||
$consumer_key = DI::pConfig()->get($b['uid'], "pumpio","consumer_key");
|
$consumer_key = DI::pConfig()->get($b['uid'], 'pumpio', 'consumer_key');
|
||||||
$consumer_secret = DI::pConfig()->get($b['uid'], "pumpio","consumer_secret");
|
$consumer_secret = DI::pConfig()->get($b['uid'], 'pumpio', 'consumer_secret');
|
||||||
|
|
||||||
$host = DI::pConfig()->get($b['uid'], "pumpio", "host");
|
$host = DI::pConfig()->get($b['uid'], 'pumpio', 'host');
|
||||||
$user = DI::pConfig()->get($b['uid'], "pumpio", "user");
|
$user = DI::pConfig()->get($b['uid'], 'pumpio', 'user');
|
||||||
$public = DI::pConfig()->get($b['uid'], "pumpio", "public");
|
$public = DI::pConfig()->get($b['uid'], 'pumpio', 'public');
|
||||||
|
|
||||||
if ($oauth_token && $oauth_token_secret) {
|
if ($oauth_token && $oauth_token_secret) {
|
||||||
$title = trim($b['title']);
|
$title = trim($b['title']);
|
||||||
|
@ -471,47 +473,49 @@ function pumpio_send(App $a, array &$b)
|
||||||
|
|
||||||
$params = [];
|
$params = [];
|
||||||
|
|
||||||
$params["verb"] = "post";
|
$params['verb'] = 'post';
|
||||||
|
|
||||||
if (!$iscomment) {
|
if (!$iscomment) {
|
||||||
$params["object"] = [
|
$params['object'] = [
|
||||||
'objectType' => "note",
|
'objectType' => 'note',
|
||||||
'content' => $content];
|
'content' => $content];
|
||||||
|
|
||||||
if (!empty($title)) {
|
if (!empty($title)) {
|
||||||
$params["object"]["displayName"] = $title;
|
$params['object']['displayName'] = $title;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!empty($receiver["to"])) {
|
if (!empty($receiver['to'])) {
|
||||||
$params["to"] = $receiver["to"];
|
$params['to'] = $receiver['to'];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!empty($receiver["bto"])) {
|
if (!empty($receiver['bto'])) {
|
||||||
$params["bto"] = $receiver["bto"];
|
$params['bto'] = $receiver['bto'];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!empty($receiver["cc"])) {
|
if (!empty($receiver['cc'])) {
|
||||||
$params["cc"] = $receiver["cc"];
|
$params['cc'] = $receiver['cc'];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!empty($receiver["bcc"])) {
|
if (!empty($receiver['bcc'])) {
|
||||||
$params["bcc"] = $receiver["bcc"];
|
$params['bcc'] = $receiver['bcc'];
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$inReplyTo = ["id" => $orig_post["uri"],
|
$inReplyTo = [
|
||||||
"objectType" => "note"];
|
'id' => $orig_post['uri'],
|
||||||
|
'objectType' => 'note',
|
||||||
|
];
|
||||||
|
|
||||||
if (($orig_post["object-type"] != "") && (strstr($orig_post["object-type"], ActivityNamespace::ACTIVITY_SCHEMA))) {
|
if (($orig_post['object-type'] != '') && (strstr($orig_post['object-type'], ActivityNamespace::ACTIVITY_SCHEMA))) {
|
||||||
$inReplyTo["objectType"] = str_replace(ActivityNamespace::ACTIVITY_SCHEMA, '', $orig_post["object-type"]);
|
$inReplyTo['objectType'] = str_replace(ActivityNamespace::ACTIVITY_SCHEMA, '', $orig_post['object-type']);
|
||||||
}
|
}
|
||||||
|
|
||||||
$params["object"] = [
|
$params['object'] = [
|
||||||
'objectType' => "comment",
|
'objectType' => 'comment',
|
||||||
'content' => $content,
|
'content' => $content,
|
||||||
'inReplyTo' => $inReplyTo];
|
'inReplyTo' => $inReplyTo];
|
||||||
|
|
||||||
if ($title != "") {
|
if ($title != '') {
|
||||||
$params["object"]["displayName"] = $title;
|
$params['object']['displayName'] = $title;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -535,13 +539,13 @@ function pumpio_send(App $a, array &$b)
|
||||||
|
|
||||||
if ($success) {
|
if ($success) {
|
||||||
if ($user->generator->displayName) {
|
if ($user->generator->displayName) {
|
||||||
DI::pConfig()->set($b["uid"], "pumpio", "application_name", $user->generator->displayName);
|
DI::pConfig()->set($b['uid'], 'pumpio', 'application_name', $user->generator->displayName);
|
||||||
}
|
}
|
||||||
|
|
||||||
$post_id = $user->object->id;
|
$post_id = $user->object->id;
|
||||||
Logger::notice('pumpio_send ' . $username . ': success ' . $post_id);
|
Logger::notice('pumpio_send ' . $username . ': success ' . $post_id);
|
||||||
if ($post_id && $iscomment) {
|
if ($post_id && $iscomment) {
|
||||||
Logger::notice('pumpio_send '.$username.': Update extid '.$post_id." for post id ".$b['id']);
|
Logger::notice('pumpio_send ' . $username . ': Update extid ' . $post_id . ' for post id ' . $b['id']);
|
||||||
Item::update(['extid' => $post_id], ['id' => $b['id']]);
|
Item::update(['extid' => $post_id], ['id' => $b['id']]);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
@ -551,7 +555,7 @@ function pumpio_send(App $a, array &$b)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function pumpio_action(App $a, $uid, $uri, $action, $content = "")
|
function pumpio_action(App $a, int $uid, string $uri, string $action, string $content = '')
|
||||||
{
|
{
|
||||||
// Don't do likes and other stuff if you don't import the timeline
|
// Don't do likes and other stuff if you don't import the timeline
|
||||||
if (!DI::pConfig()->get($uid, 'pumpio', 'import')) {
|
if (!DI::pConfig()->get($uid, 'pumpio', 'import')) {
|
||||||
|
@ -563,7 +567,7 @@ function pumpio_action(App $a, $uid, $uri, $action, $content = "")
|
||||||
$otoken = DI::pConfig()->get($uid, 'pumpio', 'oauth_token');
|
$otoken = DI::pConfig()->get($uid, 'pumpio', 'oauth_token');
|
||||||
$osecret = DI::pConfig()->get($uid, 'pumpio', 'oauth_token_secret');
|
$osecret = DI::pConfig()->get($uid, 'pumpio', 'oauth_token_secret');
|
||||||
$hostname = DI::pConfig()->get($uid, 'pumpio', 'host');
|
$hostname = DI::pConfig()->get($uid, 'pumpio', 'host');
|
||||||
$username = DI::pConfig()->get($uid, "pumpio", "user");
|
$username = DI::pConfig()->get($uid, 'pumpio', 'user');
|
||||||
|
|
||||||
$orig_post = Post::selectFirst([], ['uri' => $uri, 'uid' => $uid]);
|
$orig_post = Post::selectFirst([], ['uri' => $uri, 'uid' => $uid]);
|
||||||
|
|
||||||
|
@ -571,26 +575,28 @@ function pumpio_action(App $a, $uid, $uri, $action, $content = "")
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($orig_post["extid"] && !strstr($orig_post["extid"], "/proxy/")) {
|
if ($orig_post['extid'] && !strstr($orig_post['extid'], '/proxy/')) {
|
||||||
$uri = $orig_post["extid"];
|
$uri = $orig_post['extid'];
|
||||||
} else {
|
} else {
|
||||||
$uri = $orig_post["uri"];
|
$uri = $orig_post['uri'];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (($orig_post["object-type"] != "") && (strstr($orig_post["object-type"], ActivityNamespace::ACTIVITY_SCHEMA))) {
|
if (($orig_post['object-type'] != '') && (strstr($orig_post['object-type'], ActivityNamespace::ACTIVITY_SCHEMA))) {
|
||||||
$objectType = str_replace(ActivityNamespace::ACTIVITY_SCHEMA, '', $orig_post["object-type"]);
|
$objectType = str_replace(ActivityNamespace::ACTIVITY_SCHEMA, '', $orig_post['object-type']);
|
||||||
} elseif (strstr($uri, "/api/comment/")) {
|
} elseif (strstr($uri, '/api/comment/')) {
|
||||||
$objectType = "comment";
|
$objectType = 'comment';
|
||||||
} elseif (strstr($uri, "/api/note/")) {
|
} elseif (strstr($uri, '/api/note/')) {
|
||||||
$objectType = "note";
|
$objectType = 'note';
|
||||||
} elseif (strstr($uri, "/api/image/")) {
|
} elseif (strstr($uri, '/api/image/')) {
|
||||||
$objectType = "image";
|
$objectType = 'image';
|
||||||
}
|
}
|
||||||
|
|
||||||
$params["verb"] = $action;
|
$params['verb'] = $action;
|
||||||
$params["object"] = ['id' => $uri,
|
$params['object'] = [
|
||||||
"objectType" => $objectType,
|
'id' => $uri,
|
||||||
"content" => $content];
|
'objectType' => $objectType,
|
||||||
|
'content' => $content,
|
||||||
|
];
|
||||||
|
|
||||||
$client = new oauth_client_class;
|
$client = new oauth_client_class;
|
||||||
$client->oauth_version = '1.0a';
|
$client->oauth_version = '1.0a';
|
||||||
|
@ -671,7 +677,7 @@ function pumpio_sync(App $a)
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($next_contact_check <= time()) {
|
if ($next_contact_check <= time()) {
|
||||||
pumpio_getallusers($a, $rr["uid"]);
|
pumpio_getallusers($a, $rr['uid']);
|
||||||
DI::pConfig()->set($rr['uid'], 'pumpio', 'contact_check', time());
|
DI::pConfig()->set($rr['uid'], 'pumpio', 'contact_check', time());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -683,7 +689,7 @@ function pumpio_sync(App $a)
|
||||||
|
|
||||||
function pumpio_cron(App $a, $b)
|
function pumpio_cron(App $a, $b)
|
||||||
{
|
{
|
||||||
Worker::add(PRIORITY_MEDIUM,"addon/pumpio/pumpio_sync.php");
|
Worker::add(PRIORITY_MEDIUM, 'addon/pumpio/pumpio_sync.php');
|
||||||
}
|
}
|
||||||
|
|
||||||
function pumpio_fetchtimeline(App $a, int $uid)
|
function pumpio_fetchtimeline(App $a, int $uid)
|
||||||
|
@ -694,20 +700,20 @@ function pumpio_fetchtimeline(App $a, int $uid)
|
||||||
$osecret = DI::pConfig()->get($uid, 'pumpio', 'oauth_token_secret');
|
$osecret = DI::pConfig()->get($uid, 'pumpio', 'oauth_token_secret');
|
||||||
$lastdate = DI::pConfig()->get($uid, 'pumpio', 'lastdate');
|
$lastdate = DI::pConfig()->get($uid, 'pumpio', 'lastdate');
|
||||||
$hostname = DI::pConfig()->get($uid, 'pumpio', 'host');
|
$hostname = DI::pConfig()->get($uid, 'pumpio', 'host');
|
||||||
$username = DI::pConfig()->get($uid, "pumpio", "user");
|
$username = DI::pConfig()->get($uid, 'pumpio', 'user');
|
||||||
|
|
||||||
// get the application name for the pump.io app
|
// get the application name for the pump.io app
|
||||||
// 1st try personal config, then system config and fallback to the
|
// 1st try personal config, then system config and fallback to the
|
||||||
// hostname of the node if neither one is set.
|
// hostname of the node if neither one is set.
|
||||||
$application_name = DI::pConfig()->get($uid, 'pumpio', 'application_name');
|
$application_name = DI::pConfig()->get($uid, 'pumpio', 'application_name');
|
||||||
if ($application_name == "") {
|
if ($application_name == '') {
|
||||||
$application_name = DI::config()->get('pumpio', 'application_name');
|
$application_name = DI::config()->get('pumpio', 'application_name');
|
||||||
}
|
}
|
||||||
if ($application_name == "") {
|
if ($application_name == '') {
|
||||||
$application_name = DI::baseUrl()->getHostname();
|
$application_name = DI::baseUrl()->getHostname();
|
||||||
}
|
}
|
||||||
|
|
||||||
$first_time = ($lastdate == "");
|
$first_time = ($lastdate == '');
|
||||||
|
|
||||||
$client = new oauth_client_class;
|
$client = new oauth_client_class;
|
||||||
$client->oauth_version = '1.0a';
|
$client->oauth_version = '1.0a';
|
||||||
|
@ -733,7 +739,7 @@ function pumpio_fetchtimeline(App $a, int $uid)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$success) {
|
if (!$success) {
|
||||||
Logger::notice('pumpio: error fetching posts for user '.$uid." ".$useraddr." ".print_r($user, true));
|
Logger::notice('pumpio: error fetching posts for user ' . $uid . ' ' . $useraddr . ' ', $user);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -766,45 +772,45 @@ function pumpio_fetchtimeline(App $a, int $uid)
|
||||||
}
|
}
|
||||||
|
|
||||||
$public = false;
|
$public = false;
|
||||||
foreach ($receiptians AS $receiver) {
|
foreach ($receiptians as $receiver) {
|
||||||
if (is_string($receiver->objectType) && ($receiver->id == "http://activityschema.org/collection/public")) {
|
if (is_string($receiver->objectType) && ($receiver->id == 'http://activityschema.org/collection/public')) {
|
||||||
$public = true;
|
$public = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($public && !stristr($post->generator->displayName, $application_name)) {
|
if ($public && !stristr($post->generator->displayName, $application_name)) {
|
||||||
$_SESSION["authenticated"] = true;
|
$_SESSION['authenticated'] = true;
|
||||||
$_SESSION["uid"] = $uid;
|
$_SESSION['uid'] = $uid;
|
||||||
|
|
||||||
unset($_REQUEST);
|
unset($_REQUEST);
|
||||||
$_REQUEST["api_source"] = true;
|
$_REQUEST['api_source'] = true;
|
||||||
$_REQUEST["profile_uid"] = $uid;
|
$_REQUEST['profile_uid'] = $uid;
|
||||||
$_REQUEST["source"] = "pump.io";
|
$_REQUEST['source'] = 'pump.io';
|
||||||
|
|
||||||
if (isset($post->object->id)) {
|
if (isset($post->object->id)) {
|
||||||
$_REQUEST['message_id'] = Protocol::PUMPIO.":".$post->object->id;
|
$_REQUEST['message_id'] = Protocol::PUMPIO . ':' . $post->object->id;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($post->object->displayName != "") {
|
if ($post->object->displayName != '') {
|
||||||
$_REQUEST["title"] = HTML::toBBCode($post->object->displayName);
|
$_REQUEST['title'] = HTML::toBBCode($post->object->displayName);
|
||||||
} else {
|
} else {
|
||||||
$_REQUEST["title"] = "";
|
$_REQUEST['title'] = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
$_REQUEST["body"] = HTML::toBBCode($post->object->content);
|
$_REQUEST['body'] = HTML::toBBCode($post->object->content);
|
||||||
|
|
||||||
// To-Do: Picture has to be cached and stored locally
|
// To-Do: Picture has to be cached and stored locally
|
||||||
if ($post->object->fullImage->url != "") {
|
if ($post->object->fullImage->url != '') {
|
||||||
if ($post->object->fullImage->pump_io->proxyURL != "") {
|
if ($post->object->fullImage->pump_io->proxyURL != '') {
|
||||||
$_REQUEST["body"] = "[url=".$post->object->fullImage->pump_io->proxyURL."][img]".$post->object->image->pump_io->proxyURL."[/img][/url]\n".$_REQUEST["body"];
|
$_REQUEST['body'] = '[url=' . $post->object->fullImage->pump_io->proxyURL . '][img]' . $post->object->image->pump_io->proxyURL . "[/img][/url]\n" . $_REQUEST['body'];
|
||||||
} else {
|
} else {
|
||||||
$_REQUEST["body"] = "[url=".$post->object->fullImage->url."][img]".$post->object->image->url."[/img][/url]\n".$_REQUEST["body"];
|
$_REQUEST['body'] = '[url=' . $post->object->fullImage->url . '][img]' . $post->object->image->url . "[/img][/url]\n" . $_REQUEST['body'];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Logger::notice('pumpio: posting for user ' . $uid);
|
Logger::notice('pumpio: posting for user ' . $uid);
|
||||||
|
|
||||||
require_once('mod/item.php');
|
require_once 'mod/item.php';
|
||||||
|
|
||||||
item_post($a);
|
item_post($a);
|
||||||
Logger::notice('pumpio: posting done - user ' . $uid);
|
Logger::notice('pumpio: posting done - user ' . $uid);
|
||||||
|
@ -817,7 +823,7 @@ function pumpio_fetchtimeline(App $a, int $uid)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function pumpio_dounlike(App $a, $uid, $self, $post, $own_id)
|
function pumpio_dounlike(App $a, int $uid, array $self, $post, string $own_id)
|
||||||
{
|
{
|
||||||
// Searching for the unliked post
|
// Searching for the unliked post
|
||||||
// Two queries for speed issues
|
// Two queries for speed issues
|
||||||
|
@ -847,13 +853,13 @@ function pumpio_dounlike(App $a, $uid, $self, $post, $own_id)
|
||||||
Item::markForDeletion(['verb' => Activity::LIKE, 'uid' => $uid, 'contact-id' => $contactid, 'thr-parent' => $orig_post['uri']]);
|
Item::markForDeletion(['verb' => Activity::LIKE, 'uid' => $uid, 'contact-id' => $contactid, 'thr-parent' => $orig_post['uri']]);
|
||||||
|
|
||||||
if (DBA::isResult($contact)) {
|
if (DBA::isResult($contact)) {
|
||||||
Logger::notice("pumpio_dounlike: unliked existing like. User ".$own_id." ".$uid." Contact: ".$contactid." Url ".$orig_post['uri']);
|
Logger::notice('pumpio_dounlike: unliked existing like. User ' . $own_id . ' ' . $uid . ' Contact: ' . $contactid . ' URI ' . $orig_post['uri']);
|
||||||
} else {
|
} else {
|
||||||
Logger::notice("pumpio_dounlike: not found. User ".$own_id." ".$uid." Contact: ".$contactid." Url ".$orig_post['uri']);
|
Logger::notice('pumpio_dounlike: not found. User ' . $own_id . ' ' . $uid . ' Contact: ' . $contactid . ' Url ' . $orig_post['uri']);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function pumpio_dolike(App $a, $uid, $self, $post, $own_id, $threadcompletion = true)
|
function pumpio_dolike(App $a, int $uid, array $self, $post, string $own_id, $threadcompletion = true)
|
||||||
{
|
{
|
||||||
if (empty($post->object->id)) {
|
if (empty($post->object->id)) {
|
||||||
Logger::info('Got empty like: '.print_r($post, true));
|
Logger::info('Got empty like: '.print_r($post, true));
|
||||||
|
@ -893,9 +899,15 @@ function pumpio_dolike(App $a, $uid, $self, $post, $own_id, $threadcompletion =
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$condition = ['verb' => Activity::LIKE, 'uid' => $uid, 'contact-id' => $contactid, 'thr-parent' => $orig_post['uri']];
|
$condition = [
|
||||||
|
'verb' => Activity::LIKE,
|
||||||
|
'uid' => $uid,
|
||||||
|
'contact-id' => $contactid,
|
||||||
|
'thr-parent' => $orig_post['uri'],
|
||||||
|
];
|
||||||
|
|
||||||
if (Post::exists($condition)) {
|
if (Post::exists($condition)) {
|
||||||
Logger::notice("pumpio_dolike: found existing like. User ".$own_id." ".$uid." Contact: ".$contactid." Url ".$orig_post['uri']);
|
Logger::notice('pumpio_dolike: found existing like. User ' . $own_id . ' ' . $uid . ' Contact: ' . $contactid . ' URI ' . $orig_post['uri']);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -929,7 +941,7 @@ function pumpio_dolike(App $a, $uid, $self, $post, $own_id, $threadcompletion =
|
||||||
|
|
||||||
$ret = Item::insert($likedata);
|
$ret = Item::insert($likedata);
|
||||||
|
|
||||||
Logger::notice("pumpio_dolike: ".$ret." User ".$own_id." ".$uid." Contact: ".$contactid." Url ".$orig_post['uri']);
|
Logger::notice('pumpio_dolike: ' . $ret . ' User ' . $own_id . ' ' . $uid . ' Contact: ' . $contactid . ' URI ' . $orig_post['uri']);
|
||||||
}
|
}
|
||||||
|
|
||||||
function pumpio_get_contact($uid, $contact, $no_insert = false)
|
function pumpio_get_contact($uid, $contact, $no_insert = false)
|
||||||
|
@ -948,7 +960,7 @@ function pumpio_get_contact($uid, $contact, $no_insert = false)
|
||||||
'created' => DateTimeFormat::utcNow(),
|
'created' => DateTimeFormat::utcNow(),
|
||||||
'url' => $contact->url,
|
'url' => $contact->url,
|
||||||
'nurl' => Strings::normaliseLink($contact->url),
|
'nurl' => Strings::normaliseLink($contact->url),
|
||||||
'addr' => str_replace("acct:", "", $contact->id),
|
'addr' => str_replace('acct:', '', $contact->id),
|
||||||
'alias' => '',
|
'alias' => '',
|
||||||
'notify' => $contact->id,
|
'notify' => $contact->id,
|
||||||
'poll' => 'pump.io ' . $contact->id,
|
'poll' => 'pump.io ' . $contact->id,
|
||||||
|
@ -975,7 +987,7 @@ function pumpio_get_contact($uid, $contact, $no_insert = false)
|
||||||
|
|
||||||
Group::addMember(User::getDefaultGroup($uid), $contact_id);
|
Group::addMember(User::getDefaultGroup($uid), $contact_id);
|
||||||
} else {
|
} else {
|
||||||
$contact_id = $r["id"];
|
$contact_id = $r['id'];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!empty($contact->image->url)) {
|
if (!empty($contact->image->url)) {
|
||||||
|
@ -985,7 +997,7 @@ function pumpio_get_contact($uid, $contact, $no_insert = false)
|
||||||
return $contact_id;
|
return $contact_id;
|
||||||
}
|
}
|
||||||
|
|
||||||
function pumpio_dodelete(App $a, $uid, $self, $post, $own_id)
|
function pumpio_dodelete(App $a, int $uid, array $self, $post, string $own_id)
|
||||||
{
|
{
|
||||||
// Two queries for speed issues
|
// Two queries for speed issues
|
||||||
$condition = ['uri' => $post->object->id, 'uid' => $uid];
|
$condition = ['uri' => $post->object->id, 'uid' => $uid];
|
||||||
|
@ -1002,21 +1014,21 @@ function pumpio_dodelete(App $a, $uid, $self, $post, $own_id)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
function pumpio_dopost(App $a, $client, $uid, $self, $post, $own_id, $threadcompletion = true)
|
function pumpio_dopost(App $a, $client, int $uid, array $self, $post, string $own_id, bool $threadcompletion = true)
|
||||||
{
|
{
|
||||||
if (($post->verb == "like") || ($post->verb == "favorite")) {
|
if (($post->verb == 'like') || ($post->verb == 'favorite')) {
|
||||||
return pumpio_dolike($a, $uid, $self, $post, $own_id);
|
return pumpio_dolike($a, $uid, $self, $post, $own_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (($post->verb == "unlike") || ($post->verb == "unfavorite")) {
|
if (($post->verb == 'unlike') || ($post->verb == 'unfavorite')) {
|
||||||
return pumpio_dounlike($a, $uid, $self, $post, $own_id);
|
return pumpio_dounlike($a, $uid, $self, $post, $own_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($post->verb == "delete") {
|
if ($post->verb == 'delete') {
|
||||||
return pumpio_dodelete($a, $uid, $self, $post, $own_id);
|
return pumpio_dodelete($a, $uid, $self, $post, $own_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($post->verb != "update") {
|
if ($post->verb != 'update') {
|
||||||
// Two queries for speed issues
|
// Two queries for speed issues
|
||||||
if (Post::exists(['uri' => $post->object->id, 'uid' => $uid])) {
|
if (Post::exists(['uri' => $post->object->id, 'uid' => $uid])) {
|
||||||
return false;
|
return false;
|
||||||
|
@ -1027,7 +1039,7 @@ function pumpio_dopost(App $a, $client, $uid, $self, $post, $own_id, $threadcomp
|
||||||
}
|
}
|
||||||
|
|
||||||
// Only handle these three types
|
// Only handle these three types
|
||||||
if (!strstr("post|share|update", $post->verb)) {
|
if (!strstr('post|share|update', $post->verb)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1042,8 +1054,8 @@ function pumpio_dopost(App $a, $client, $uid, $self, $post, $own_id, $threadcomp
|
||||||
|
|
||||||
$public = false;
|
$public = false;
|
||||||
|
|
||||||
foreach ($receiptians AS $receiver) {
|
foreach ($receiptians as $receiver) {
|
||||||
if (is_string($receiver->objectType) && ($receiver->id == "http://activityschema.org/collection/public")) {
|
if (is_string($receiver->objectType) && ($receiver->id == 'http://activityschema.org/collection/public')) {
|
||||||
$public = true;
|
$public = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1055,7 +1067,7 @@ function pumpio_dopost(App $a, $client, $uid, $self, $post, $own_id, $threadcomp
|
||||||
$postarray['uri'] = $post->object->id;
|
$postarray['uri'] = $post->object->id;
|
||||||
$postarray['object-type'] = ActivityNamespace::ACTIVITY_SCHEMA . strtolower($post->object->objectType);
|
$postarray['object-type'] = ActivityNamespace::ACTIVITY_SCHEMA . strtolower($post->object->objectType);
|
||||||
|
|
||||||
if ($post->object->objectType != "comment") {
|
if ($post->object->objectType != 'comment') {
|
||||||
$contact_id = pumpio_get_contact($uid, $post->actor);
|
$contact_id = pumpio_get_contact($uid, $post->actor);
|
||||||
|
|
||||||
if (!$contact_id) {
|
if (!$contact_id) {
|
||||||
|
@ -1087,7 +1099,7 @@ function pumpio_dopost(App $a, $client, $uid, $self, $post, $own_id, $threadcomp
|
||||||
}
|
}
|
||||||
|
|
||||||
$reply = new stdClass;
|
$reply = new stdClass;
|
||||||
$reply->verb = "note";
|
$reply->verb = 'note';
|
||||||
|
|
||||||
if (isset($post->cc)) {
|
if (isset($post->cc)) {
|
||||||
$reply->cc = $post->cc;
|
$reply->cc = $post->cc;
|
||||||
|
@ -1104,7 +1116,7 @@ function pumpio_dopost(App $a, $client, $uid, $self, $post, $own_id, $threadcomp
|
||||||
$reply->actor = $post->object->inReplyTo->author;
|
$reply->actor = $post->object->inReplyTo->author;
|
||||||
$reply->url = $post->object->inReplyTo->url;
|
$reply->url = $post->object->inReplyTo->url;
|
||||||
$reply->generator = new stdClass;
|
$reply->generator = new stdClass;
|
||||||
$reply->generator->displayName = "pumpio";
|
$reply->generator->displayName = 'pumpio';
|
||||||
$reply->published = $post->object->inReplyTo->published;
|
$reply->published = $post->object->inReplyTo->published;
|
||||||
$reply->received = $post->object->inReplyTo->updated;
|
$reply->received = $post->object->inReplyTo->updated;
|
||||||
$reply->url = $post->object->inReplyTo->url;
|
$reply->url = $post->object->inReplyTo->url;
|
||||||
|
@ -1139,7 +1151,7 @@ function pumpio_dopost(App $a, $client, $uid, $self, $post, $own_id, $threadcomp
|
||||||
$postarray['object'] = json_encode($post);
|
$postarray['object'] = json_encode($post);
|
||||||
|
|
||||||
if (!empty($post->object->fullImage->url)) {
|
if (!empty($post->object->fullImage->url)) {
|
||||||
$postarray["body"] = "[url=".$post->object->fullImage->url."][img]".$post->object->image->url."[/img][/url]\n".$postarray["body"];
|
$postarray['body'] = '[url=' . $post->object->fullImage->url . '][img]' . $post->object->image->url . "[/img][/url]\n" . $postarray['body'];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!empty($post->object->displayName)) {
|
if (!empty($post->object->displayName)) {
|
||||||
|
@ -1155,10 +1167,10 @@ function pumpio_dopost(App $a, $client, $uid, $self, $post, $own_id, $threadcomp
|
||||||
$postarray['edited'] = $postarray['created'];
|
$postarray['edited'] = $postarray['created'];
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($post->verb == "share") {
|
if ($post->verb == 'share') {
|
||||||
if (isset($post->object->author->displayName) && ($post->object->author->displayName != "")) {
|
if (isset($post->object->author->displayName) && ($post->object->author->displayName != '')) {
|
||||||
$share_author = $post->object->author->displayName;
|
$share_author = $post->object->author->displayName;
|
||||||
} elseif (isset($post->object->author->preferredUsername) && ($post->object->author->preferredUsername != "")) {
|
} elseif (isset($post->object->author->preferredUsername) && ($post->object->author->preferredUsername != '')) {
|
||||||
$share_author = $post->object->author->preferredUsername;
|
$share_author = $post->object->author->preferredUsername;
|
||||||
} else {
|
} else {
|
||||||
$share_author = $post->object->author->url;
|
$share_author = $post->object->author->url;
|
||||||
|
@ -1172,23 +1184,27 @@ function pumpio_dopost(App $a, $client, $uid, $self, $post, $own_id, $threadcomp
|
||||||
|
|
||||||
$postarray['body'] = Friendica\Content\Text\BBCode::getShareOpeningTag($share_author, $post->object->author->url,
|
$postarray['body'] = Friendica\Content\Text\BBCode::getShareOpeningTag($share_author, $post->object->author->url,
|
||||||
$post->object->author->image->url, $post->links->self->href, $created) .
|
$post->object->author->image->url, $post->links->self->href, $created) .
|
||||||
$postarray['body']."[/share]";
|
$postarray['body'] . '[/share]';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (trim($postarray['body']) == "") {
|
if (trim($postarray['body']) == '') {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
$top_item = Item::insert($postarray);
|
$top_item = Item::insert($postarray);
|
||||||
$postarray["id"] = $top_item;
|
$postarray['id'] = $top_item;
|
||||||
|
|
||||||
if (($top_item == 0) && ($post->verb == "update")) {
|
if (($top_item == 0) && ($post->verb == 'update')) {
|
||||||
$fields = ['title' => $postarray["title"], 'body' => $postarray["body"], 'changed' => $postarray["edited"]];
|
$fields = [
|
||||||
$condition = ['uri' => $postarray["uri"], 'uid' => $uid];
|
'title' => $postarray['title'],
|
||||||
|
'body' => $postarray['body'],
|
||||||
|
'changed' => $postarray['edited'],
|
||||||
|
];
|
||||||
|
$condition = ['uri' => $postarray['uri'], 'uid' => $uid];
|
||||||
Item::update($fields, $condition);
|
Item::update($fields, $condition);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (($post->object->objectType == "comment") && $threadcompletion) {
|
if (($post->object->objectType == 'comment') && $threadcompletion) {
|
||||||
pumpio_fetchallcomments($a, $uid, $postarray['thr-parent']);
|
pumpio_fetchallcomments($a, $uid, $postarray['thr-parent']);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1203,9 +1219,9 @@ function pumpio_fetchinbox(App $a, int $uid)
|
||||||
$osecret = DI::pConfig()->get($uid, 'pumpio', 'oauth_token_secret');
|
$osecret = DI::pConfig()->get($uid, 'pumpio', 'oauth_token_secret');
|
||||||
$lastdate = DI::pConfig()->get($uid, 'pumpio', 'lastdate');
|
$lastdate = DI::pConfig()->get($uid, 'pumpio', 'lastdate');
|
||||||
$hostname = DI::pConfig()->get($uid, 'pumpio', 'host');
|
$hostname = DI::pConfig()->get($uid, 'pumpio', 'host');
|
||||||
$username = DI::pConfig()->get($uid, "pumpio", "user");
|
$username = DI::pConfig()->get($uid, 'pumpio', 'user');
|
||||||
|
|
||||||
$own_id = "https://".$hostname."/".$username;
|
$own_id = 'https://' . $hostname . '/' . $username;
|
||||||
|
|
||||||
$self = User::getOwnerDataById($uid);
|
$self = User::getOwnerDataById($uid);
|
||||||
|
|
||||||
|
@ -1214,7 +1230,7 @@ function pumpio_fetchinbox(App $a, int $uid)
|
||||||
WHERE `post-thread-user`.`network` = ? AND `post-thread-user`.`uid` = ? AND `post-view`.`extid` != ''
|
WHERE `post-thread-user`.`network` = ? AND `post-thread-user`.`uid` = ? AND `post-view`.`extid` != ''
|
||||||
ORDER BY `post-thread-user`.`commented` DESC LIMIT 10", Protocol::PUMPIO, $uid);
|
ORDER BY `post-thread-user`.`commented` DESC LIMIT 10", Protocol::PUMPIO, $uid);
|
||||||
|
|
||||||
$client = new oauth_client_class;
|
$client = new oauth_client_class();
|
||||||
$client->oauth_version = '1.0a';
|
$client->oauth_version = '1.0a';
|
||||||
$client->authorization_header = true;
|
$client->authorization_header = true;
|
||||||
$client->url_parameters = false;
|
$client->url_parameters = false;
|
||||||
|
@ -1228,7 +1244,7 @@ function pumpio_fetchinbox(App $a, int $uid)
|
||||||
|
|
||||||
$url = 'https://'.$hostname.'/api/user/'.$username.'/inbox';
|
$url = 'https://'.$hostname.'/api/user/'.$username.'/inbox';
|
||||||
|
|
||||||
if ($last_id != "") {
|
if ($last_id != '') {
|
||||||
$url .= '?since=' . urlencode($last_id);
|
$url .= '?since=' . urlencode($last_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1268,7 +1284,7 @@ function pumpio_getallusers(App &$a, int $uid)
|
||||||
$otoken = DI::pConfig()->get($uid, 'pumpio', 'oauth_token');
|
$otoken = DI::pConfig()->get($uid, 'pumpio', 'oauth_token');
|
||||||
$osecret = DI::pConfig()->get($uid, 'pumpio', 'oauth_token_secret');
|
$osecret = DI::pConfig()->get($uid, 'pumpio', 'oauth_token_secret');
|
||||||
$hostname = DI::pConfig()->get($uid, 'pumpio', 'host');
|
$hostname = DI::pConfig()->get($uid, 'pumpio', 'host');
|
||||||
$username = DI::pConfig()->get($uid, "pumpio", "user");
|
$username = DI::pConfig()->get($uid, 'pumpio', 'user');
|
||||||
|
|
||||||
$client = new oauth_client_class;
|
$client = new oauth_client_class;
|
||||||
$client->oauth_version = '1.0a';
|
$client->oauth_version = '1.0a';
|
||||||
|
@ -1313,36 +1329,38 @@ function pumpio_getreceiver(App $a, array $b)
|
||||||
{
|
{
|
||||||
$receiver = [];
|
$receiver = [];
|
||||||
|
|
||||||
if (!$b["private"]) {
|
if (!$b['private']) {
|
||||||
if (!strstr($b['postopts'], 'pumpio')) {
|
if (!strstr($b['postopts'], 'pumpio')) {
|
||||||
return $receiver;
|
return $receiver;
|
||||||
}
|
}
|
||||||
|
|
||||||
$public = DI::pConfig()->get($b['uid'], "pumpio", "public");
|
$public = DI::pConfig()->get($b['uid'], 'pumpio', 'public');
|
||||||
|
|
||||||
if ($public) {
|
if ($public) {
|
||||||
$receiver["to"][] = [
|
$receiver['to'][] = [
|
||||||
"objectType" => "collection",
|
'objectType' => 'collection',
|
||||||
"id" => "http://activityschema.org/collection/public"];
|
'id' => 'http://activityschema.org/collection/public'
|
||||||
|
];
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$cids = explode("><", $b["allow_cid"]);
|
$cids = explode('><', $b['allow_cid']);
|
||||||
$gids = explode("><", $b["allow_gid"]);
|
$gids = explode('><', $b['allow_gid']);
|
||||||
|
|
||||||
foreach ($cids AS $cid) {
|
foreach ($cids as $cid) {
|
||||||
$cid = trim($cid, " <>");
|
$cid = trim($cid, ' <>');
|
||||||
|
|
||||||
$contact = Contact::selectFirst(['name', 'nick', 'url'], ['id' => $cid, 'uid' => $b["uid"], 'network' => Protocol::PUMPIO, 'blocked' => false, 'readonly' => false]);
|
$contact = Contact::selectFirst(['name', 'nick', 'url'], ['id' => $cid, 'uid' => $b['uid'], 'network' => Protocol::PUMPIO, 'blocked' => false, 'readonly' => false]);
|
||||||
if (DBA::isResult($contact)) {
|
if (DBA::isResult($contact)) {
|
||||||
$receiver["bcc"][] = [
|
$receiver['bcc'][] = [
|
||||||
"displayName" => $contact["name"],
|
'displayName' => $contact['name'],
|
||||||
"objectType" => "person",
|
'objectType' => 'person',
|
||||||
"preferredUsername" => $contact["nick"],
|
'preferredUsername' => $contact['nick'],
|
||||||
"url" => $contact["url"]];
|
'url' => $contact['url'],
|
||||||
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
foreach ($gids AS $gid) {
|
foreach ($gids as $gid) {
|
||||||
$gid = trim($gid, " <>");
|
$gid = trim($gid, ' <>');
|
||||||
|
|
||||||
$contacts = DBA::p("SELECT `contact`.`name`, `contact`.`nick`, `contact`.`url`, `contact`.`network`
|
$contacts = DBA::p("SELECT `contact`.`name`, `contact`.`nick`, `contact`.`url`, `contact`.`network`
|
||||||
FROM `group_member`, `contact` WHERE `group_member`.`gid` = ?
|
FROM `group_member`, `contact` WHERE `group_member`.`gid` = ?
|
||||||
|
@ -1350,33 +1368,35 @@ function pumpio_getreceiver(App $a, array $b)
|
||||||
$gid, Protocol::PUMPIO);
|
$gid, Protocol::PUMPIO);
|
||||||
|
|
||||||
while ($row = DBA::fetch($contacts)) {
|
while ($row = DBA::fetch($contacts)) {
|
||||||
$receiver["bcc"][] = [
|
$receiver['bcc'][] = [
|
||||||
"displayName" => $row["name"],
|
'displayName' => $row['name'],
|
||||||
"objectType" => "person",
|
'objectType' => 'person',
|
||||||
"preferredUsername" => $row["nick"],
|
'preferredUsername' => $row['nick'],
|
||||||
"url" => $row["url"]];
|
'url' => $row['url'],
|
||||||
|
];
|
||||||
}
|
}
|
||||||
DBA::close($contacts);
|
DBA::close($contacts);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($b["inform"] != "") {
|
if ($b['inform'] != '') {
|
||||||
$inform = explode(",", $b["inform"]);
|
$inform = explode(',', $b['inform']);
|
||||||
|
|
||||||
foreach ($inform AS $cid) {
|
foreach ($inform as $cid) {
|
||||||
if (substr($cid, 0, 4) != "cid:") {
|
if (substr($cid, 0, 4) != 'cid:') {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
$cid = str_replace("cid:", "", $cid);
|
$cid = str_replace('cid:', '', $cid);
|
||||||
|
|
||||||
$contact = Contact::selectFirst(['name', 'nick', 'url'], ['id' => $cid, 'uid' => $b["uid"], 'network' => Protocol::PUMPIO, 'blocked' => false, 'readonly' => false]);
|
$contact = Contact::selectFirst(['name', 'nick', 'url'], ['id' => $cid, 'uid' => $b['uid'], 'network' => Protocol::PUMPIO, 'blocked' => false, 'readonly' => false]);
|
||||||
if (DBA::isResult($contact)) {
|
if (DBA::isResult($contact)) {
|
||||||
$receiver["to"][] = [
|
$receiver['to'][] = [
|
||||||
"displayName" => $contact["name"],
|
'displayName' => $contact['name'],
|
||||||
"objectType" => "person",
|
'objectType' => 'person',
|
||||||
"preferredUsername" => $contact["nick"],
|
'preferredUsername' => $contact['nick'],
|
||||||
"url" => $contact["url"]];
|
'url' => $contact['url'],
|
||||||
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1391,11 +1411,11 @@ function pumpio_fetchallcomments(App $a, $uid, $id)
|
||||||
$otoken = DI::pConfig()->get($uid, 'pumpio', 'oauth_token');
|
$otoken = DI::pConfig()->get($uid, 'pumpio', 'oauth_token');
|
||||||
$osecret = DI::pConfig()->get($uid, 'pumpio', 'oauth_token_secret');
|
$osecret = DI::pConfig()->get($uid, 'pumpio', 'oauth_token_secret');
|
||||||
$hostname = DI::pConfig()->get($uid, 'pumpio', 'host');
|
$hostname = DI::pConfig()->get($uid, 'pumpio', 'host');
|
||||||
$username = DI::pConfig()->get($uid, "pumpio", "user");
|
$username = DI::pConfig()->get($uid, 'pumpio', 'user');
|
||||||
|
|
||||||
Logger::notice("pumpio_fetchallcomments: completing comment for user ".$uid." post id ".$id);
|
Logger::notice('pumpio_fetchallcomments: completing comment for user ' . $uid . ' post id ' . $id);
|
||||||
|
|
||||||
$own_id = "https://".$hostname."/".$username;
|
$own_id = 'https://' . $hostname . '/' . $username;
|
||||||
|
|
||||||
$self = User::getOwnerDataById($uid);
|
$self = User::getOwnerDataById($uid);
|
||||||
|
|
||||||
|
@ -1406,7 +1426,7 @@ function pumpio_fetchallcomments(App $a, $uid, $id)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
$url = $original["extid"];
|
$url = $original['extid'];
|
||||||
|
|
||||||
$client = new oauth_client_class;
|
$client = new oauth_client_class;
|
||||||
$client->oauth_version = '1.0a';
|
$client->oauth_version = '1.0a';
|
||||||
|
@ -1418,7 +1438,7 @@ function pumpio_fetchallcomments(App $a, $uid, $id)
|
||||||
$client->access_token = $otoken;
|
$client->access_token = $otoken;
|
||||||
$client->access_token_secret = $osecret;
|
$client->access_token_secret = $osecret;
|
||||||
|
|
||||||
Logger::notice("pumpio_fetchallcomments: fetching comment for user ".$uid." url ".$url);
|
Logger::notice('pumpio_fetchallcomments: fetching comment for user ' . $uid . ', URL ' . $url);
|
||||||
|
|
||||||
if (pumpio_reachable($url)) {
|
if (pumpio_reachable($url)) {
|
||||||
$success = $client->CallAPI($url, 'GET', [], ['FailOnAccessError' => true], $item);
|
$success = $client->CallAPI($url, 'GET', [], ['FailOnAccessError' => true], $item);
|
||||||
|
@ -1431,7 +1451,7 @@ function pumpio_fetchallcomments(App $a, $uid, $id)
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($item->likes->totalItems != 0) {
|
if ($item->likes->totalItems != 0) {
|
||||||
foreach ($item->likes->items AS $post) {
|
foreach ($item->likes->items as $post) {
|
||||||
$like = new stdClass;
|
$like = new stdClass;
|
||||||
$like->object = new stdClass;
|
$like->object = new stdClass;
|
||||||
$like->object->id = $item->id;
|
$like->object->id = $item->id;
|
||||||
|
@ -1443,7 +1463,7 @@ function pumpio_fetchallcomments(App $a, $uid, $id)
|
||||||
//$like->actor->image = $item->image;
|
//$like->actor->image = $item->image;
|
||||||
$like->actor->url = $item->url;
|
$like->actor->url = $item->url;
|
||||||
$like->generator = new stdClass;
|
$like->generator = new stdClass;
|
||||||
$like->generator->displayName = "pumpio";
|
$like->generator->displayName = 'pumpio';
|
||||||
pumpio_dolike($a, $uid, $self, $post, $own_id, false);
|
pumpio_dolike($a, $uid, $self, $post, $own_id, false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1452,7 +1472,7 @@ function pumpio_fetchallcomments(App $a, $uid, $id)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($item->replies->items AS $item) {
|
foreach ($item->replies->items as $item) {
|
||||||
if ($item->id == $id) {
|
if ($item->id == $id) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
@ -1467,12 +1487,12 @@ function pumpio_fetchallcomments(App $a, $uid, $id)
|
||||||
}
|
}
|
||||||
|
|
||||||
$post = new stdClass;
|
$post = new stdClass;
|
||||||
$post->verb = "post";
|
$post->verb = 'post';
|
||||||
$post->actor = $item->author;
|
$post->actor = $item->author;
|
||||||
$post->published = $item->published;
|
$post->published = $item->published;
|
||||||
$post->received = $item->updated;
|
$post->received = $item->updated;
|
||||||
$post->generator = new stdClass;
|
$post->generator = new stdClass;
|
||||||
$post->generator->displayName = "pumpio";
|
$post->generator->displayName = 'pumpio';
|
||||||
// To-Do: Check for public post
|
// To-Do: Check for public post
|
||||||
|
|
||||||
unset($item->author);
|
unset($item->author);
|
||||||
|
@ -1481,12 +1501,12 @@ function pumpio_fetchallcomments(App $a, $uid, $id)
|
||||||
|
|
||||||
$post->object = $item;
|
$post->object = $item;
|
||||||
|
|
||||||
Logger::notice("pumpio_fetchallcomments: posting comment ".$post->object->id." ".print_r($post, true));
|
Logger::notice('pumpio_fetchallcomments: posting comment ' . $post->object->id . ' ', $post);
|
||||||
pumpio_dopost($a, $client, $uid, $self, $post, $own_id, false);
|
pumpio_dopost($a, $client, $uid, $self, $post, $own_id, false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function pumpio_reachable($url)
|
function pumpio_reachable(string $url): bool
|
||||||
{
|
{
|
||||||
return DI::httpClient()->get($url, HttpClientAccept::DEFAULT, [HttpClientOptions::TIMEOUT => 10])->isSuccess();
|
return DI::httpClient()->get($url, HttpClientAccept::DEFAULT, [HttpClientOptions::TIMEOUT => 10])->isSuccess();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue