require_once __DIR__ . DIRECTORY_SEPARATOR . 'library' . DIRECTORY_SEPARATOR . 'tumblroauth.php';
-use Friendica\App;
use Friendica\Content\Text\BBCode;
use Friendica\Core\Hook;
use Friendica\Core\Logger;
use Friendica\Core\Renderer;
-use Friendica\Database\DBA;
use Friendica\DI;
+use Friendica\Model\Item;
use Friendica\Model\Post;
use Friendica\Model\Tag;
* existence of this method is checked to figure out if the addon offers a
* module.
*/
-function tumblr_module() {}
+function tumblr_module()
+{
+}
function tumblr_content()
{
if (isset(DI::args()->getArgv()[1])) {
switch (DI::args()->getArgv()[1]) {
- case "connect":
+ case 'connect':
$o = tumblr_connect();
break;
- case "callback":
+ case 'callback':
$o = tumblr_callback();
break;
function tumblr_addon_admin(string &$o)
{
- $t = Renderer::getMarkupTemplate( "admin.tpl", "addon/tumblr/" );
+ $t = Renderer::getMarkupTemplate('admin.tpl', 'addon/tumblr/');
$o = Renderer::replaceMacros($t, [
'$submit' => DI::l10n()->t('Save Settings'),
// name, label, value, help, [extra values]
- '$consumer_key' => ['consumer_key', DI::l10n()->t('Consumer Key'), DI::config()->get('tumblr', 'consumer_key' ), ''],
- '$consumer_secret' => ['consumer_secret', DI::l10n()->t('Consumer Secret'), DI::config()->get('tumblr', 'consumer_secret' ), ''],
+ '$consumer_key' => ['consumer_key', DI::l10n()->t('Consumer Key'), DI::config()->get('tumblr', 'consumer_key'), ''],
+ '$consumer_secret' => ['consumer_secret', DI::l10n()->t('Consumer Secret'), DI::config()->get('tumblr', 'consumer_secret'), ''],
]);
}
// Start a session. This is necessary to hold on to a few keys the callback script will also need
session_start();
- // Include the TumblrOAuth library
- //require_once('addon/tumblr/tumblroauth/tumblroauth.php');
-
// Define the needed keys
$consumer_key = DI::config()->get('tumblr', 'consumer_key');
$consumer_secret = DI::config()->get('tumblr', 'consumer_secret');
{
// Start a session, load the library
session_start();
- //require_once('addon/tumblr/tumblroauth/tumblroauth.php');
// Define the needed keys
$consumer_key = DI::config()->get('tumblr', 'consumer_key');
DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'tumblr', 'oauth_token', $access_token['oauth_token']);
DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'tumblr', 'oauth_token_secret', $access_token['oauth_token_secret']);
- $o = DI::l10n()->t("You are now authenticated to tumblr.");
+ $o = DI::l10n()->t('You are now authenticated to tumblr.');
$o .= '<br /><a href="' . DI::baseUrl() . '/settings/connectors">' . DI::l10n()->t("return to the connector page") . '</a>';
return $o;
return;
}
- if (DI::pConfig()->get(DI::userSession()->getLocalUserId(),'tumblr','post')) {
+ if (DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'tumblr', 'post')) {
$jotnets_fields[] = [
'type' => 'checkbox',
'field' => [
'tumblr_enable',
DI::l10n()->t('Post to Tumblr'),
- DI::pConfig()->get(DI::userSession()->getLocalUserId(),'tumblr','post_by_default')
+ DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'tumblr', 'post_by_default')
]
];
}
$userinfo = $tum_oauth->get('user/info');
$blogs = array_map(function ($blog) {
- return substr(str_replace(["http://", "https://"], ["", ""], $blog->url), 0, -1);
+ return substr(str_replace(['http://', 'https://'], ['', ''], $blog->url), 0, -1);
}, $userinfo->response->user->blogs);
$page_select = ['tumblr-page', DI::l10n()->t('Post to page:'), $page, '', $blogs];
$post = $b['data'];
- if ($post['deleted'] || $post['private'] || ($post['created'] !== $post['edited']) ||
- !strstr($post['postopts'] ?? '', 'tumblr') || ($post['parent'] != $post['id'])) {
+ if (
+ $post['deleted'] || $post['private'] || ($post['created'] !== $post['edited']) ||
+ !strstr($post['postopts'] ?? '', 'tumblr') || ($post['parent'] != $post['id'])
+ ) {
$b['execute'] = false;
return;
}
$b['postopts'] .= 'tumblr';
}
-
-
-
-function tumblr_send(array &$b) {
+function tumblr_send(array &$b)
+{
if ($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited'])) {
return;
}
- if (! strstr($b['postopts'],'tumblr')) {
- return;
- }
-
- if ($b['parent'] != $b['id']) {
+ if (!strstr($b['postopts'], 'tumblr')) {
return;
}
- // Dont't post if the post doesn't belong to us.
- // This is a check for forum postings
- $self = DBA::selectFirst('contact', ['id'], ['uid' => $b['uid'], 'self' => true]);
- if ($b['contact-id'] != $self['id']) {
+ if ($b['gravity'] != Item::GRAVITY_PARENT) {
return;
}
$b['body'] = Post\Media::addAttachmentsToBody($b['uri-id'], DI::contentItem()->addSharedPost($b));
- $oauth_token = DI::pConfig()->get($b['uid'], "tumblr", "oauth_token");
- $oauth_token_secret = DI::pConfig()->get($b['uid'], "tumblr", "oauth_token_secret");
- $page = DI::pConfig()->get($b['uid'], "tumblr", "page");
+ $oauth_token = DI::pConfig()->get($b['uid'], 'tumblr', 'oauth_token');
+ $oauth_token_secret = DI::pConfig()->get($b['uid'], 'tumblr', 'oauth_token_secret');
+ $page = DI::pConfig()->get($b['uid'], 'tumblr', 'page');
$tmbl_blog = 'blog/' . $page . '/post';
if ($oauth_token && $oauth_token_secret && $tmbl_blog) {
$tag_arr = [];
- foreach($tags as $tag) {
+ foreach ($tags as $tag) {
$tag_arr[] = $tag['name'];
}
$title = trim($b['title']);
- $siteinfo = BBCode::getAttachedData($b["body"]);
+ $media = Post\Media::getByURIId($b['uri-id'], [Post\Media::HTML, Post\Media::AUDIO, Post\Media::VIDEO, Post\Media::IMAGE]);
+
+ $photo = array_search(Post\Media::IMAGE, array_column($media, 'type'));
+ $link = array_search(Post\Media::HTML, array_column($media, 'type'));
+ $audio = array_search(Post\Media::AUDIO, array_column($media, 'type'));
+ $video = array_search(Post\Media::VIDEO, array_column($media, 'type'));
$params = [
'state' => 'published',
'format' => 'html',
];
- if (!isset($siteinfo["type"])) {
- $siteinfo["type"] = "";
- }
-
- if (($title == "") && isset($siteinfo["title"])) {
- $title = $siteinfo["title"];
- }
-
- if (isset($siteinfo["text"])) {
- $body = $siteinfo["text"];
- } else {
- $body = BBCode::removeShareInformation($b["body"]);
- }
-
- switch ($siteinfo["type"]) {
- case "photo":
- $params['type'] = "photo";
- $params['caption'] = BBCode::convertForUriId($b['uri-id'], $body, BBCode::CONNECTORS);;
-
- if (isset($siteinfo["url"])) {
- $params['link'] = $siteinfo["url"];
- }
-
- $params['source'] = $siteinfo["image"];
- break;
-
- case "link":
- $params['type'] = "link";
- $params['title'] = $title;
- $params['url'] = $siteinfo["url"];
- $params['description'] = BBCode::convertForUriId($b['uri-id'], $body, BBCode::CONNECTORS);
- break;
-
- case "audio":
- $params['type'] = "audio";
- $params['external_url'] = $siteinfo["url"];
- $params['caption'] = BBCode::convertForUriId($b['uri-id'], $body, BBCode::CONNECTORS);
- break;
+ $body = BBCode::removeShareInformation($b['body']);
- case "video":
- $params['type'] = "video";
- $params['embed'] = $siteinfo["url"];
+ if ($photo != false) {
+ $params['type'] = 'photo';
+ if (!empty($body)) {
$params['caption'] = BBCode::convertForUriId($b['uri-id'], $body, BBCode::CONNECTORS);
- break;
-
- default:
- $params['type'] = "text";
- $params['title'] = $title;
- $params['body'] = BBCode::convertForUriId($b['uri-id'], $b['body'], BBCode::CONNECTORS);
- break;
+ } elseif (!empty($params['caption'])) {
+ $params['caption'] = $photo['description'];
+ }
+ $params['source'] = $photo['url'];
+ } elseif ($link != false) {
+ $params['type'] = 'link';
+ $params['title'] = $link['name'];
+ $params['url'] = $link['url'];
+ $params['description'] = BBCode::convertForUriId($b['uri-id'], $body, BBCode::CONNECTORS);
+
+ if (!empty($link['preview'])) {
+ $params['thumbnail'] = $link['preview'];
+ }
+ if (!empty($link['description'])) {
+ $params['excerpt'] = $link['description'];
+ }
+ if (!empty($link['author-name'])) {
+ $params['author'] = $link['author-name'];
+ } elseif (!empty($link['publisher-name'])) {
+ $params['author'] = $link['publisher-name'];
+ }
+ } elseif ($audio != false) {
+ $params['type'] = 'audio';
+ $params['external_url'] = $audio['url'];
+ $params['caption'] = BBCode::convertForUriId($b['uri-id'], $body, BBCode::CONNECTORS);
+ } elseif ($video != false) {
+ $params['type'] = 'video';
+ $params['embed'] = $video['url'];
+ $params['caption'] = BBCode::convertForUriId($b['uri-id'], $body, BBCode::CONNECTORS);
+ } else {
+ $params['type'] = 'text';
+ $params['title'] = $title;
+ $params['body'] = BBCode::convertForUriId($b['uri-id'], $b['body'], BBCode::CONNECTORS);
}
- if (isset($params['caption']) && (trim($title) != "")) {
- $params['caption'] = '<h1>'.$title."</h1>".
- "<p>".$params['caption']."</p>";
+ if (isset($params['caption']) && (trim($title) != '')) {
+ $params['caption'] = '<h1>' . $title . '</h1>' .
+ '<p>' . $params['caption'] . '</p>';
}
- if (empty($params['caption']) && !empty($siteinfo["description"])) {
- $params['caption'] = BBCode::convertForUriId($b['uri-id'], "[quote]" . $siteinfo["description"] . "[/quote]", BBCode::CONNECTORS);
+ if (empty($params['caption']) && !empty($siteinfo['description'])) {
+ $params['caption'] = BBCode::convertForUriId($b['uri-id'], '[quote]' . $siteinfo['description'] . '[/quote]', BBCode::CONNECTORS);
}
- $consumer_key = DI::config()->get('tumblr','consumer_key');
- $consumer_secret = DI::config()->get('tumblr','consumer_secret');
+ $consumer_key = DI::config()->get('tumblr', 'consumer_key');
+ $consumer_secret = DI::config()->get('tumblr', 'consumer_secret');
$tum_oauth = new TumblrOAuth($consumer_key, $consumer_secret, $oauth_token, $oauth_token_secret);
// Make an API call with the TumblrOAuth instance.
- $x = $tum_oauth->post($tmbl_blog,$params);
+ $x = $tum_oauth->post($tmbl_blog, $params);
$ret_code = $tum_oauth->http_code;
- //print_r($params);
if ($ret_code == 201) {
Logger::notice('tumblr_send: success');
} elseif ($ret_code == 403) {
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
*/
-use Friendica\App;
use Friendica\Content\Text\BBCode;
use Friendica\Content\Text\HTML;
use Friendica\Core\Hook;
return;
}
- if (DI::pConfig()->get(DI::userSession()->getLocalUserId(),'wppost','post')) {
+ if (DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'wppost', 'post')) {
$jotnets_fields[] = [
'type' => 'checkbox',
'field' => [
'wppost_enable',
DI::l10n()->t('Post to Wordpress'),
- DI::pConfig()->get(DI::userSession()->getLocalUserId(),'wppost','post_by_default')
+ DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'wppost', 'post_by_default')
]
];
}
function wppost_settings_post(array &$b)
{
- if(!empty($_POST['wppost-submit'])) {
- DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'wppost', 'post' , intval($_POST['wppost']));
+ if (!empty($_POST['wppost-submit'])) {
+ DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'wppost', 'post', intval($_POST['wppost']));
DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'wppost', 'post_by_default', intval($_POST['wp_bydefault']));
- DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'wppost', 'wp_username' , trim($_POST['wp_username']));
- DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'wppost', 'wp_password' , trim($_POST['wp_password']));
- DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'wppost', 'wp_blog' , trim($_POST['wp_blog']));
- DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'wppost', 'backlink' , intval($_POST['wp_backlink']));
- DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'wppost', 'shortcheck' , intval($_POST['wp_shortcheck']));
+ DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'wppost', 'wp_username', trim($_POST['wp_username']));
+ DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'wppost', 'wp_password', trim($_POST['wp_password']));
+ DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'wppost', 'wp_blog', trim($_POST['wp_blog']));
+ DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'wppost', 'backlink', intval($_POST['wp_backlink']));
+ DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'wppost', 'shortcheck', intval($_POST['wp_shortcheck']));
$wp_backlink_text = BBCode::convert(trim($_POST['wp_backlink_text']), false, BBCode::BACKLINK);
$wp_backlink_text = HTML::toPlaintext($wp_backlink_text, 0, true);
DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'wppost', 'wp_backlink_text', $wp_backlink_text);
$post = $b['data'];
- if ($post['deleted'] || $post['private'] || ($post['created'] !== $post['edited']) ||
- !strstr($post['postopts'] ?? '', 'wppost') || ($post['parent'] != $post['id'])) {
+ if (
+ $post['deleted'] || $post['private'] || ($post['created'] !== $post['edited']) ||
+ !strstr($post['postopts'] ?? '', 'wppost') || ($post['parent'] != $post['id'])
+ ) {
$b['execute'] = false;
return;
}
}
-function wppost_post_local(array &$b) {
+function wppost_post_local(array &$b)
+{
// This can probably be changed to allow editing by pointing to a different API endpoint
function wppost_send(array &$b)
{
- if($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited'])) {
+ if ($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited'])) {
return;
}
- if(! strstr($b['postopts'],'wppost')) {
+ if (!strstr($b['postopts'], 'wppost')) {
return;
}
- if($b['parent'] != $b['id']) {
+ if ($b['gravity'] != Item::GRAVITY_PARENT) {
return;
}
$wp_username = XML::escape(DI::pConfig()->get($b['uid'], 'wppost', 'wp_username'));
$wp_password = XML::escape(DI::pConfig()->get($b['uid'], 'wppost', 'wp_password'));
- $wp_blog = DI::pConfig()->get($b['uid'],'wppost','wp_blog');
- $wp_backlink_text = DI::pConfig()->get($b['uid'],'wppost','wp_backlink_text');
+ $wp_blog = DI::pConfig()->get($b['uid'], 'wppost', 'wp_blog');
+ $wp_backlink_text = DI::pConfig()->get($b['uid'], 'wppost', 'wp_backlink_text');
if ($wp_backlink_text == '') {
$wp_backlink_text = DI::l10n()->t('Read the original post and comment stream on Friendica');
}
if (intval(DI::pConfig()->get($b['uid'], 'wppost', 'shortcheck'))) {
// Checking, if its a post that is worth a blog post
- $postentry = false;
- $siteinfo = BBCode::getAttachedData($b["body"]);
-
- // Is it a link to an aricle, a video or a photo?
- if (isset($siteinfo["type"])) {
- if (in_array($siteinfo["type"], ["link", "audio", "video", "photo"])) {
- $postentry = true;
- }
- }
+ $postentry = (bool)Post\Media::getByURIId($b['uri-id'], [Post\Media::HTML, Post\Media::AUDIO, Post\Media::VIDEO, Post\Media::IMAGE]);
// Does it have a title?
if ($wptitle != "") {
// If the title is empty then try to guess
if ($wptitle == '') {
// Fetch information about the post
- $siteinfo = BBCode::getAttachedData($b["body"]);
- if (isset($siteinfo["title"])) {
- $wptitle = $siteinfo["title"];
+ $media = Post\Media::getByURIId($b['uri-id'], [Post\Media::HTML]);
+ if (!empty($media) && !empty($media[0]['name']) && ($media[0]['name'] != $media[0]['url'])) {
+ $wptitle = $media[0]['name'];
}
// If no bookmark is found then take the first line
// Remove the share element before fetching the first line
$title = trim(preg_replace("/\[share.*?\](.*?)\[\/share\]/ism", "\n$1\n", $b['body']));
- $title = BBCode::toPlaintext($title)."\n";
+ $title = BBCode::toPlaintext($title) . "\n";
$pos = strpos($title, "\n");
$trailer = "";
if (($pos == 0) || ($pos > 100)) {
$trailer = "...";
}
- $wptitle = substr($title, 0, $pos).$trailer;
+ $wptitle = substr($title, 0, $pos) . $trailer;
}
}
$post = preg_replace('/<a.*?href="(https?:\/\/www.youtube.com\/.*?)".*?>(.*?)<\/a>/ism', "\n$1\n", $post);
$post = preg_replace('/<a.*?href="(https?:\/\/youtu.be\/.*?)".*?>(.*?)<\/a>/ism', "\n$1\n", $post);
- $post = $title.$post;
+ $post = $title . $post;
- $wp_backlink = intval(DI::pConfig()->get($b['uid'],'wppost','backlink'));
- if($wp_backlink && $b['plink']) {
+ $wp_backlink = intval(DI::pConfig()->get($b['uid'], 'wppost', 'backlink'));
+ if ($wp_backlink && $b['plink']) {
$post .= '<p><a href="' . $b['plink'] . '">' . $wp_backlink_text . '</a></p>';
}