2014-05-03 05:56:57 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Name: Buffer Post Connector
|
2019-01-18 01:57:11 -05:00
|
|
|
* Description: Post to Buffer (Facebook Pages, LinkedIn, Twitter)
|
2014-05-29 06:42:25 -04:00
|
|
|
* Version: 0.2
|
2014-05-03 05:56:57 -04:00
|
|
|
* Author: Michael Vogel <http://pirati.ca/profile/heluecht>
|
2019-12-07 16:56:43 -05:00
|
|
|
* Status: Unsupported
|
2014-05-03 05:56:57 -04:00
|
|
|
*/
|
2018-01-04 12:15:53 -05:00
|
|
|
require 'addon/buffer/bufferapp.php';
|
2014-05-03 05:56:57 -04:00
|
|
|
|
2018-01-04 12:15:53 -05:00
|
|
|
use Friendica\App;
|
2021-01-30 18:14:05 -05:00
|
|
|
use Friendica\Content\Text\Plaintext;
|
2018-12-26 02:28:16 -05:00
|
|
|
use Friendica\Core\Hook;
|
2018-10-29 19:40:18 -04:00
|
|
|
use Friendica\Core\Logger;
|
2018-08-11 16:40:48 -04:00
|
|
|
use Friendica\Core\Protocol;
|
2018-10-31 10:55:15 -04:00
|
|
|
use Friendica\Core\Renderer;
|
2018-07-20 08:20:48 -04:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-15 19:05:14 -05:00
|
|
|
use Friendica\DI;
|
2018-07-30 21:20:29 -04:00
|
|
|
use Friendica\Util\Proxy as ProxyUtils;
|
2018-11-08 11:45:19 -05:00
|
|
|
use Friendica\Util\Strings;
|
2017-11-06 18:55:24 -05:00
|
|
|
|
2018-07-24 07:44:42 -04:00
|
|
|
function buffer_install()
|
|
|
|
{
|
2018-12-26 02:28:16 -05:00
|
|
|
Hook::register('hook_fork', 'addon/buffer/buffer.php', 'buffer_hook_fork');
|
|
|
|
Hook::register('post_local', 'addon/buffer/buffer.php', 'buffer_post_local');
|
|
|
|
Hook::register('notifier_normal', 'addon/buffer/buffer.php', 'buffer_send');
|
|
|
|
Hook::register('jot_networks', 'addon/buffer/buffer.php', 'buffer_jot_nets');
|
|
|
|
Hook::register('connector_settings', 'addon/buffer/buffer.php', 'buffer_settings');
|
|
|
|
Hook::register('connector_settings_post', 'addon/buffer/buffer.php', 'buffer_settings_post');
|
2014-05-03 05:56:57 -04:00
|
|
|
}
|
|
|
|
|
2018-07-24 07:44:42 -04:00
|
|
|
function buffer_module()
|
|
|
|
{
|
|
|
|
}
|
2014-05-03 05:56:57 -04:00
|
|
|
|
2018-07-24 07:44:42 -04:00
|
|
|
function buffer_content(App $a)
|
|
|
|
{
|
|
|
|
if (! local_user()) {
|
2020-01-18 14:52:33 -05:00
|
|
|
notice(DI::l10n()->t('Permission denied.') . EOL);
|
2014-05-03 05:56:57 -04:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2018-07-24 07:44:42 -04:00
|
|
|
require_once "mod/settings.php";
|
2014-05-03 05:56:57 -04:00
|
|
|
settings_init($a);
|
|
|
|
|
2021-07-25 08:29:43 -04:00
|
|
|
if (isset(DI::args()->getArgv()[1])) {
|
|
|
|
switch (DI::args()->getArgv()[1]) {
|
2014-05-03 05:56:57 -04:00
|
|
|
case "connect":
|
|
|
|
$o = buffer_connect($a);
|
|
|
|
break;
|
2018-07-24 07:44:42 -04:00
|
|
|
|
2014-05-03 05:56:57 -04:00
|
|
|
default:
|
2021-07-25 08:29:43 -04:00
|
|
|
$o = print_r(DI::args()->getArgv(), true);
|
2014-05-03 05:56:57 -04:00
|
|
|
break;
|
|
|
|
}
|
2018-07-24 07:44:42 -04:00
|
|
|
} else {
|
2014-05-03 05:56:57 -04:00
|
|
|
$o = buffer_connect($a);
|
2018-07-24 07:44:42 -04:00
|
|
|
}
|
2014-05-03 05:56:57 -04:00
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
2018-07-24 07:44:42 -04:00
|
|
|
function buffer_addon_admin(App $a, &$o)
|
2018-01-20 08:57:41 -05:00
|
|
|
{
|
2018-10-31 10:55:15 -04:00
|
|
|
$t = Renderer::getMarkupTemplate("admin.tpl", "addon/buffer/");
|
2014-05-03 05:56:57 -04:00
|
|
|
|
2018-10-31 10:55:15 -04:00
|
|
|
$o = Renderer::replaceMacros($t, [
|
2020-01-18 14:52:33 -05:00
|
|
|
'$submit' => DI::l10n()->t('Save Settings'),
|
2018-01-20 08:57:41 -05:00
|
|
|
// name, label, value, help, [extra values]
|
2020-01-19 15:21:12 -05:00
|
|
|
'$client_id' => ['client_id', DI::l10n()->t('Client ID'), DI::config()->get('buffer', 'client_id'), ''],
|
|
|
|
'$client_secret' => ['client_secret', DI::l10n()->t('Client Secret'), DI::config()->get('buffer', 'client_secret'), ''],
|
2018-01-15 08:15:33 -05:00
|
|
|
]);
|
2014-05-03 05:56:57 -04:00
|
|
|
}
|
2018-07-24 07:44:42 -04:00
|
|
|
|
|
|
|
function buffer_addon_admin_post(App $a)
|
2018-01-20 08:57:41 -05:00
|
|
|
{
|
2018-11-30 09:11:56 -05:00
|
|
|
$client_id = (!empty($_POST['client_id']) ? Strings::escapeTags(trim($_POST['client_id'])) : '');
|
|
|
|
$client_secret = (!empty($_POST['client_secret']) ? Strings::escapeTags(trim($_POST['client_secret'])) : '');
|
2018-07-24 07:44:42 -04:00
|
|
|
|
2020-01-19 15:21:52 -05:00
|
|
|
DI::config()->set('buffer', 'client_id' , $client_id);
|
|
|
|
DI::config()->set('buffer', 'client_secret', $client_secret);
|
2014-06-15 07:18:37 -04:00
|
|
|
}
|
2014-05-03 05:56:57 -04:00
|
|
|
|
2018-07-24 07:44:42 -04:00
|
|
|
function buffer_connect(App $a)
|
|
|
|
{
|
2014-05-03 05:56:57 -04:00
|
|
|
if (isset($_REQUEST["error"])) {
|
2020-01-18 14:52:33 -05:00
|
|
|
$o = DI::l10n()->t('Error when registering buffer connection:')." ".$_REQUEST["error"];
|
2014-05-03 05:56:57 -04:00
|
|
|
return $o;
|
|
|
|
}
|
2018-07-24 07:44:42 -04:00
|
|
|
|
2014-05-03 05:56:57 -04:00
|
|
|
// Start a session. This is necessary to hold on to a few keys the callback script will also need
|
|
|
|
session_start();
|
|
|
|
|
|
|
|
// Define the needed keys
|
2020-01-19 15:21:12 -05:00
|
|
|
$client_id = DI::config()->get('buffer','client_id');
|
|
|
|
$client_secret = DI::config()->get('buffer','client_secret');
|
2014-05-03 05:56:57 -04:00
|
|
|
|
|
|
|
// The callback URL is the script that gets called after the user authenticates with buffer
|
2019-12-15 19:05:14 -05:00
|
|
|
$callback_url = DI::baseUrl()->get()."/buffer/connect";
|
2014-05-03 05:56:57 -04:00
|
|
|
|
|
|
|
$buffer = new BufferApp($client_id, $client_secret, $callback_url);
|
|
|
|
|
|
|
|
if (!$buffer->ok) {
|
2019-03-20 02:17:04 -04:00
|
|
|
$o = '<a href="' . $buffer->get_login_url() . '">Connect to Buffer!</a>';
|
2014-05-03 05:56:57 -04:00
|
|
|
} else {
|
2018-10-29 19:40:18 -04:00
|
|
|
Logger::log("buffer_connect: authenticated");
|
2020-01-18 14:52:33 -05:00
|
|
|
$o = DI::l10n()->t("You are now authenticated to buffer. ");
|
|
|
|
$o .= '<br /><a href="' . DI::baseUrl()->get() . '/settings/connectors">' . DI::l10n()->t("return to the connector page") . '</a>';
|
2020-01-18 10:54:49 -05:00
|
|
|
DI::pConfig()->set(local_user(), 'buffer','access_token', $buffer->access_token);
|
2014-05-03 05:56:57 -04:00
|
|
|
}
|
|
|
|
|
2018-07-24 07:44:42 -04:00
|
|
|
return $o;
|
2014-05-03 05:56:57 -04:00
|
|
|
}
|
|
|
|
|
2019-03-24 22:44:50 -04:00
|
|
|
function buffer_jot_nets(App $a, array &$jotnets_fields)
|
2018-07-24 07:44:42 -04:00
|
|
|
{
|
|
|
|
if (!local_user()) {
|
2014-05-03 05:56:57 -04:00
|
|
|
return;
|
2018-07-24 07:44:42 -04:00
|
|
|
}
|
|
|
|
|
2020-01-18 10:50:56 -05:00
|
|
|
if (DI::pConfig()->get(local_user(), 'buffer', 'post')) {
|
2019-03-24 22:44:50 -04:00
|
|
|
$jotnets_fields[] = [
|
|
|
|
'type' => 'checkbox',
|
|
|
|
'field' => [
|
|
|
|
'buffer_enable',
|
2020-01-18 14:52:33 -05:00
|
|
|
DI::l10n()->t('Post to Buffer'),
|
2020-01-18 10:50:56 -05:00
|
|
|
DI::pConfig()->get(local_user(), 'buffer', 'post_by_default')
|
2019-03-24 22:44:50 -04:00
|
|
|
]
|
|
|
|
];
|
2014-05-03 05:56:57 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-24 07:44:42 -04:00
|
|
|
function buffer_settings(App $a, &$s)
|
|
|
|
{
|
|
|
|
if (! local_user()) {
|
2014-05-03 05:56:57 -04:00
|
|
|
return;
|
2018-07-24 07:44:42 -04:00
|
|
|
}
|
2014-05-03 05:56:57 -04:00
|
|
|
|
|
|
|
/* Add our stylesheet to the page so we can make our settings look nice */
|
|
|
|
|
2019-12-30 14:02:08 -05:00
|
|
|
DI::page()['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . DI::baseUrl()->get() . '/addon/buffer/buffer.css' . '" media="all" />' . "\r\n";
|
2014-05-03 05:56:57 -04:00
|
|
|
|
|
|
|
/* Get the current state of our config variables */
|
|
|
|
|
2020-01-18 10:50:56 -05:00
|
|
|
$enabled = DI::pConfig()->get(local_user(),'buffer','post');
|
2014-05-03 05:56:57 -04:00
|
|
|
$checked = (($enabled) ? ' checked="checked" ' : '');
|
|
|
|
$css = (($enabled) ? '' : '-disabled');
|
|
|
|
|
2020-01-18 10:50:56 -05:00
|
|
|
$def_enabled = DI::pConfig()->get(local_user(),'buffer','post_by_default');
|
2014-05-03 05:56:57 -04:00
|
|
|
$def_checked = (($def_enabled) ? ' checked="checked" ' : '');
|
|
|
|
|
|
|
|
/* Add some HTML to the existing form */
|
|
|
|
|
|
|
|
$s .= '<span id="settings_buffer_inflated" class="settings-block fakelink" style="display: block;" onclick="openClose(\'settings_buffer_expanded\'); openClose(\'settings_buffer_inflated\');">';
|
2020-01-18 14:52:33 -05:00
|
|
|
$s .= '<img class="connector'.$css.'" src="images/buffer.png" /><h3 class="connector">'. DI::l10n()->t('Buffer Export').'</h3>';
|
2014-05-03 05:56:57 -04:00
|
|
|
$s .= '</span>';
|
|
|
|
$s .= '<div id="settings_buffer_expanded" class="settings-block" style="display: none;">';
|
|
|
|
$s .= '<span class="fakelink" onclick="openClose(\'settings_buffer_expanded\'); openClose(\'settings_buffer_inflated\');">';
|
2020-01-18 14:52:33 -05:00
|
|
|
$s .= '<img class="connector'.$css.'" src="images/buffer.png" /><h3 class="connector">'. DI::l10n()->t('Buffer Export').'</h3>';
|
2014-05-03 05:56:57 -04:00
|
|
|
$s .= '</span>';
|
|
|
|
|
2020-01-19 15:21:12 -05:00
|
|
|
$client_id = DI::config()->get("buffer", "client_id");
|
|
|
|
$client_secret = DI::config()->get("buffer", "client_secret");
|
2020-01-18 10:50:56 -05:00
|
|
|
$access_token = DI::pConfig()->get(local_user(), "buffer", "access_token");
|
2014-05-03 05:56:57 -04:00
|
|
|
|
|
|
|
$s .= '<div id="buffer-password-wrapper">';
|
2018-07-24 07:44:42 -04:00
|
|
|
|
2014-05-03 05:56:57 -04:00
|
|
|
if ($access_token == "") {
|
|
|
|
$s .= '<div id="buffer-authenticate-wrapper">';
|
2020-01-18 14:52:33 -05:00
|
|
|
$s .= '<a href="'.DI::baseUrl()->get().'/buffer/connect">'.DI::l10n()->t("Authenticate your Buffer connection").'</a>';
|
2014-05-03 05:56:57 -04:00
|
|
|
$s .= '</div><div class="clear"></div>';
|
|
|
|
} else {
|
|
|
|
$s .= '<div id="buffer-enable-wrapper">';
|
2020-01-18 14:52:33 -05:00
|
|
|
$s .= '<label id="buffer-enable-label" for="buffer-checkbox">' . DI::l10n()->t('Enable Buffer Post Addon') . '</label>';
|
2014-05-03 05:56:57 -04:00
|
|
|
$s .= '<input id="buffer-checkbox" type="checkbox" name="buffer" value="1" ' . $checked . '/>';
|
|
|
|
$s .= '</div><div class="clear"></div>';
|
|
|
|
|
|
|
|
$s .= '<div id="buffer-bydefault-wrapper">';
|
2020-01-18 14:52:33 -05:00
|
|
|
$s .= '<label id="buffer-bydefault-label" for="buffer-bydefault">' . DI::l10n()->t('Post to Buffer by default') . '</label>';
|
2014-05-03 05:56:57 -04:00
|
|
|
$s .= '<input id="buffer-bydefault" type="checkbox" name="buffer_bydefault" value="1" ' . $def_checked . '/>';
|
|
|
|
$s .= '</div><div class="clear"></div>';
|
|
|
|
|
|
|
|
$s .= '<div id="buffer-delete-wrapper">';
|
2020-01-18 14:52:33 -05:00
|
|
|
$s .= '<label id="buffer-delete-label" for="buffer-delete">' . DI::l10n()->t('Check to delete this preset') . '</label>';
|
2014-05-03 05:56:57 -04:00
|
|
|
$s .= '<input id="buffer-delete" type="checkbox" name="buffer_delete" value="1" />';
|
|
|
|
$s .= '</div><div class="clear"></div>';
|
|
|
|
|
2018-08-09 00:40:19 -04:00
|
|
|
// The callback URL is the script that gets called after the user authenticates with buffer
|
2019-12-15 19:05:14 -05:00
|
|
|
$callback_url = DI::baseUrl()->get() . '/buffer/connect';
|
2018-08-09 00:40:19 -04:00
|
|
|
|
2014-05-03 05:56:57 -04:00
|
|
|
$buffer = new BufferApp($client_id, $client_secret, $callback_url, $access_token);
|
|
|
|
|
|
|
|
$profiles = $buffer->go('/profiles');
|
|
|
|
if (is_array($profiles)) {
|
|
|
|
$s .= '<div id="buffer-accounts-wrapper">';
|
2020-01-18 14:52:33 -05:00
|
|
|
$s .= DI::l10n()->t("Posts are going to all accounts that are enabled by default:");
|
2014-05-03 05:56:57 -04:00
|
|
|
$s .= "<ul>";
|
|
|
|
foreach ($profiles as $profile) {
|
|
|
|
if (!$profile->default)
|
|
|
|
continue;
|
|
|
|
$s .= "<li>";
|
|
|
|
//$s .= "<img src='".$profile->avatar_https."' width='16' />";
|
|
|
|
$s .= " ".$profile->formatted_username." (".$profile->formatted_service.")";
|
|
|
|
$s .= "</li>";
|
|
|
|
}
|
|
|
|
$s .= "</ul>";
|
|
|
|
$s .= '</div><div class="clear"></div>';
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
$s .= '</div><div class="clear"></div>';
|
|
|
|
|
|
|
|
/* provide a submit button */
|
|
|
|
|
2020-01-18 14:52:33 -05:00
|
|
|
$s .= '<div class="settings-submit-wrapper" ><input type="submit" id="buffer-submit" name="buffer-submit" class="settings-submit" value="' . DI::l10n()->t('Save Settings') . '" /></div></div>';
|
2014-05-03 05:56:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-07-24 07:44:42 -04:00
|
|
|
function buffer_settings_post(App $a, array &$b)
|
|
|
|
{
|
|
|
|
if (!empty($_POST['buffer-submit'])) {
|
|
|
|
if (!empty($_POST['buffer_delete'])) {
|
2020-01-18 10:54:49 -05:00
|
|
|
DI::pConfig()->set(local_user(), 'buffer', 'access_token' , '');
|
|
|
|
DI::pConfig()->set(local_user(), 'buffer', 'post' , false);
|
|
|
|
DI::pConfig()->set(local_user(), 'buffer', 'post_by_default', false);
|
2014-05-03 05:56:57 -04:00
|
|
|
} else {
|
2020-01-18 10:54:49 -05:00
|
|
|
DI::pConfig()->set(local_user(), 'buffer', 'post' , intval($_POST['buffer'] ?? false));
|
|
|
|
DI::pConfig()->set(local_user(), 'buffer', 'post_by_default', intval($_POST['buffer_bydefault'] ?? false));
|
2014-05-03 05:56:57 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-24 07:44:42 -04:00
|
|
|
function buffer_post_local(App $a, array &$b)
|
|
|
|
{
|
2017-09-06 12:16:33 -04:00
|
|
|
if (!local_user() || (local_user() != $b['uid'])) {
|
2014-05-03 05:56:57 -04:00
|
|
|
return;
|
2017-09-06 12:16:33 -04:00
|
|
|
}
|
2014-05-03 05:56:57 -04:00
|
|
|
|
2020-01-18 10:50:56 -05:00
|
|
|
$buffer_post = intval(DI::pConfig()->get(local_user(),'buffer','post'));
|
2014-05-03 05:56:57 -04:00
|
|
|
|
2018-07-24 07:44:42 -04:00
|
|
|
$buffer_enable = (($buffer_post && !empty($_REQUEST['buffer_enable'])) ? intval($_REQUEST['buffer_enable']) : 0);
|
2014-05-03 05:56:57 -04:00
|
|
|
|
2020-01-18 10:50:56 -05:00
|
|
|
if ($b['api_source'] && intval(DI::pConfig()->get(local_user(),'buffer','post_by_default'))) {
|
2014-05-03 05:56:57 -04:00
|
|
|
$buffer_enable = 1;
|
2017-09-06 12:16:33 -04:00
|
|
|
}
|
2014-05-03 05:56:57 -04:00
|
|
|
|
2017-09-06 12:16:33 -04:00
|
|
|
if (!$buffer_enable) {
|
2014-05-03 05:56:57 -04:00
|
|
|
return;
|
2017-09-06 12:16:33 -04:00
|
|
|
}
|
2014-05-03 05:56:57 -04:00
|
|
|
|
2017-09-06 12:16:33 -04:00
|
|
|
if (strlen($b['postopts'])) {
|
2014-05-03 05:56:57 -04:00
|
|
|
$b['postopts'] .= ',';
|
2017-09-06 12:16:33 -04:00
|
|
|
}
|
2014-05-03 05:56:57 -04:00
|
|
|
|
|
|
|
$b['postopts'] .= 'buffer';
|
|
|
|
}
|
|
|
|
|
2018-11-10 11:20:19 -05:00
|
|
|
function buffer_hook_fork(&$a, &$b)
|
|
|
|
{
|
|
|
|
if ($b['name'] != 'notifier_normal') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$post = $b['data'];
|
|
|
|
|
|
|
|
if ($post['deleted'] || $post['private'] || ($post['created'] !== $post['edited']) ||
|
|
|
|
!strstr($post['postopts'], 'buffer') || ($post['parent'] != $post['id'])) {
|
|
|
|
$b['execute'] = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-24 07:44:42 -04:00
|
|
|
function buffer_send(App $a, array &$b)
|
2018-01-04 12:15:53 -05:00
|
|
|
{
|
2018-07-24 07:44:42 -04:00
|
|
|
if ($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited'])) {
|
2014-05-03 05:56:57 -04:00
|
|
|
return;
|
2018-01-09 22:27:40 -05:00
|
|
|
}
|
2014-05-03 05:56:57 -04:00
|
|
|
|
2018-07-24 07:44:42 -04:00
|
|
|
if (!strstr($b['postopts'],'buffer')) {
|
2014-05-03 05:56:57 -04:00
|
|
|
return;
|
2018-01-09 22:27:40 -05:00
|
|
|
}
|
2014-05-03 05:56:57 -04:00
|
|
|
|
2018-07-24 07:44:42 -04:00
|
|
|
if ($b['parent'] != $b['id']) {
|
2014-05-03 05:56:57 -04:00
|
|
|
return;
|
2018-01-09 22:27:40 -05:00
|
|
|
}
|
2014-05-03 05:56:57 -04:00
|
|
|
|
2017-11-25 18:56:18 -05:00
|
|
|
// Dont't post if the post doesn't belong to us.
|
|
|
|
// This is a check for forum postings
|
2018-07-20 08:20:48 -04:00
|
|
|
$self = DBA::selectFirst('contact', ['id'], ['uid' => $b['uid'], 'self' => true]);
|
2017-11-25 18:56:18 -05:00
|
|
|
if ($b['contact-id'] != $self['id']) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-05-03 05:56:57 -04:00
|
|
|
// if post comes from buffer don't send it back
|
2014-12-01 16:31:29 -05:00
|
|
|
//if($b['app'] == "Buffer")
|
|
|
|
// return;
|
2014-05-03 05:56:57 -04:00
|
|
|
|
2020-01-19 15:21:12 -05:00
|
|
|
$client_id = DI::config()->get("buffer", "client_id");
|
|
|
|
$client_secret = DI::config()->get("buffer", "client_secret");
|
2020-01-18 10:50:56 -05:00
|
|
|
$access_token = DI::pConfig()->get($b['uid'], "buffer","access_token");
|
2018-07-15 14:40:20 -04:00
|
|
|
$callback_url = "";
|
2014-05-03 05:56:57 -04:00
|
|
|
|
2018-01-27 08:52:02 -05:00
|
|
|
if ($access_token) {
|
2014-05-03 05:56:57 -04:00
|
|
|
$buffer = new BufferApp($client_id, $client_secret, $callback_url, $access_token);
|
|
|
|
|
|
|
|
$profiles = $buffer->go('/profiles');
|
|
|
|
if (is_array($profiles)) {
|
2018-10-30 09:48:09 -04:00
|
|
|
Logger::log("Will send these parameter ".print_r($b, true), Logger::DEBUG);
|
2014-12-01 16:31:29 -05:00
|
|
|
|
2014-05-03 05:56:57 -04:00
|
|
|
foreach ($profiles as $profile) {
|
|
|
|
if (!$profile->default)
|
|
|
|
continue;
|
|
|
|
|
2014-12-01 16:31:29 -05:00
|
|
|
$send = false;
|
|
|
|
|
2014-05-03 05:56:57 -04:00
|
|
|
switch ($profile->service) {
|
|
|
|
case 'facebook':
|
2018-08-11 16:40:48 -04:00
|
|
|
$send = ($b["extid"] != Protocol::FACEBOOK);
|
2014-05-03 05:56:57 -04:00
|
|
|
$limit = 0;
|
|
|
|
$includedlinks = false;
|
2014-12-01 16:31:29 -05:00
|
|
|
$htmlmode = 9;
|
2014-05-03 05:56:57 -04:00
|
|
|
break;
|
2018-07-24 07:44:42 -04:00
|
|
|
|
2014-05-03 05:56:57 -04:00
|
|
|
case 'twitter':
|
2018-08-11 16:40:48 -04:00
|
|
|
$send = ($b["extid"] != Protocol::TWITTER);
|
2017-11-07 17:44:39 -05:00
|
|
|
$limit = 280;
|
2014-05-03 05:56:57 -04:00
|
|
|
$includedlinks = true;
|
2014-12-01 16:31:29 -05:00
|
|
|
$htmlmode = 8;
|
2014-05-03 05:56:57 -04:00
|
|
|
break;
|
2018-07-24 07:44:42 -04:00
|
|
|
|
2014-05-03 05:56:57 -04:00
|
|
|
case 'linkedin':
|
2018-08-11 16:40:48 -04:00
|
|
|
$send = ($b["extid"] != Protocol::LINKEDIN);
|
2014-05-03 05:56:57 -04:00
|
|
|
$limit = 700;
|
|
|
|
$includedlinks = true;
|
2014-12-01 16:31:29 -05:00
|
|
|
$htmlmode = 2;
|
2014-05-03 05:56:57 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-12-01 16:31:29 -05:00
|
|
|
if (!$send)
|
|
|
|
continue;
|
|
|
|
|
2014-05-03 05:56:57 -04:00
|
|
|
$item = $b;
|
|
|
|
|
2021-01-30 18:14:05 -05:00
|
|
|
$post = Plaintext::getPost($item, $limit, $includedlinks, $htmlmode);
|
2018-10-30 09:48:09 -04:00
|
|
|
Logger::log("buffer_send: converted message ".$b["id"]." result: ".print_r($post, true), Logger::DEBUG);
|
2014-05-03 05:56:57 -04:00
|
|
|
|
2014-08-16 04:25:29 -04:00
|
|
|
// The image proxy is used as a sanitizer. Buffer seems to be really picky about pictures
|
2018-07-24 07:44:42 -04:00
|
|
|
if (isset($post["image"])) {
|
2018-07-28 14:24:16 -04:00
|
|
|
$post["image"] = ProxyUtils::proxifyUrl($post["image"]);
|
2018-07-24 07:44:42 -04:00
|
|
|
}
|
2014-05-03 05:56:57 -04:00
|
|
|
|
2018-07-24 07:44:42 -04:00
|
|
|
if (isset($post["preview"])) {
|
2018-07-28 14:24:16 -04:00
|
|
|
$post["preview"] = ProxyUtils::proxifyUrl($post["preview"]);
|
2018-07-24 07:44:42 -04:00
|
|
|
}
|
2014-05-03 05:56:57 -04:00
|
|
|
|
|
|
|
// Seems like a bug to me
|
2018-08-09 00:40:19 -04:00
|
|
|
// Buffer doesn't add links to Twitter (but pictures)
|
2018-07-24 07:44:42 -04:00
|
|
|
if (($profile->service == "twitter") && isset($post["url"]) && ($post["type"] != "photo")) {
|
|
|
|
$post["text"] .= " " . $post["url"];
|
|
|
|
}
|
2014-05-18 13:10:48 -04:00
|
|
|
|
2018-01-15 08:15:33 -05:00
|
|
|
$message = [];
|
2014-05-03 05:56:57 -04:00
|
|
|
$message["text"] = $post["text"];
|
|
|
|
$message["profile_ids[]"] = $profile->id;
|
|
|
|
$message["shorten"] = false;
|
|
|
|
$message["now"] = true;
|
|
|
|
|
2018-07-24 07:44:42 -04:00
|
|
|
if (isset($post["title"])) {
|
2014-05-03 05:56:57 -04:00
|
|
|
$message["media[title]"] = $post["title"];
|
2018-07-24 07:44:42 -04:00
|
|
|
}
|
2014-05-03 05:56:57 -04:00
|
|
|
|
2018-07-24 07:44:42 -04:00
|
|
|
if (isset($post["description"])) {
|
2014-05-03 05:56:57 -04:00
|
|
|
$message["media[description]"] = $post["description"];
|
2018-07-24 07:44:42 -04:00
|
|
|
}
|
2014-05-03 05:56:57 -04:00
|
|
|
|
2018-07-24 07:44:42 -04:00
|
|
|
if (isset($post["url"]) && ($post["type"] != "photo")) {
|
2014-05-03 05:56:57 -04:00
|
|
|
$message["media[link]"] = $post["url"];
|
2018-07-24 07:44:42 -04:00
|
|
|
}
|
2014-05-03 05:56:57 -04:00
|
|
|
|
|
|
|
if (isset($post["image"])) {
|
|
|
|
$message["media[picture]"] = $post["image"];
|
2018-07-24 07:44:42 -04:00
|
|
|
|
|
|
|
if ($post["type"] == "photo") {
|
2014-05-03 05:56:57 -04:00
|
|
|
$message["media[thumbnail]"] = $post["image"];
|
2018-07-24 07:44:42 -04:00
|
|
|
}
|
2014-05-03 05:56:57 -04:00
|
|
|
}
|
|
|
|
|
2018-07-24 07:44:42 -04:00
|
|
|
if (isset($post["preview"])) {
|
2014-05-03 05:56:57 -04:00
|
|
|
$message["media[thumbnail]"] = $post["preview"];
|
2018-07-24 07:44:42 -04:00
|
|
|
}
|
2014-05-03 05:56:57 -04:00
|
|
|
|
|
|
|
//print_r($message);
|
2018-10-30 09:48:09 -04:00
|
|
|
Logger::log("buffer_send: data for message " . $b["id"] . ": " . print_r($message, true), Logger::DEBUG);
|
2014-05-03 05:56:57 -04:00
|
|
|
$ret = $buffer->go('/updates/create', $message);
|
2018-10-30 09:48:09 -04:00
|
|
|
Logger::log("buffer_send: send message " . $b["id"] . " result: " . print_r($ret, true), Logger::DEBUG);
|
2014-05-03 05:56:57 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|