]> git.mxchange.org Git - friendica-addons.git/blobdiff - twitter/twitter.php
Merge pull request 'Bluesky: Tags are now supported' (#1438) from heluecht/friendica...
[friendica-addons.git] / twitter / twitter.php
index c55489a00836c9aeeb58e0f29d56e519aae6f9e5..b01345b74959931fc7257890004afe58f3419fd5 100644 (file)
@@ -1,14 +1,14 @@
 <?php
 /**
- * Name: Twitter Connector
- * Description: Bidirectional (posting, relaying and reading) connector for Twitter.
- * Version: 1.1.0
+ * Name: Twitter Post Connector
+ * Description: Post to Twitter
+ * Version: 2.0
  * Author: Tobias Diekershoff <https://f.diekershoff.de/profile/tobias>
  * Author: Michael Vogel <https://pirati.ca/profile/heluecht>
  * Maintainer: Hypolite Petovan <https://friendica.mrpetovan.com/profile/hypolite>
- * Status: unsupported
+ * Maintainer: Michael Vogel <https://pirati.ca/profile/heluecht>
  *
- * Copyright (c) 2011-2013 Tobias Diekershoff, Michael Vogel, Hypolite Petovan
+ * Copyright (c) 2011-2023 Tobias Diekershoff, Michael Vogel, Hypolite Petovan
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  *
  */
-/*   Twitter Addon for Friendica
- *
- *   Author: Tobias Diekershoff
- *           tobias.diekershoff@gmx.net
- *
- *   License:3-clause BSD license
- *
- *   Configuration:
- *     To use this addon you need a OAuth Consumer key pair (key & secret)
- *     you can get it from Twitter at https://twitter.com/apps
- *
- *     Register your Friendica site as "Client" application with "Read & Write" access
- *     we do not need "Twitter as login". When you've registered the app you get the
- *     OAuth Consumer key and secret pair for your application/site.
- *
- *     Add this key pair to your config/twitter.config.php file or use the admin panel.
- *
- *             return [
- *          'twitter' => [
- *                     'consumerkey' => '',
- *                 'consumersecret' => '',
- *          ],
- *      ];
- *
- *     To activate the addon itself add it to the system.addon
- *     setting. After this, your user can configure their Twitter account settings
- *     from "Settings -> Addon Settings".
- *
- *     Requirements: PHP5, curl
- */
 
-use Abraham\TwitterOAuth\TwitterOAuth;
-use Abraham\TwitterOAuth\TwitterOAuthException;
-use Codebird\Codebird;
-use Friendica\App;
 use Friendica\Content\Text\BBCode;
 use Friendica\Content\Text\Plaintext;
 use Friendica\Core\Hook;
 use Friendica\Core\Logger;
-use Friendica\Core\Protocol;
 use Friendica\Core\Renderer;
 use Friendica\Core\Worker;
-use Friendica\Database\DBA;
 use Friendica\DI;
-use Friendica\Model\Contact;
-use Friendica\Model\Conversation;
-use Friendica\Model\Group;
 use Friendica\Model\Item;
-use Friendica\Model\ItemURI;
 use Friendica\Model\Post;
-use Friendica\Model\Tag;
-use Friendica\Model\User;
-use Friendica\Protocol\Activity;
 use Friendica\Core\Config\Util\ConfigFileManager;
-use Friendica\Core\System;
 use Friendica\Model\Photo;
-use Friendica\Util\DateTimeFormat;
-use Friendica\Util\Images;
-use Friendica\Util\Strings;
-
-require_once __DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php';
+use Friendica\Object\Image;
+use GuzzleHttp\Client;
+use GuzzleHttp\Exception\RequestException;
+use GuzzleHttp\HandlerStack;
+use GuzzleHttp\Subscriber\Oauth\Oauth1;
 
-define('TWITTER_DEFAULT_POLL_INTERVAL', 5); // given in minutes
+const TWITTER_IMAGE_SIZE = [2000000, 1000000, 500000, 100000, 50000];
 
 function twitter_install()
 {
-       //  we need some hooks, for the configuration and for sending tweets
-       Hook::register('load_config'            , __FILE__, 'twitter_load_config');
-       Hook::register('connector_settings'     , __FILE__, 'twitter_settings');
+       Hook::register('load_config', __FILE__, 'twitter_load_config');
+       Hook::register('connector_settings', __FILE__, 'twitter_settings');
        Hook::register('connector_settings_post', __FILE__, 'twitter_settings_post');
-       Hook::register('hook_fork'              , __FILE__, 'twitter_hook_fork');
-       Hook::register('post_local'             , __FILE__, 'twitter_post_local');
-       Hook::register('notifier_normal'        , __FILE__, 'twitter_post_hook');
-       Hook::register('jot_networks'           , __FILE__, 'twitter_jot_nets');
-       Hook::register('cron'                   , __FILE__, 'twitter_cron');
-       Hook::register('support_follow'         , __FILE__, 'twitter_support_follow');
-       Hook::register('follow'                 , __FILE__, 'twitter_follow');
-       Hook::register('unfollow'               , __FILE__, 'twitter_unfollow');
-       Hook::register('block'                  , __FILE__, 'twitter_block');
-       Hook::register('unblock'                , __FILE__, 'twitter_unblock');
-       Hook::register('expire'                 , __FILE__, 'twitter_expire');
-       Hook::register('prepare_body'           , __FILE__, 'twitter_prepare_body');
-       Hook::register('check_item_notification', __FILE__, 'twitter_check_item_notification');
-       Hook::register('probe_detect'           , __FILE__, 'twitter_probe_detect');
-       Hook::register('item_by_link'           , __FILE__, 'twitter_item_by_link');
-       Hook::register('parse_link'             , __FILE__, 'twitter_parse_link');
-       Logger::info('installed twitter');
+       Hook::register('hook_fork', __FILE__, 'twitter_hook_fork');
+       Hook::register('post_local', __FILE__, 'twitter_post_local');
+       Hook::register('notifier_normal', __FILE__, 'twitter_post_hook');
+       Hook::register('jot_networks', __FILE__, 'twitter_jot_nets');
 }
 
-// Hook functions
-
 function twitter_load_config(ConfigFileManager $loader)
 {
        DI::app()->getConfigCache()->load($loader->loadAddonConfig('twitter'), \Friendica\Core\Config\ValueObject\Cache::SOURCE_STATIC);
 }
 
-function twitter_check_item_notification(array &$notification_data)
-{
-       $own_id = DI::pConfig()->get($notification_data['uid'], 'twitter', 'own_id');
-
-       $own_user = Contact::selectFirst(['url'], ['uid' => $notification_data['uid'], 'alias' => 'twitter::'.$own_id]);
-       if ($own_user) {
-               $notification_data['profiles'][] = $own_user['url'];
-       }
-}
-
-function twitter_support_follow(array &$data)
-{
-       if ($data['protocol'] == Protocol::TWITTER) {
-               $data['result'] = true;
-       }
-}
-
-function twitter_follow(array &$contact)
-{
-       Logger::info('Check if contact is twitter contact', ['url' => $contact['url']]);
-
-       if (!strstr($contact['url'], '://twitter.com') && !strstr($contact['url'], '@twitter.com')) {
-               return;
-       }
-
-       // contact seems to be a twitter contact, so continue
-       $nickname = preg_replace("=https?://twitter.com/(.*)=ism", "$1", $contact['url']);
-       $nickname = str_replace('@twitter.com', '', $nickname);
-
-       $uid = DI::userSession()->getLocalUserId();
-
-       if (!twitter_api_contact('friendships/create', ['network' => Protocol::TWITTER, 'nick' => $nickname], $uid)) {
-               $contact = null;
-               return;
-       }
-
-       $user = twitter_fetchuser($nickname);
-
-       $contact_id = twitter_fetch_contact($uid, $user, true);
-
-       $contact = Contact::getById($contact_id, ['name', 'nick', 'url', 'addr', 'batch', 'notify', 'poll', 'request', 'confirm', 'poco', 'photo', 'priority', 'network', 'alias', 'pubkey']);
-
-       if (DBA::isResult($contact)) {
-               $contact['contact'] = $contact;
-       }
-}
-
-function twitter_unfollow(array &$hook_data)
-{
-       $hook_data['result'] = twitter_api_contact('friendships/destroy', $hook_data['contact'], $hook_data['uid']);
-}
-
-function twitter_block(array &$hook_data)
-{
-       $hook_data['result'] = twitter_api_contact('blocks/create', $hook_data['contact'], $hook_data['uid']);
-
-       if ($hook_data['result'] === true) {
-               $cdata = Contact::getPublicAndUserContactID($hook_data['contact']['id'], $hook_data['uid']);
-               Contact::remove($cdata['user']);
-       }
-}
-
-function twitter_unblock(array &$hook_data)
-{
-       $hook_data['result'] = twitter_api_contact('blocks/destroy', $hook_data['contact'], $hook_data['uid']);
-}
-
-function twitter_api_contact(string $apiPath, array $contact, int $uid): ?bool
-{
-       if ($contact['network'] !== Protocol::TWITTER) {
-               return null;
-       }
-
-       return (bool)twitter_api_call($uid, $apiPath, ['screen_name' => $contact['nick']]);
-}
-
 function twitter_jot_nets(array &$jotnets_fields)
 {
        if (!DI::userSession()->getLocalUserId()) {
@@ -224,75 +88,30 @@ function twitter_jot_nets(array &$jotnets_fields)
        }
 }
 
-
 function twitter_settings_post()
 {
-       if (!DI::userSession()->getLocalUserId()) {
-               return;
-       }
-       // don't check twitter settings if twitter submit button is not clicked
-       if (empty($_POST['twitter-disconnect']) && empty($_POST['twitter-submit'])) {
+       if (!DI::userSession()->getLocalUserId() || empty($_POST['twitter-submit'])) {
                return;
        }
 
-       if (!empty($_POST['twitter-disconnect'])) {
-               /*               * *
-                * if the twitter-disconnect checkbox is set, clear the OAuth key/secret pair
-                * from the user configuration
-                */
-               DI::pConfig()->delete(DI::userSession()->getLocalUserId(), 'twitter', 'consumerkey');
-               DI::pConfig()->delete(DI::userSession()->getLocalUserId(), 'twitter', 'consumersecret');
-               DI::pConfig()->delete(DI::userSession()->getLocalUserId(), 'twitter', 'oauthtoken');
-               DI::pConfig()->delete(DI::userSession()->getLocalUserId(), 'twitter', 'oauthsecret');
-               DI::pConfig()->delete(DI::userSession()->getLocalUserId(), 'twitter', 'post');
-               DI::pConfig()->delete(DI::userSession()->getLocalUserId(), 'twitter', 'post_by_default');
-               DI::pConfig()->delete(DI::userSession()->getLocalUserId(), 'twitter', 'lastid');
-               DI::pConfig()->delete(DI::userSession()->getLocalUserId(), 'twitter', 'thread');
-               DI::pConfig()->delete(DI::userSession()->getLocalUserId(), 'twitter', 'mirror_posts');
-               DI::pConfig()->delete(DI::userSession()->getLocalUserId(), 'twitter', 'import');
-               DI::pConfig()->delete(DI::userSession()->getLocalUserId(), 'twitter', 'create_user');
-               DI::pConfig()->delete(DI::userSession()->getLocalUserId(), 'twitter', 'auto_follow');
-               DI::pConfig()->delete(DI::userSession()->getLocalUserId(), 'twitter', 'own_id');
-       } else {
-               if (isset($_POST['twitter-pin'])) {
-                       //  if the user supplied us with a PIN from Twitter, let the magic of OAuth happen
-                       Logger::notice('got a Twitter PIN');
-                       $ckey    = DI::config()->get('twitter', 'consumerkey');
-                       $csecret = DI::config()->get('twitter', 'consumersecret');
-                       //  the token and secret for which the PIN was generated were hidden in the settings
-                       //  form as token and token2, we need a new connection to Twitter using these token
-                       //  and secret to request a Access Token with the PIN
-                       try {
-                               if (empty($_POST['twitter-pin'])) {
-                                       throw new Exception(DI::l10n()->t('You submitted an empty PIN, please Sign In with Twitter again to get a new one.'));
-                               }
-
-                               $connection = new TwitterOAuth($ckey, $csecret, $_POST['twitter-token'], $_POST['twitter-token2']);
-                               $token = $connection->oauth('oauth/access_token', ['oauth_verifier' => $_POST['twitter-pin']]);
-                               //  ok, now that we have the Access Token, save them in the user config
-                               DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'twitter', 'oauthtoken', $token['oauth_token']);
-                               DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'twitter', 'oauthsecret', $token['oauth_token_secret']);
-                               DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'twitter', 'post', 1);
-                       } catch(Exception $e) {
-                               DI::sysmsg()->addNotice($e->getMessage());
-                       } catch(TwitterOAuthException $e) {
-                               DI::sysmsg()->addNotice($e->getMessage());
-                       }
-               } else {
-                       //  if no PIN is supplied in the POST variables, the user has changed the setting
-                       //  to post a tweet for every new __public__ posting to the wall
-                       DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'twitter', 'post', intval($_POST['twitter-enable']));
-                       DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'twitter', 'post_by_default', intval($_POST['twitter-default']));
-                       DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'twitter', 'thread', intval($_POST['twitter-thread']));
-                       DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'twitter', 'mirror_posts', intval($_POST['twitter-mirror']));
-                       DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'twitter', 'import', intval($_POST['twitter-import']));
-                       DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'twitter', 'create_user', intval($_POST['twitter-create_user']));
-                       DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'twitter', 'auto_follow', intval($_POST['twitter-auto_follow']));
-
-                       if (!intval($_POST['twitter-mirror'])) {
-                               DI::pConfig()->delete(DI::userSession()->getLocalUserId(), 'twitter', 'lastid');
-                       }
-               }
+       $api_key       = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'twitter', 'api_key');
+       $api_secret    = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'twitter', 'api_secret');
+       $access_token  = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'twitter', 'access_token');
+       $access_secret = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'twitter', 'access_secret');
+
+       DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'twitter', 'post',            (bool)$_POST['twitter-enable']);
+       DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'twitter', 'post_by_default', (bool)$_POST['twitter-default']);
+       DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'twitter', 'api_key',         $_POST['twitter-api-key']);
+       DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'twitter', 'api_secret',      $_POST['twitter-api-secret']);
+       DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'twitter', 'access_token',    $_POST['twitter-access-token']);
+       DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'twitter', 'access_secret',   $_POST['twitter-access-secret']);
+
+       if (
+               empty(DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'twitter', 'last_status')) ||
+               ($api_key != $_POST['twitter-api-key']) || ($api_secret != $_POST['twitter-api-secret']) ||
+               ($access_token != $_POST['twitter-access-token']) || ($access_secret != $_POST['twitter-access-secret'])
+       ) {
+               twitter_test_connection(DI::userSession()->getLocalUserId());
        }
 }
 
