friendica-addons/tumblr/tumblr.php

546 lines
17 KiB
PHP
Raw Normal View History

2012-12-22 21:36:35 +01:00
<?php
/**
* Name: Tumblr Post Connector
* Description: Post to Tumblr
* Version: 2.0
2012-12-22 21:36:35 +01:00
* Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
* Author: Michael Vogel <https://pirati.ca/profile/heluecht>
2012-12-22 21:36:35 +01:00
*/
require_once __DIR__ . DIRECTORY_SEPARATOR . 'library' . DIRECTORY_SEPARATOR . 'tumblroauth.php';
2012-12-22 21:36:35 +01:00
use Friendica\Content\Text\BBCode;
2023-04-06 21:10:32 +02:00
use Friendica\Content\Text\NPF;
use Friendica\Core\Hook;
use Friendica\Core\Logger;
use Friendica\Core\Renderer;
2023-04-08 18:49:52 +02:00
use Friendica\Core\System;
use Friendica\DI;
2023-03-05 22:17:14 +01:00
use Friendica\Model\Item;
2023-03-09 07:37:02 +01:00
use Friendica\Model\Photo;
use Friendica\Model\Post;
2020-05-06 00:47:43 +02:00
use Friendica\Model\Tag;
2023-04-06 21:10:32 +02:00
use Friendica\Util\DateTimeFormat;
2023-03-09 07:37:02 +01:00
use Friendica\Util\Network;
2023-04-06 21:10:32 +02:00
use GuzzleHttp\Client;
use GuzzleHttp\Exception\RequestException;
use GuzzleHttp\HandlerStack;
use GuzzleHttp\Subscriber\Oauth\Oauth1;
function tumblr_install()
{
Hook::register('hook_fork', 'addon/tumblr/tumblr.php', 'tumblr_hook_fork');
Hook::register('post_local', 'addon/tumblr/tumblr.php', 'tumblr_post_local');
Hook::register('notifier_normal', 'addon/tumblr/tumblr.php', 'tumblr_send');
Hook::register('jot_networks', 'addon/tumblr/tumblr.php', 'tumblr_jot_nets');
Hook::register('connector_settings', 'addon/tumblr/tumblr.php', 'tumblr_settings');
Hook::register('connector_settings_post', 'addon/tumblr/tumblr.php', 'tumblr_settings_post');
2012-12-22 21:36:35 +01:00
}
/**
* This is a statement rather than an actual function definition. The simple
* existence of this method is checked to figure out if the addon offers a
* module.
*/
2023-03-05 22:17:14 +01:00
function tumblr_module()
{
}
2012-12-22 21:36:35 +01:00
function tumblr_content()
{
2022-10-20 23:51:49 +02:00
if (!DI::userSession()->getLocalUserId()) {
2022-10-17 23:00:03 +02:00
DI::sysmsg()->addNotice(DI::l10n()->t('Permission denied.'));
2012-12-22 21:36:35 +01:00
return '';
}
if (isset(DI::args()->getArgv()[1])) {
switch (DI::args()->getArgv()[1]) {
2023-03-05 22:17:14 +01:00
case 'connect':
$o = tumblr_connect();
2012-12-22 21:36:35 +01:00
break;
2023-03-05 22:17:14 +01:00
case 'callback':
$o = tumblr_callback();
2012-12-22 21:36:35 +01:00
break;
2012-12-22 21:36:35 +01:00
default:
$o = print_r(DI::args()->getArgv(), true);
2012-12-22 21:36:35 +01:00
break;
}
} else {
$o = tumblr_connect();
}
2012-12-22 21:36:35 +01:00
return $o;
}
function tumblr_addon_admin(string &$o)
{
2023-03-05 22:17:14 +01:00
$t = Renderer::getMarkupTemplate('admin.tpl', 'addon/tumblr/');
2014-06-15 15:05:04 +02:00
$o = Renderer::replaceMacros($t, [
'$submit' => DI::l10n()->t('Save Settings'),
// name, label, value, help, [extra values]
2023-03-05 22:17:14 +01:00
'$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'), ''],
]);
2014-06-15 15:05:04 +02:00
}
function tumblr_addon_admin_post()
{
DI::config()->set('tumblr', 'consumer_key', trim($_POST['consumer_key'] ?? ''));
DI::config()->set('tumblr', 'consumer_secret', trim($_POST['consumer_secret'] ?? ''));
2014-06-15 15:05:04 +02:00
}
function tumblr_connect()
{
2012-12-22 21:36:35 +01: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
$consumer_key = DI::config()->get('tumblr', 'consumer_key');
$consumer_secret = DI::config()->get('tumblr', 'consumer_secret');
2012-12-22 21:36:35 +01:00
// The callback URL is the script that gets called after the user authenticates with tumblr
// In this example, it would be the included callback.php
$callback_url = DI::baseUrl() . '/tumblr/callback';
2012-12-22 21:36:35 +01:00
// Let's begin. First we need a Request Token. The request token is required to send the user
// to Tumblr's login page.
// Create a new instance of the TumblrOAuth library. For this step, all we need to give the library is our
// Consumer Key and Consumer Secret
$tum_oauth = new TumblrOAuth($consumer_key, $consumer_secret);
// Ask Tumblr for a Request Token. Specify the Callback URL here too (although this should be optional)
$request_token = $tum_oauth->getRequestToken($callback_url);
// Store the request token and Request Token Secret as out callback.php script will need this
2023-04-06 21:10:32 +02:00
DI::session()->set('request_token', $request_token['oauth_token']);
DI::session()->set('request_token_secret', $request_token['oauth_token_secret']);
2012-12-22 21:36:35 +01:00
// Check the HTTP Code. It should be a 200 (OK), if it's anything else then something didn't work.
switch ($tum_oauth->http_code) {
2014-06-10 20:13:11 +02:00
case 200:
// Ask Tumblr to give us a special address to their login page
2023-04-06 21:10:32 +02:00
$url = $tum_oauth->getAuthorizeURL($request_token['oauth_token']);
2014-06-10 20:13:11 +02:00
// Redirect the user to the login URL given to us by Tumblr
2023-04-08 18:49:52 +02:00
System::externalRedirect($url);
2014-06-10 20:13:11 +02:00
/*
* That's it for our side. The user is sent to a Tumblr Login page and
* asked to authroize our app. After that, Tumblr sends the user back to
* our Callback URL (callback.php) along with some information we need to get
* an access token.
*/
2014-06-10 20:13:11 +02:00
break;
2014-06-10 20:13:11 +02:00
default:
// Give an error message
$o = 'Could not connect to Tumblr. Refresh the page or try again later.';
2012-12-22 21:36:35 +01:00
}
return $o;
}
2012-12-22 21:36:35 +01:00
function tumblr_callback()
{
2012-12-22 21:36:35 +01:00
// Start a session, load the library
session_start();
// Define the needed keys
2023-04-06 21:10:32 +02:00
$consumer_key = DI::config()->get('tumblr', 'consumer_key');
$consumer_secret = DI::config()->get('tumblr', 'consumer_secret');
2012-12-22 21:36:35 +01:00
// Once the user approves your app at Tumblr, they are sent back to this script.
// This script is passed two parameters in the URL, oauth_token (our Request Token)
// and oauth_verifier (Key that we need to get Access Token).
// We'll also need out Request Token Secret, which we stored in a session.
// Create instance of TumblrOAuth.
// It'll need our Consumer Key and Secret as well as our Request Token and Secret
2023-04-06 21:10:32 +02:00
$tum_oauth = new TumblrOAuth($consumer_key, $consumer_secret);
2012-12-22 21:36:35 +01:00
2017-06-09 03:20:27 +02:00
// Ok, let's get an Access Token. We'll need to pass along our oauth_verifier which was given to us in the URL.
2023-04-06 21:10:32 +02:00
$access_token = $tum_oauth->getAccessToken($_REQUEST['oauth_verifier'], DI::session()->get('request_token'), DI::session()->get('request_token_secret'));
2012-12-22 21:36:35 +01:00
// We're done with the Request Token and Secret so let's remove those.
2023-04-06 21:10:32 +02:00
DI::session()->remove('request_token');
DI::session()->remove('request_token_secret');
2012-12-22 21:36:35 +01:00
// Make sure nothing went wrong.
if (200 == $tum_oauth->http_code) {
2014-06-10 20:13:11 +02:00
// good to go
2012-12-22 21:36:35 +01:00
} else {
return 'Unable to authenticate';
2012-12-22 21:36:35 +01:00
}
// What's next? Now that we have an Access Token and Secret, we can make an API call.
2022-10-20 23:51:49 +02:00
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']);
2012-12-22 21:36:35 +01:00
DI::baseUrl()->redirect('settings/connectors/tumblr');
2012-12-22 21:36:35 +01:00
}
function tumblr_jot_nets(array &$jotnets_fields)
{
2022-10-20 23:51:49 +02:00
if (!DI::userSession()->getLocalUserId()) {
2014-06-10 20:13:11 +02:00
return;
}
2014-06-10 20:13:11 +02:00
2023-03-05 22:17:14 +01:00
if (DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'tumblr', 'post')) {
$jotnets_fields[] = [
'type' => 'checkbox',
'field' => [
'tumblr_enable',
DI::l10n()->t('Post to Tumblr'),
2023-03-05 22:17:14 +01:00
DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'tumblr', 'post_by_default')
]
];
2014-06-10 20:13:11 +02:00
}
2012-12-22 21:36:35 +01:00
}
function tumblr_settings(array &$data)
{
2022-10-20 23:51:49 +02:00
if (!DI::userSession()->getLocalUserId()) {
2014-06-10 20:13:11 +02:00
return;
}
2012-12-22 21:36:35 +01:00
2022-10-20 23:51:49 +02:00
$enabled = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'tumblr', 'post', false);
$def_enabled = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'tumblr', 'post_by_default', false);
2012-12-22 21:36:35 +01:00
$blogs = tumblr_get_blogs(DI::userSession()->getLocalUserId());
if (!empty($blogs)) {
$page = tumblr_get_page(DI::userSession()->getLocalUserId(), $blogs);
2023-04-06 21:10:32 +02:00
$page_select = ['tumblr_page', DI::l10n()->t('Post to page:'), $page, '', $blogs];
}
2012-12-22 21:36:35 +01:00
$t = Renderer::getMarkupTemplate('connector_settings.tpl', 'addon/tumblr/');
$html = Renderer::replaceMacros($t, [
'$l10n' => [
'connect' => DI::l10n()->t('(Re-)Authenticate your tumblr page'),
'noconnect' => DI::l10n()->t('You are not authenticated to tumblr'),
],
'$authenticate_url' => DI::baseUrl() . '/tumblr/connect',
2012-12-22 21:36:35 +01:00
'$enable' => ['tumblr', DI::l10n()->t('Enable Tumblr Post Addon'), $enabled],
'$bydefault' => ['tumblr_bydefault', DI::l10n()->t('Post to Tumblr by default'), $def_enabled],
'$page_select' => $page_select ?? '',
]);
2012-12-22 21:36:35 +01:00
$data = [
'connector' => 'tumblr',
'title' => DI::l10n()->t('Tumblr Export'),
'image' => 'images/tumblr.png',
'enabled' => $enabled,
'html' => $html,
];
2012-12-22 21:36:35 +01:00
}
function tumblr_settings_post(array &$b)
{
if (!empty($_POST['tumblr-submit'])) {
2022-10-20 23:51:49 +02:00
DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'tumblr', 'post', intval($_POST['tumblr']));
DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'tumblr', 'page', $_POST['tumblr_page']);
DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'tumblr', 'post_by_default', intval($_POST['tumblr_bydefault']));
2012-12-22 21:36:35 +01:00
}
}
function tumblr_hook_fork(array &$b)
{
if ($b['name'] != 'notifier_normal') {
return;
}
$post = $b['data'];
2023-03-05 22:17:14 +01:00
if (
$post['deleted'] || $post['private'] || ($post['created'] !== $post['edited']) ||
!strstr($post['postopts'] ?? '', 'tumblr') || ($post['parent'] != $post['id'])
) {
$b['execute'] = false;
return;
}
}
function tumblr_post_local(array &$b)
{
2012-12-22 21:36:35 +01:00
// This can probably be changed to allow editing by pointing to a different API endpoint
if ($b['edit']) {
2012-12-22 21:36:35 +01:00
return;
}
2012-12-22 21:36:35 +01:00
2022-10-20 23:51:49 +02:00
if (!DI::userSession()->getLocalUserId() || (DI::userSession()->getLocalUserId() != $b['uid'])) {
2012-12-22 21:36:35 +01:00
return;
}
2012-12-22 21:36:35 +01:00
if ($b['private'] || $b['parent']) {
2012-12-22 21:36:35 +01:00
return;
}
2012-12-22 21:36:35 +01:00
2022-10-20 23:51:49 +02:00
$tmbl_post = intval(DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'tumblr', 'post'));
2012-12-22 21:36:35 +01:00
$tmbl_enable = (($tmbl_post && !empty($_REQUEST['tumblr_enable'])) ? intval($_REQUEST['tumblr_enable']) : 0);
2012-12-22 21:36:35 +01:00
2022-10-20 23:51:49 +02:00
if ($b['api_source'] && intval(DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'tumblr', 'post_by_default'))) {
2012-12-22 21:36:35 +01:00
$tmbl_enable = 1;
}
2012-12-22 21:36:35 +01:00
if (!$tmbl_enable) {
2014-06-10 20:13:11 +02:00
return;
}
2012-12-22 21:36:35 +01:00
if (strlen($b['postopts'])) {
2014-06-10 20:13:11 +02:00
$b['postopts'] .= ',';
}
2014-06-10 20:13:11 +02:00
$b['postopts'] .= 'tumblr';
2012-12-22 21:36:35 +01:00
}
2023-03-05 22:17:14 +01:00
function tumblr_send(array &$b)
{
if ($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited'])) {
2014-06-10 20:13:11 +02:00
return;
2018-01-10 04:27:40 +01:00
}
2012-12-22 21:36:35 +01:00
2023-03-05 22:17:14 +01:00
if (!strstr($b['postopts'], 'tumblr')) {
2014-06-10 20:13:11 +02:00
return;
2018-01-10 04:27:40 +01:00
}
2012-12-22 21:36:35 +01:00
2023-03-05 22:17:14 +01:00
if ($b['gravity'] != Item::GRAVITY_PARENT) {
return;
}
2023-04-06 21:10:32 +02:00
if (tumblr_send_npf($b)) {
return;
}
$connection = tumblr_connection($b['uid']);
if (empty($connection)) {
return;
}
2023-03-09 07:37:02 +01:00
$b['body'] = BBCode::removeAttachment($b['body']);
2023-04-06 21:10:32 +02:00
$title = trim($b['title']);
2012-12-22 21:36:35 +01:00
2023-04-06 21:10:32 +02:00
$media = Post\Media::getByURIId($b['uri-id'], [Post\Media::HTML, Post\Media::AUDIO, Post\Media::VIDEO, Post\Media::IMAGE]);
2020-05-06 00:47:43 +02:00
2023-04-06 21:10:32 +02:00
$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'));
2012-12-22 21:36:35 +01:00
2023-04-06 21:10:32 +02:00
$params = [
'state' => 'published',
'tags' => implode(',', array_column(Tag::getByURIId($b['uri-id']), 'name')),
'tweet' => 'off',
'format' => 'html',
];
2023-04-06 21:10:32 +02:00
$body = BBCode::removeShareInformation($b['body']);
$body = Post\Media::removeFromEndOfBody($body);
if ($photo !== false) {
$params['type'] = 'photo';
$params['caption'] = BBCode::convertForUriId($b['uri-id'], $body, BBCode::CONNECTORS);
$params['data'] = [];
foreach ($media as $photo) {
if ($photo['type'] == Post\Media::IMAGE) {
if (Network::isLocalLink($photo['url']) && ($data = Photo::getResourceData($photo['url']))) {
$photo = Photo::selectFirst([], ["`resource-id` = ? AND `scale` > ?", $data['guid'], 0]);
if (!empty($photo)) {
$params['data'][] = Photo::getImageDataForPhoto($photo);
}
}
}
}
} elseif ($link !== false) {
$params['type'] = 'link';
$params['title'] = $media[$link]['name'];
$params['url'] = $media[$link]['url'];
$params['description'] = BBCode::convertForUriId($b['uri-id'], $body, BBCode::CONNECTORS);
if (!empty($media[$link]['preview'])) {
$params['thumbnail'] = $media[$link]['preview'];
}
if (!empty($media[$link]['description'])) {
$params['excerpt'] = $media[$link]['description'];
}
if (!empty($media[$link]['author-name'])) {
$params['author'] = $media[$link]['author-name'];
}
2023-04-06 21:10:32 +02:00
} elseif ($audio !== false) {
$params['type'] = 'audio';
$params['external_url'] = $media[$audio]['url'];
$params['caption'] = BBCode::convertForUriId($b['uri-id'], $body, BBCode::CONNECTORS);
} elseif ($video !== false) {
$params['type'] = 'video';
$params['embed'] = $media[$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);
}
2012-12-22 21:36:35 +01:00
2023-04-06 21:10:32 +02:00
if (isset($params['caption']) && (trim($title) != '')) {
$params['caption'] = '<h1>' . $title . '</h1>' .
'<p>' . $params['caption'] . '</p>';
}
2012-12-22 21:36:35 +01:00
$page = tumblr_get_page($b['uid']);
2023-03-05 22:17:14 +01:00
2023-04-06 21:10:32 +02:00
$result = tumblr_post($connection, 'blog/' . $page . '/post', $params);
2012-12-22 21:36:35 +01:00
2023-04-06 21:10:32 +02:00
if ($result['success']) {
Logger::info('success', ['blog' => $page, 'params' => $params]);
return true;
} else {
Logger::notice('error', ['blog' => $page, 'params' => $params, 'result' => $result['data']]);
return false;
}
}
2012-12-22 21:36:35 +01:00
2023-04-06 21:10:32 +02:00
function tumblr_send_npf(array $post): bool
{
$page = tumblr_get_page($post['uid']);
2012-12-22 21:36:35 +01:00
2023-04-06 21:10:32 +02:00
$connection = tumblr_connection($post['uid']);
if (empty($page)) {
Logger::notice('Missing page, post will not be send to Tumblr.', ['uid' => $post['uid'], 'page' => $page, 'id' => $post['id']]);
2023-04-06 21:10:32 +02:00
// "true" is returned, since the legacy function will fail as well.
return true;
}
$post['body'] = Post\Media::addAttachmentsToBody($post['uri-id'], $post['body']);
if (!empty($post['title'])) {
$post['body'] = '[h1]' . $post['title'] . "[/h1]\n" . $post['body'];
}
2023-04-06 21:10:32 +02:00
$params = [
'content' => NPF::fromBBCode($post['body'], $post['uri-id']),
'state' => 'published',
'date' => DateTimeFormat::utc($post['created'], DateTimeFormat::ATOM),
'tags' => implode(',', array_column(Tag::getByURIId($post['uri-id']), 'name')),
'is_private' => false,
'interactability_reblog' => 'everyone'
];
2012-12-22 21:36:35 +01:00
2023-04-06 21:10:32 +02:00
$result = tumblr_post($connection, 'blog/' . $page . '/posts', $params);
if ($result['success']) {
Logger::info('success', ['blog' => $page, 'params' => $params]);
return true;
} else {
Logger::notice('error', ['blog' => $page, 'params' => $params, 'result' => $result['data']]);
return false;
}
}
2012-12-22 21:36:35 +01:00
function tumblr_connection(int $uid): ?GuzzleHttp\Client
2023-04-06 21:10:32 +02:00
{
$oauth_token = DI::pConfig()->get($uid, 'tumblr', 'oauth_token');
$oauth_token_secret = DI::pConfig()->get($uid, 'tumblr', 'oauth_token_secret');
2023-04-06 21:10:32 +02:00
$consumer_key = DI::config()->get('tumblr', 'consumer_key');
$consumer_secret = DI::config()->get('tumblr', 'consumer_secret');
if (!$consumer_key || !$consumer_secret || !$oauth_token || !$oauth_token_secret) {
Logger::notice('Missing data, connection is not established', ['uid' => $uid]);
2023-04-06 21:10:32 +02:00
return null;
}
return tumblr_client($consumer_key, $consumer_secret, $oauth_token, $oauth_token_secret);
}
function tumblr_client(string $consumer_key, string $consumer_secret, string $oauth_token, string $oauth_token_secret): GuzzleHttp\Client
{
$stack = HandlerStack::create();
$middleware = new Oauth1([
'consumer_key' => $consumer_key,
'consumer_secret' => $consumer_secret,
'token' => $oauth_token,
'token_secret' => $oauth_token_secret
]);
$stack->push($middleware);
return new Client([
'base_uri' => 'https://api.tumblr.com/v2/',
'handler' => $stack
]);
}
function tumblr_get_page(int $uid, array $blogs = [])
{
$page = DI::pConfig()->get($uid, 'tumblr', 'page');
if (!empty($page) && (strpos($page, '/') === false)) {
return $page;
}
if (empty($blogs)) {
$blogs = tumblr_get_blogs($uid);
}
if (!empty($blogs)) {
$page = array_key_first($blogs);
DI::pConfig()->set($uid, 'tumblr', 'page', $page);
return $page;
}
return '';
}
function tumblr_get_blogs(int $uid)
{
$connection = tumblr_connection($uid);
if (empty($connection)) {
return [];
}
$userinfo = tumblr_get($connection, 'user/info');
if (empty($userinfo['success'])) {
return [];
}
$blogs = [];
foreach ($userinfo['data']->response->user->blogs as $blog) {
$blogs[$blog->uuid] = $blog->name;
}
return $blogs;
}
2023-04-06 21:10:32 +02:00
function tumblr_get($connection, string $url)
{
try {
$res = $connection->get($url, ['auth' => 'oauth']);
$success = true;
$data = json_decode($res->getBody()->getContents());
} catch (RequestException $exception) {
$success = false;
$data = [];
2023-04-06 21:10:32 +02:00
Logger::notice('Request failed', ['code' => $exception->getCode(), 'message' => $exception->getMessage()]);
2012-12-22 21:36:35 +01:00
}
2023-04-06 21:10:32 +02:00
return ['success' => $success, 'data' => $data];
2012-12-22 21:36:35 +01:00
}
2023-04-06 21:10:32 +02:00
function tumblr_post($connection, string $url, array $parameter)
{
try {
$res = $connection->post($url, ['auth' => 'oauth', 'json' => $parameter]);
$success = true;
$data = json_decode($res->getBody()->getContents());
} catch (RequestException $exception) {
$success = false;
$data = json_decode($exception->getResponse()->getBody()->getContents());
Logger::notice('Post failed', ['code' => $exception->getCode(), 'message' => $exception->getMessage()]);
2023-04-06 21:10:32 +02:00
}
return ['success' => $success, 'data' => $data];
}