]> git.mxchange.org Git - friendica-addons.git/blob - twitter/twitter.php
Merge pull request #885 from tobiasd/20190907-twitter
[friendica-addons.git] / twitter / twitter.php
1 <?php
2 /**
3  * Name: Twitter Connector
4  * Description: Bidirectional (posting, relaying and reading) connector for Twitter.
5  * Version: 1.1.0
6  * Author: Tobias Diekershoff <https://f.diekershoff.de/profile/tobias>
7  * Author: Michael Vogel <https://pirati.ca/profile/heluecht>
8  * Maintainer: Hypolite Petovan <https://friendica.mrpetovan.com/profile/hypolite>
9  *
10  * Copyright (c) 2011-2013 Tobias Diekershoff, Michael Vogel, Hypolite Petovan
11  * All rights reserved.
12  *
13  * Redistribution and use in source and binary forms, with or without
14  * modification, are permitted provided that the following conditions are met:
15  *    * Redistributions of source code must retain the above copyright notice,
16  *     this list of conditions and the following disclaimer.
17  *    * Redistributions in binary form must reproduce the above
18  *    * copyright notice, this list of conditions and the following disclaimer in
19  *      the documentation and/or other materials provided with the distribution.
20  *    * Neither the name of the <organization> nor the names of its contributors
21  *      may be used to endorse or promote products derived from this software
22  *      without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
26  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
27  * DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY DIRECT,
28  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
29  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
31  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
32  * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
33  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34  *
35  */
36 /*   Twitter Addon for Friendica
37  *
38  *   Author: Tobias Diekershoff
39  *           tobias.diekershoff@gmx.net
40  *
41  *   License:3-clause BSD license
42  *
43  *   Configuration:
44  *     To use this addon you need a OAuth Consumer key pair (key & secret)
45  *     you can get it from Twitter at https://twitter.com/apps
46  *
47  *     Register your Friendica site as "Client" application with "Read & Write" access
48  *     we do not need "Twitter as login". When you've registered the app you get the
49  *     OAuth Consumer key and secret pair for your application/site.
50  *
51  *     Add this key pair to your global config/addon.config.php or use the admin panel.
52  *
53  *      'twitter' => [
54  *                  'consumerkey' => '',
55  *              'consumersecret' => '',
56  *      ],
57  *
58  *     To activate the addon itself add it to the system.addon
59  *     setting. After this, your user can configure their Twitter account settings
60  *     from "Settings -> Addon Settings".
61  *
62  *     Requirements: PHP5, curl
63  */
64
65 use Abraham\TwitterOAuth\TwitterOAuth;
66 use Abraham\TwitterOAuth\TwitterOAuthException;
67 use Codebird\Codebird;
68 use Friendica\App;
69 use Friendica\Content\OEmbed;
70 use Friendica\Content\Text\BBCode;
71 use Friendica\Content\Text\Plaintext;
72 use Friendica\Core\Config;
73 use Friendica\Core\Hook;
74 use Friendica\Core\L10n;
75 use Friendica\Core\Logger;
76 use Friendica\Core\PConfig;
77 use Friendica\Core\Protocol;
78 use Friendica\Core\Renderer;
79 use Friendica\Core\Worker;
80 use Friendica\Database\DBA;
81 use Friendica\Model\Contact;
82 use Friendica\Model\Conversation;
83 use Friendica\Model\Group;
84 use Friendica\Model\Item;
85 use Friendica\Model\ItemContent;
86 use Friendica\Model\User;
87 use Friendica\Object\Image;
88 use Friendica\Util\ConfigFileLoader;
89 use Friendica\Util\DateTimeFormat;
90 use Friendica\Util\Network;
91 use Friendica\Util\Strings;
92
93 require_once __DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php';
94
95 define('TWITTER_DEFAULT_POLL_INTERVAL', 5); // given in minutes
96
97 function twitter_install()
98 {
99         //  we need some hooks, for the configuration and for sending tweets
100         Hook::register('load_config'            , __FILE__, 'twitter_load_config');
101         Hook::register('connector_settings'     , __FILE__, 'twitter_settings');
102         Hook::register('connector_settings_post', __FILE__, 'twitter_settings_post');
103         Hook::register('hook_fork'              , __FILE__, 'twitter_hook_fork');
104         Hook::register('post_local'             , __FILE__, 'twitter_post_local');
105         Hook::register('notifier_normal'        , __FILE__, 'twitter_post_hook');
106         Hook::register('jot_networks'           , __FILE__, 'twitter_jot_nets');
107         Hook::register('cron'                   , __FILE__, 'twitter_cron');
108         Hook::register('follow'                 , __FILE__, 'twitter_follow');
109         Hook::register('expire'                 , __FILE__, 'twitter_expire');
110         Hook::register('prepare_body'           , __FILE__, 'twitter_prepare_body');
111         Hook::register('check_item_notification', __FILE__, 'twitter_check_item_notification');
112         Logger::log("installed twitter");
113 }
114
115 function twitter_uninstall()
116 {
117         Hook::unregister('load_config'            , __FILE__, 'twitter_load_config');
118         Hook::unregister('connector_settings'     , __FILE__, 'twitter_settings');
119         Hook::unregister('connector_settings_post', __FILE__, 'twitter_settings_post');
120         Hook::unregister('hook_fork'              , __FILE__, 'twitter_hook_fork');
121         Hook::unregister('post_local'             , __FILE__, 'twitter_post_local');
122         Hook::unregister('notifier_normal'        , __FILE__, 'twitter_post_hook');
123         Hook::unregister('jot_networks'           , __FILE__, 'twitter_jot_nets');
124         Hook::unregister('cron'                   , __FILE__, 'twitter_cron');
125         Hook::unregister('follow'                 , __FILE__, 'twitter_follow');
126         Hook::unregister('expire'                 , __FILE__, 'twitter_expire');
127         Hook::unregister('prepare_body'           , __FILE__, 'twitter_prepare_body');
128         Hook::unregister('check_item_notification', __FILE__, 'twitter_check_item_notification');
129
130         // old setting - remove only
131         Hook::unregister('post_local_end'     , __FILE__, 'twitter_post_hook');
132         Hook::unregister('addon_settings'     , __FILE__, 'twitter_settings');
133         Hook::unregister('addon_settings_post', __FILE__, 'twitter_settings_post');
134 }
135
136 function twitter_load_config(App $a, ConfigFileLoader $loader)
137 {
138         $a->getConfigCache()->load($loader->loadAddonConfig('twitter'));
139 }
140
141 function twitter_check_item_notification(App $a, array &$notification_data)
142 {
143         $own_id = PConfig::get($notification_data["uid"], 'twitter', 'own_id');
144
145         $own_user = q("SELECT `url` FROM `contact` WHERE `uid` = %d AND `alias` = '%s' LIMIT 1",
146                         intval($notification_data["uid"]),
147                         DBA::escape("twitter::".$own_id)
148         );
149
150         if ($own_user) {
151                 $notification_data["profiles"][] = $own_user[0]["url"];
152         }
153 }
154
155 function twitter_follow(App $a, array &$contact)
156 {
157         Logger::log("twitter_follow: Check if contact is twitter contact. " . $contact["url"], Logger::DEBUG);
158
159         if (!strstr($contact["url"], "://twitter.com") && !strstr($contact["url"], "@twitter.com")) {
160                 return;
161         }
162
163         // contact seems to be a twitter contact, so continue
164         $nickname = preg_replace("=https?://twitter.com/(.*)=ism", "$1", $contact["url"]);
165         $nickname = str_replace("@twitter.com", "", $nickname);
166
167         $uid = $a->user["uid"];
168
169         $ckey = Config::get('twitter', 'consumerkey');
170         $csecret = Config::get('twitter', 'consumersecret');
171         $otoken = PConfig::get($uid, 'twitter', 'oauthtoken');
172         $osecret = PConfig::get($uid, 'twitter', 'oauthsecret');
173
174         // If the addon is not configured (general or for this user) quit here
175         if (empty($ckey) || empty($csecret) || empty($otoken) || empty($osecret)) {
176                 $contact = false;
177                 return;
178         }
179
180         $connection = new TwitterOAuth($ckey, $csecret, $otoken, $osecret);
181         $connection->post('friendships/create', ['screen_name' => $nickname]);
182
183         twitter_fetchuser($a, $uid, $nickname);
184
185         $r = q("SELECT name,nick,url,addr,batch,notify,poll,request,confirm,poco,photo,priority,network,alias,pubkey
186                 FROM `contact` WHERE `uid` = %d AND `nick` = '%s'",
187                                 intval($uid),
188                                 DBA::escape($nickname));
189         if (DBA::isResult($r)) {
190                 $contact["contact"] = $r[0];
191         }
192 }
193
194 function twitter_jot_nets(App $a, array &$jotnets_fields)
195 {
196         if (!local_user()) {
197                 return;
198         }
199
200         if (PConfig::get(local_user(), 'twitter', 'post')) {
201                 $jotnets_fields[] = [
202                         'type' => 'checkbox',
203                         'field' => [
204                                 'twitter_enable',
205                                 L10n::t('Post to Twitter'),
206                                 PConfig::get(local_user(), 'twitter', 'post_by_default')
207                         ]
208                 ];
209         }
210 }
211
212
213 function twitter_settings_post(App $a)
214 {
215         if (!local_user()) {
216                 return;
217         }
218         // don't check twitter settings if twitter submit button is not clicked
219         if (empty($_POST['twitter-disconnect']) && empty($_POST['twitter-submit'])) {
220                 return;
221         }
222
223         if (!empty($_POST['twitter-disconnect'])) {
224                 /*               * *
225                  * if the twitter-disconnect checkbox is set, clear the OAuth key/secret pair
226                  * from the user configuration
227                  */
228                 PConfig::delete(local_user(), 'twitter', 'consumerkey');
229                 PConfig::delete(local_user(), 'twitter', 'consumersecret');
230                 PConfig::delete(local_user(), 'twitter', 'oauthtoken');
231                 PConfig::delete(local_user(), 'twitter', 'oauthsecret');
232                 PConfig::delete(local_user(), 'twitter', 'post');
233                 PConfig::delete(local_user(), 'twitter', 'post_by_default');
234                 PConfig::delete(local_user(), 'twitter', 'lastid');
235                 PConfig::delete(local_user(), 'twitter', 'mirror_posts');
236                 PConfig::delete(local_user(), 'twitter', 'import');
237                 PConfig::delete(local_user(), 'twitter', 'create_user');
238                 PConfig::delete(local_user(), 'twitter', 'own_id');
239         } else {
240                 if (isset($_POST['twitter-pin'])) {
241                         //  if the user supplied us with a PIN from Twitter, let the magic of OAuth happen
242                         Logger::log('got a Twitter PIN');
243                         $ckey    = Config::get('twitter', 'consumerkey');
244                         $csecret = Config::get('twitter', 'consumersecret');
245                         //  the token and secret for which the PIN was generated were hidden in the settings
246                         //  form as token and token2, we need a new connection to Twitter using these token
247                         //  and secret to request a Access Token with the PIN
248                         try {
249                                 if (empty($_POST['twitter-pin'])) {
250                                         throw new Exception(L10n::t('You submitted an empty PIN, please Sign In with Twitter again to get a new one.'));
251                                 }
252
253                                 $connection = new TwitterOAuth($ckey, $csecret, $_POST['twitter-token'], $_POST['twitter-token2']);
254                                 $token = $connection->oauth("oauth/access_token", ["oauth_verifier" => $_POST['twitter-pin']]);
255                                 //  ok, now that we have the Access Token, save them in the user config
256                                 PConfig::set(local_user(), 'twitter', 'oauthtoken', $token['oauth_token']);
257                                 PConfig::set(local_user(), 'twitter', 'oauthsecret', $token['oauth_token_secret']);
258                                 PConfig::set(local_user(), 'twitter', 'post', 1);
259                         } catch(Exception $e) {
260                                 info($e->getMessage());
261                         } catch(TwitterOAuthException $e) {
262                                 info($e->getMessage());
263                         }
264                         //  reload the Addon Settings page, if we don't do it see Bug #42
265                         $a->internalRedirect('settings/connectors');
266                 } else {
267                         //  if no PIN is supplied in the POST variables, the user has changed the setting
268                         //  to post a tweet for every new __public__ posting to the wall
269                         PConfig::set(local_user(), 'twitter', 'post', intval($_POST['twitter-enable']));
270                         PConfig::set(local_user(), 'twitter', 'post_by_default', intval($_POST['twitter-default']));
271                         PConfig::set(local_user(), 'twitter', 'mirror_posts', intval($_POST['twitter-mirror']));
272                         PConfig::set(local_user(), 'twitter', 'import', intval($_POST['twitter-import']));
273                         PConfig::set(local_user(), 'twitter', 'create_user', intval($_POST['twitter-create_user']));
274
275                         if (!intval($_POST['twitter-mirror'])) {
276                                 PConfig::delete(local_user(), 'twitter', 'lastid');
277                         }
278
279                         info(L10n::t('Twitter settings updated.') . EOL);
280                 }
281         }
282 }
283
284 function twitter_settings(App $a, &$s)
285 {
286         if (!local_user()) {
287                 return;
288         }
289         $a->page['htmlhead'] .= '<link rel="stylesheet"  type="text/css" href="' . $a->getBaseURL() . '/addon/twitter/twitter.css' . '" media="all" />' . "\r\n";
290         /*       * *
291          * 1) Check that we have global consumer key & secret
292          * 2) If no OAuthtoken & stuff is present, generate button to get some
293          * 3) Checkbox for "Send public notices (280 chars only)
294          */
295         $ckey    = Config::get('twitter', 'consumerkey');
296         $csecret = Config::get('twitter', 'consumersecret');
297         $otoken  = PConfig::get(local_user(), 'twitter', 'oauthtoken');
298         $osecret = PConfig::get(local_user(), 'twitter', 'oauthsecret');
299
300         $enabled            = intval(PConfig::get(local_user(), 'twitter', 'post'));
301         $defenabled         = intval(PConfig::get(local_user(), 'twitter', 'post_by_default'));
302         $mirrorenabled      = intval(PConfig::get(local_user(), 'twitter', 'mirror_posts'));
303         $importenabled      = intval(PConfig::get(local_user(), 'twitter', 'import'));
304         $create_userenabled = intval(PConfig::get(local_user(), 'twitter', 'create_user'));
305
306         $css = (($enabled) ? '' : '-disabled');
307
308         $s .= '<span id="settings_twitter_inflated" class="settings-block fakelink" style="display: block;" onclick="openClose(\'settings_twitter_expanded\'); openClose(\'settings_twitter_inflated\');">';
309         $s .= '<img class="connector' . $css . '" src="images/twitter.png" /><h3 class="connector">' . L10n::t('Twitter Import/Export/Mirror') . '</h3>';
310         $s .= '</span>';
311         $s .= '<div id="settings_twitter_expanded" class="settings-block" style="display: none;">';
312         $s .= '<span class="fakelink" onclick="openClose(\'settings_twitter_expanded\'); openClose(\'settings_twitter_inflated\');">';
313         $s .= '<img class="connector' . $css . '" src="images/twitter.png" /><h3 class="connector">' . L10n::t('Twitter Import/Export/Mirror') . '</h3>';
314         $s .= '</span>';
315
316         if ((!$ckey) && (!$csecret)) {
317                 /* no global consumer keys
318                  * display warning and skip personal config
319                  */
320                 $s .= '<p>' . L10n::t('No consumer key pair for Twitter found. Please contact your site administrator.') . '</p>';
321         } else {
322                 // ok we have a consumer key pair now look into the OAuth stuff
323                 if ((!$otoken) && (!$osecret)) {
324                         /* the user has not yet connected the account to twitter...
325                          * get a temporary OAuth key/secret pair and display a button with
326                          * which the user can request a PIN to connect the account to a
327                          * account at Twitter.
328                          */
329                         $connection = new TwitterOAuth($ckey, $csecret);
330                         try {
331                                 $result = $connection->oauth('oauth/request_token', ['oauth_callback' => 'oob']);
332                                 $s .= '<p>' . 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>';
333                                 $s .= '<a href="' . $connection->url('oauth/authorize', ['oauth_token' => $result['oauth_token']]) . '" target="_twitter"><img src="addon/twitter/lighter.png" alt="' . L10n::t('Log in with Twitter') . '"></a>';
334                                 $s .= '<div id="twitter-pin-wrapper">';
335                                 $s .= '<label id="twitter-pin-label" for="twitter-pin">' . L10n::t('Copy the PIN from Twitter here') . '</label>';
336                                 $s .= '<input id="twitter-pin" type="text" name="twitter-pin" />';
337                                 $s .= '<input id="twitter-token" type="hidden" name="twitter-token" value="' . $result['oauth_token'] . '" />';
338                                 $s .= '<input id="twitter-token2" type="hidden" name="twitter-token2" value="' . $result['oauth_token_secret'] . '" />';
339                                 $s .= '</div><div class="clear"></div>';
340                                 $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="twitter-submit" class="settings-submit" value="' . L10n::t('Save Settings') . '" /></div>';
341                         } catch (TwitterOAuthException $e) {
342                                 $s .= '<p>' . L10n::t('An error occured: ') . $e->getMessage() . '</p>';
343                         }
344                 } else {
345                         /*                       * *
346                          *  we have an OAuth key / secret pair for the user
347                          *  so let's give a chance to disable the postings to Twitter
348                          */
349                         $connection = new TwitterOAuth($ckey, $csecret, $otoken, $osecret);
350                         try {
351                                 $details = $connection->get('account/verify_credentials');
352
353                                 $field_checkbox = Renderer::getMarkupTemplate('field_checkbox.tpl');
354
355                                 if (property_exists($details, 'screen_name') &&
356                                     property_exists($details, 'description') &&
357                                     property_exists($details, 'profile_image_url')) {
358                                         $s .= '<div id="twitter-info" >
359                                         <p>' . L10n::t('Currently connected to: ') . '<a href="https://twitter.com/' . $details->screen_name . '" target="_twitter">' . $details->screen_name . '</a>
360                                                 <button type="submit" name="twitter-disconnect" value="1">' . L10n::t('Disconnect') . '</button>
361                                         </p>
362                                         <p id="twitter-info-block">
363                                                 <a href="https://twitter.com/' . $details->screen_name . '" target="_twitter"><img id="twitter-avatar" src="' . $details->profile_image_url . '" /></a>
364                                                 <em>' . $details->description . '</em>
365                                         </p>
366                                 </div>';
367                                 } else {
368                                         $s .= '<div id="twitter-info" >
369                                         <p>Invalid Twitter info</p>
370                                 </div>';
371                                         Logger::info('Invalid twitter info (verify credentials).', ['auth' => TwitterOAuth::class]);
372                                 }
373                                 $s .= '<div class="clear"></div>';
374
375                                 $s .= Renderer::replaceMacros($field_checkbox, [
376                                         '$field' => ['twitter-enable', L10n::t('Allow posting to Twitter'), $enabled, 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.')]
377                                 ]);
378                                 if ($a->user['hidewall']) {
379                                         $s .= '<p>' . 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.') . '</p>';
380                                 }
381                                 $s .= Renderer::replaceMacros($field_checkbox, [
382                                         '$field' => ['twitter-default', L10n::t('Send public postings to Twitter by default'), $defenabled, '']
383                                 ]);
384                                 $s .= Renderer::replaceMacros($field_checkbox, [
385                                         '$field' => ['twitter-mirror', L10n::t('Mirror all posts from twitter that are no replies'), $mirrorenabled, '']
386                                 ]);
387                                 $s .= Renderer::replaceMacros($field_checkbox, [
388                                         '$field' => ['twitter-import', L10n::t('Import the remote timeline'), $importenabled, '']
389                                 ]);
390                                 $s .= Renderer::replaceMacros($field_checkbox, [
391                                         '$field' => ['twitter-create_user', L10n::t('Automatically create contacts'), $create_userenabled, 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. However if enabled, you cannot merely remove a twitter contact from the Friendica contact list, as it will recreate this contact when they post again.')]
392                                 ]);
393                                 $s .= '<div class="clear"></div>';
394                                 $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="twitter-submit" class="settings-submit" value="' . L10n::t('Save Settings') . '" /></div>';
395                         } catch (TwitterOAuthException $e) {
396                                 $s .= '<p>' . L10n::t('An error occured: ') . $e->getMessage() . '</p>';
397                         }
398                 }
399         }
400         $s .= '</div><div class="clear"></div>';
401 }
402
403 function twitter_hook_fork(App $a, array &$b)
404 {
405         if ($b['name'] != 'notifier_normal') {
406                 return;
407         }
408
409         $post = $b['data'];
410
411         // Deleting and editing is not supported by the addon (deleting could, but isn't by now)
412         if ($post['deleted'] || ($post['created'] !== $post['edited'])) {
413                 $b['execute'] = false;
414                 return;
415         }
416
417         // if post comes from twitter don't send it back
418         if ($post['extid'] == Protocol::TWITTER) {
419                 $b['execute'] = false;
420                 return;
421         }
422
423         if ($post['app'] == 'Twitter') {
424                 $b['execute'] = false;
425                 return;
426         }
427
428         if (PConfig::get($post['uid'], 'twitter', 'import')) {
429                 // Don't fork if it isn't a reply to a twitter post
430                 if (($post['parent'] != $post['id']) && !Item::exists(['id' => $post['parent'], 'network' => Protocol::TWITTER])) {
431                         Logger::log('No twitter parent found for item ' . $post['id']);
432                         $b['execute'] = false;
433                         return;
434                 }
435         } else {
436                 // Comments are never exported when we don't import the twitter timeline
437                 if (!strstr($post['postopts'], 'twitter') || ($post['parent'] != $post['id']) || $post['private']) {
438                         $b['execute'] = false;
439                         return;
440                 }
441         }
442 }
443
444 function twitter_post_local(App $a, array &$b)
445 {
446         if ($b['edit']) {
447                 return;
448         }
449
450         if (!local_user() || (local_user() != $b['uid'])) {
451                 return;
452         }
453
454         $twitter_post = intval(PConfig::get(local_user(), 'twitter', 'post'));
455         $twitter_enable = (($twitter_post && !empty($_REQUEST['twitter_enable'])) ? intval($_REQUEST['twitter_enable']) : 0);
456
457         // if API is used, default to the chosen settings
458         if ($b['api_source'] && intval(PConfig::get(local_user(), 'twitter', 'post_by_default'))) {
459                 $twitter_enable = 1;
460         }
461
462         if (!$twitter_enable) {
463                 return;
464         }
465
466         if (strlen($b['postopts'])) {
467                 $b['postopts'] .= ',';
468         }
469
470         $b['postopts'] .= 'twitter';
471 }
472
473 function twitter_action(App $a, $uid, $pid, $action)
474 {
475         $ckey = Config::get('twitter', 'consumerkey');
476         $csecret = Config::get('twitter', 'consumersecret');
477         $otoken = PConfig::get($uid, 'twitter', 'oauthtoken');
478         $osecret = PConfig::get($uid, 'twitter', 'oauthsecret');
479
480         $connection = new TwitterOAuth($ckey, $csecret, $otoken, $osecret);
481
482         $post = ['id' => $pid];
483
484         Logger::log("twitter_action '" . $action . "' ID: " . $pid . " data: " . print_r($post, true), Logger::DATA);
485
486         switch ($action) {
487                 case "delete":
488                         // To-Do: $result = $connection->post('statuses/destroy', $post);
489                         $result = [];
490                         break;
491                 case "like":
492                         $result = $connection->post('favorites/create', $post);
493                         break;
494                 case "unlike":
495                         $result = $connection->post('favorites/destroy', $post);
496                         break;
497                 default:
498                         Logger::log('Unhandled action ' . $action, Logger::DEBUG);
499                         $result = [];
500         }
501         Logger::log("twitter_action '" . $action . "' send, result: " . print_r($result, true), Logger::DEBUG);
502 }
503
504 function twitter_post_hook(App $a, array &$b)
505 {
506         // Post to Twitter
507         if (!PConfig::get($b["uid"], 'twitter', 'import')
508                 && ($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited']))) {
509                 return;
510         }
511
512         if ($b['parent'] != $b['id']) {
513                 Logger::log("twitter_post_hook: parameter " . print_r($b, true), Logger::DATA);
514
515                 // Looking if its a reply to a twitter post
516                 if ((substr($b["parent-uri"], 0, 9) != "twitter::")
517                         && (substr($b["extid"], 0, 9) != "twitter::")
518                         && (substr($b["thr-parent"], 0, 9) != "twitter::"))
519                 {
520                         Logger::log("twitter_post_hook: no twitter post " . $b["parent"]);
521                         return;
522                 }
523
524                 $condition = ['uri' => $b["thr-parent"], 'uid' => $b["uid"]];
525                 $orig_post = Item::selectFirst([], $condition);
526                 if (!DBA::isResult($orig_post)) {
527                         Logger::log("twitter_post_hook: no parent found " . $b["thr-parent"]);
528                         return;
529                 } else {
530                         $iscomment = true;
531                 }
532
533
534                 $nicknameplain = preg_replace("=https?://twitter.com/(.*)=ism", "$1", $orig_post["author-link"]);
535                 $nickname = "@[url=" . $orig_post["author-link"] . "]" . $nicknameplain . "[/url]";
536                 $nicknameplain = "@" . $nicknameplain;
537
538                 Logger::log("twitter_post_hook: comparing " . $nickname . " and " . $nicknameplain . " with " . $b["body"], Logger::DEBUG);
539                 if ((strpos($b["body"], $nickname) === false) && (strpos($b["body"], $nicknameplain) === false)) {
540                         $b["body"] = $nickname . " " . $b["body"];
541                 }
542
543                 Logger::log("twitter_post_hook: parent found " . print_r($orig_post, true), Logger::DATA);
544         } else {
545                 $iscomment = false;
546
547                 if ($b['private'] || !strstr($b['postopts'], 'twitter')) {
548                         return;
549                 }
550
551                 // Dont't post if the post doesn't belong to us.
552                 // This is a check for forum postings
553                 $self = DBA::selectFirst('contact', ['id'], ['uid' => $b['uid'], 'self' => true]);
554                 if ($b['contact-id'] != $self['id']) {
555                         return;
556                 }
557         }
558
559         if (($b['verb'] == ACTIVITY_POST) && $b['deleted']) {
560                 twitter_action($a, $b["uid"], substr($orig_post["uri"], 9), "delete");
561         }
562
563         if ($b['verb'] == ACTIVITY_LIKE) {
564                 Logger::log("twitter_post_hook: parameter 2 " . substr($b["thr-parent"], 9), Logger::DEBUG);
565                 if ($b['deleted']) {
566                         twitter_action($a, $b["uid"], substr($b["thr-parent"], 9), "unlike");
567                 } else {
568                         twitter_action($a, $b["uid"], substr($b["thr-parent"], 9), "like");
569                 }
570
571                 return;
572         }
573
574         if ($b['deleted'] || ($b['created'] !== $b['edited'])) {
575                 return;
576         }
577
578         // if post comes from twitter don't send it back
579         if ($b['extid'] == Protocol::TWITTER) {
580                 return;
581         }
582
583         if ($b['app'] == "Twitter") {
584                 return;
585         }
586
587         Logger::notice('twitter post invoked', ['id' => $b['id'], 'guid' => $b['guid']]);
588
589         PConfig::load($b['uid'], 'twitter');
590
591         $ckey    = Config::get('twitter', 'consumerkey');
592         $csecret = Config::get('twitter', 'consumersecret');
593         $otoken  = PConfig::get($b['uid'], 'twitter', 'oauthtoken');
594         $osecret = PConfig::get($b['uid'], 'twitter', 'oauthsecret');
595
596         if ($ckey && $csecret && $otoken && $osecret) {
597                 Logger::log('twitter: we have customer key and oauth stuff, going to send.', Logger::DEBUG);
598
599                 // If it's a repeated message from twitter then do a native retweet and exit
600                 if (twitter_is_retweet($a, $b['uid'], $b['body'])) {
601                         return;
602                 }
603
604                 Codebird::setConsumerKey($ckey, $csecret);
605                 $cb = Codebird::getInstance();
606                 $cb->setToken($otoken, $osecret);
607
608                 $connection = new TwitterOAuth($ckey, $csecret, $otoken, $osecret);
609
610                 // Set the timeout for upload to 30 seconds
611                 $connection->setTimeouts(10, 30);
612
613                 $max_char = 280;
614
615                 // Handling non-native reshares
616                 $b['body'] = Friendica\Content\Text\BBCode::convertShare(
617                         $b['body'],
618                         function (array $attributes, array $author_contact, $content, $is_quote_share) {
619                                 return twitter_convert_share($attributes, $author_contact, $content, $is_quote_share);
620                         }
621                 );
622
623                 $b['body'] = twitter_update_mentions($b['body']);
624
625                 $msgarr = ItemContent::getPlaintextPost($b, $max_char, true, 8);
626                 Logger::info('Got plaintext', $msgarr);
627                 $msg = $msgarr["text"];
628
629                 if (($msg == "") && isset($msgarr["title"])) {
630                         $msg = Plaintext::shorten($msgarr["title"], $max_char - 50);
631                 }
632
633                 if (($msgarr['url'] == $b['plink']) && !empty($msgarr['images']) && (count($msgarr['images']) <= 4)) {
634                         $url_added = false;
635                 } elseif (isset($msgarr["url"]) && ($msgarr["type"] != "photo")) {
636                         $msg .= "\n" . $msgarr["url"];
637                         $url_added = true;
638                 } else {
639                         $url_added = false;
640                 }
641
642                 if (empty($msg)) {
643                         return;
644                 }
645
646                 // and now tweet it :-)
647                 $post = [];
648
649                 if (!empty($msgarr['images'])) {
650                         try {
651                                 $media_ids = [];
652                                 foreach ($msgarr['images'] as $image) {
653                                         if (count($media_ids) == 4) {
654                                                 continue;
655                                         }
656
657                                         $img_str = Network::fetchUrl($image['url']);
658
659                                         $tempfile = tempnam(get_temppath(), 'cache');
660                                         file_put_contents($tempfile, $img_str);
661
662                                         $media = $connection->upload('media/upload', ['media' => $tempfile]);
663
664                                         unlink($tempfile);
665
666                                         if (isset($media->media_id_string)) {
667                                                 $media_ids[] = $media->media_id_string;
668
669                                                 if (!empty($image['description'])) {
670                                                         $data = ['media_id' => $media->media_id_string,
671                                                                 'alt_text' => ['text' => substr($image['description'], 0, 420)]];
672                                                         $ret = $cb->media_metadata_create($data);
673                                                         Logger::info('Metadata create', ['data' => $data, 'return' => json_encode($ret)]);
674                                                 }
675                                         } else {
676                                                 throw new Exception('Failed upload of ' . $image['url']);
677                                         }
678                                 }
679                                 $post['media_ids'] = implode(',', $media_ids);
680                                 if (empty($post['media_ids'])) {
681                                         unset($post['media_ids']);
682                                 }
683                         } catch (Exception $e) {
684                                 Logger::log('Exception when trying to send to Twitter: ' . $e->getMessage());
685                         }
686                 }
687
688                 $post['status'] = $msg;
689
690                 if ($iscomment) {
691                         $post["in_reply_to_status_id"] = substr($orig_post["uri"], 9);
692                 }
693
694                 $url = 'statuses/update';
695                 $result = $connection->post($url, $post);
696                 Logger::log('twitter_post send, result: ' . print_r($result, true), Logger::DEBUG);
697
698                 if (!empty($result->source)) {
699                         Config::set("twitter", "application_name", strip_tags($result->source));
700                 }
701
702                 if (!empty($result->errors)) {
703                         Logger::log('Send to Twitter failed: "' . print_r($result->errors, true) . '"');
704                         Worker::defer();
705                 } elseif ($iscomment) {
706                         Logger::log('twitter_post: Update extid ' . $result->id_str . " for post id " . $b['id']);
707                         Item::update(['extid' => "twitter::" . $result->id_str], ['id' => $b['id']]);
708                 }
709         }
710 }
711
712 function twitter_addon_admin_post(App $a)
713 {
714         $consumerkey    = !empty($_POST['consumerkey'])    ? Strings::escapeTags(trim($_POST['consumerkey']))    : '';
715         $consumersecret = !empty($_POST['consumersecret']) ? Strings::escapeTags(trim($_POST['consumersecret'])) : '';
716         Config::set('twitter', 'consumerkey', $consumerkey);
717         Config::set('twitter', 'consumersecret', $consumersecret);
718         info(L10n::t('Settings updated.') . EOL);
719 }
720
721 function twitter_addon_admin(App $a, &$o)
722 {
723         $t = Renderer::getMarkupTemplate("admin.tpl", "addon/twitter/");
724
725         $o = Renderer::replaceMacros($t, [
726                 '$submit' => L10n::t('Save Settings'),
727                 // name, label, value, help, [extra values]
728                 '$consumerkey' => ['consumerkey', L10n::t('Consumer key'), Config::get('twitter', 'consumerkey'), ''],
729                 '$consumersecret' => ['consumersecret', L10n::t('Consumer secret'), Config::get('twitter', 'consumersecret'), ''],
730         ]);
731 }
732
733 function twitter_cron(App $a)
734 {
735         $last = Config::get('twitter', 'last_poll');
736
737         $poll_interval = intval(Config::get('twitter', 'poll_interval'));
738         if (!$poll_interval) {
739                 $poll_interval = TWITTER_DEFAULT_POLL_INTERVAL;
740         }
741
742         if ($last) {
743                 $next = $last + ($poll_interval * 60);
744                 if ($next > time()) {
745                         Logger::log('twitter: poll intervall not reached');
746                         return;
747                 }
748         }
749         Logger::log('twitter: cron_start');
750
751         $r = q("SELECT * FROM `pconfig` WHERE `cat` = 'twitter' AND `k` = 'mirror_posts' AND `v` = '1'");
752         if (DBA::isResult($r)) {
753                 foreach ($r as $rr) {
754                         Logger::log('twitter: fetching for user ' . $rr['uid']);
755                         Worker::add(['priority' => PRIORITY_MEDIUM, 'force_priority' => true], "addon/twitter/twitter_sync.php", 1, (int) $rr['uid']);
756                 }
757         }
758
759         $abandon_days = intval(Config::get('system', 'account_abandon_days'));
760         if ($abandon_days < 1) {
761                 $abandon_days = 0;
762         }
763
764         $abandon_limit = date(DateTimeFormat::MYSQL, time() - $abandon_days * 86400);
765
766         $r = q("SELECT * FROM `pconfig` WHERE `cat` = 'twitter' AND `k` = 'import' AND `v` = '1'");
767         if (DBA::isResult($r)) {
768                 foreach ($r as $rr) {
769                         if ($abandon_days != 0) {
770                                 $user = q("SELECT `login_date` FROM `user` WHERE uid=%d AND `login_date` >= '%s'", $rr['uid'], $abandon_limit);
771                                 if (!DBA::isResult($user)) {
772                                         Logger::log('abandoned account: timeline from user ' . $rr['uid'] . ' will not be imported');
773                                         continue;
774                                 }
775                         }
776
777                         Logger::log('twitter: importing timeline from user ' . $rr['uid']);
778                         Worker::add(['priority' => PRIORITY_MEDIUM, 'force_priority' => true], "addon/twitter/twitter_sync.php", 2, (int) $rr['uid']);
779                         /*
780                           // To-Do
781                           // check for new contacts once a day
782                           $last_contact_check = PConfig::get($rr['uid'],'pumpio','contact_check');
783                           if($last_contact_check)
784                           $next_contact_check = $last_contact_check + 86400;
785                           else
786                           $next_contact_check = 0;
787
788                           if($next_contact_check <= time()) {
789                           pumpio_getallusers($a, $rr["uid"]);
790                           PConfig::set($rr['uid'],'pumpio','contact_check',time());
791                           }
792                          */
793                 }
794         }
795
796         Logger::log('twitter: cron_end');
797
798         Config::set('twitter', 'last_poll', time());
799 }
800
801 function twitter_expire(App $a)
802 {
803         $days = Config::get('twitter', 'expire');
804
805         if ($days == 0) {
806                 return;
807         }
808
809         $r = Item::select(['id'], ['deleted' => true, 'network' => Protocol::TWITTER]);
810         while ($row = DBA::fetch($r)) {
811                 DBA::delete('item', ['id' => $row['id']]);
812         }
813         DBA::close($r);
814
815         Logger::log('twitter_expire: expire_start');
816
817         $r = q("SELECT * FROM `pconfig` WHERE `cat` = 'twitter' AND `k` = 'import' AND `v` = '1' ORDER BY RAND()");
818         if (DBA::isResult($r)) {
819                 foreach ($r as $rr) {
820                         Logger::log('twitter_expire: user ' . $rr['uid']);
821                         Item::expire($rr['uid'], $days, Protocol::TWITTER, true);
822                 }
823         }
824
825         Logger::log('twitter_expire: expire_end');
826 }
827
828 function twitter_prepare_body(App $a, array &$b)
829 {
830         if ($b["item"]["network"] != Protocol::TWITTER) {
831                 return;
832         }
833
834         if ($b["preview"]) {
835                 $max_char = 280;
836                 $item = $b["item"];
837                 $item["plink"] = $a->getBaseURL() . "/display/" . $item["guid"];
838
839                 $condition = ['uri' => $item["thr-parent"], 'uid' => local_user()];
840                 $orig_post = Item::selectFirst(['author-link'], $condition);
841                 if (DBA::isResult($orig_post)) {
842                         $nicknameplain = preg_replace("=https?://twitter.com/(.*)=ism", "$1", $orig_post["author-link"]);
843                         $nickname = "@[url=" . $orig_post["author-link"] . "]" . $nicknameplain . "[/url]";
844                         $nicknameplain = "@" . $nicknameplain;
845
846                         if ((strpos($item["body"], $nickname) === false) && (strpos($item["body"], $nicknameplain) === false)) {
847                                 $item["body"] = $nickname . " " . $item["body"];
848                         }
849                 }
850
851                 $msgarr = ItemContent::getPlaintextPost($item, $max_char, true, 8);
852                 $msg = $msgarr["text"];
853
854                 if (isset($msgarr["url"]) && ($msgarr["type"] != "photo")) {
855                         $msg .= " " . $msgarr["url"];
856                 }
857
858                 if (isset($msgarr["image"])) {
859                         $msg .= " " . $msgarr["image"];
860                 }
861
862                 $b['html'] = nl2br(htmlspecialchars($msg));
863         }
864 }
865
866 /**
867  * @brief Build the item array for the mirrored post
868  *
869  * @param App $a Application class
870  * @param integer $uid User id
871  * @param object $post Twitter object with the post
872  *
873  * @return array item data to be posted
874  */
875 function twitter_do_mirrorpost(App $a, $uid, $post)
876 {
877         $datarray['api_source'] = true;
878         $datarray['profile_uid'] = $uid;
879         $datarray['extid'] = Protocol::TWITTER;
880         $datarray['message_id'] = Item::newURI($uid, Protocol::TWITTER . ':' . $post->id);
881         $datarray['protocol'] = Conversation::PARCEL_TWITTER;
882         $datarray['source'] = json_encode($post);
883         $datarray['title'] = '';
884
885         if (!empty($post->retweeted_status)) {
886                 // We don't support nested shares, so we mustn't show quotes as shares on retweets
887                 $item = twitter_createpost($a, $uid, $post->retweeted_status, ['id' => 0], false, false, true);
888
889                 if (empty($item['body'])) {
890                         return [];
891                 }
892
893                 $datarray['body'] = "\n" . share_header(
894                         $item['author-name'],
895                         $item['author-link'],
896                         $item['author-avatar'],
897                         '',
898                         $item['created'],
899                         $item['plink']
900                 );
901
902                 $datarray['body'] .= $item['body'] . '[/share]';
903         } else {
904                 $item = twitter_createpost($a, $uid, $post, ['id' => 0], false, false, false);
905
906                 if (empty($item['body'])) {
907                         return [];
908                 }
909
910                 $datarray['body'] = $item['body'];
911         }
912
913         $datarray['source'] = $item['app'];
914         $datarray['verb'] = $item['verb'];
915
916         if (isset($item['location'])) {
917                 $datarray['location'] = $item['location'];
918         }
919
920         if (isset($item['coord'])) {
921                 $datarray['coord'] = $item['coord'];
922         }
923
924         return $datarray;
925 }
926
927 function twitter_fetchtimeline(App $a, $uid)
928 {
929         $ckey    = Config::get('twitter', 'consumerkey');
930         $csecret = Config::get('twitter', 'consumersecret');
931         $otoken  = PConfig::get($uid, 'twitter', 'oauthtoken');
932         $osecret = PConfig::get($uid, 'twitter', 'oauthsecret');
933         $lastid  = PConfig::get($uid, 'twitter', 'lastid');
934
935         $application_name = Config::get('twitter', 'application_name');
936
937         if ($application_name == "") {
938                 $application_name = $a->getHostName();
939         }
940
941         $has_picture = false;
942
943         require_once 'mod/item.php';
944         require_once 'mod/share.php';
945
946         $connection = new TwitterOAuth($ckey, $csecret, $otoken, $osecret);
947
948         $parameters = ["exclude_replies" => true, "trim_user" => false, "contributor_details" => true, "include_rts" => true, "tweet_mode" => "extended", "include_ext_alt_text" => true];
949
950         $first_time = ($lastid == "");
951
952         if ($lastid != "") {
953                 $parameters["since_id"] = $lastid;
954         }
955
956         try {
957                 $items = $connection->get('statuses/user_timeline', $parameters);
958         } catch (TwitterOAuthException $e) {
959                 Logger::log('Error fetching timeline for user ' . $uid . ': ' . $e->getMessage());
960                 return;
961         }
962
963         if (!is_array($items)) {
964                 Logger::log('No items for user ' . $uid, Logger::INFO);
965                 return;
966         }
967
968         $posts = array_reverse($items);
969
970         Logger::log('Starting from ID ' . $lastid . ' for user ' . $uid, Logger::DEBUG);
971
972         if (count($posts)) {
973                 foreach ($posts as $post) {
974                         if ($post->id_str > $lastid) {
975                                 $lastid = $post->id_str;
976                                 PConfig::set($uid, 'twitter', 'lastid', $lastid);
977                         }
978
979                         if ($first_time) {
980                                 continue;
981                         }
982
983                         if (!stristr($post->source, $application_name)) {
984                                 $_SESSION["authenticated"] = true;
985                                 $_SESSION["uid"] = $uid;
986
987                                 Logger::log('Preparing Twitter ID ' . $post->id_str . ' for user ' . $uid, Logger::DEBUG);
988
989                                 $_REQUEST = twitter_do_mirrorpost($a, $uid, $post);
990
991                                 if (empty($_REQUEST['body'])) {
992                                         continue;
993                                 }
994
995                                 Logger::log('Posting Twitter ID ' . $post->id_str . ' for user ' . $uid);
996
997                                 item_post($a);
998                         }
999                 }
1000         }
1001         PConfig::set($uid, 'twitter', 'lastid', $lastid);
1002         Logger::log('Last ID for user ' . $uid . ' is now ' . $lastid, Logger::DEBUG);
1003 }
1004
1005 function twitter_fix_avatar($avatar)
1006 {
1007         $new_avatar = str_replace("_normal.", ".", $avatar);
1008
1009         $info = Image::getInfoFromURL($new_avatar);
1010         if (!$info) {
1011                 $new_avatar = $avatar;
1012         }
1013
1014         return $new_avatar;
1015 }
1016
1017 function twitter_fetch_contact($uid, $data, $create_user)
1018 {
1019         if (empty($data->id_str)) {
1020                 return -1;
1021         }
1022
1023         $avatar = twitter_fix_avatar($data->profile_image_url_https);
1024         $url = "https://twitter.com/" . $data->screen_name;
1025         $addr = $data->screen_name . "@twitter.com";
1026
1027         $fields = ['url' => $url, 'network' => Protocol::TWITTER,
1028                 'name' => $data->name, 'nick' => $data->screen_name, 'addr' => $addr,
1029                 'location' => $data->location, 'about' => $data->description];
1030
1031         $cid = Contact::getIdForURL($url, 0, true, $fields);
1032         if (!empty($cid)) {
1033                 DBA::update('contact', $fields, ['id' => $cid]);
1034                 Contact::updateAvatar($avatar, 0, $cid);
1035         }
1036
1037         $contact = DBA::selectFirst('contact', [], ['uid' => $uid, 'alias' => "twitter::" . $data->id_str]);
1038         if (!DBA::isResult($contact) && !$create_user) {
1039                 return 0;
1040         }
1041
1042         if (!DBA::isResult($contact)) {
1043                 // create contact record
1044                 $fields['uid'] = $uid;
1045                 $fields['created'] = DateTimeFormat::utcNow();
1046                 $fields['nurl'] = Strings::normaliseLink($url);
1047                 $fields['alias'] = 'twitter::' . $data->id_str;
1048                 $fields['poll'] = 'twitter::' . $data->id_str;
1049                 $fields['rel'] = Contact::FRIEND;
1050                 $fields['priority'] = 1;
1051                 $fields['writable'] = true;
1052                 $fields['blocked'] = false;
1053                 $fields['readonly'] = false;
1054                 $fields['pending'] = false;
1055
1056                 if (!DBA::insert('contact', $fields)) {
1057                         return false;
1058                 }
1059
1060                 $contact_id = DBA::lastInsertId();
1061
1062                 Group::addMember(User::getDefaultGroup($uid), $contact_id);
1063
1064                 Contact::updateAvatar($avatar, $uid, $contact_id);
1065         } else {
1066                 if ($contact["readonly"] || $contact["blocked"]) {
1067                         Logger::log("twitter_fetch_contact: Contact '" . $contact["nick"] . "' is blocked or readonly.", Logger::DEBUG);
1068                         return -1;
1069                 }
1070
1071                 $contact_id = $contact['id'];
1072
1073                 // update profile photos once every twelve hours as we have no notification of when they change.
1074                 $update_photo = ($contact['avatar-date'] < DateTimeFormat::utc('now -12 hours'));
1075
1076                 // check that we have all the photos, this has been known to fail on occasion
1077                 if (empty($contact['photo']) || empty($contact['thumb']) || empty($contact['micro']) || $update_photo) {
1078                         Logger::log("twitter_fetch_contact: Updating contact " . $data->screen_name, Logger::DEBUG);
1079
1080                         Contact::updateAvatar($avatar, $uid, $contact['id']);
1081
1082                         $fields['name-date'] = DateTimeFormat::utcNow();
1083                         $fields['uri-date'] = DateTimeFormat::utcNow();
1084
1085                         DBA::update('contact', $fields, ['id' => $contact['id']]);
1086                 }
1087         }
1088
1089         return $contact_id;
1090 }
1091
1092 function twitter_fetchuser(App $a, $uid, $screen_name = "", $user_id = "")
1093 {
1094         $ckey = Config::get('twitter', 'consumerkey');
1095         $csecret = Config::get('twitter', 'consumersecret');
1096         $otoken = PConfig::get($uid, 'twitter', 'oauthtoken');
1097         $osecret = PConfig::get($uid, 'twitter', 'oauthsecret');
1098
1099         $r = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
1100                 intval($uid));
1101
1102         if (DBA::isResult($r)) {
1103                 $self = $r[0];
1104         } else {
1105                 return;
1106         }
1107
1108         $parameters = [];
1109
1110         if ($screen_name != "") {
1111                 $parameters["screen_name"] = $screen_name;
1112         }
1113
1114         if ($user_id != "") {
1115                 $parameters["user_id"] = $user_id;
1116         }
1117
1118         // Fetching user data
1119         $connection = new TwitterOAuth($ckey, $csecret, $otoken, $osecret);
1120         try {
1121                 $user = $connection->get('users/show', $parameters);
1122         } catch (TwitterOAuthException $e) {
1123                 Logger::log('twitter_fetchuser: Error fetching user ' . $uid . ': ' . $e->getMessage());
1124                 return;
1125         }
1126
1127         if (!is_object($user)) {
1128                 return;
1129         }
1130
1131         $contact_id = twitter_fetch_contact($uid, $user, true);
1132
1133         return $contact_id;
1134 }
1135
1136 function twitter_expand_entities(App $a, $body, $item, $picture)
1137 {
1138         $plain = $body;
1139
1140         $tags_arr = [];
1141
1142         foreach ($item->entities->hashtags AS $hashtag) {
1143                 $url = '#[url=' . $a->getBaseURL() . '/search?tag=' . $hashtag->text . ']' . $hashtag->text . '[/url]';
1144                 $tags_arr['#' . $hashtag->text] = $url;
1145                 $body = str_replace('#' . $hashtag->text, $url, $body);
1146         }
1147
1148         foreach ($item->entities->user_mentions AS $mention) {
1149                 $url = '@[url=https://twitter.com/' . rawurlencode($mention->screen_name) . ']' . $mention->screen_name . '[/url]';
1150                 $tags_arr['@' . $mention->screen_name] = $url;
1151                 $body = str_replace('@' . $mention->screen_name, $url, $body);
1152         }
1153
1154         if (isset($item->entities->urls)) {
1155                 $type = '';
1156                 $footerurl = '';
1157                 $footerlink = '';
1158                 $footer = '';
1159
1160                 foreach ($item->entities->urls as $url) {
1161                         $plain = str_replace($url->url, '', $plain);
1162
1163                         if ($url->url && $url->expanded_url && $url->display_url) {
1164                                 // Quote tweet, we just remove the quoted tweet URL from the body, the share block will be added later.
1165                                 if (isset($item->quoted_status_id_str)
1166                                         && substr($url->expanded_url, -strlen($item->quoted_status_id_str)) == $item->quoted_status_id_str ) {
1167                                         $body = str_replace($url->url, '', $body);
1168                                         continue;
1169                                 }
1170
1171                                 $expanded_url = $url->expanded_url;
1172
1173                                 $final_url = Network::finalUrl($url->expanded_url);
1174
1175                                 $oembed_data = OEmbed::fetchURL($final_url);
1176
1177                                 if (empty($oembed_data) || empty($oembed_data->type)) {
1178                                         continue;
1179                                 }
1180
1181                                 // Quickfix: Workaround for URL with '[' and ']' in it
1182                                 if (strpos($expanded_url, '[') || strpos($expanded_url, ']')) {
1183                                         $expanded_url = $url->url;
1184                                 }
1185
1186                                 if ($type == '') {
1187                                         $type = $oembed_data->type;
1188                                 }
1189
1190                                 if ($oembed_data->type == 'video') {
1191                                         $type = $oembed_data->type;
1192                                         $footerurl = $expanded_url;
1193                                         $footerlink = '[url=' . $expanded_url . ']' . $url->display_url . '[/url]';
1194
1195                                         $body = str_replace($url->url, $footerlink, $body);
1196                                 } elseif (($oembed_data->type == 'photo') && isset($oembed_data->url)) {
1197                                         $body = str_replace($url->url, '[url=' . $expanded_url . '][img]' . $oembed_data->url . '[/img][/url]', $body);
1198                                 } elseif ($oembed_data->type != 'link') {
1199                                         $body = str_replace($url->url, '[url=' . $expanded_url . ']' . $url->display_url . '[/url]', $body);
1200                                 } else {
1201                                         $img_str = Network::fetchUrl($final_url, true, 4);
1202
1203                                         $tempfile = tempnam(get_temppath(), 'cache');
1204                                         file_put_contents($tempfile, $img_str);
1205
1206                                         // See http://php.net/manual/en/function.exif-imagetype.php#79283
1207                                         if (filesize($tempfile) > 11) {
1208                                                 $mime = image_type_to_mime_type(exif_imagetype($tempfile));
1209                                         } else {
1210                                                 $mime = false;
1211                                         }
1212
1213                                         unlink($tempfile);
1214
1215                                         if (substr($mime, 0, 6) == 'image/') {
1216                                                 $type = 'photo';
1217                                                 $body = str_replace($url->url, '[img]' . $final_url . '[/img]', $body);
1218                                         } else {
1219                                                 $type = $oembed_data->type;
1220                                                 $footerurl = $expanded_url;
1221                                                 $footerlink = '[url=' . $expanded_url . ']' . $url->display_url . '[/url]';
1222
1223                                                 $body = str_replace($url->url, $footerlink, $body);
1224                                         }
1225                                 }
1226                         }
1227                 }
1228
1229                 // Footer will be taken care of with a share block in the case of a quote
1230                 if (empty($item->quoted_status)) {
1231                         if ($footerurl != '') {
1232                                 $footer = add_page_info($footerurl, false, $picture);
1233                         }
1234
1235                         if (($footerlink != '') && (trim($footer) != '')) {
1236                                 $removedlink = trim(str_replace($footerlink, '', $body));
1237
1238                                 if (($removedlink == '') || strstr($body, $removedlink)) {
1239                                         $body = $removedlink;
1240                                 }
1241
1242                                 $body .= $footer;
1243                         }
1244
1245                         if ($footer == '' && $picture != '') {
1246                                 $body .= "\n\n[img]" . $picture . "[/img]\n";
1247                         } elseif ($footer == '' && $picture == '') {
1248                                 $body = add_page_info_to_body($body);
1249                         }
1250                 }
1251         }
1252
1253         // it seems as if the entities aren't always covering all mentions. So the rest will be checked here
1254         $tags = BBCode::getTags($body);
1255
1256         if (count($tags)) {
1257                 foreach ($tags as $tag) {
1258                         if (strstr(trim($tag), ' ')) {
1259                                 continue;
1260                         }
1261
1262                         if (strpos($tag, '#') === 0) {
1263                                 if (strpos($tag, '[url=')) {
1264                                         continue;
1265                                 }
1266
1267                                 // don't link tags that are already embedded in links
1268                                 if (preg_match('/\[(.*?)' . preg_quote($tag, '/') . '(.*?)\]/', $body)) {
1269                                         continue;
1270                                 }
1271                                 if (preg_match('/\[(.*?)\]\((.*?)' . preg_quote($tag, '/') . '(.*?)\)/', $body)) {
1272                                         continue;
1273                                 }
1274
1275                                 $basetag = str_replace('_', ' ', substr($tag, 1));
1276                                 $url = '#[url=' . $a->getBaseURL() . '/search?tag=' . $basetag . ']' . $basetag . '[/url]';
1277                                 $body = str_replace($tag, $url, $body);
1278                                 $tags_arr['#' . $basetag] = $url;
1279                         } elseif (strpos($tag, '@') === 0) {
1280                                 if (strpos($tag, '[url=')) {
1281                                         continue;
1282                                 }
1283
1284                                 $basetag = substr($tag, 1);
1285                                 $url = '@[url=https://twitter.com/' . rawurlencode($basetag) . ']' . $basetag . '[/url]';
1286                                 $body = str_replace($tag, $url, $body);
1287                                 $tags_arr['@' . $basetag] = $url;
1288                         }
1289                 }
1290         }
1291
1292         $tags = implode($tags_arr, ',');
1293
1294         return ['body' => $body, 'tags' => $tags, 'plain' => $plain];
1295 }
1296
1297 /**
1298  * @brief Fetch media entities and add media links to the body
1299  *
1300  * @param object $post Twitter object with the post
1301  * @param array $postarray Array of the item that is about to be posted
1302  *
1303  * @return $picture string Image URL or empty string
1304  */
1305 function twitter_media_entities($post, array &$postarray)
1306 {
1307         // There are no media entities? So we quit.
1308         if (empty($post->extended_entities->media)) {
1309                 return '';
1310         }
1311
1312         // When the post links to an external page, we only take one picture.
1313         // We only do this when there is exactly one media.
1314         if ((count($post->entities->urls) > 0) && (count($post->extended_entities->media) == 1)) {
1315                 $medium = $post->extended_entities->media[0];
1316                 $picture = '';
1317                 foreach ($post->entities->urls as $link) {
1318                         // Let's make sure the external link url matches the media url
1319                         if ($medium->url == $link->url && isset($medium->media_url_https)) {
1320                                 $picture = $medium->media_url_https;
1321                                 $postarray['body'] = str_replace($medium->url, '', $postarray['body']);
1322                                 return $picture;
1323                         }
1324                 }
1325         }
1326
1327         // This is a pure media post, first search for all media urls
1328         $media = [];
1329         foreach ($post->extended_entities->media AS $medium) {
1330                 if (!isset($media[$medium->url])) {
1331                         $media[$medium->url] = '';
1332                 }
1333                 switch ($medium->type) {
1334                         case 'photo':
1335                                 if (!empty($medium->ext_alt_text)) {
1336                                         Logger::info('Got text description', ['alt_text' => $medium->ext_alt_text]);
1337                                         $media[$medium->url] .= "\n[img=" . $medium->media_url_https .']' . $medium->ext_alt_text . '[/img]';
1338                                 } else {
1339                                         $media[$medium->url] .= "\n[img]" . $medium->media_url_https . '[/img]';
1340                                 }
1341
1342                                 $postarray['object-type'] = ACTIVITY_OBJ_IMAGE;
1343                                 break;
1344                         case 'video':
1345                         case 'animated_gif':
1346                                 if (!empty($medium->ext_alt_text)) {
1347                                         Logger::info('Got text description', ['alt_text' => $medium->ext_alt_text]);
1348                                         $media[$medium->url] .= "\n[img=" . $medium->media_url_https .']' . $medium->ext_alt_text . '[/img]';
1349                                 } else {
1350                                         $media[$medium->url] .= "\n[img]" . $medium->media_url_https . '[/img]';
1351                                 }
1352
1353                                 $postarray['object-type'] = ACTIVITY_OBJ_VIDEO;
1354                                 if (is_array($medium->video_info->variants)) {
1355                                         $bitrate = 0;
1356                                         // We take the video with the highest bitrate
1357                                         foreach ($medium->video_info->variants AS $variant) {
1358                                                 if (($variant->content_type == 'video/mp4') && ($variant->bitrate >= $bitrate)) {
1359                                                         $media[$medium->url] = "\n[video]" . $variant->url . '[/video]';
1360                                                         $bitrate = $variant->bitrate;
1361                                                 }
1362                                         }
1363                                 }
1364                                 break;
1365                         // The following code will only be activated for test reasons
1366                         //default:
1367                         //      $postarray['body'] .= print_r($medium, true);
1368                 }
1369         }
1370
1371         // Now we replace the media urls.
1372         foreach ($media AS $key => $value) {
1373                 $postarray['body'] = str_replace($key, "\n" . $value . "\n", $postarray['body']);
1374         }
1375
1376         return '';
1377 }
1378
1379 function twitter_createpost(App $a, $uid, $post, array $self, $create_user, $only_existing_contact, $noquote)
1380 {
1381         $postarray = [];
1382         $postarray['network'] = Protocol::TWITTER;
1383         $postarray['uid'] = $uid;
1384         $postarray['wall'] = 0;
1385         $postarray['uri'] = "twitter::" . $post->id_str;
1386         $postarray['protocol'] = Conversation::PARCEL_TWITTER;
1387         $postarray['source'] = json_encode($post);
1388
1389         // Don't import our own comments
1390         if (Item::exists(['extid' => $postarray['uri'], 'uid' => $uid])) {
1391                 Logger::log("Item with extid " . $postarray['uri'] . " found.", Logger::DEBUG);
1392                 return [];
1393         }
1394
1395         $contactid = 0;
1396
1397         if ($post->in_reply_to_status_id_str != "") {
1398                 $parent = "twitter::" . $post->in_reply_to_status_id_str;
1399
1400                 $fields = ['uri', 'parent-uri', 'parent'];
1401                 $parent_item = Item::selectFirst($fields, ['uri' => $parent, 'uid' => $uid]);
1402                 if (!DBA::isResult($parent_item)) {
1403                         $parent_item = Item::selectFirst($fields, ['extid' => $parent, 'uid' => $uid]);
1404                 }
1405
1406                 if (DBA::isResult($parent_item)) {
1407                         $postarray['thr-parent'] = $parent_item['uri'];
1408                         $postarray['parent-uri'] = $parent_item['parent-uri'];
1409                         $postarray['parent'] = $parent_item['parent'];
1410                         $postarray['object-type'] = ACTIVITY_OBJ_COMMENT;
1411                 } else {
1412                         $postarray['thr-parent'] = $postarray['uri'];
1413                         $postarray['parent-uri'] = $postarray['uri'];
1414                         $postarray['object-type'] = ACTIVITY_OBJ_NOTE;
1415                 }
1416
1417                 // Is it me?
1418                 $own_id = PConfig::get($uid, 'twitter', 'own_id');
1419
1420                 if ($post->user->id_str == $own_id) {
1421                         $r = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
1422                                 intval($uid));
1423
1424                         if (DBA::isResult($r)) {
1425                                 $contactid = $r[0]["id"];
1426
1427                                 $postarray['owner-name']   = $r[0]["name"];
1428                                 $postarray['owner-link']   = $r[0]["url"];
1429                                 $postarray['owner-avatar'] = $r[0]["photo"];
1430                         } else {
1431                                 Logger::log("No self contact for user " . $uid, Logger::DEBUG);
1432                                 return [];
1433                         }
1434                 }
1435                 // Don't create accounts of people who just comment something
1436                 $create_user = false;
1437         } else {
1438                 $postarray['parent-uri'] = $postarray['uri'];
1439                 $postarray['object-type'] = ACTIVITY_OBJ_NOTE;
1440         }
1441
1442         if ($contactid == 0) {
1443                 $contactid = twitter_fetch_contact($uid, $post->user, $create_user);
1444
1445                 $postarray['owner-name'] = $post->user->name;
1446                 $postarray['owner-link'] = "https://twitter.com/" . $post->user->screen_name;
1447                 $postarray['owner-avatar'] = twitter_fix_avatar($post->user->profile_image_url_https);
1448         }
1449
1450         if (($contactid == 0) && !$only_existing_contact) {
1451                 $contactid = $self['id'];
1452         } elseif ($contactid <= 0) {
1453                 Logger::log("Contact ID is zero or less than zero.", Logger::DEBUG);
1454                 return [];
1455         }
1456
1457         $postarray['contact-id'] = $contactid;
1458
1459         $postarray['verb'] = ACTIVITY_POST;
1460         $postarray['author-name'] = $postarray['owner-name'];
1461         $postarray['author-link'] = $postarray['owner-link'];
1462         $postarray['author-avatar'] = $postarray['owner-avatar'];
1463         $postarray['plink'] = "https://twitter.com/" . $post->user->screen_name . "/status/" . $post->id_str;
1464         $postarray['app'] = strip_tags($post->source);
1465
1466         if ($post->user->protected) {
1467                 $postarray['private'] = 1;
1468                 $postarray['allow_cid'] = '<' . $self['id'] . '>';
1469         } else {
1470                 $postarray['private'] = 0;
1471                 $postarray['allow_cid'] = '';
1472         }
1473
1474         if (!empty($post->full_text)) {
1475                 $postarray['body'] = $post->full_text;
1476         } else {
1477                 $postarray['body'] = $post->text;
1478         }
1479
1480         // When the post contains links then use the correct object type
1481         if (count($post->entities->urls) > 0) {
1482                 $postarray['object-type'] = ACTIVITY_OBJ_BOOKMARK;
1483         }
1484
1485         // Search for media links
1486         $picture = twitter_media_entities($post, $postarray);
1487
1488         $converted = twitter_expand_entities($a, $postarray['body'], $post, $picture);
1489         $postarray['body'] = $converted["body"];
1490         $postarray['tag'] = $converted["tags"];
1491         $postarray['created'] = DateTimeFormat::utc($post->created_at);
1492         $postarray['edited'] = DateTimeFormat::utc($post->created_at);
1493
1494         $statustext = $converted["plain"];
1495
1496         if (!empty($post->place->name)) {
1497                 $postarray["location"] = $post->place->name;
1498         }
1499         if (!empty($post->place->full_name)) {
1500                 $postarray["location"] = $post->place->full_name;
1501         }
1502         if (!empty($post->geo->coordinates)) {
1503                 $postarray["coord"] = $post->geo->coordinates[0] . " " . $post->geo->coordinates[1];
1504         }
1505         if (!empty($post->coordinates->coordinates)) {
1506                 $postarray["coord"] = $post->coordinates->coordinates[1] . " " . $post->coordinates->coordinates[0];
1507         }
1508         if (!empty($post->retweeted_status)) {
1509                 $retweet = twitter_createpost($a, $uid, $post->retweeted_status, $self, false, false, $noquote);
1510
1511                 if (empty($retweet['body'])) {
1512                         return [];
1513                 }
1514
1515                 if (!$noquote) {
1516                         // Store the original tweet
1517                         Item::insert($retweet);
1518
1519                         // CHange the other post into a reshare activity
1520                         $postarray['verb'] = ACTIVITY2_ANNOUNCE;
1521                         $postarray['gravity'] = GRAVITY_ACTIVITY;
1522                         $postarray['object-type'] = ACTIVITY_OBJ_NOTE;
1523
1524                         $postarray['thr-parent'] = $retweet['uri'];
1525                         $postarray['parent-uri'] = $retweet['uri'];
1526                 } else {
1527                         $retweet['source'] = $postarray['source'];
1528                         $retweet['private'] = $postarray['private'];
1529                         $retweet['allow_cid'] = $postarray['allow_cid'];
1530                         $retweet['contact-id'] = $postarray['contact-id'];
1531                         $retweet['owner-name'] = $postarray['owner-name'];
1532                         $retweet['owner-link'] = $postarray['owner-link'];
1533                         $retweet['owner-avatar'] = $postarray['owner-avatar'];
1534
1535                         $postarray = $retweet;
1536                 }
1537         }
1538
1539         if (!empty($post->quoted_status) && !$noquote) {
1540                 $quoted = twitter_createpost($a, $uid, $post->quoted_status, $self, false, false, true);
1541
1542                 if (empty($quoted['body'])) {
1543                         return [];
1544                 }
1545
1546                 $postarray['body'] .= "\n" . share_header(
1547                         $quoted['author-name'],
1548                         $quoted['author-link'],
1549                         $quoted['author-avatar'],
1550                         "",
1551                         $quoted['created'],
1552                         $quoted['plink']
1553                 );
1554
1555                 $postarray['body'] .= $quoted['body'] . '[/share]';
1556         }
1557
1558         return $postarray;
1559 }
1560
1561 function twitter_fetchparentposts(App $a, $uid, $post, TwitterOAuth $connection, array $self)
1562 {
1563         Logger::log("twitter_fetchparentposts: Fetching for user " . $uid . " and post " . $post->id_str, Logger::DEBUG);
1564
1565         $posts = [];
1566
1567         while (!empty($post->in_reply_to_status_id_str)) {
1568                 $parameters = ["trim_user" => false, "tweet_mode" => "extended", "id" => $post->in_reply_to_status_id_str, "include_ext_alt_text" => true];
1569
1570                 try {
1571                         $post = $connection->get('statuses/show', $parameters);
1572                 } catch (TwitterOAuthException $e) {
1573                         Logger::log('twitter_fetchparentposts: Error fetching for user ' . $uid . ' and post ' . $post->id_str . ': ' . $e->getMessage());
1574                         break;
1575                 }
1576
1577                 if (empty($post)) {
1578                         Logger::log("twitter_fetchparentposts: Can't fetch post " . $parameters['id'], Logger::DEBUG);
1579                         break;
1580                 }
1581
1582                 if (empty($post->id_str)) {
1583                         Logger::log("twitter_fetchparentposts: This is not a post " . json_encode($post), Logger::DEBUG);
1584                         break;
1585                 }
1586
1587                 if (Item::exists(['uri' => 'twitter::' . $post->id_str, 'uid' => $uid])) {
1588                         break;
1589                 }
1590
1591                 $posts[] = $post;
1592         }
1593
1594         Logger::log("twitter_fetchparentposts: Fetching " . count($posts) . " parents", Logger::DEBUG);
1595
1596         $posts = array_reverse($posts);
1597
1598         if (!empty($posts)) {
1599                 foreach ($posts as $post) {
1600                         $postarray = twitter_createpost($a, $uid, $post, $self, false, false, false);
1601
1602                         if (empty($postarray['body'])) {
1603                                 continue;
1604                         }
1605
1606                         $item = Item::insert($postarray);
1607
1608                         $postarray["id"] = $item;
1609
1610                         Logger::log('twitter_fetchparentpost: User ' . $self["nick"] . ' posted parent timeline item ' . $item);
1611                 }
1612         }
1613 }
1614
1615 function twitter_fetchhometimeline(App $a, $uid)
1616 {
1617         $ckey    = Config::get('twitter', 'consumerkey');
1618         $csecret = Config::get('twitter', 'consumersecret');
1619         $otoken  = PConfig::get($uid, 'twitter', 'oauthtoken');
1620         $osecret = PConfig::get($uid, 'twitter', 'oauthsecret');
1621         $create_user = PConfig::get($uid, 'twitter', 'create_user');
1622         $mirror_posts = PConfig::get($uid, 'twitter', 'mirror_posts');
1623
1624         Logger::log("Fetching timeline for user " . $uid, Logger::DEBUG);
1625
1626         $application_name = Config::get('twitter', 'application_name');
1627
1628         if ($application_name == "") {
1629                 $application_name = $a->getHostName();
1630         }
1631
1632         $connection = new TwitterOAuth($ckey, $csecret, $otoken, $osecret);
1633
1634         try {
1635                 $own_contact = twitter_fetch_own_contact($a, $uid);
1636         } catch (TwitterOAuthException $e) {
1637                 Logger::log('Error fetching own contact for user ' . $uid . ': ' . $e->getMessage());
1638                 return;
1639         }
1640
1641         $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
1642                 intval($own_contact),
1643                 intval($uid));
1644
1645         if (DBA::isResult($r)) {
1646                 $own_id = $r[0]["nick"];
1647         } else {
1648                 Logger::log("Own twitter contact not found for user " . $uid);
1649                 return;
1650         }
1651
1652         $self = User::getOwnerDataById($uid);
1653         if ($self === false) {
1654                 Logger::log("Own contact not found for user " . $uid);
1655                 return;
1656         }
1657
1658         $parameters = ["exclude_replies" => false, "trim_user" => false, "contributor_details" => true, "include_rts" => true, "tweet_mode" => "extended", "include_ext_alt_text" => true];
1659         //$parameters["count"] = 200;
1660         // Fetching timeline
1661         $lastid = PConfig::get($uid, 'twitter', 'lasthometimelineid');
1662
1663         $first_time = ($lastid == "");
1664
1665         if ($lastid != "") {
1666                 $parameters["since_id"] = $lastid;
1667         }
1668
1669         try {
1670                 $items = $connection->get('statuses/home_timeline', $parameters);
1671         } catch (TwitterOAuthException $e) {
1672                 Logger::log('Error fetching home timeline for user ' . $uid . ': ' . $e->getMessage());
1673                 return;
1674         }
1675
1676         if (!is_array($items)) {
1677                 Logger::log('No array while fetching home timeline for user ' . $uid . ': ' . print_r($items, true));
1678                 return;
1679         }
1680
1681         if (empty($items)) {
1682                 Logger::log('No new timeline content for user ' . $uid, Logger::INFO);
1683                 return;
1684         }
1685
1686         $posts = array_reverse($items);
1687
1688         Logger::log('Fetching timeline from ID ' . $lastid . ' for user ' . $uid . ' ' . sizeof($posts) . ' items', Logger::DEBUG);
1689
1690         if (count($posts)) {
1691                 foreach ($posts as $post) {
1692                         if ($post->id_str > $lastid) {
1693                                 $lastid = $post->id_str;
1694                                 PConfig::set($uid, 'twitter', 'lasthometimelineid', $lastid);
1695                         }
1696
1697                         if ($first_time) {
1698                                 continue;
1699                         }
1700
1701                         if (stristr($post->source, $application_name) && $post->user->screen_name == $own_id) {
1702                                 Logger::log("Skip previously sent post", Logger::DEBUG);
1703                                 continue;
1704                         }
1705
1706                         if ($mirror_posts && $post->user->screen_name == $own_id && $post->in_reply_to_status_id_str == "") {
1707                                 Logger::log("Skip post that will be mirrored", Logger::DEBUG);
1708                                 continue;
1709                         }
1710
1711                         if ($post->in_reply_to_status_id_str != "") {
1712                                 twitter_fetchparentposts($a, $uid, $post, $connection, $self);
1713                         }
1714
1715                         Logger::log('Preparing post ' . $post->id_str . ' for user ' . $uid, Logger::DEBUG);
1716
1717                         $postarray = twitter_createpost($a, $uid, $post, $self, $create_user, true, false);
1718
1719                         if (empty($postarray['body']) || trim($postarray['body']) == "") {
1720                                 Logger::log('Empty body for post ' . $post->id_str . ' and user ' . $uid, Logger::DEBUG);
1721                                 continue;
1722                         }
1723
1724                         $notify = false;
1725
1726                         if (($postarray['uri'] == $postarray['parent-uri']) && ($postarray['author-link'] == $postarray['owner-link'])) {
1727                                 $contact = DBA::selectFirst('contact', [], ['id' => $postarray['contact-id'], 'self' => false]);
1728                                 if (DBA::isResult($contact)) {
1729                                         $notify = Item::isRemoteSelf($contact, $postarray);
1730                                 }
1731                         }
1732
1733                         $item = Item::insert($postarray, false, $notify);
1734                         $postarray["id"] = $item;
1735
1736                         Logger::log('User ' . $uid . ' posted home timeline item ' . $item);
1737                 }
1738         }
1739         PConfig::set($uid, 'twitter', 'lasthometimelineid', $lastid);
1740
1741         Logger::log('Last timeline ID for user ' . $uid . ' is now ' . $lastid, Logger::DEBUG);
1742
1743         // Fetching mentions
1744         $lastid = PConfig::get($uid, 'twitter', 'lastmentionid');
1745
1746         $first_time = ($lastid == "");
1747
1748         if ($lastid != "") {
1749                 $parameters["since_id"] = $lastid;
1750         }
1751
1752         try {
1753                 $items = $connection->get('statuses/mentions_timeline', $parameters);
1754         } catch (TwitterOAuthException $e) {
1755                 Logger::log('Error fetching mentions: ' . $e->getMessage());
1756                 return;
1757         }
1758
1759         if (!is_array($items)) {
1760                 Logger::log("Error fetching mentions: " . print_r($items, true), Logger::DEBUG);
1761                 return;
1762         }
1763
1764         $posts = array_reverse($items);
1765
1766         Logger::log("Fetching mentions for user " . $uid . " " . sizeof($posts) . " items", Logger::DEBUG);
1767
1768         if (count($posts)) {
1769                 foreach ($posts as $post) {
1770                         if ($post->id_str > $lastid) {
1771                                 $lastid = $post->id_str;
1772                         }
1773
1774                         if ($first_time) {
1775                                 continue;
1776                         }
1777
1778                         if ($post->in_reply_to_status_id_str != "") {
1779                                 twitter_fetchparentposts($a, $uid, $post, $connection, $self);
1780                         }
1781
1782                         $postarray = twitter_createpost($a, $uid, $post, $self, false, false, false);
1783
1784                         if (empty($postarray['body'])) {
1785                                 continue;
1786                         }
1787
1788                         $item = Item::insert($postarray);
1789
1790                         Logger::log('User ' . $uid . ' posted mention timeline item ' . $item);
1791                 }
1792         }
1793
1794         PConfig::set($uid, 'twitter', 'lastmentionid', $lastid);
1795
1796         Logger::log('Last mentions ID for user ' . $uid . ' is now ' . $lastid, Logger::DEBUG);
1797 }
1798
1799 function twitter_fetch_own_contact(App $a, $uid)
1800 {
1801         $ckey    = Config::get('twitter', 'consumerkey');
1802         $csecret = Config::get('twitter', 'consumersecret');
1803         $otoken  = PConfig::get($uid, 'twitter', 'oauthtoken');
1804         $osecret = PConfig::get($uid, 'twitter', 'oauthsecret');
1805
1806         $own_id = PConfig::get($uid, 'twitter', 'own_id');
1807
1808         $contact_id = 0;
1809
1810         if ($own_id == "") {
1811                 $connection = new TwitterOAuth($ckey, $csecret, $otoken, $osecret);
1812
1813                 // Fetching user data
1814                 // get() may throw TwitterOAuthException, but we will catch it later
1815                 $user = $connection->get('account/verify_credentials');
1816                 if (empty($user) || empty($user->id_str)) {
1817                         return false;
1818                 }
1819
1820                 PConfig::set($uid, 'twitter', 'own_id', $user->id_str);
1821
1822                 $contact_id = twitter_fetch_contact($uid, $user, true);
1823         } else {
1824                 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `alias` = '%s' LIMIT 1",
1825                         intval($uid),
1826                         DBA::escape("twitter::" . $own_id));
1827                 if (DBA::isResult($r)) {
1828                         $contact_id = $r[0]["id"];
1829                 } else {
1830                         PConfig::delete($uid, 'twitter', 'own_id');
1831                 }
1832         }
1833
1834         return $contact_id;
1835 }
1836
1837 function twitter_is_retweet(App $a, $uid, $body)
1838 {
1839         $body = trim($body);
1840
1841         // Skip if it isn't a pure repeated messages
1842         // Does it start with a share?
1843         if (strpos($body, "[share") > 0) {
1844                 return false;
1845         }
1846
1847         // Does it end with a share?
1848         if (strlen($body) > (strrpos($body, "[/share]") + 8)) {
1849                 return false;
1850         }
1851
1852         $attributes = preg_replace("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism", "$1", $body);
1853         // Skip if there is no shared message in there
1854         if ($body == $attributes) {
1855                 return false;
1856         }
1857
1858         $link = "";
1859         preg_match("/link='(.*?)'/ism", $attributes, $matches);
1860         if (!empty($matches[1])) {
1861                 $link = $matches[1];
1862         }
1863
1864         preg_match('/link="(.*?)"/ism', $attributes, $matches);
1865         if (!empty($matches[1])) {
1866                 $link = $matches[1];
1867         }
1868
1869         $id = preg_replace("=https?://twitter.com/(.*)/status/(.*)=ism", "$2", $link);
1870         if ($id == $link) {
1871                 return false;
1872         }
1873
1874         Logger::log('twitter_is_retweet: Retweeting id ' . $id . ' for user ' . $uid, Logger::DEBUG);
1875
1876         $ckey    = Config::get('twitter', 'consumerkey');
1877         $csecret = Config::get('twitter', 'consumersecret');
1878         $otoken  = PConfig::get($uid, 'twitter', 'oauthtoken');
1879         $osecret = PConfig::get($uid, 'twitter', 'oauthsecret');
1880
1881         $connection = new TwitterOAuth($ckey, $csecret, $otoken, $osecret);
1882         $result = $connection->post('statuses/retweet/' . $id);
1883
1884         Logger::log('twitter_is_retweet: result ' . print_r($result, true), Logger::DEBUG);
1885
1886         return !isset($result->errors);
1887 }
1888
1889 function twitter_update_mentions($body)
1890 {
1891         $URLSearchString = "^\[\]";
1892         $return = preg_replace_callback(
1893                 "/@\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
1894                 function ($matches) {
1895                         if (strpos($matches[1], 'twitter.com')) {
1896                                 $return = '@' . substr($matches[1], strrpos($matches[1], '/') + 1);
1897                         } else {
1898                                 $return = $matches[2] . ' (' . $matches[1] . ')';
1899                         }
1900
1901                         return $return;
1902                 },
1903                 $body
1904         );
1905
1906         return $return;
1907 }
1908
1909 function twitter_convert_share(array $attributes, array $author_contact, $content, $is_quote_share)
1910 {
1911         if ($author_contact['network'] == Protocol::TWITTER) {
1912                 $mention = '@' . $author_contact['nick'];
1913         } else {
1914                 $mention = $author_contact['addr'];
1915         }
1916
1917         return ($is_quote_share ? "\n\n" : '' ) . 'RT ' . $mention . ': ' . $content . "\n\n" . $attributes['link'];
1918 }