@@ -302,116 +121,41 @@ function twitter_settings(array &$data)
                return;
        }
 
-       $user = User::getById(DI::userSession()->getLocalUserId());
-
-       DI::page()->registerStylesheet(__DIR__ . '/twitter.css', 'all');
-
-       /*       * *
-        * 1) Check that we have global consumer key & secret
-        * 2) If no OAuthtoken & stuff is present, generate button to get some
-        * 3) Checkbox for "Send public notices (280 chars only)
-        */
-       $ckey    = DI::config()->get('twitter', 'consumerkey');
-       $csecret = DI::config()->get('twitter', 'consumersecret');
-       $otoken  = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'twitter', 'oauthtoken');
-       $osecret = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'twitter', 'oauthsecret');
-
-       $enabled            = intval(DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'twitter', 'post'));
-       $defenabled         = intval(DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'twitter', 'post_by_default'));
-       $threadenabled      = intval(DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'twitter', 'thread'));
-       $mirrorenabled      = intval(DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'twitter', 'mirror_posts'));
-       $importenabled      = intval(DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'twitter', 'import'));
-       $create_userenabled = intval(DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'twitter', 'create_user'));
-       $auto_followenabled = intval(DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'twitter', 'auto_follow'));
-
-       // Hide the submit button by default
-       $submit = '';
-
-       if ((!$ckey) && (!$csecret)) {
-               /* no global consumer keys
-                * display warning and skip personal config
-                */
-               $html = '<p>' . DI::l10n()->t('No consumer key pair for Twitter found. Please contact your site administrator.') . '</p>';
+       $enabled      = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'twitter', 'post') ?? false;
+       $def_enabled  = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'twitter', 'post_by_default') ?? false;
+
+       $api_key       = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'twitter', 'api_key');
+       $api_secret    = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'twitter', 'api_secret');
+       $access_token  = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'twitter', 'access_token');
+       $access_secret = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'twitter', 'access_secret');
+
+       $last_status = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'twitter', 'last_status');
+       if (!empty($last_status['code']) && !empty($last_status['reason'])) {
+               $status_title = sprintf('%d - %s', $last_status['code'], $last_status['reason']);
        } else {
-               // ok we have a consumer key pair now look into the OAuth stuff
-               if ((!$otoken) && (!$osecret)) {
-                       /* the user has not yet connected the account to twitter...
-                        * get a temporary OAuth key/secret pair and display a button with
-                        * which the user can request a PIN to connect the account to a
-                        * account at Twitter.
-                        */
-                       $connection = new TwitterOAuth($ckey, $csecret);
-                       try {
-                               $result = $connection->oauth('oauth/request_token', ['oauth_callback' => 'oob']);
-
-                               $html = '<p>' . DI::l10n()->t('At this Friendica instance the Twitter addon was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to Twitter.') . '</p>';
-                               $html .= '<a href="' . $connection->url('oauth/authorize', ['oauth_token' => $result['oauth_token']]) . '" target="_twitter"><img src="addon/twitter/lighter.png" alt="' . DI::l10n()->t('Log in with Twitter') . '"></a>';
-                               $html .= '<div id="twitter-pin-wrapper">';
-                               $html .= '<label id="twitter-pin-label" for="twitter-pin">' . DI::l10n()->t('Copy the PIN from Twitter here') . '</label>';
-                               $html .= '<input id="twitter-pin" type="text" name="twitter-pin" />';
-                               $html .= '<input id="twitter-token" type="hidden" name="twitter-token" value="' . $result['oauth_token'] . '" />';
-                               $html .= '<input id="twitter-token2" type="hidden" name="twitter-token2" value="' . $result['oauth_token_secret'] . '" />';
-                               $html .= '</div>';
-
-                               $submit = null;
-                       } catch (TwitterOAuthException $e) {
-                               $html = '<p>' . DI::l10n()->t('An error occured: ') . $e->getMessage() . '</p>';
-                       }
-               } else {
-                       /*                       * *
-                        *  we have an OAuth key / secret pair for the user
-                        *  so let's give a chance to disable the postings to Twitter
-                        */
-                       $connection = new TwitterOAuth($ckey, $csecret, $otoken, $osecret);
-                       try {
-                               $account = $connection->get('account/verify_credentials');
-                               if (property_exists($account, 'screen_name') &&
-                                       property_exists($account, 'description') &&
-                                       property_exists($account, 'profile_image_url')
-                               ) {
-                                       $connected = DI::l10n()->t('Currently connected to: <a href="https://twitter.com/%1$s" target="_twitter">%1$s</a>', $account->screen_name);
-                               } else {
-                                       Logger::notice('Invalid twitter info (verify credentials).', ['auth' => TwitterOAuth::class]);
-                               }
-
-                               if ($user['hidewall']) {
-                                       $privacy_warning = DI::l10n()->t('<strong>Note</strong>: Due to your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted.');
-                               }
-
-                               $t    = Renderer::getMarkupTemplate('connector_settings.tpl', 'addon/twitter/');
-                               $html = Renderer::replaceMacros($t, [
-                                       '$l10n' => [
-                                               'connected'       => $connected ?? '',
-                                               'invalid'         => DI::l10n()->t('Invalid Twitter info'),
-                                               'disconnect'      => DI::l10n()->t('Disconnect'),
-                                               'privacy_warning' => $privacy_warning ?? '',
-                                       ],
-
-                                       '$account'     => $account,
-                                       '$enable'      => ['twitter-enable', DI::l10n()->t('Allow posting to Twitter'), $enabled, DI::l10n()->t('If enabled all your <strong>public</strong> postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry.')],
-                                       '$default'     => ['twitter-default', DI::l10n()->t('Send public postings to Twitter by default'), $defenabled],
-                                       '$thread'      => ['twitter-thread', DI::l10n()->t('Use threads instead of truncating the content'), $threadenabled],
-                                       '$mirror'      => ['twitter-mirror', DI::l10n()->t('Mirror all posts from twitter that are no replies'), $mirrorenabled],
-                                       '$import'      => ['twitter-import', DI::l10n()->t('Import the remote timeline'), $importenabled],
-                                       '$create_user' => ['twitter-create_user', DI::l10n()->t('Automatically create contacts'), $create_userenabled, DI::l10n()->t('This will automatically create a contact in Friendica as soon as you receive a message from an existing contact via the Twitter network. If you do not enable this, you need to manually add those Twitter contacts in Friendica from whom you would like to see posts here.')],
-                                       '$auto_follow' => ['twitter-auto_follow', DI::l10n()->t('Follow in fediverse'), $auto_followenabled, DI::l10n()->t('Automatically subscribe to the contact in the fediverse, when a fediverse account is mentioned in name or description and we are following the Twitter contact.')],
-                               ]);
-
-                               // Enable the default submit button
-                               $submit = null;
-                       } catch (TwitterOAuthException $e) {
-                               $html = '<p>' . DI::l10n()->t('An error occured: ') . $e->getMessage() . '</p>';
-                       }
-               }
-       }
+               $status_title = DI::l10n()->t('No status.');
+       }
+       $status_content = $last_status['content'] ?? '';
+
+       $t    = Renderer::getMarkupTemplate('connector_settings.tpl', 'addon/twitter/');
+       $html = Renderer::replaceMacros($t, [
+               '$enable'        => ['twitter-enable', DI::l10n()->t('Allow posting to Twitter'), $enabled, DI::l10n()->t('If enabled all your <strong>public</strong> postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry.')],
+               '$default'       => ['twitter-default', DI::l10n()->t('Send public postings to Twitter by default'), $def_enabled],
+               '$api_key'       => ['twitter-api-key', DI::l10n()->t('API Key'), $api_key],
+               '$api_secret'    => ['twitter-api-secret', DI::l10n()->t('API Secret'), $api_secret],
+               '$access_token'  => ['twitter-access-token', DI::l10n()->t('Access Token'), $access_token],
+               '$access_secret' => ['twitter-access-secret', DI::l10n()->t('Access Secret'), $access_secret],
+               '$help'          => DI::l10n()->t('Each user needs to register their own app to be able to post to Twitter. Please visit https://developer.twitter.com/en/portal/projects-and-apps to register a project. Inside the project you then have to register an app. You will find the needed data for the connector on the page "Keys and token" in the app settings.'),
+               '$status_title'  => ['twitter-status-title', DI::l10n()->t('Last Status Summary'), $status_title, '', '', 'readonly'],
+               '$status'        => ['twitter-status', DI::l10n()->t('Last Status Content'), $status_content, '', '', 'readonly'],
+       ]);
 
        $data = [
                'connector' => 'twitter',
-               'title'     => DI::l10n()->t('Twitter Import/Export/Mirror'),
+               'title'     => DI::l10n()->t('Twitter Export'),
                'enabled'   => $enabled,
                'image'     => 'images/twitter.png',
                'html'      => $html,
-               'submit'    => $submit ?? null,
        ];
 }
 
@@ -425,64 +169,31 @@ function twitter_hook_fork(array &$b)
 
        $post = $b['data'];
 
-       // Deletion checks are done in twitter_delete_item()
-       if ($post['deleted']) {
-               return;
-       }
-
-       // Editing is not supported by the addon
-       if ($post['created'] !== $post['edited']) {
-               DI::logger()->info('Editing is not supported by the addon');
-               $b['execute'] = false;
-               return;
-       }
-
-       // if post comes from twitter don't send it back
-       if (($post['extid'] == Protocol::TWITTER) || twitter_get_id($post['extid'])) {
-               DI::logger()->info('If post comes from twitter don\'t send it back');
-               $b['execute'] = false;
-               return;
-       }
-
-       if (substr($post['app'] ?? '', 0, 7) == 'Twitter') {
-               DI::logger()->info('No Twitter app');
+       if (
+               $post['deleted'] || $post['private'] || ($post['created'] !== $post['edited']) ||
+               !strstr($post['postopts'], 'twitter') || ($post['gravity'] != Item::GRAVITY_PARENT)
+       ) {
                $b['execute'] = false;
                return;
        }
-
-       if (DI::pConfig()->get($post['uid'], 'twitter', 'import')) {
-               // Don't fork if it isn't a reply to a twitter post
-               if (($post['parent'] != $post['id']) && !Post::exists(['id' => $post['parent'], 'network' => Protocol::TWITTER])) {
-                       Logger::notice('No twitter parent found', ['item' => $post['id']]);
-                       $b['execute'] = false;
-                       return;
-               }
-       } else {
-               // Comments are never exported when we don't import the twitter timeline
-               if (!strstr($post['postopts'] ?? '', 'twitter') || ($post['parent'] != $post['id']) || $post['private']) {
-                       DI::logger()->info('Comments are never exported when we don\'t import the twitter timeline');
-                       $b['execute'] = false;
-                       return;
-               }
-    }
 }
 
 function twitter_post_local(array &$b)
 {
-       if ($b['edit']) {
+       if (!DI::userSession()->getLocalUserId() || (DI::userSession()->getLocalUserId() != $b['uid'])) {
                return;
        }
 
-       if (!DI::userSession()->getLocalUserId() || (DI::userSession()->getLocalUserId() != $b['uid'])) {
+       if ($b['edit'] || $b['private'] || $b['parent']) {
                return;
        }
 
-       $twitter_post = intval(DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'twitter', 'post'));
-       $twitter_enable = (($twitter_post && !empty($_REQUEST['twitter_enable'])) ? intval($_REQUEST['twitter_enable']) : 0);
+       $twitter_post   = (bool)DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'twitter', 'post');
+       $twitter_enable = (($twitter_post && !empty($_REQUEST['twitter_enable'])) ? (bool)$_REQUEST['twitter_enable'] : false);
 
        // if API is used, default to the chosen settings
        if ($b['api_source'] && intval(DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'twitter', 'post_by_default'))) {
-               $twitter_enable = 1;
+               $twitter_enable = true;
        }
 
        if (!$twitter_enable) {
@@ -496,393 +207,98 @@ function twitter_post_local(array &$b)
        $b['postopts'] .= 'twitter';
 }
 
-function twitter_probe_detect(array &$hookData)
-{
-       // Don't overwrite an existing result
-       if (isset($hookData['result'])) {
-               return;
-       }
-
-       // Avoid a lookup for the wrong network
-       if (!in_array($hookData['network'], ['', Protocol::TWITTER])) {
-               return;
-       }
-
-       if (preg_match('=([^@]+)@(?:mobile\.)?twitter\.com$=i', $hookData['uri'], $matches)) {
-               $nick = $matches[1];
-       } elseif (preg_match('=^https?://(?:mobile\.)?twitter\.com/(.+)=i', $hookData['uri'], $matches)) {
-               if (strpos($matches[1], '/') !== false) {
-                       // Status case: https://twitter.com/<nick>/status/<status id>
-                       // Not a contact
-                       $hookData['result'] = false;
-                       return;
-               }
-
-               $nick = $matches[1];
-       } else {
-               return;
-       }
-
-       $user = twitter_fetchuser($nick);
-
-       if ($user) {
-               $hookData['result'] = twitter_user_to_contact($user);
-       }
-}
-
-function twitter_item_by_link(array &$hookData)
-{
-       // Don't overwrite an existing result
-       if (isset($hookData['item_id'])) {
-               return;
-       }
-
-       // Relevancy check
-       if (!preg_match('#^https?://(?:mobile\.|www\.)?twitter.com/[^/]+/status/(\d+).*#', $hookData['uri'], $matches)) {
-               return;
-       }
-
-       // From now on, any early return should abort the whole chain since we've established it was a Twitter URL
-       $hookData['item_id'] = false;
-
-       // Node-level configuration check
-       if (empty(DI::config()->get('twitter', 'consumerkey')) || empty(DI::config()->get('twitter', 'consumersecret'))) {
-               return;
-       }
-
-       // No anonymous import
-       if (!$hookData['uid']) {
-               return;
-       }
-
-       if (
-               empty(DI::pConfig()->get($hookData['uid'], 'twitter', 'oauthtoken'))
-               || empty(DI::pConfig()->get($hookData['uid'], 'twitter', 'oauthsecret'))
-       ) {
-               DI::sysmsg()->addNotice(DI::l10n()->t('Please connect a Twitter account in your Social Network settings to import Twitter posts.'));
-               return;
-       }
-
-       $status = twitter_statuses_show($matches[1]);
-
-       if (empty($status->id_str)) {
-               DI::sysmsg()->addNotice(DI::l10n()->t('Twitter post not found.'));
-               return;
-       }
-
-       $item = twitter_createpost($hookData['uid'], $status, [], true, false, false);
-       if (!empty($item)) {
-               $hookData['item_id'] = Item::insert($item);
-       }
-}
-
-function twitter_api_post(string $apiPath, string $pid, int $uid): ?object
-{
-       if (empty($pid)) {
-               return null;
-       }
-
-       return twitter_api_call($uid, $apiPath, ['id' => $pid]);
-}
-
-function twitter_api_call(int $uid, string $apiPath, array $parameters = []): ?object
-{
-       $ckey = DI::config()->get('twitter', 'consumerkey');
-       $csecret = DI::config()->get('twitter', 'consumersecret');
-       $otoken = DI::pConfig()->get($uid, 'twitter', 'oauthtoken');
-       $osecret = DI::pConfig()->get($uid, 'twitter', 'oauthsecret');
-
-       // If the addon is not configured (general or for this user) quit here
-       if (empty($ckey) || empty($csecret) || empty($otoken) || empty($osecret)) {
-               return null;
-       }
-
-       try {
-               $connection = new TwitterOAuth($ckey, $csecret, $otoken, $osecret);
-               $result = $connection->post($apiPath, $parameters);
-
-               if ($connection->getLastHttpCode() != 200) {
-                       throw new Exception($result->errors[0]->message ?? json_encode($result), $connection->getLastHttpCode());
-               }
-
-               if (!empty($result->errors)) {
-                       throw new Exception($result->errors[0]->message, $result->errors[0]->code);
-               }
-
-               Logger::info('[twitter] API call successful', ['apiPath' => $apiPath, 'parameters' => $parameters]);
-               Logger::debug('[twitter] API call result', ['apiPath' => $apiPath, 'parameters' => $parameters, 'result' => $result]);
-
-               return $result;
-       } catch (TwitterOAuthException $twitterOAuthException) {
-               Logger::notice('Unable to communicate with twitter', ['apiPath' => $apiPath, 'parameters' => $parameters, 'code' => $twitterOAuthException->getCode(), 'exception' => $twitterOAuthException]);
-               return null;
-       } catch (Exception $e) {
-               Logger::notice('[twitter] API call failed', ['apiPath' => $apiPath, 'parameters' => $parameters, 'code' => $e->getCode(), 'message' => $e->getMessage()]);
-               return null;
-       }
-}
-
-function twitter_get_id(string $uri)
-{
-       if ((substr($uri, 0, 9) != 'twitter::') || (strlen($uri) <= 9)) {
-               return 0;
-       }
-
-       $id = substr($uri, 9);
-       if (!is_numeric($id)) {
-               return 0;
-       }
-
-       return (int)$id;
-}
-
 function twitter_post_hook(array &$b)
 {
        DI::logger()->debug('Invoke post hook', $b);
 
-       if ($b['deleted']) {
-               twitter_delete_item($b);
-               return;
-       }
-
-       // Post to Twitter
-       if (!DI::pConfig()->get($b['uid'], 'twitter', 'import')
-               && ($b['private'] || ($b['created'] !== $b['edited']))) {
+       if (($b['gravity'] != Item::GRAVITY_PARENT) || !strstr($b['postopts'], 'twitter') || $b['private'] || $b['deleted'] || ($b['created'] !== $b['edited'])) {
                return;
        }
 
        $b['body'] = Post\Media::addAttachmentsToBody($b['uri-id'], DI::contentItem()->addSharedPost($b));
 
-       $thr_parent = null;
-
-       if ($b['parent'] != $b['id']) {
-               Logger::debug('Got comment', ['item' => $b]);
-
-               // Looking if its a reply to a twitter post
-               if (!twitter_get_id($b['parent-uri']) &&
-                       !twitter_get_id($b['extid']) &&
-                       !twitter_get_id($b['thr-parent'])) {
-                       Logger::info('No twitter post', ['parent' => $b['parent']]);
-                       return;
-               }
-
-               $condition = ['uri' => $b['thr-parent'], 'uid' => $b['uid']];
-               $thr_parent = Post::selectFirst(['uri', 'extid', 'author-link', 'author-nick', 'author-network'], $condition);
-               if (!DBA::isResult($thr_parent)) {
-                       Logger::notice('No parent found', ['thr-parent' => $b['thr-parent']]);
-                       return;
-               }
-
-               if ($thr_parent['author-network'] == Protocol::TWITTER) {
-                       $nickname = '@[url=' . $thr_parent['author-link'] . ']' . $thr_parent['author-nick'] . '[/url]';
-                       $nicknameplain = '@' . $thr_parent['author-nick'];
-
-                       Logger::info('Comparing', ['nickname' => $nickname, 'nicknameplain' => $nicknameplain, 'body' => $b['body']]);
-                       if ((strpos($b['body'], $nickname) === false) && (strpos($b['body'], $nicknameplain) === false)) {
-                               $b['body'] = $nickname . ' ' . $b['body'];
-                       }
-               }
-
-               Logger::debug('Parent found', ['parent' => $thr_parent]);
-       } else {
-               if ($b['private'] || !strstr($b['postopts'], 'twitter')) {
-                       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']) {
-                       return;
-               }
-       }
-
-       if ($b['verb'] == Activity::LIKE) {
-               Logger::info('Like', ['uid' => $b['uid'], 'id' => twitter_get_id($b['thr-parent'])]);
-
-               twitter_api_post('favorites/create', twitter_get_id($b['thr-parent']), $b['uid']);
-
-               return;
-       }
-
-       if ($b['verb'] == Activity::ANNOUNCE) {
-               Logger::info('Retweet', ['uid' => $b['uid'], 'id' => twitter_get_id($b['thr-parent'])]);
-               twitter_retweet($b['uid'], twitter_get_id($b['thr-parent']));
-               return;
-       }
+       Logger::notice('twitter post invoked', ['id' => $b['id'], 'guid' => $b['guid']]);
 
-       if ($b['created'] !== $b['edited']) {
-               return;
-       }
+       DI::pConfig()->load($b['uid'], 'twitter');
 
-       // if post comes from twitter don't send it back
-       if (($b['extid'] == Protocol::TWITTER) || twitter_get_id($b['extid'])) {
-               return;
-       }
+       $api_key       = DI::pConfig()->get($b['uid'], 'twitter', 'api_key');
+       $api_secret    = DI::pConfig()->get($b['uid'], 'twitter', 'api_secret');
+       $access_token  = DI::pConfig()->get($b['uid'], 'twitter', 'access_token');
+       $access_secret = DI::pConfig()->get($b['uid'], 'twitter', 'access_secret');
 
-       if ($b['app'] == 'Twitter') {
+       if (empty($api_key) || empty($api_secret) || empty($access_token) || empty($access_secret)) {
+               Logger::info('Missing keys, secrets or tokens.');
                return;
        }
 
-       Logger::notice('twitter post invoked', ['id' => $b['id'], 'guid' => $b['guid']]);
-
-       DI::pConfig()->load($b['uid'], 'twitter');
+       $msgarr = Plaintext::getPost($b, 280, true, BBCode::TWITTER);
+       Logger::debug('Got plaintext', ['id' => $b['id'], 'message' => $msgarr]);
 
-       $ckey    = DI::config()->get('twitter', 'consumerkey');
-       $csecret = DI::config()->get('twitter', 'consumersecret');
-       $otoken  = DI::pConfig()->get($b['uid'], 'twitter', 'oauthtoken');
-       $osecret = DI::pConfig()->get($b['uid'], 'twitter', 'oauthsecret');
+       $media_ids = [];
 
-       if ($ckey && $csecret && $otoken && $osecret) {
-               Logger::info('We have customer key and oauth stuff, going to send.');
+       if (!empty($msgarr['images']) || !empty($msgarr['remote_images'])) {
+               Logger::info('Got images', ['id' => $b['id'], 'images' => $msgarr['images'] ?? []]);
 
-               // If it's a repeated message from twitter then do a native retweet and exit
-               if (twitter_is_retweet($b['uid'], $b['body'])) {
+               $retrial = Worker::getRetrial();
+               if ($retrial > 4) {
                        return;
                }
-
-               Codebird::setConsumerKey($ckey, $csecret);
-               $cb = Codebird::getInstance();
-               $cb->setToken($otoken, $osecret);
-
-               $connection = new TwitterOAuth($ckey, $csecret, $otoken, $osecret);
-
-               // Set the timeout for upload to 30 seconds
-               $connection->setTimeouts(10, 30);
-
-               $max_char = 280;
-
-               // Handling non-native reshares
-               $b['body'] = Friendica\Content\Text\BBCode::convertShare(
-                       $b['body'],
-                       function (array $attributes, array $author_contact, $content, $is_quote_share) {
-                               return twitter_convert_share($attributes, $author_contact, $content, $is_quote_share);
+               foreach ($msgarr['images'] ?? [] as $image) {
+                       if (count($media_ids) == 4) {
+                               continue;
                        }
-               );
-
-               $b['body'] = twitter_update_mentions($b['body']);
-
-               $msgarr = Plaintext::getPost($b, $max_char, true, BBCode::TWITTER);
-               Logger::info('Got plaintext', ['id' => $b['id'], 'message' => $msgarr]);
-               $msg = $msgarr['text'];
-
-               if (($msg == '') && isset($msgarr['title'])) {
-                       $msg = Plaintext::shorten($msgarr['title'], $max_char - 50, $b['uid']);
-               }
-
-               // Add the link to the body if the type isn't a photo or there are more than 4 images in the post
-               if (!empty($msgarr['url']) && (strpos($msg, $msgarr['url']) === false) && (($msgarr['type'] != 'photo') || empty($msgarr['images']) || (count($msgarr['images']) > 4))) {
-                       $msg .= "\n" . $msgarr['url'];
-               }
-
-               if (empty($msg)) {
-                       Logger::notice('Empty message', ['id' => $b['id']]);
-                       return;
-               }
-
-               // and now tweet it :-)
-               $post = [];
-
-               if (!empty($msgarr['images']) || !empty($msgarr['remote_images'])) {
-                       Logger::info('Got images', ['id' => $b['id'], 'images' => $msgarr['images'] ?? [], 'remote_images' => $msgarr['remote_images'] ?? []]);
                        try {
-                               $media_ids = [];
-                               foreach ($msgarr['images'] ?? [] as $image) {
-                                       if (count($media_ids) == 4) {
-                                               continue;
-                                       }
-                                       try {
-                                               $media_ids[] = twitter_upload_image($connection, $cb, $image, $b);
-                                       } catch (\Throwable $th) {
-                                               Logger::warning('Error while uploading image', ['code' => $th->getCode(), 'message' => $th->getMessage()]);
-                                       }
-                               }
-
-                               foreach ($msgarr['remote_images'] ?? [] as $image) {
-                                       if (count($media_ids) == 4) {
-                                               continue;
-                                       }
-                                       try {
-                                               $media_ids[] = twitter_upload_image($connection, $cb, $image, $b);
-                                       } catch (\Throwable $th) {
-                                               Logger::warning('Error while uploading image', ['code' => $th->getCode(), 'message' => $th->getMessage()]);
-                                       }
-                               }
-                               $post['media_ids'] = implode(',', $media_ids);
-                               if (empty($post['media_ids'])) {
-                                       unset($post['media_ids']);
-                               }
-                       } catch (Exception $e) {
-                               Logger::warning('Exception when trying to send to Twitter', ['id' => $b['id'], 'message' => $e->getMessage()]);
+                               $media_ids[] = twitter_upload_image($b['uid'], $image, $retrial);
+                       } catch (RequestException $exception) {
+                               Logger::warning('Error while uploading image', ['image' => $image, 'code' => $exception->getCode(), 'message' => $exception->getMessage()]);
+                               Worker::defer();
+                               return;
                        }
                }
+       }
 
-               if (!DI::pConfig()->get($b['uid'], 'twitter', 'thread') || empty($msgarr['parts']) || (count($msgarr['parts']) == 1)) {
-                       Logger::debug('Post single message', ['id' => $b['id']]);
-
-                       $post['status'] = $msg;
-
-                       if ($thr_parent) {
-                               $post['in_reply_to_status_id'] = twitter_get_id($thr_parent['uri']);
-                       }
-
-                       $result = $connection->post('statuses/update', $post);
-                       Logger::info('twitter_post send', ['id' => $b['id'], 'result' => $result]);
-
-                       if (!empty($result->source)) {
-                               DI::keyValue()->set('twitter_application_name', strip_tags($result->source));
-                       }
+       $in_reply_to_tweet_id = 0;
 
-                       if (!empty($result->errors)) {
-                               Logger::error('Send to Twitter failed', ['id' => $b['id'], 'error' => $result->errors]);
+       Logger::debug('Post message', ['id' => $b['id'], 'parts' => count($msgarr['parts'])]);
+       foreach ($msgarr['parts'] as $key => $part) {
+               try {
+                       $id = twitter_post_status($b['uid'], $part, $media_ids, $in_reply_to_tweet_id);
+                       Logger::info('twitter_post send', ['part' => $key, 'id' => $b['id'], 'result' => $id]);
+               } catch (RequestException $exception) {
+                       Logger::warning('Error while posting message', ['part' => $key, 'id' => $b['id'], 'code' => $exception->getCode(), 'message' => $exception->getMessage()]);
+                       $status = [
+                               'code'    => $exception->getCode(),
+                               'reason'  => $exception->getResponse()->getReasonPhrase(),
+                               'content' => $exception->getMessage()
+                       ];
+                       DI::pConfig()->set($b['uid'], 'twitter', 'last_status', $status);
+                       if ($key == 0) {
                                Worker::defer();
-                       } elseif ($thr_parent) {
-                               Logger::notice('Post send, updating extid', ['id' => $b['id'], 'extid' => $result->id_str]);
-                               Item::update(['extid' => 'twitter::' . $result->id_str], ['id' => $b['id']]);
                        }
-               } else {
-                       if ($thr_parent) {
-                               $in_reply_to_status_id = twitter_get_id($thr_parent['uri']);
-                       } else {
-                               $in_reply_to_status_id = 0;
-                       }
-
-                       Logger::debug('Post message thread', ['id' => $b['id'], 'parts' => count($msgarr['parts'])]);
-                       foreach ($msgarr['parts'] as $key => $part) {
-                               $post['status'] = $part;
-
-                               if ($in_reply_to_status_id) {
-                                       $post['in_reply_to_status_id'] = $in_reply_to_status_id;
-                               }
-
-                               $result = $connection->post('statuses/update', $post);
-                               Logger::debug('twitter_post send', ['part' => $key, 'id' => $b['id'], 'result' => $result]);
+                       break;
+               }
 
-                               if (!empty($result->errors)) {
-                                       Logger::warning('Send to Twitter failed', ['part' => $key, 'id' => $b['id'], 'error' => $result->errors]);
-                                       Worker::defer();
-                                       break;
-                               } elseif ($key == 0) {
-                                       Logger::debug('Updating extid', ['part' => $key, 'id' => $b['id'], 'extid' => $result->id_str]);
-                                       Item::update(['extid' => 'twitter::' . $result->id_str], ['id' => $b['id']]);
-                               }
+               $in_reply_to_tweet_id = $id;
+               $media_ids = [];
+       }
+}
 
-                               if (!empty($result->source)) {
-                                       $application_name = strip_tags($result->source);
-                               }
+function twitter_post_status(int $uid, string $status, array $media_ids = [], string $in_reply_to_tweet_id = ''): string
+{
+       $parameters = ['text' => $status];
+       if (!empty($media_ids)) {
+               $parameters['media'] = ['media_ids' => $media_ids];
+       }
+       if (!empty($in_reply_to_tweet_id)) {
+               $parameters['reply'] = ['in_reply_to_tweet_id' => $in_reply_to_tweet_id];
+       }
 
-                               $in_reply_to_status_id = $result->id_str;
-                               unset($post['media_ids']);
-                       }
+       $response = twitter_post($uid, 'https://api.twitter.com/2/tweets', 'json', $parameters);
 
-                       if (!empty($application_name)) {
-                               DI::keyValue()->set('twitter_application_name', strip_tags($application_name));
-                       }
-               }
-       }
+       return $response->data->id;
 }
 
-function twitter_upload_image($connection, $cb, array $image, array $item)
+function twitter_upload_image(int $uid, array $image, int $retrial)
 {
        if (!empty($image['id'])) {
                $photo = Photo::selectFirst([], ['id' => $image['id']]);
@@ -890,1606 +306,110 @@ function twitter_upload_image($connection, $cb, array $image, array $item)
                $photo = Photo::createPhotoForExternalResource($image['url']);
        }
 
-       $tempfile = tempnam(System::getTempPath(), 'cache');
-       file_put_contents($tempfile, Photo::getImageForPhoto($photo));
+       $picturedata = Photo::getImageForPhoto($photo);
+
+       $picture = new Image($picturedata, $photo['type']);
+       $height  = $picture->getHeight();
+       $width   = $picture->getWidth();
+       $size    = strlen($picturedata);
 
-       Logger::info('Uploading', ['id' => $item['id'], 'image' => $image]);
-       $media = $connection->upload('media/upload', ['media' => $tempfile]);
+       $picture     = Photo::resizeToFileSize($picture, TWITTER_IMAGE_SIZE[$retrial]);
+       $new_height  = $picture->getHeight();
+       $new_width   = $picture->getWidth();
+       $picturedata = $picture->asString();
+       $new_size    = strlen($picturedata);
 
-       unlink($tempfile);
+       Logger::info('Uploading', ['uid' => $uid, 'retrial' => $retrial, 'height' => $new_height, 'width' => $new_width, 'size' => $new_size, 'orig-height' => $height, 'orig-width' => $width, 'orig-size' => $size, 'image' => $image]);
+       $media = twitter_post($uid, 'https://upload.twitter.com/1.1/media/upload.json', 'form_params', ['media' => base64_encode($picturedata)]);
+       Logger::info('Uploading done', ['uid' => $uid, 'retrial' => $retrial, 'height' => $new_height, 'width' => $new_width, 'size' => $new_size, 'orig-height' => $height, 'orig-width' => $width, 'orig-size' => $size, 'image' => $image]);
 
        if (isset($media->media_id_string)) {
                $media_id = $media->media_id_string;
 
                if (!empty($image['description'])) {
-                       $data = ['media_id' => $media->media_id_string,
-                               'alt_text' => ['text' => substr($image['description'], 0, 420)]];
-                       $ret = $cb->media_metadata_create($data);
-                       Logger::info('Metadata create', ['id' => $item['id'], 'data' => $data, 'return' => $ret]);
+                       $data = [
+                               'media_id' => $media->media_id_string,
+                               'alt_text' => [
+                                       'text' => substr($image['description'], 0, 1000)
+                               ]
+                       ];
+                       $ret = twitter_post($uid, 'https://upload.twitter.com/1.1/media/metadata/create.json', 'json', $data);
+                       Logger::info('Metadata create', ['uid' => $uid, 'data' => $data, 'return' => $ret]);
                }
        } else {
-               Logger::error('Failed upload', ['id' => $item['id'], 'image' => $image['url'], 'return' => $media]);
+               Logger::error('Failed upload', ['uid' => $uid, 'size' => strlen($picturedata), 'image' => $image['url'], 'return' => $media]);
                throw new Exception('Failed upload of ' . $image['url']);
        }
 
        return $media_id;
 }
 
-function twitter_delete_item(array $item)
+function twitter_post(int $uid, string $url, string $type, array $data): stdClass
 {
-       if (!$item['deleted']) {
-               return;
-       }
+       $stack = HandlerStack::create();
 
-       if ($item['parent'] != $item['id']) {
-               Logger::debug('Deleting comment/announce', ['item' => $item]);
+       $middleware = new Oauth1([
+               'consumer_key'    => DI::pConfig()->get($uid, 'twitter', 'api_key'),
+               'consumer_secret' => DI::pConfig()->get($uid, 'twitter', 'api_secret'),
+               'token'           => DI::pConfig()->get($uid, 'twitter', 'access_token'),
+               'token_secret'    => DI::pConfig()->get($uid, 'twitter', 'access_secret'),
+       ]);
 
-               // Looking if it's a reply to a twitter post
-               if (!twitter_get_id($item['parent-uri']) &&
-                       !twitter_get_id($item['extid']) &&
-                       !twitter_get_id($item['thr-parent'])) {
-                       Logger::info('No twitter post', ['parent' => $item['parent']]);
-                       return;
-               }
+       $stack->push($middleware);
 
-               $condition = ['uri' => $item['thr-parent'], 'uid' => $item['uid']];
-               $thr_parent = Post::selectFirst(['uri', 'extid', 'author-link', 'author-nick', 'author-network'], $condition);
-               if (!DBA::isResult($thr_parent)) {
-                       Logger::notice('No parent found', ['thr-parent' => $item['thr-parent']]);
-                       return;
-               }
+       $client = new Client([
+               'handler' => $stack
+       ]);
 
-               Logger::debug('Parent found', ['parent' => $thr_parent]);
-       } else {
-               if (!strstr($item['extid'], 'twitter')) {
-                       DI::logger()->info('Not a Twitter post', ['extid' => $item['extid']]);
-                       return;
-               }
-
-               // Don't delete if the post doesn't belong to us.
-               // This is a check for forum postings
-               $self = DBA::selectFirst('contact', ['id'], ['uid' => $item['uid'], 'self' => true]);
-               if ($item['contact-id'] != $self['id']) {
-                       DI::logger()->info('Don\'t delete if the post doesn\'t belong to the user', ['contact-id' => $item['contact-id'], 'self' => $self['id']]);
-                       return;
-               }
-       }
-
-       /**
-        * @TODO Remaining caveat: Comments posted on Twitter and imported in Friendica do not trigger any Notifier task,
-        *       possibly because they are private to the user and don't require any remote deletion notifications sent.
-        *       Comments posted on Friendica and mirrored on Twitter trigger the Notifier task and the Twitter counter-part
-        *       will be deleted accordingly.
-        */
-       if ($item['verb'] == Activity::POST) {
-               Logger::info('Delete post/comment', ['uid' => $item['uid'], 'id' => twitter_get_id($item['extid'])]);
-               twitter_api_post('statuses/destroy', twitter_get_id($item['extid']), $item['uid']);
-               return;
-       }
-
-       if ($item['verb'] == Activity::LIKE) {
-               Logger::info('Unlike', ['uid' => $item['uid'], 'id' => twitter_get_id($item['thr-parent'])]);
-               twitter_api_post('favorites/destroy', twitter_get_id($item['thr-parent']), $item['uid']);
-               return;
-       }
-
-       if ($item['verb'] == Activity::ANNOUNCE && !empty($thr_parent['uri'])) {
-               Logger::info('Unretweet', ['uid' => $item['uid'], 'extid' => $thr_parent['uri'], 'id' => twitter_get_id($thr_parent['uri'])]);
-               twitter_api_post('statuses/unretweet', twitter_get_id($thr_parent['uri']), $item['uid']);
-               return;
-       }
-}
-
-function twitter_addon_admin_post()
-{
-       DI::config()->set('twitter', 'consumerkey', trim($_POST['consumerkey'] ?? ''));
-       DI::config()->set('twitter', 'consumersecret', trim($_POST['consumersecret'] ?? ''));
-}
-
-function twitter_addon_admin(string &$o)
-{
-       $t = Renderer::getMarkupTemplate('admin.tpl', 'addon/twitter/');
-
-       $o = Renderer::replaceMacros($t, [
-               '$submit' => DI::l10n()->t('Save Settings'),
-               // name, label, value, help, [extra values]
-               '$consumerkey' => ['consumerkey', DI::l10n()->t('Consumer key'), DI::config()->get('twitter', 'consumerkey'), ''],
-               '$consumersecret' => ['consumersecret', DI::l10n()->t('Consumer secret'), DI::config()->get('twitter', 'consumersecret'), ''],
-       ]);
-}
-
-function twitter_cron()
-{
-       $last = DI::keyValue()->get('twitter_last_poll');
-
-       $poll_interval = intval(DI::config()->get('twitter', 'poll_interval'));
-       if (!$poll_interval) {
-               $poll_interval = TWITTER_DEFAULT_POLL_INTERVAL;
-       }
-
-       if ($last) {
-               $next = $last + ($poll_interval * 60);
-               if ($next > time()) {
-                       Logger::notice('twitter: poll intervall not reached');
-                       return;
-               }
-       }
-       Logger::notice('twitter: cron_start');
-
-       $pconfigs = DBA::selectToArray('pconfig', [], ['cat' => 'twitter', 'k' => 'mirror_posts', 'v' => true]);
-       foreach ($pconfigs as $rr) {
-               Logger::notice('Fetching', ['user' => $rr['uid']]);
-               Worker::add(['priority' => Worker::PRIORITY_MEDIUM, 'force_priority' => true], 'addon/twitter/twitter_sync.php', 1, (int) $rr['uid']);
-       }
-
-       $abandon_days = intval(DI::config()->get('system', 'account_abandon_days'));
-       if ($abandon_days < 1) {
-               $abandon_days = 0;
-       }
-
-       $abandon_limit = date(DateTimeFormat::MYSQL, time() - $abandon_days * 86400);
-
-       $pconfigs = DBA::selectToArray('pconfig', [], ['cat' => 'twitter', 'k' => 'import', 'v' => true]);
-       foreach ($pconfigs as $rr) {
-               if ($abandon_days != 0) {
-                       if (!DBA::exists('user', ["`uid` = ? AND `login_date` >= ?", $rr['uid'], $abandon_limit])) {
-                               Logger::notice('abandoned account: timeline from user will not be imported', ['user' => $rr['uid']]);
-                               continue;
-                       }
-               }
-
-               Logger::notice('importing timeline', ['user' => $rr['uid']]);
-               Worker::add(['priority' => Worker::PRIORITY_MEDIUM, 'force_priority' => true], 'addon/twitter/twitter_sync.php', 2, (int) $rr['uid']);
-               /*
-                       // To-Do
-                       // check for new contacts once a day
-                       $last_contact_check = DI::pConfig()->get($rr['uid'],'pumpio','contact_check');
-                       if($last_contact_check)
-                       $next_contact_check = $last_contact_check + 86400;
-                       else
-                       $next_contact_check = 0;
-
-                       if($next_contact_check <= time()) {
-                       pumpio_getallusers($rr["uid"]);
-                       DI::pConfig()->set($rr['uid'],'pumpio','contact_check',time());
-                       }
-                       */
-       }
-
-       Logger::notice('twitter: cron_end');
-
-       DI::keyValue()->set('twitter_last_poll', time());
-}
-
-function twitter_expire()
-{
-       $days = DI::config()->get('twitter', 'expire');
-
-       if ($days == 0) {
-               return;
-       }
-
-       Logger::notice('Start deleting expired posts');
-
-       $r = Post::select(['id', 'guid'], ['deleted' => true, 'network' => Protocol::TWITTER]);
-       while ($row = Post::fetch($r)) {
-               Logger::info('[twitter] Delete expired item', ['id' => $row['id'], 'guid' => $row['guid'], 'callstack' => \Friendica\Core\System::callstack()]);
-               Item::markForDeletionById($row['id']);
-       }
-       DBA::close($r);
-
-       Logger::notice('End deleting expired posts');
-
-       Logger::notice('Start expiry');
-
-       $pconfigs = DBA::selectToArray('pconfig', [], ['cat' => 'twitter', 'k' => 'import', 'v' => true]);
-       foreach ($pconfigs as $rr) {
-               Logger::notice('twitter_expire', ['user' => $rr['uid']]);
-               Item::expire($rr['uid'], $days, Protocol::TWITTER, true);
-       }
-
-       Logger::notice('End expiry');
-}
-
-function twitter_prepare_body(array &$b)
-{
-       if ($b['item']['network'] != Protocol::TWITTER) {
-               return;
-       }
-
-       if ($b['preview']) {
-               $max_char = 280;
-               $item = $b['item'];
-               $item['plink'] = DI::baseUrl() . '/display/' . $item['guid'];
-
-               $condition = ['uri' => $item['thr-parent'], 'uid' => DI::userSession()->getLocalUserId()];
-               $orig_post = Post::selectFirst(['author-link'], $condition);
-               if (DBA::isResult($orig_post)) {
-                       $nicknameplain = preg_replace("=https?://twitter.com/(.*)=ism", "$1", $orig_post['author-link']);
-                       $nickname = '@[url=' . $orig_post['author-link'] . ']' . $nicknameplain . '[/url]';
-                       $nicknameplain = '@' . $nicknameplain;
-
-                       if ((strpos($item['body'], $nickname) === false) && (strpos($item['body'], $nicknameplain) === false)) {
-                               $item['body'] = $nickname . ' ' . $item['body'];
-                       }
-               }
-
-               $msgarr = Plaintext::getPost($item, $max_char, true, BBCode::TWITTER);
-               $msg = $msgarr['text'];
-
-               if (isset($msgarr['url']) && ($msgarr['type'] != 'photo')) {
-                       $msg .= ' ' . $msgarr['url'];
-               }
-
-               if (isset($msgarr['image'])) {
-                       $msg .= ' ' . $msgarr['image'];
-               }
-
-               $b['html'] = nl2br(htmlspecialchars($msg));
-       }
-}
-
-function twitter_statuses_show(string $id, TwitterOAuth $twitterOAuth = null)
-{
-       if ($twitterOAuth === null) {
-               $ckey = DI::config()->get('twitter', 'consumerkey');
-               $csecret = DI::config()->get('twitter', 'consumersecret');
-
-               if (empty($ckey) || empty($csecret)) {
-                       return new stdClass();
-               }
-
-               $twitterOAuth = new TwitterOAuth($ckey, $csecret);
-       }
-
-       $parameters = ['trim_user' => false, 'tweet_mode' => 'extended', 'id' => $id, 'include_ext_alt_text' => true];
-
-       return $twitterOAuth->get('statuses/show', $parameters);
-}
-
-/**
- * Parse Twitter status URLs since Twitter removed OEmbed
- *
- * @param array $b Expected format:
- *                 [
- *                      'url' => [URL to parse],
- *                      'format' => 'json'|'',
- *                      'text' => Output parameter
- *                 ]
- * @throws \Friendica\Network\HTTPException\InternalServerErrorException
- */
-function twitter_parse_link(array &$b)
-{
-       // Only handle Twitter status URLs
-       if (!preg_match('#^https?://(?:mobile\.|www\.)?twitter.com/[^/]+/status/(\d+).*#', $b['url'], $matches)) {
-               return;
-       }
-
-       $status = twitter_statuses_show($matches[1]);
-
-       if (empty($status->id)) {
-               return;
-       }
-
-       $item = twitter_createpost(0, $status, [], true, false, true);
-       if (empty($item)) {
-               return;
-       }
-
-       if ($b['format'] == 'json') {
-               $images = [];
-               foreach ($status->extended_entities->media ?? [] as $media) {
-                       if (!empty($media->media_url_https)) {
-                               $images[] = [
-                                       'src'    => $media->media_url_https,
-                                       'width'  => $media->sizes->thumb->w,
-                                       'height' => $media->sizes->thumb->h,
-                               ];
-                       }
-               }
-
-               $b['text'] = [
-                       'data' => [
-                               'type' => 'link',
-                               'url' => $item['plink'],
-                               'title' => DI::l10n()->t('%s on Twitter', $status->user->name),
-                               'text' => BBCode::toPlaintext($item['body'], false),
-                               'images' => $images,
-                       ],
-                       'contentType' => 'attachment',
-                       'success' => true,
-               ];
-       } else {
-               $b['text'] = BBCode::getShareOpeningTag(
-                       $item['author-name'],
-                       $item['author-link'],
-                       $item['author-avatar'],
-                       $item['plink'],
-                       $item['created']
-               );
-               $b['text'] .= $item['body'] . '[/share]';
-       }
-}
-
-
-/*********************
- *
- * General functions
- *
- *********************/
-
-
-/**
- * @brief Build the item array for the mirrored post
- *
- * @param integer $uid User id
- * @param object $post Twitter object with the post
- *
- * @return array item data to be posted
- */
-function twitter_do_mirrorpost(int $uid, $post)
-{
-       $datarray['uid'] = $uid;
-       $datarray['extid'] = 'twitter::' . $post->id;
-       $datarray['title'] = '';
-
-       if (!empty($post->retweeted_status)) {
-               // We don't support nested shares, so we mustn't show quotes as shares on retweets
-               $item = twitter_createpost($uid, $post->retweeted_status, ['id' => 0], false, false, true, -1);
-
-               if (empty($item)) {
-                       return [];
-               }
-
-               $datarray['body'] = "\n" . BBCode::getShareOpeningTag(
-                       $item['author-name'],
-                       $item['author-link'],
-                       $item['author-avatar'],
-                       $item['plink'],
-                       $item['created']
-               );
-
-               $datarray['body'] .= $item['body'] . '[/share]';
-       } else {
-               $item = twitter_createpost($uid, $post, ['id' => 0], false, false, false, -1);
-
-               if (empty($item)) {
-                       return [];
-               }
+       $response = $client->post($url, ['auth' => 'oauth', $type => $data]);
+       $body     = $response->getBody()->getContents();
 
-               $datarray['body'] = $item['body'];
-       }
-
-       $datarray['app'] = $item['app'];
-       $datarray['verb'] = $item['verb'];
-
-       if (isset($item['location'])) {
-               $datarray['location'] = $item['location'];
-       }
-
-       if (isset($item['coord'])) {
-               $datarray['coord'] = $item['coord'];
-       }
-
-       return $datarray;
-}
-
-/**
- * Fetches the Twitter user's own posts
- *
- * @param int $uid
- * @return void
- * @throws Exception
- */
-function twitter_fetchtimeline(int $uid): void
-{
-       $ckey    = DI::config()->get('twitter', 'consumerkey');
-       $csecret = DI::config()->get('twitter', 'consumersecret');
-       $otoken  = DI::pConfig()->get($uid, 'twitter', 'oauthtoken');
-       $osecret = DI::pConfig()->get($uid, 'twitter', 'oauthsecret');
-       $lastid  = DI::pConfig()->get($uid, 'twitter', 'lastid');
-
-       $application_name = DI::keyValue()->get('twitter_application_name') ?? '';
-
-       if ($application_name == '') {
-               $application_name = DI::baseUrl()->getHost();
-       }
-
-       $connection = new TwitterOAuth($ckey, $csecret, $otoken, $osecret);
-
-       // Ensure to have the own contact
-       try {
-               twitter_fetch_own_contact($uid);
-       } catch (TwitterOAuthException $e) {
-               Logger::notice('Error fetching own contact', ['uid' => $uid, 'message' => $e->getMessage()]);
-               return;
-       }
-
-       $parameters = [
-               'exclude_replies' => true,
-               'trim_user' => false,
-               'contributor_details' => true,
-               'include_rts' => true,
-               'tweet_mode' => 'extended',
-               'include_ext_alt_text' => true,
+       $status = [
+               'code'    => $response->getStatusCode(),
+               'reason'  => $response->getReasonPhrase(),
+               'content' => $body
        ];
 
-       $first_time = ($lastid == '');
-
-       if ($lastid != '') {
-               $parameters['since_id'] = $lastid;
-       }
-
-       try {
-               $items = $connection->get('statuses/user_timeline', $parameters);
-       } catch (TwitterOAuthException $e) {
-               Logger::notice('Error fetching timeline', ['uid' => $uid, 'message' => $e->getMessage()]);
-               return;
-       }
-
-       if (!is_array($items)) {
-               Logger::notice('No items', ['user' => $uid]);
-               return;
-       }
-
-       $posts = array_reverse($items);
+       DI::pConfig()->set($uid, 'twitter', 'last_status', $status);
 
-       Logger::notice('Start processing posts', ['from' => $lastid, 'user' => $uid, 'count' => count($posts)]);
-
-       if (count($posts)) {
-               foreach ($posts as $post) {
-                       if ($post->id_str > $lastid) {
-                               $lastid = $post->id_str;
-                               DI::pConfig()->set($uid, 'twitter', 'lastid', $lastid);
-                       }
-
-                       if ($first_time) {
-                               Logger::notice('First time, continue');
-                               continue;
-                       }
-
-                       if (stristr($post->source, $application_name)) {
-                               Logger::notice('Source is application name', ['source' => $post->source, 'application_name' => $application_name]);
-                               continue;
-                       }
-                       Logger::info('Preparing mirror post', ['twitter-id' => $post->id_str, 'uid' => $uid]);
-
-                       $mirrorpost = twitter_do_mirrorpost($uid, $post);
-
-                       if (empty($mirrorpost['body'])) {
-                               Logger::notice('Body is empty', ['post' => $post, 'mirrorpost' => $mirrorpost]);
-                               continue;
-                       }
-
-                       Logger::info('Posting mirror post', ['twitter-id' => $post->id_str, 'uid' => $uid]);
-
-                       Post\Delayed::add($mirrorpost['extid'], $mirrorpost, Worker::PRIORITY_MEDIUM, Post\Delayed::PREPARED);
-               }
-       }
-       DI::pConfig()->set($uid, 'twitter', 'lastid', $lastid);
-       Logger::info('Last ID for user ' . $uid . ' is now ' . $lastid);
+       $content = json_decode($body) ?? new stdClass;
+       Logger::debug('Success', ['content' => $content]);
+       return $content;
 }
 
-function twitter_fix_avatar($avatar)
+function twitter_test_connection(int $uid)
 {
-       $new_avatar = str_replace('_normal.', '_400x400.', $avatar);
+       $stack = HandlerStack::create();
 
-       $info = Images::getInfoFromURLCached($new_avatar);
-       if (!$info) {
-               $new_avatar = $avatar;
-       }
-
-       return $new_avatar;
-}
-
-function twitter_get_relation($uid, $target, $contact = [])
-{
-       if (isset($contact['rel'])) {
-               $relation = $contact['rel'];
-       } else {
-               $relation = 0;
-       }
+       $middleware = new Oauth1([
+               'consumer_key'    => DI::pConfig()->get($uid, 'twitter', 'api_key'),
+               'consumer_secret' => DI::pConfig()->get($uid, 'twitter', 'api_secret'),
+               'token'           => DI::pConfig()->get($uid, 'twitter', 'access_token'),
+               'token_secret'    => DI::pConfig()->get($uid, 'twitter', 'access_secret'),
+       ]);
 
-       $ckey = DI::config()->get('twitter', 'consumerkey');
-       $csecret = DI::config()->get('twitter', 'consumersecret');
-       $otoken = DI::pConfig()->get($uid, 'twitter', 'oauthtoken');
-       $osecret = DI::pConfig()->get($uid, 'twitter', 'oauthsecret');
-       $own_id = DI::pConfig()->get($uid, 'twitter', 'own_id');
+       $stack->push($middleware);
 
-       $connection = new TwitterOAuth($ckey, $csecret, $otoken, $osecret);
-       $parameters = ['source_id' => $own_id, 'target_screen_name' => $target];
+       $client = new Client([
+               'handler' => $stack
+       ]);
 
        try {
-               $status = $connection->get('friendships/show', $parameters);
-               if ($connection->getLastHttpCode() !== 200) {
-                       throw new Exception($status->errors[0]->message ?? 'HTTP response code ' . $connection->getLastHttpCode(), $status->errors[0]->code ?? $connection->getLastHttpCode());
-               }
-
-               $following = $status->relationship->source->following;
-               $followed = $status->relationship->source->followed_by;
-
-               if ($following && !$followed) {
-                       $relation = Contact::SHARING;
-               } elseif (!$following && $followed) {
-                       $relation = Contact::FOLLOWER;
-               } elseif ($following && $followed) {
-                       $relation = Contact::FRIEND;
-               } elseif (!$following && !$followed) {
-                       $relation = 0;
-               }
-
-               Logger::info('Fetched friendship relation', ['user' => $uid, 'target' => $target, 'relation' => $relation]);
-       } catch (Throwable $e) {
-               Logger::notice('Error fetching friendship status', ['uid' => $uid, 'target' => $target, 'message' => $e->getMessage()]);
-       }
-
-       return $relation;
-}
-
-/**
- * @param $data
- * @return array
- */
-function twitter_user_to_contact($data)
-{
-       if (empty($data->id_str)) {
-               return [];
-       }
-
-       $baseurl = 'https://twitter.com';
-       $url = $baseurl . '/' . $data->screen_name;
-       $addr = $data->screen_name . '@twitter.com';
-
-       $fields = [
-               'url'      => $url,
-               'nurl'     => Strings::normaliseLink($url),
-               'uri-id'   => ItemURI::getIdByURI($url),
-               'network'  => Protocol::TWITTER,
-               'alias'    => 'twitter::' . $data->id_str,
-               'baseurl'  => $baseurl,
-               'name'     => $data->name,
-               'nick'     => $data->screen_name,
-               'addr'     => $addr,
-               'location' => $data->location,
-               'about'    => $data->description,
-               'photo'    => twitter_fix_avatar($data->profile_image_url_https),
-               'header'   => $data->profile_banner_url ?? $data->profile_background_image_url_https,
-       ];
-
-       return $fields;
-}
-
-function twitter_get_contact($data, int $uid = 0)
-{
-       $contact = DBA::selectFirst('contact', ['id'], ['uid' => $uid, 'alias' => 'twitter::' . $data->id_str]);
-       if (DBA::isResult($contact)) {
-               return $contact['id'];
-       } else {
-               return twitter_fetch_contact($uid, $data, false);
-       }
-}
-
-function twitter_fetch_contact($uid, $data, $create_user)
-{
-       $fields = twitter_user_to_contact($data);
-
-       if (empty($fields)) {
-               return -1;
-       }
-
-       // photo comes from twitter_user_to_contact but shouldn't be saved directly in the contact row
-       $avatar = $fields['photo'];
-       unset($fields['photo']);
-
-       // Update the public contact
-       $pcontact = DBA::selectFirst('contact', ['id'], ['uid' => 0, 'alias' => 'twitter::' . $data->id_str]);
-       if (DBA::isResult($pcontact)) {
-               $cid = $pcontact['id'];
-       } else {
-               $cid = Contact::getIdForURL($fields['url'], 0, false, $fields);
-       }
-
-       if (!empty($cid)) {
-               Contact::update($fields, ['id' => $cid]);
-               Contact::updateAvatar($cid, $avatar);
-       } else {
-               Logger::notice('No contact found', ['fields' => $fields]);
-       }
-
-       $contact = DBA::selectFirst('contact', [], ['uid' => $uid, 'alias' => 'twitter::' . $data->id_str]);
-       if (!DBA::isResult($contact) && empty($cid)) {
-               Logger::notice('User contact not found', ['uid' => $uid, 'twitter-id' => $data->id_str]);
-               return 0;
-       } elseif (!$create_user) {
-               return $cid;
-       }
-
-       if (!DBA::isResult($contact)) {
-               $relation = twitter_get_relation($uid, $data->screen_name);
-
-               // create contact record
-               $fields['uid'] = $uid;
-               $fields['created'] = DateTimeFormat::utcNow();
-               $fields['poll'] = 'twitter::' . $data->id_str;
-               $fields['rel'] = $relation;
-               $fields['priority'] = 1;
-               $fields['writable'] = true;
-               $fields['blocked'] = false;
-               $fields['readonly'] = false;
-               $fields['pending'] = false;
-
-               if (!Contact::insert($fields)) {
-                       return false;
-               }
-
-               $contact_id = DBA::lastInsertId();
-
-               Group::addMember(User::getDefaultGroup($uid), $contact_id);
-       } else {
-               if ($contact['readonly'] || $contact['blocked']) {
-                       Logger::notice('Contact is blocked or readonly.', ['nickname' => $contact['nick']]);
-                       return -1;
-               }
-
-               $contact_id = $contact['id'];
-               $update = false;
-
-               // Update the contact relation once per day
-               if ($contact['updated'] < DateTimeFormat::utc('now -24 hours')) {
-                       $fields['rel'] = twitter_get_relation($uid, $data->screen_name, $contact);
-                       $update = true;
-               }
-
-               if ($contact['name'] != $data->name) {
-                       $fields['name-date'] = $fields['uri-date'] = DateTimeFormat::utcNow();
-                       $update = true;
-               }
-
-               if ($contact['nick'] != $data->screen_name) {
-                       $fields['uri-date'] = DateTimeFormat::utcNow();
-                       $update = true;
-               }
-
-               if (($contact['location'] != $data->location) || ($contact['about'] != $data->description)) {
-                       $update = true;
-               }
-
-               if ($update) {
-                       $fields['updated'] = DateTimeFormat::utcNow();
-                       Contact::update($fields, ['id' => $contact['id']]);
-                       Logger::info('Updated contact', ['id' => $contact['id'], 'nick' => $data->screen_name]);
-               }
-       }
-
-       Contact::updateAvatar($contact_id, $avatar);
-
-       if (Contact::isSharing($contact_id, $uid, true) && DI::pConfig()->get($uid, 'twitter', 'auto_follow')) {
-               twitter_auto_follow($uid, $data);
-       }
-
-       return $contact_id;
-}
-
-/**
- * Follow a fediverse account that is proived in the name or the profile
- *
- * @param integer $uid
- * @param object $data
- */
-function twitter_auto_follow(int $uid, object $data)
-{
-       $addrpattern = '([A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,6})';
-
-       // Search for user@domain.tld in the name
-       if (preg_match('#' . $addrpattern . '#', $data->name, $match)) {
-               if (twitter_add_contact($match[1], true, $uid)) {
-                       return;
-               }
-       }
-
-       // Search for @user@domain.tld in the description
-       if (preg_match('#@' . $addrpattern . '#', $data->description, $match)) {
-               if (twitter_add_contact($match[1], true, $uid)) {
-                       return;
-               }
+               $response = $client->get('https://api.twitter.com/2/users/me', ['auth' => 'oauth']);
+               $status = [
+                       'code'   => $response->getStatusCode(),
+                       'reason'  => $response->getReasonPhrase(),
+                       'content' => $response->getBody()->getContents()
+               ];
+               DI::pConfig()->set(1, 'twitter', 'last_status',  $status);
+               Logger::info('Test successful', ['uid' => $uid]);
+       } catch (RequestException $exception) {
+               $status = [
+                       'code'    => $exception->getCode(),
+                       'reason'  => $exception->getResponse()->getReasonPhrase(),
+                       'content' => $exception->getMessage()
+               ];
+               DI::pConfig()->set(1, 'twitter', 'last_status',  $status);
+               Logger::info('Test failed', ['uid' => $uid]);
        }
-
-       // Search for user@domain.tld in the description
-       // We don't probe here, since this could be a mail address
-       if (preg_match('#' . $addrpattern . '#', $data->description, $match)) {
-               if (twitter_add_contact($match[1], false, $uid)) {
-                       return;
-               }
-       }
-
-       // Search for profile links in the description
-       foreach ($data->entities->description->urls as $url) {
-               if (!empty($url->expanded_url)) {
-                       // We only probe on Mastodon style URL to reduce the number of unsuccessful probes
-                       twitter_add_contact($url->expanded_url, strpos($url->expanded_url, '@'), $uid);
-               }
-       }
-}
-
-/**
- * Check if the provided address is a fediverse account and adds it
- *
- * @param string $addr
- * @param boolean $probe
- * @param integer $uid
- * @return boolean
- */
-function twitter_add_contact(string $addr, bool $probe, int $uid): bool
-{
-       $contact = Contact::getByURL($addr, $probe ? null : false, ['id', 'url', 'network']);
-       if (empty($contact)) {
-               Logger::debug('Not a contact address', ['uid' => $uid, 'probe' => $probe, 'addr' => $addr]);
-               return false;
-       }
-
-       if (!in_array($contact['network'], Protocol::FEDERATED)) {
-               Logger::debug('Not a federated network', ['uid' => $uid, 'addr' => $addr, 'contact' => $contact]);
-               return false;
-       }
-
-       if (Contact::isSharing($contact['id'], $uid)) {
-               Logger::debug('Contact has already been added', ['uid' => $uid, 'addr' => $addr, 'contact' => $contact]);
-               return true;
-       }
-
-       Logger::info('Add contact', ['uid' => $uid, 'addr' => $addr, 'contact' => $contact]);
-       Worker::add(Worker::PRIORITY_LOW, 'AddContact', $uid, $contact['url']);
-
-       return true;
-}
-
-/**
- * @param string $screen_name
- * @return stdClass|null
- * @throws Exception
- */
-function twitter_fetchuser($screen_name)
-{
-       $ckey = DI::config()->get('twitter', 'consumerkey');
-       $csecret = DI::config()->get('twitter', 'consumersecret');
-
-       try {
-               // Fetching user data
-               $connection = new TwitterOAuth($ckey, $csecret);
-               $parameters = ['screen_name' => $screen_name];
-               $user = $connection->get('users/show', $parameters);
-       } catch (TwitterOAuthException $e) {
-               Logger::notice('Error fetching user', ['user' => $screen_name, 'message' => $e->getMessage()]);
-               return null;
-       }
-
-       if (!is_object($user)) {
-               return null;
-       }
-
-       return $user;
-}
-
-/**
- * Replaces Twitter entities with Friendica-friendly links.
- *
- * The Twitter API gives indices for each entity, which allows for fine-grained replacement.
- *
- * First, we need to collect everything that needs to be replaced, what we will replace it with, and the start index.
- * Then we sort the indices decreasingly, and we replace from the end of the body to the start in order for the next
- * index to be correct even after the last replacement.
- *
- * @param string   $body
- * @param stdClass $status
- * @return array
- * @throws \Friendica\Network\HTTPException\InternalServerErrorException
- */
-function twitter_expand_entities($body, stdClass $status)
-{
-       $plain = $body;
-       $contains_urls = false;
-
-       $taglist = [];
-
-       $replacementList = [];
-
-       foreach ($status->entities->hashtags AS $hashtag) {
-               $replace = '#[url=' . DI::baseUrl() . '/search?tag=' . $hashtag->text . ']' . $hashtag->text . '[/url]';
-               $taglist['#' . $hashtag->text] = ['#', $hashtag->text, ''];
-
-               $replacementList[$hashtag->indices[0]] = [
-                       'replace' => $replace,
-                       'length' => $hashtag->indices[1] - $hashtag->indices[0],
-               ];
-       }
-
-       foreach ($status->entities->user_mentions AS $mention) {
-               $replace = '@[url=https://twitter.com/' . rawurlencode($mention->screen_name) . ']' . $mention->screen_name . '[/url]';
-               $taglist['@' . $mention->screen_name] = ['@', $mention->screen_name, 'https://twitter.com/' . rawurlencode($mention->screen_name)];
-
-               $replacementList[$mention->indices[0]] = [
-                       'replace' => $replace,
-                       'length' => $mention->indices[1] - $mention->indices[0],
-               ];
-       }
-
-       foreach ($status->entities->urls ?? [] as $url) {
-               $plain = str_replace($url->url, '', $plain);
-
-               if ($url->url && $url->expanded_url && $url->display_url) {
-                       // Quote tweet, we just remove the quoted tweet URL from the body, the share block will be added later.
-                       if (!empty($status->quoted_status) && isset($status->quoted_status_id_str)
-                               && substr($url->expanded_url, -strlen($status->quoted_status_id_str)) == $status->quoted_status_id_str
-                       ) {
-                               $replacementList[$url->indices[0]] = [
-                                       'replace' => '',
-                                       'length' => $url->indices[1] - $url->indices[0],
-                               ];
-                               continue;
-                       }
-
-                       $contains_urls = true;
-
-                       $expanded_url = $url->expanded_url;
-
-                       // Quickfix: Workaround for URL with '[' and ']' in it
-                       if (strpos($expanded_url, '[') || strpos($expanded_url, ']')) {
-                               $expanded_url = $url->url;
-                       }
-
-                       $replacementList[$url->indices[0]] = [
-                               'replace' => '[url=' . $expanded_url . ']' . $url->display_url . '[/url]',
-                               'length' => $url->indices[1] - $url->indices[0],
-                       ];
-               }
-       }
-
-       krsort($replacementList);
-
-       foreach ($replacementList as $startIndex => $parameters) {
-               $body = Strings::substringReplace($body, $parameters['replace'], $startIndex, $parameters['length']);
-       }
-
-       $body = trim($body);
-
-       return ['body' => trim($body), 'plain' => trim($plain), 'taglist' => $taglist, 'urls' => $contains_urls];
-}
-
-/**
- * Store entity attachments
- *
- * @param integer $uriId
- * @param object $post Twitter object with the post
- */
-function twitter_store_attachments(int $uriId, $post)
-{
-       if (!empty($post->extended_entities->media)) {
-               foreach ($post->extended_entities->media AS $medium) {
-                       switch ($medium->type) {
-                               case 'photo':
-                                       $attachment = ['uri-id' => $uriId, 'type' => Post\Media::IMAGE];
-
-                                       $attachment['url'] = $medium->media_url_https . '?name=large';
-                                       $attachment['width'] = $medium->sizes->large->w;
-                                       $attachment['height'] = $medium->sizes->large->h;
-
-                                       if ($medium->sizes->small->w != $attachment['width']) {
-                                               $attachment['preview'] = $medium->media_url_https . '?name=small';
-                                               $attachment['preview-width'] = $medium->sizes->small->w;
-                                               $attachment['preview-height'] = $medium->sizes->small->h;
-                                       }
-
-                                       $attachment['name'] = $medium->display_url ?? null;
-                                       $attachment['description'] = $medium->ext_alt_text ?? null;
-                                       Logger::debug('Photo attachment', ['attachment' => $attachment]);
-                                       Post\Media::insert($attachment);
-                                       break;
-                               case 'video':
-                               case 'animated_gif':
-                                       $attachment = ['uri-id' => $uriId, 'type' => Post\Media::VIDEO];
-                                       if (is_array($medium->video_info->variants)) {
-                                               $bitrate = 0;
-                                               // We take the video with the highest bitrate
-                                               foreach ($medium->video_info->variants AS $variant) {
-                                                       if (($variant->content_type == 'video/mp4') && ($variant->bitrate >= $bitrate)) {
-                                                               $attachment['url'] = $variant->url;
-                                                               $bitrate = $variant->bitrate;
-                                                       }
-                                               }
-                                       }
-
-                                       $attachment['name'] = $medium->display_url ?? null;
-                                       $attachment['preview'] = $medium->media_url_https . ':small';
-                                       $attachment['preview-width'] = $medium->sizes->small->w;
-                                       $attachment['preview-height'] = $medium->sizes->small->h;
-                                       $attachment['description'] = $medium->ext_alt_text ?? null;
-                                       Logger::debug('Video attachment', ['attachment' => $attachment]);
-                                       Post\Media::insert($attachment);
-                                       break;
-                               default:
-                                       Logger::notice('Unknown media type', ['medium' => $medium]);
-                       }
-               }
-       }
-
-       if (!empty($post->entities->urls)) {
-               foreach ($post->entities->urls as $url) {
-                       $attachment = ['uri-id' => $uriId, 'type' => Post\Media::UNKNOWN, 'url' => $url->expanded_url, 'name' => $url->display_url];
-                       Logger::debug('Attached link', ['attachment' => $attachment]);
-                       Post\Media::insert($attachment);
-               }
-       }
-}
-
-/**
- * @brief Fetch media entities and add media links to the body
- *
- * @param object  $post      Twitter object with the post
- * @param array   $postarray Array of the item that is about to be posted
- * @param integer $uriId URI Id used to store tags. -1 = don't store tags for this post.
- */
-function twitter_media_entities($post, array &$postarray, int $uriId = -1)
-{
-       // There are no media entities? So we quit.
-       if (empty($post->extended_entities->media)) {
-               return;
-       }
-
-       // This is a pure media post, first search for all media urls
-       $media = [];
-       foreach ($post->extended_entities->media AS $medium) {
-               if (!isset($media[$medium->url])) {
-                       $media[$medium->url] = '';
-               }
-               switch ($medium->type) {
-                       case 'photo':
-                               if (!empty($medium->ext_alt_text)) {
-                                       Logger::info('Got text description', ['alt_text' => $medium->ext_alt_text]);
-                                       $media[$medium->url] .= "\n[img=" . $medium->media_url_https .']' . $medium->ext_alt_text . '[/img]';
-                               } else {
-                                       $media[$medium->url] .= "\n[img]" . $medium->media_url_https . '[/img]';
-                               }
-
-                               $postarray['object-type'] = Activity\ObjectType::IMAGE;
-                               $postarray['post-type'] = Item::PT_IMAGE;
-                               break;
-                       case 'video':
-                               // Currently deactivated, since this causes the video to be display before the content
-                               // We have to figure out a better way for declaring the post type and the display style.
-                               //$postarray['post-type'] = Item::PT_VIDEO;
-                       case 'animated_gif':
-                               if (!empty($medium->ext_alt_text)) {
-                                       Logger::info('Got text description', ['alt_text' => $medium->ext_alt_text]);
-                                       $media[$medium->url] .= "\n[img=" . $medium->media_url_https .']' . $medium->ext_alt_text . '[/img]';
-                               } else {
-                                       $media[$medium->url] .= "\n[img]" . $medium->media_url_https . '[/img]';
-                               }
-
-                               $postarray['object-type'] = Activity\ObjectType::VIDEO;
-                               if (is_array($medium->video_info->variants)) {
-                                       $bitrate = 0;
-                                       // We take the video with the highest bitrate
-                                       foreach ($medium->video_info->variants AS $variant) {
-                                               if (($variant->content_type == 'video/mp4') && ($variant->bitrate >= $bitrate)) {
-                                                       $media[$medium->url] = "\n[video]" . $variant->url . '[/video]';
-                                                       $bitrate = $variant->bitrate;
-                                               }
-                                       }
-                               }
-                               break;
-               }
-       }
-
-       if ($uriId != -1) {
-               foreach ($media AS $key => $value) {
-                       $postarray['body'] = str_replace($key, '', $postarray['body']);
-               }
-               return;
-       }
-
-       // Now we replace the media urls.
-       foreach ($media AS $key => $value) {
-               $postarray['body'] = str_replace($key, "\n" . $value . "\n", $postarray['body']);
-       }
-}
-
-/**
- * Undocumented function
- *
- * @param integer $uid User ID
- * @param object $post Incoming Twitter post
- * @param array $self
- * @param bool $create_user Should users be created?
- * @param bool $only_existing_contact Only import existing contacts if set to "true"
- * @param bool $noquote
- * @param integer $uriId URI Id used to store tags. 0 = create a new one; -1 = don't store tags for this post.
- * @return array item array
- */
-function twitter_createpost(int $uid, $post, array $self, $create_user, bool $only_existing_contact, bool $noquote, int $uriId = 0): array
-{
-       $postarray = [];
-       $postarray['network'] = Protocol::TWITTER;
-       $postarray['uid'] = $uid;
-       $postarray['wall'] = 0;
-       $postarray['uri'] = 'twitter::' . $post->id_str;
-       $postarray['protocol'] = Conversation::PARCEL_TWITTER;
-       $postarray['source'] = json_encode($post);
-       $postarray['direction'] = Conversation::PULL;
-
-       if (empty($uriId)) {
-               $uriId = $postarray['uri-id'] = ItemURI::insert(['uri' => $postarray['uri']]);
-       }
-
-       // Don't import our own comments
-       if (Post::exists(['extid' => $postarray['uri'], 'uid' => $uid])) {
-               Logger::info('Item found', ['extid' => $postarray['uri']]);
-               return [];
-       }
-
-       $contactid = 0;
-
-       if ($post->in_reply_to_status_id_str != '') {
-               $thr_parent = 'twitter::' . $post->in_reply_to_status_id_str;
-
-               $item = Post::selectFirst(['uri'], ['uri' => $thr_parent, 'uid' => $uid]);
-               if (!DBA::isResult($item)) {
-                       $item = Post::selectFirst(['uri'], ['extid' => $thr_parent, 'uid' => $uid, 'gravity' => Item::GRAVITY_COMMENT]);
-               }
-
-               if (DBA::isResult($item)) {
-                       $postarray['thr-parent'] = $item['uri'];
-                       $postarray['object-type'] = Activity\ObjectType::COMMENT;
-               } else {
-                       $postarray['object-type'] = Activity\ObjectType::NOTE;
-               }
-
-               // Is it me?
-               $own_id = DI::pConfig()->get($uid, 'twitter', 'own_id');
-
-               if ($post->user->id_str == $own_id) {
-                       $self = Contact::selectFirst(['id', 'name', 'url', 'photo'], ['self' => true, 'uid' => $uid]);
-                       if (DBA::isResult($self)) {
-                               $contactid = $self['id'];
-
-                               $postarray['owner-id']     = Contact::getIdForURL($self['url']);
-                               $postarray['owner-name']   = $self['name'];
-                               $postarray['owner-link']   = $self['url'];
-                               $postarray['owner-avatar'] = $self['photo'];
-                       } else {
-                               Logger::error('No self contact found', ['uid' => $uid]);
-                               return [];
-                       }
-               }
-               // Don't create accounts of people who just comment something
-               $create_user = false;
-       } else {
-               $postarray['object-type'] = Activity\ObjectType::NOTE;
-       }
-
-       if ($contactid == 0) {
-               $contactid = twitter_fetch_contact($uid, $post->user, $create_user);
-
-               $postarray['owner-id']     = twitter_get_contact($post->user);
-               $postarray['owner-name']   = $post->user->name;
-               $postarray['owner-link']   = 'https://twitter.com/' . $post->user->screen_name;
-               $postarray['owner-avatar'] = twitter_fix_avatar($post->user->profile_image_url_https);
-       }
-
-       if (($contactid == 0) && !$only_existing_contact) {
-               $contactid = $self['id'];
-       } elseif ($contactid <= 0) {
-               Logger::info('Contact ID is zero or less than zero.');
-               return [];
-       }
-
-       $postarray['contact-id']    = $contactid;
-       $postarray['verb']          = Activity::POST;
-       $postarray['author-id']     = $postarray['owner-id'];
-       $postarray['author-name']   = $postarray['owner-name'];
-       $postarray['author-link']   = $postarray['owner-link'];
-       $postarray['author-avatar'] = $postarray['owner-avatar'];
-       $postarray['plink']         = 'https://twitter.com/' . $post->user->screen_name . '/status/' . $post->id_str;
-       $postarray['app']           = strip_tags($post->source);
-
-       if ($post->user->protected) {
-               $postarray['private']   = Item::PRIVATE;
-               $postarray['allow_cid'] = '<' . $self['id'] . '>';
-       } else {
-               $postarray['private']   = Item::UNLISTED;
-               $postarray['allow_cid'] = '';
-       }
-
-       if (!empty($post->full_text)) {
-               $postarray['body'] = $post->full_text;
-       } else {
-               $postarray['body'] = $post->text;
-       }
-
-       // When the post contains links then use the correct object type
-       if (count($post->entities->urls) > 0) {
-               $postarray['object-type'] = Activity\ObjectType::BOOKMARK;
-       }
-
-       // Search for media links
-       twitter_media_entities($post, $postarray, $uriId);
-
-       $converted = twitter_expand_entities($postarray['body'], $post);
-
-       // When the post contains external links then images or videos are just "decorations".
-       if (!empty($converted['urls'])) {
-               $postarray['post-type'] = Item::PT_NOTE;
-       }
-
-       $postarray['body'] = $converted['body'];
-       $postarray['created'] = DateTimeFormat::utc($post->created_at);
-       $postarray['edited'] = DateTimeFormat::utc($post->created_at);
-
-       if ($uriId > 0) {
-               twitter_store_tags($uriId, $converted['taglist']);
-               twitter_store_attachments($uriId, $post);
-       }
-
-       if (!empty($post->place->name)) {
-               $postarray['location'] = $post->place->name;
-       }
-       if (!empty($post->place->full_name)) {
-               $postarray['location'] = $post->place->full_name;
-       }
-       if (!empty($post->geo->coordinates)) {
-               $postarray['coord'] = $post->geo->coordinates[0] . ' ' . $post->geo->coordinates[1];
-       }
-       if (!empty($post->coordinates->coordinates)) {
-               $postarray['coord'] = $post->coordinates->coordinates[1] . ' ' . $post->coordinates->coordinates[0];
-       }
-       if (!empty($post->retweeted_status)) {
-               $retweet = twitter_createpost($uid, $post->retweeted_status, $self, false, false, $noquote);
-
-               if (empty($retweet)) {
-                       return [];
-               }
-
-               if (!$noquote) {
-                       // Store the original tweet
-                       Item::insert($retweet);
-
-                       // CHange the other post into a reshare activity
-                       $postarray['verb'] = Activity::ANNOUNCE;
-                       $postarray['gravity'] = Item::GRAVITY_ACTIVITY;
-                       $postarray['object-type'] = Activity\ObjectType::NOTE;
-
-                       $postarray['thr-parent'] = $retweet['uri'];
-               } else {
-                       $retweet['source']       = $postarray['source'];
-                       $retweet['direction']    = $postarray['direction'];
-                       $retweet['private']      = $postarray['private'];
-                       $retweet['allow_cid']    = $postarray['allow_cid'];
-                       $retweet['contact-id']   = $postarray['contact-id'];
-                       $retweet['owner-id']     = $postarray['owner-id'];
-                       $retweet['owner-name']   = $postarray['owner-name'];
-                       $retweet['owner-link']   = $postarray['owner-link'];
-                       $retweet['owner-avatar'] = $postarray['owner-avatar'];
-
-                       $postarray = $retweet;
-               }
-       }
-
-       if (!empty($post->quoted_status)) {
-               if ($noquote) {
-                       // To avoid recursive share blocks we just provide the link to avoid removing quote context.
-                       $postarray['body'] .= "\n\nhttps://twitter.com/" . $post->quoted_status->user->screen_name . "/status/" . $post->quoted_status->id_str;
-               } else {
-                       $quoted = twitter_createpost(0, $post->quoted_status, $self, false, false, true);
-                       if (!empty($quoted)) {
-                               Item::insert($quoted);
-                               $post = Post::selectFirst(['guid', 'uri-id'], ['uri' => $quoted['uri'], 'uid' => 0]);
-                               Logger::info('Stored quoted post', ['uid' => $uid, 'uri-id' => $uriId, 'post' => $post]);
-
-                               $postarray['body'] .= "\n" . BBCode::getShareOpeningTag(
-                                               $quoted['author-name'],
-                                               $quoted['author-link'],
-                                               $quoted['author-avatar'],
-                                               $quoted['plink'],
-                                               $quoted['created'],
-                                               $post['guid'] ?? ''
-                                       );
-
-                               $postarray['body'] .= $quoted['body'] . '[/share]';
-                       } else {
-                               // Quoted post author is blocked/ignored, so we just provide the link to avoid removing quote context.
-                               $postarray['body'] .= "\n\nhttps://twitter.com/" . $post->quoted_status->user->screen_name . '/status/' . $post->quoted_status->id_str;
-                       }
-               }
-       }
-
-       return $postarray;
-}
-
-/**
- * Store tags and mentions
- *
- * @param integer $uriId
- * @param array $taglist
- * @return void
- */
-function twitter_store_tags(int $uriId, array $taglist)
-{
-       foreach ($taglist as $tag) {
-               Tag::storeByHash($uriId, $tag[0], $tag[1], $tag[2]);
-       }
-}
-
-function twitter_fetchparentposts(int $uid, $post, TwitterOAuth $connection, array $self)
-{
-       Logger::info('Fetching parent posts', ['user' => $uid, 'post' => $post->id_str]);
-
-       $posts = [];
-
-       while (!empty($post->in_reply_to_status_id_str)) {
-               try {
-                       $post = twitter_statuses_show($post->in_reply_to_status_id_str, $connection);
-               } catch (TwitterOAuthException $e) {
-                       Logger::notice('Error fetching parent post', ['uid' => $uid, 'post' => $post->id_str, 'message' => $e->getMessage()]);
-                       break;
-               }
-
-               if (empty($post)) {
-                       Logger::info("twitter_fetchparentposts: Can't fetch post");
-                       break;
-               }
-
-               if (empty($post->id_str)) {
-                       Logger::info('twitter_fetchparentposts: This is not a post', ['post' => $post]);
-                       break;
-               }
-
-               if (Post::exists(['uri' => 'twitter::' . $post->id_str, 'uid' => $uid])) {
-                       break;
-               }
-
-               $posts[] = $post;
-       }
-
-       Logger::info('twitter_fetchparentposts: Fetching ' . count($posts) . ' parents');
-
-       $posts = array_reverse($posts);
-
-       if (!empty($posts)) {
-               foreach ($posts as $post) {
-                       $postarray = twitter_createpost($uid, $post, $self, false, !DI::pConfig()->get($uid, 'twitter', 'create_user'), false);
-
-                       if (empty($postarray)) {
-                               continue;
-                       }
-
-                       $item = Item::insert($postarray);
-
-                       $postarray['id'] = $item;
-
-                       Logger::notice('twitter_fetchparentpost: User ' . $self['nick'] . ' posted parent timeline item ' . $item);
-               }
-       }
-}
-
-/**
- * Fetches the posts received by the Twitter user
- *
- * @param int $uid
- * @return void
- * @throws Exception
- */
-function twitter_fetchhometimeline(int $uid): void
-{
-       $ckey    = DI::config()->get('twitter', 'consumerkey');
-       $csecret = DI::config()->get('twitter', 'consumersecret');
-       $otoken  = DI::pConfig()->get($uid, 'twitter', 'oauthtoken');
-       $osecret = DI::pConfig()->get($uid, 'twitter', 'oauthsecret');
-       $create_user = DI::pConfig()->get($uid, 'twitter', 'create_user');
-       $mirror_posts = DI::pConfig()->get($uid, 'twitter', 'mirror_posts');
-
-       Logger::info('Fetching timeline', ['uid' => $uid]);
-
-       $application_name = DI::keyValue()->get('twitter_application_name') ?? '';
-
-       if ($application_name == '') {
-               $application_name = DI::baseUrl()->getHost();
-       }
-
-       $connection = new TwitterOAuth($ckey, $csecret, $otoken, $osecret);
-
-       try {
-               $own_contact = twitter_fetch_own_contact($uid);
-       } catch (TwitterOAuthException $e) {
-               Logger::notice('Error fetching own contact', ['uid' => $uid, 'message' => $e->getMessage()]);
-               return;
-       }
-
-       $contact = Contact::selectFirst(['nick'], ['id' => $own_contact, 'uid' => $uid]);
-       if (DBA::isResult($contact)) {
-               $own_id = $contact['nick'];
-       } else {
-               Logger::notice('Own twitter contact not found', ['uid' => $uid]);
-               return;
-       }
-
-       $self = User::getOwnerDataById($uid);
-       if ($self === false) {
-               Logger::warning('Own contact not found', ['uid' => $uid]);
-               return;
-       }
-
-       $parameters = [
-               'exclude_replies' => false,
-               'trim_user' => false,
-               'contributor_details' => true,
-               'include_rts' => true,
-               'tweet_mode' => 'extended',
-               'include_ext_alt_text' => true,
-               //'count' => 200,
-       ];
-
-       // Fetching timeline
-       $lastid = DI::pConfig()->get($uid, 'twitter', 'lasthometimelineid');
-
-       $first_time = ($lastid == '');
-
-       if ($lastid != '') {
-               $parameters['since_id'] = $lastid;
-       }
-
-       try {
-               $items = $connection->get('statuses/home_timeline', $parameters);
-       } catch (TwitterOAuthException $e) {
-               Logger::notice('Error fetching home timeline', ['uid' => $uid, 'message' => $e->getMessage()]);
-               return;
-       }
-
-       if (!is_array($items)) {
-               Logger::notice('home timeline is no array', ['items' => $items]);
-               return;
-       }
-
-       if (empty($items)) {
-               Logger::info('No new timeline content', ['uid' => $uid]);
-               return;
-       }
-
-       $posts = array_reverse($items);
-
-       Logger::notice('Processing timeline', ['lastid' => $lastid, 'uid' => $uid, 'count' => count($posts)]);
-
-       if (count($posts)) {
-               foreach ($posts as $post) {
-                       if ($post->id_str > $lastid) {
-                               $lastid = $post->id_str;
-                               DI::pConfig()->set($uid, 'twitter', 'lasthometimelineid', $lastid);
-                       }
-
-                       if ($first_time) {
-                               continue;
-                       }
-
-                       if (stristr($post->source, $application_name) && $post->user->screen_name == $own_id) {
-                               Logger::info('Skip previously sent post');
-                               continue;
-                       }
-
-                       if ($mirror_posts && $post->user->screen_name == $own_id && $post->in_reply_to_status_id_str == '') {
-                               Logger::info('Skip post that will be mirrored');
-                               continue;
-                       }
-
-                       if ($post->in_reply_to_status_id_str != '') {
-                               twitter_fetchparentposts($uid, $post, $connection, $self);
-                       }
-
-                       Logger::info('Preparing post ' . $post->id_str . ' for user ' . $uid);
-
-                       $postarray = twitter_createpost($uid, $post, $self, $create_user, true, false);
-
-                       if (empty($postarray)) {
-                               Logger::info('Empty post ' . $post->id_str . ' and user ' . $uid);
-                               continue;
-                       }
-
-                       $notify = false;
-
-                       if (empty($postarray['thr-parent'])) {
-                               $contact = DBA::selectFirst('contact', [], ['id' => $postarray['contact-id'], 'self' => false]);
-                               if (DBA::isResult($contact) && Item::isRemoteSelf($contact, $postarray)) {
-                                       $notify = Worker::PRIORITY_MEDIUM;
-                               }
-                       }
-
-                       $postarray['wall'] = (bool)$notify;
-
-                       $item = Item::insert($postarray, $notify);
-                       $postarray['id'] = $item;
-
-                       Logger::notice('User ' . $uid . ' posted home timeline item ' . $item);
-               }
-       }
-       DI::pConfig()->set($uid, 'twitter', 'lasthometimelineid', $lastid);
-
-       Logger::info('Last timeline ID for user ' . $uid . ' is now ' . $lastid);
-
-       // Fetching mentions
-       $lastid = DI::pConfig()->get($uid, 'twitter', 'lastmentionid');
-
-       $first_time = ($lastid == '');
-
-       if ($lastid != '') {
-               $parameters['since_id'] = $lastid;
-       }
-
-       try {
-               $items = $connection->get('statuses/mentions_timeline', $parameters);
-       } catch (TwitterOAuthException $e) {
-               Logger::notice('Error fetching mentions', ['uid' => $uid, 'message' => $e->getMessage()]);
-               return;
-       }
-
-       if (!is_array($items)) {
-               Logger::notice('mentions are no arrays', ['items' => $items]);
-               return;
-       }
-
-       $posts = array_reverse($items);
-
-       Logger::info('Fetching mentions for user ' . $uid . ' ' . sizeof($posts) . ' items');
-
-       if (count($posts)) {
-               foreach ($posts as $post) {
-                       if ($post->id_str > $lastid) {
-                               $lastid = $post->id_str;
-                       }
-
-                       if ($first_time) {
-                               continue;
-                       }
-
-                       if ($post->in_reply_to_status_id_str != '') {
-                               twitter_fetchparentposts($uid, $post, $connection, $self);
-                       }
-
-                       $postarray = twitter_createpost($uid, $post, $self, false, !$create_user, false);
-
-                       if (empty($postarray)) {
-                               continue;
-                       }
-
-                       $item = Item::insert($postarray);
-
-                       Logger::notice('User ' . $uid . ' posted mention timeline item ' . $item);
-               }
-       }
-
-       DI::pConfig()->set($uid, 'twitter', 'lastmentionid', $lastid);
-
-       Logger::info('Last mentions ID for user ' . $uid . ' is now ' . $lastid);
-}
-
-function twitter_fetch_own_contact(int $uid)
-{
-       $ckey    = DI::config()->get('twitter', 'consumerkey');
-       $csecret = DI::config()->get('twitter', 'consumersecret');
-       $otoken  = DI::pConfig()->get($uid, 'twitter', 'oauthtoken');
-       $osecret = DI::pConfig()->get($uid, 'twitter', 'oauthsecret');
-
-       $own_id = DI::pConfig()->get($uid, 'twitter', 'own_id');
-
-       $contact_id = 0;
-
-       if ($own_id == '') {
-               $connection = new TwitterOAuth($ckey, $csecret, $otoken, $osecret);
-
-               // Fetching user data
-               // get() may throw TwitterOAuthException, but we will catch it later
-               $user = $connection->get('account/verify_credentials');
-               if (empty($user->id_str)) {
-                       return false;
-               }
-
-               DI::pConfig()->set($uid, 'twitter', 'own_id', $user->id_str);
-
-               $contact_id = twitter_fetch_contact($uid, $user, true);
-       } else {
-               $contact = Contact::selectFirst(['id'], ['uid' => $uid, 'alias' => 'twitter::' . $own_id]);
-               if (DBA::isResult($contact)) {
-                       $contact_id = $contact['id'];
-               } else {
-                       DI::pConfig()->delete($uid, 'twitter', 'own_id');
-               }
-       }
-
-       return $contact_id;
-}
-
-function twitter_is_retweet(int $uid, string $body): bool
-{
-       $body = trim($body);
-
-       // Skip if it isn't a pure repeated messages
-       // Does it start with a share?
-       if (strpos($body, '[share') > 0) {
-               return false;
-       }
-
-       // Does it end with a share?
-       if (strlen($body) > (strrpos($body, '[/share]') + 8)) {
-               return false;
-       }
-
-       $attributes = preg_replace("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism", "$1", $body);
-       // Skip if there is no shared message in there
-       if ($body == $attributes) {
-               return false;
-       }
-
-       $link = '';
-       preg_match("/link='(.*?)'/ism", $attributes, $matches);
-       if (!empty($matches[1])) {
-               $link = $matches[1];
-       }
-
-       preg_match('/link="(.*?)"/ism', $attributes, $matches);
-       if (!empty($matches[1])) {
-               $link = $matches[1];
-       }
-
-       $id = preg_replace("=https?://twitter.com/(.*)/status/(.*)=ism", "$2", $link);
-       if ($id == $link) {
-               return false;
-       }
-       return twitter_retweet($uid, $id);
-}
-
-function twitter_retweet(int $uid, int $id, int $item_id = 0): bool
-{
-       Logger::info('Retweeting', ['user' => $uid, 'id' => $id]);
-
-       $result = twitter_api_post('statuses/retweet', $id, $uid);
-
-       Logger::info('Retweeted', ['user' => $uid, 'id' => $id, 'result' => $result]);
-
-       if (!empty($item_id) && !empty($result->id_str)) {
-               Logger::notice('Update extid', ['id' => $item_id, 'extid' => $result->id_str]);
-               Item::update(['extid' => 'twitter::' . $result->id_str], ['id' => $item_id]);
-       }
-
-       return !isset($result->errors);
-}
-
-function twitter_update_mentions(string $body): string
-{
-       $URLSearchString = '^\[\]';
-       $return = preg_replace_callback(
-               "/@\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
-               function ($matches) {
-                       if (strpos($matches[1], 'twitter.com')) {
-                               $return = '@' . substr($matches[1], strrpos($matches[1], '/') + 1);
-                       } else {
-                               $return = $matches[2] . ' (' . $matches[1] . ')';
-                       }
-
-                       return $return;
-               },
-               $body
-       );
-
-       return $return;
-}
-
-function twitter_convert_share(array $attributes, array $author_contact, string $content, bool $is_quote_share): string
-{
-       if (empty($author_contact)) {
-               return $content . "\n\n" . $attributes['link'];
-       }
-
-       if (!empty($author_contact['network']) && ($author_contact['network'] == Protocol::TWITTER)) {
-               $mention = '@' . $author_contact['nick'];
-       } else {
-               $mention = $author_contact['addr'];
-       }
-
-       return ($is_quote_share ? "\n\n" : '' ) . 'RT ' . $mention . ': ' . $content . "\n\n" . $attributes['link'];
 }