Addon class
[friendica-addons.git] / statusnet / statusnet.php
1 <?php
2
3 /**
4  * Name: GNU Social Connector
5  * Description: Bidirectional (posting, relaying and reading) connector for GNU Social.
6  * Version: 1.0.5
7  * Author: Tobias Diekershoff <https://f.diekershoff.de/profile/tobias>
8  * Author: Michael Vogel <https://pirati.ca/profile/heluecht>
9  *
10  * Copyright (c) 2011-2013 Tobias Diekershoff, Michael Vogel
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 /*
37  * We have to alter the TwitterOAuth class a little bit to work with any GNU Social
38  * installation abroad. Basically it's only make the API path variable and be happy.
39  *
40  * Thank you guys for the Twitter compatible API!
41  */
42
43 define('STATUSNET_DEFAULT_POLL_INTERVAL', 5); // given in minutes
44
45 require_once 'library/twitteroauth.php';
46 require_once 'include/enotify.php';
47
48 use Friendica\App;
49 use Friendica\Content\OEmbed;
50 use Friendica\Core\Addon;
51 use Friendica\Core\Config;
52 use Friendica\Core\PConfig;
53 use Friendica\Model\GContact;
54 use Friendica\Model\Group;
55 use Friendica\Model\Photo;
56 use Friendica\Model\User;
57
58 class StatusNetOAuth extends TwitterOAuth
59 {
60         function get_maxlength()
61         {
62                 $config = $this->get($this->host . 'statusnet/config.json');
63                 return $config->site->textlimit;
64         }
65
66         function accessTokenURL()
67         {
68                 return $this->host . 'oauth/access_token';
69         }
70
71         function authenticateURL()
72         {
73                 return $this->host . 'oauth/authenticate';
74         }
75
76         function authorizeURL()
77         {
78                 return $this->host . 'oauth/authorize';
79         }
80
81         function requestTokenURL()
82         {
83                 return $this->host . 'oauth/request_token';
84         }
85
86         function __construct($apipath, $consumer_key, $consumer_secret, $oauth_token = NULL, $oauth_token_secret = NULL)
87         {
88                 parent::__construct($consumer_key, $consumer_secret, $oauth_token, $oauth_token_secret);
89                 $this->host = $apipath;
90         }
91
92         /**
93          * Make an HTTP request
94          *
95          * @return API results
96          *
97          * Copied here from the twitteroauth library and complemented by applying the proxy settings of friendica
98          */
99         function http($url, $method, $postfields = NULL)
100         {
101                 $this->http_info = [];
102                 $ci = curl_init();
103                 /* Curl settings */
104                 $prx = Config::get('system', 'proxy');
105                 if (strlen($prx)) {
106                         curl_setopt($ci, CURLOPT_HTTPPROXYTUNNEL, 1);
107                         curl_setopt($ci, CURLOPT_PROXY, $prx);
108                         $prxusr = Config::get('system', 'proxyuser');
109                         if (strlen($prxusr)) {
110                                 curl_setopt($ci, CURLOPT_PROXYUSERPWD, $prxusr);
111                         }
112                 }
113                 curl_setopt($ci, CURLOPT_USERAGENT, $this->useragent);
114                 curl_setopt($ci, CURLOPT_CONNECTTIMEOUT, $this->connecttimeout);
115                 curl_setopt($ci, CURLOPT_TIMEOUT, $this->timeout);
116                 curl_setopt($ci, CURLOPT_RETURNTRANSFER, TRUE);
117                 curl_setopt($ci, CURLOPT_HTTPHEADER, ['Expect:']);
118                 curl_setopt($ci, CURLOPT_SSL_VERIFYPEER, $this->ssl_verifypeer);
119                 curl_setopt($ci, CURLOPT_HEADERFUNCTION, [$this, 'getHeader']);
120                 curl_setopt($ci, CURLOPT_HEADER, FALSE);
121
122                 switch ($method) {
123                         case 'POST':
124                                 curl_setopt($ci, CURLOPT_POST, TRUE);
125                                 if (!empty($postfields)) {
126                                         curl_setopt($ci, CURLOPT_POSTFIELDS, $postfields);
127                                 }
128                                 break;
129                         case 'DELETE':
130                                 curl_setopt($ci, CURLOPT_CUSTOMREQUEST, 'DELETE');
131                                 if (!empty($postfields)) {
132                                         $url = "{$url}?{$postfields}";
133                                 }
134                 }
135
136                 curl_setopt($ci, CURLOPT_URL, $url);
137                 $response = curl_exec($ci);
138                 $this->http_code = curl_getinfo($ci, CURLINFO_HTTP_CODE);
139                 $this->http_info = array_merge($this->http_info, curl_getinfo($ci));
140                 $this->url = $url;
141                 curl_close($ci);
142                 return $response;
143         }
144 }
145
146 function statusnet_install()
147 {
148         //  we need some hooks, for the configuration and for sending tweets
149         Addon::registerHook('connector_settings', 'addon/statusnet/statusnet.php', 'statusnet_settings');
150         Addon::registerHook('connector_settings_post', 'addon/statusnet/statusnet.php', 'statusnet_settings_post');
151         Addon::registerHook('notifier_normal', 'addon/statusnet/statusnet.php', 'statusnet_post_hook');
152         Addon::registerHook('post_local', 'addon/statusnet/statusnet.php', 'statusnet_post_local');
153         Addon::registerHook('jot_networks', 'addon/statusnet/statusnet.php', 'statusnet_jot_nets');
154         Addon::registerHook('cron', 'addon/statusnet/statusnet.php', 'statusnet_cron');
155         Addon::registerHook('prepare_body', 'addon/statusnet/statusnet.php', 'statusnet_prepare_body');
156         Addon::registerHook('check_item_notification', 'addon/statusnet/statusnet.php', 'statusnet_check_item_notification');
157         logger("installed GNU Social");
158 }
159
160 function statusnet_uninstall()
161 {
162         Addon::unregisterHook('connector_settings', 'addon/statusnet/statusnet.php', 'statusnet_settings');
163         Addon::unregisterHook('connector_settings_post', 'addon/statusnet/statusnet.php', 'statusnet_settings_post');
164         Addon::unregisterHook('notifier_normal', 'addon/statusnet/statusnet.php', 'statusnet_post_hook');
165         Addon::unregisterHook('post_local', 'addon/statusnet/statusnet.php', 'statusnet_post_local');
166         Addon::unregisterHook('jot_networks', 'addon/statusnet/statusnet.php', 'statusnet_jot_nets');
167         Addon::unregisterHook('cron', 'addon/statusnet/statusnet.php', 'statusnet_cron');
168         Addon::unregisterHook('prepare_body', 'addon/statusnet/statusnet.php', 'statusnet_prepare_body');
169         Addon::unregisterHook('check_item_notification', 'addon/statusnet/statusnet.php', 'statusnet_check_item_notification');
170
171         // old setting - remove only
172         Addon::unregisterHook('post_local_end', 'addon/statusnet/statusnet.php', 'statusnet_post_hook');
173         Addon::unregisterHook('plugin_settings', 'addon/statusnet/statusnet.php', 'statusnet_settings');
174         Addon::unregisterHook('plugin_settings_post', 'addon/statusnet/statusnet.php', 'statusnet_settings_post');
175 }
176
177 function statusnet_check_item_notification(App $a, &$notification_data)
178 {
179         $notification_data["profiles"][] = PConfig::get($notification_data["uid"], 'statusnet', 'own_url');
180 }
181
182 function statusnet_jot_nets(App $a, &$b)
183 {
184         if (!local_user()) {
185                 return;
186         }
187
188         $statusnet_post = PConfig::get(local_user(), 'statusnet', 'post');
189         if (intval($statusnet_post) == 1) {
190                 $statusnet_defpost = PConfig::get(local_user(), 'statusnet', 'post_by_default');
191                 $selected = ((intval($statusnet_defpost) == 1) ? ' checked="checked" ' : '');
192                 $b .= '<div class="profile-jot-net"><input type="checkbox" name="statusnet_enable"' . $selected . ' value="1" /> '
193                         . t('Post to GNU Social') . '</div>';
194         }
195 }
196
197 function statusnet_settings_post(App $a, $post)
198 {
199         if (!local_user()) {
200                 return;
201         }
202         // don't check GNU Social settings if GNU Social submit button is not clicked
203         if (!x($_POST, 'statusnet-submit')) {
204                 return;
205         }
206
207         if (isset($_POST['statusnet-disconnect'])) {
208                 /*               * *
209                  * if the GNU Social-disconnect checkbox is set, clear the GNU Social configuration
210                  */
211                 PConfig::delete(local_user(), 'statusnet', 'consumerkey');
212                 PConfig::delete(local_user(), 'statusnet', 'consumersecret');
213                 PConfig::delete(local_user(), 'statusnet', 'post');
214                 PConfig::delete(local_user(), 'statusnet', 'post_by_default');
215                 PConfig::delete(local_user(), 'statusnet', 'oauthtoken');
216                 PConfig::delete(local_user(), 'statusnet', 'oauthsecret');
217                 PConfig::delete(local_user(), 'statusnet', 'baseapi');
218                 PConfig::delete(local_user(), 'statusnet', 'lastid');
219                 PConfig::delete(local_user(), 'statusnet', 'mirror_posts');
220                 PConfig::delete(local_user(), 'statusnet', 'import');
221                 PConfig::delete(local_user(), 'statusnet', 'create_user');
222                 PConfig::delete(local_user(), 'statusnet', 'own_id');
223         } else {
224                 if (isset($_POST['statusnet-preconf-apiurl'])) {
225                         /*                       * *
226                          * If the user used one of the preconfigured GNU Social server credentials
227                          * use them. All the data are available in the global config.
228                          * Check the API Url never the less and blame the admin if it's not working ^^
229                          */
230                         $globalsn = Config::get('statusnet', 'sites');
231                         foreach ($globalsn as $asn) {
232                                 if ($asn['apiurl'] == $_POST['statusnet-preconf-apiurl']) {
233                                         $apibase = $asn['apiurl'];
234                                         $c = fetch_url($apibase . 'statusnet/version.xml');
235                                         if (strlen($c) > 0) {
236                                                 PConfig::set(local_user(), 'statusnet', 'consumerkey', $asn['consumerkey']);
237                                                 PConfig::set(local_user(), 'statusnet', 'consumersecret', $asn['consumersecret']);
238                                                 PConfig::set(local_user(), 'statusnet', 'baseapi', $asn['apiurl']);
239                                                 //PConfig::set(local_user(), 'statusnet', 'application_name', $asn['applicationname'] );
240                                         } else {
241                                                 notice(t('Please contact your site administrator.<br />The provided API URL is not valid.') . EOL . $asn['apiurl'] . EOL);
242                                         }
243                                 }
244                         }
245                         goaway('settings/connectors');
246                 } else {
247                         if (isset($_POST['statusnet-consumersecret'])) {
248                                 //  check if we can reach the API of the GNU Social server
249                                 //  we'll check the API Version for that, if we don't get one we'll try to fix the path but will
250                                 //  resign quickly after this one try to fix the path ;-)
251                                 $apibase = $_POST['statusnet-baseapi'];
252                                 $c = fetch_url($apibase . 'statusnet/version.xml');
253                                 if (strlen($c) > 0) {
254                                         //  ok the API path is correct, let's save the settings
255                                         PConfig::set(local_user(), 'statusnet', 'consumerkey', $_POST['statusnet-consumerkey']);
256                                         PConfig::set(local_user(), 'statusnet', 'consumersecret', $_POST['statusnet-consumersecret']);
257                                         PConfig::set(local_user(), 'statusnet', 'baseapi', $apibase);
258                                         //PConfig::set(local_user(), 'statusnet', 'application_name', $_POST['statusnet-applicationname'] );
259                                 } else {
260                                         //  the API path is not correct, maybe missing trailing / ?
261                                         $apibase = $apibase . '/';
262                                         $c = fetch_url($apibase . 'statusnet/version.xml');
263                                         if (strlen($c) > 0) {
264                                                 //  ok the API path is now correct, let's save the settings
265                                                 PConfig::set(local_user(), 'statusnet', 'consumerkey', $_POST['statusnet-consumerkey']);
266                                                 PConfig::set(local_user(), 'statusnet', 'consumersecret', $_POST['statusnet-consumersecret']);
267                                                 PConfig::set(local_user(), 'statusnet', 'baseapi', $apibase);
268                                         } else {
269                                                 //  still not the correct API base, let's do noting
270                                                 notice(t('We could not contact the GNU Social API with the Path you entered.') . EOL);
271                                         }
272                                 }
273                                 goaway('settings/connectors');
274                         } else {
275                                 if (isset($_POST['statusnet-pin'])) {
276                                         //  if the user supplied us with a PIN from GNU Social, let the magic of OAuth happen
277                                         $api = PConfig::get(local_user(), 'statusnet', 'baseapi');
278                                         $ckey = PConfig::get(local_user(), 'statusnet', 'consumerkey');
279                                         $csecret = PConfig::get(local_user(), 'statusnet', 'consumersecret');
280                                         //  the token and secret for which the PIN was generated were hidden in the settings
281                                         //  form as token and token2, we need a new connection to GNU Social using these token
282                                         //  and secret to request a Access Token with the PIN
283                                         $connection = new StatusNetOAuth($api, $ckey, $csecret, $_POST['statusnet-token'], $_POST['statusnet-token2']);
284                                         $token = $connection->getAccessToken($_POST['statusnet-pin']);
285                                         //  ok, now that we have the Access Token, save them in the user config
286                                         PConfig::set(local_user(), 'statusnet', 'oauthtoken', $token['oauth_token']);
287                                         PConfig::set(local_user(), 'statusnet', 'oauthsecret', $token['oauth_token_secret']);
288                                         PConfig::set(local_user(), 'statusnet', 'post', 1);
289                                         PConfig::set(local_user(), 'statusnet', 'post_taglinks', 1);
290                                         //  reload the Addon Settings page, if we don't do it see Bug #42
291                                         goaway('settings/connectors');
292                                 } else {
293                                         //  if no PIN is supplied in the POST variables, the user has changed the setting
294                                         //  to post a dent for every new __public__ posting to the wall
295                                         PConfig::set(local_user(), 'statusnet', 'post', intval($_POST['statusnet-enable']));
296                                         PConfig::set(local_user(), 'statusnet', 'post_by_default', intval($_POST['statusnet-default']));
297                                         PConfig::set(local_user(), 'statusnet', 'mirror_posts', intval($_POST['statusnet-mirror']));
298                                         PConfig::set(local_user(), 'statusnet', 'import', intval($_POST['statusnet-import']));
299                                         PConfig::set(local_user(), 'statusnet', 'create_user', intval($_POST['statusnet-create_user']));
300
301                                         if (!intval($_POST['statusnet-mirror']))
302                                                 PConfig::delete(local_user(), 'statusnet', 'lastid');
303
304                                         info(t('GNU Social settings updated.') . EOL);
305                                 }
306                         }
307                 }
308         }
309 }
310
311 function statusnet_settings(App $a, &$s)
312 {
313         if (!local_user()) {
314                 return;
315         }
316         $a->page['htmlhead'] .= '<link rel="stylesheet"  type="text/css" href="' . $a->get_baseurl() . '/addon/statusnet/statusnet.css' . '" media="all" />' . "\r\n";
317         /*       * *
318          * 1) Check that we have a base api url and a consumer key & secret
319          * 2) If no OAuthtoken & stuff is present, generate button to get some
320          *    allow the user to cancel the connection process at this step
321          * 3) Checkbox for "Send public notices (respect size limitation)
322          */
323         $api     = PConfig::get(local_user(), 'statusnet', 'baseapi');
324         $ckey    = PConfig::get(local_user(), 'statusnet', 'consumerkey');
325         $csecret = PConfig::get(local_user(), 'statusnet', 'consumersecret');
326         $otoken  = PConfig::get(local_user(), 'statusnet', 'oauthtoken');
327         $osecret = PConfig::get(local_user(), 'statusnet', 'oauthsecret');
328         $enabled = PConfig::get(local_user(), 'statusnet', 'post');
329         $checked = (($enabled) ? ' checked="checked" ' : '');
330         $defenabled = PConfig::get(local_user(), 'statusnet', 'post_by_default');
331         $defchecked = (($defenabled) ? ' checked="checked" ' : '');
332         $mirrorenabled = PConfig::get(local_user(), 'statusnet', 'mirror_posts');
333         $mirrorchecked = (($mirrorenabled) ? ' checked="checked" ' : '');
334         $import = PConfig::get(local_user(), 'statusnet', 'import');
335         $importselected = ["", "", ""];
336         $importselected[$import] = ' selected="selected"';
337         //$importenabled = PConfig::get(local_user(),'statusnet','import');
338         //$importchecked = (($importenabled) ? ' checked="checked" ' : '');
339         $create_userenabled = PConfig::get(local_user(), 'statusnet', 'create_user');
340         $create_userchecked = (($create_userenabled) ? ' checked="checked" ' : '');
341
342         $css = (($enabled) ? '' : '-disabled');
343
344         $s .= '<span id="settings_statusnet_inflated" class="settings-block fakelink" style="display: block;" onclick="openClose(\'settings_statusnet_expanded\'); openClose(\'settings_statusnet_inflated\');">';
345         $s .= '<img class="connector' . $css . '" src="images/gnusocial.png" /><h3 class="connector">' . t('GNU Social Import/Export/Mirror') . '</h3>';
346         $s .= '</span>';
347         $s .= '<div id="settings_statusnet_expanded" class="settings-block" style="display: none;">';
348         $s .= '<span class="fakelink" onclick="openClose(\'settings_statusnet_expanded\'); openClose(\'settings_statusnet_inflated\');">';
349         $s .= '<img class="connector' . $css . '" src="images/gnusocial.png" /><h3 class="connector">' . t('GNU Social Import/Export/Mirror') . '</h3>';
350         $s .= '</span>';
351
352         if ((!$ckey) && (!$csecret)) {
353                 /*               * *
354                  * no consumer keys
355                  */
356                 $globalsn = Config::get('statusnet', 'sites');
357                 /*               * *
358                  * lets check if we have one or more globally configured GNU Social
359                  * server OAuth credentials in the configuration. If so offer them
360                  * with a little explanation to the user as choice - otherwise
361                  * ignore this option entirely.
362                  */
363                 if (!$globalsn == null) {
364                         $s .= '<h4>' . t('Globally Available GNU Social OAuthKeys') . '</h4>';
365                         $s .= '<p>' . t("There are preconfigured OAuth key pairs for some GNU Social servers available. If you are using one of them, please use these credentials. If not feel free to connect to any other GNU Social instance \x28see below\x29.") . '</p>';
366                         $s .= '<div id="statusnet-preconf-wrapper">';
367                         foreach ($globalsn as $asn) {
368                                 $s .= '<input type="radio" name="statusnet-preconf-apiurl" value="' . $asn['apiurl'] . '">' . $asn['sitename'] . '<br />';
369                         }
370                         $s .= '<p></p><div class="clear"></div></div>';
371                         $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="statusnet-submit" class="settings-submit" value="' . t('Save Settings') . '" /></div>';
372                 }
373                 $s .= '<h4>' . t('Provide your own OAuth Credentials') . '</h4>';
374                 $s .= '<p>' . t('No consumer key pair for GNU Social found. Register your Friendica Account as an desktop client on your GNU Social account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendica installation at your favorited GNU Social installation.') . '</p>';
375                 $s .= '<div id="statusnet-consumer-wrapper">';
376                 $s .= '<label id="statusnet-consumerkey-label" for="statusnet-consumerkey">' . t('OAuth Consumer Key') . '</label>';
377                 $s .= '<input id="statusnet-consumerkey" type="text" name="statusnet-consumerkey" size="35" /><br />';
378                 $s .= '<div class="clear"></div>';
379                 $s .= '<label id="statusnet-consumersecret-label" for="statusnet-consumersecret">' . t('OAuth Consumer Secret') . '</label>';
380                 $s .= '<input id="statusnet-consumersecret" type="text" name="statusnet-consumersecret" size="35" /><br />';
381                 $s .= '<div class="clear"></div>';
382                 $s .= '<label id="statusnet-baseapi-label" for="statusnet-baseapi">' . t("Base API Path \x28remember the trailing /\x29") . '</label>';
383                 $s .= '<input id="statusnet-baseapi" type="text" name="statusnet-baseapi" size="35" /><br />';
384                 $s .= '<div class="clear"></div>';
385                 //$s .= '<label id="statusnet-applicationname-label" for="statusnet-applicationname">'.t('GNU Socialapplication name').'</label>';
386                 //$s .= '<input id="statusnet-applicationname" type="text" name="statusnet-applicationname" size="35" /><br />';
387                 $s .= '<p></p><div class="clear"></div>';
388                 $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="statusnet-submit" class="settings-submit" value="' . t('Save Settings') . '" /></div>';
389                 $s .= '</div>';
390         } else {
391                 /*               * *
392                  * ok we have a consumer key pair now look into the OAuth stuff
393                  */
394                 if ((!$otoken) && (!$osecret)) {
395                         /*                       * *
396                          * the user has not yet connected the account to GNU Social
397                          * get a temporary OAuth key/secret pair and display a button with
398                          * which the user can request a PIN to connect the account to a
399                          * account at GNU Social
400                          */
401                         $connection = new StatusNetOAuth($api, $ckey, $csecret);
402                         $request_token = $connection->getRequestToken('oob');
403                         $token = $request_token['oauth_token'];
404                         /*                       * *
405                          *  make some nice form
406                          */
407                         $s .= '<p>' . t('To connect to your GNU Social account click the button below to get a security code from GNU Social which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to GNU Social.') . '</p>';
408                         $s .= '<a href="' . $connection->getAuthorizeURL($token, False) . '" target="_statusnet"><img src="addon/statusnet/signinwithstatusnet.png" alt="' . t('Log in with GNU Social') . '"></a>';
409                         $s .= '<div id="statusnet-pin-wrapper">';
410                         $s .= '<label id="statusnet-pin-label" for="statusnet-pin">' . t('Copy the security code from GNU Social here') . '</label>';
411                         $s .= '<input id="statusnet-pin" type="text" name="statusnet-pin" />';
412                         $s .= '<input id="statusnet-token" type="hidden" name="statusnet-token" value="' . $token . '" />';
413                         $s .= '<input id="statusnet-token2" type="hidden" name="statusnet-token2" value="' . $request_token['oauth_token_secret'] . '" />';
414                         $s .= '</div><div class="clear"></div>';
415                         $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="statusnet-submit" class="settings-submit" value="' . t('Save Settings') . '" /></div>';
416                         $s .= '<h4>' . t('Cancel Connection Process') . '</h4>';
417                         $s .= '<div id="statusnet-cancel-wrapper">';
418                         $s .= '<p>' . t('Current GNU Social API is') . ': ' . $api . '</p>';
419                         $s .= '<label id="statusnet-cancel-label" for="statusnet-cancel">' . t('Cancel GNU Social Connection') . '</label>';
420                         $s .= '<input id="statusnet-cancel" type="checkbox" name="statusnet-disconnect" value="1" />';
421                         $s .= '</div><div class="clear"></div>';
422                         $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="statusnet-submit" class="settings-submit" value="' . t('Save Settings') . '" /></div>';
423                 } else {
424                         /*                       * *
425                          *  we have an OAuth key / secret pair for the user
426                          *  so let's give a chance to disable the postings to GNU Social
427                          */
428                         $connection = new StatusNetOAuth($api, $ckey, $csecret, $otoken, $osecret);
429                         $details = $connection->get('account/verify_credentials');
430                         $s .= '<div id="statusnet-info" ><img id="statusnet-avatar" src="' . $details->profile_image_url . '" /><p id="statusnet-info-block">' . t('Currently connected to: ') . '<a href="' . $details->statusnet_profile_url . '" target="_statusnet">' . $details->screen_name . '</a><br /><em>' . $details->description . '</em></p></div>';
431                         $s .= '<p>' . t('If enabled all your <strong>public</strong> postings can be posted to the associated GNU Social account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry.') . '</p>';
432                         if ($a->user['hidewall']) {
433                                 $s .= '<p>' . t('<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to GNU Social will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted.') . '</p>';
434                         }
435                         $s .= '<div id="statusnet-enable-wrapper">';
436                         $s .= '<label id="statusnet-enable-label" for="statusnet-checkbox">' . t('Allow posting to GNU Social') . '</label>';
437                         $s .= '<input id="statusnet-checkbox" type="checkbox" name="statusnet-enable" value="1" ' . $checked . '/>';
438                         $s .= '<div class="clear"></div>';
439                         $s .= '<label id="statusnet-default-label" for="statusnet-default">' . t('Send public postings to GNU Social by default') . '</label>';
440                         $s .= '<input id="statusnet-default" type="checkbox" name="statusnet-default" value="1" ' . $defchecked . '/>';
441                         $s .= '<div class="clear"></div>';
442
443                         $s .= '<label id="statusnet-mirror-label" for="statusnet-mirror">' . t('Mirror all posts from GNU Social that are no replies or repeated messages') . '</label>';
444                         $s .= '<input id="statusnet-mirror" type="checkbox" name="statusnet-mirror" value="1" ' . $mirrorchecked . '/>';
445
446                         $s .= '<div class="clear"></div>';
447                         $s .= '</div>';
448
449                         $s .= '<label id="statusnet-import-label" for="statusnet-import">' . t('Import the remote timeline') . '</label>';
450                         //$s .= '<input id="statusnet-import" type="checkbox" name="statusnet-import" value="1" '. $importchecked . '/>';
451
452                         $s .= '<select name="statusnet-import" id="statusnet-import" />';
453                         $s .= '<option value="0" ' . $importselected[0] . '>' . t("Disabled") . '</option>';
454                         $s .= '<option value="1" ' . $importselected[1] . '>' . t("Full Timeline") . '</option>';
455                         $s .= '<option value="2" ' . $importselected[2] . '>' . t("Only Mentions") . '</option>';
456                         $s .= '</select>';
457                         $s .= '<div class="clear"></div>';
458                         /*
459                           $s .= '<label id="statusnet-create_user-label" for="statusnet-create_user">'.t('Automatically create contacts').'</label>';
460                           $s .= '<input id="statusnet-create_user" type="checkbox" name="statusnet-create_user" value="1" '. $create_userchecked . '/>';
461                           $s .= '<div class="clear"></div>';
462                          */
463                         $s .= '<div id="statusnet-disconnect-wrapper">';
464                         $s .= '<label id="statusnet-disconnect-label" for="statusnet-disconnect">' . t('Clear OAuth configuration') . '</label>';
465                         $s .= '<input id="statusnet-disconnect" type="checkbox" name="statusnet-disconnect" value="1" />';
466                         $s .= '</div><div class="clear"></div>';
467                         $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="statusnet-submit" class="settings-submit" value="' . t('Save Settings') . '" /></div>';
468                 }
469         }
470         $s .= '</div><div class="clear"></div>';
471 }
472
473 function statusnet_post_local(App $a, &$b)
474 {
475         if ($b['edit']) {
476                 return;
477         }
478
479         if (!local_user() || (local_user() != $b['uid'])) {
480                 return;
481         }
482
483         $statusnet_post = PConfig::get(local_user(), 'statusnet', 'post');
484         $statusnet_enable = (($statusnet_post && x($_REQUEST, 'statusnet_enable')) ? intval($_REQUEST['statusnet_enable']) : 0);
485
486         // if API is used, default to the chosen settings
487         if ($b['api_source'] && intval(PConfig::get(local_user(), 'statusnet', 'post_by_default'))) {
488                 $statusnet_enable = 1;
489         }
490
491         if (!$statusnet_enable) {
492                 return;
493         }
494
495         if (strlen($b['postopts'])) {
496                 $b['postopts'] .= ',';
497         }
498
499         $b['postopts'] .= 'statusnet';
500 }
501
502 function statusnet_action(App $a, $uid, $pid, $action)
503 {
504         $api = PConfig::get($uid, 'statusnet', 'baseapi');
505         $ckey = PConfig::get($uid, 'statusnet', 'consumerkey');
506         $csecret = PConfig::get($uid, 'statusnet', 'consumersecret');
507         $otoken = PConfig::get($uid, 'statusnet', 'oauthtoken');
508         $osecret = PConfig::get($uid, 'statusnet', 'oauthsecret');
509
510         $connection = new StatusNetOAuth($api, $ckey, $csecret, $otoken, $osecret);
511
512         logger("statusnet_action '" . $action . "' ID: " . $pid, LOGGER_DATA);
513
514         switch ($action) {
515                 case "delete":
516                         $result = $connection->post("statuses/destroy/" . $pid);
517                         break;
518                 case "like":
519                         $result = $connection->post("favorites/create/" . $pid);
520                         break;
521                 case "unlike":
522                         $result = $connection->post("favorites/destroy/" . $pid);
523                         break;
524         }
525         logger("statusnet_action '" . $action . "' send, result: " . print_r($result, true), LOGGER_DEBUG);
526 }
527
528 function statusnet_post_hook(App $a, &$b)
529 {
530         /**
531          * Post to GNU Social
532          */
533         if (!PConfig::get($b["uid"], 'statusnet', 'import')) {
534                 if ($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited']))
535                         return;
536         }
537
538         $api = PConfig::get($b["uid"], 'statusnet', 'baseapi');
539         $hostname = preg_replace("=https?://([\w\.]*)/.*=ism", "$1", $api);
540
541         if ($b['parent'] != $b['id']) {
542                 logger("statusnet_post_hook: parameter " . print_r($b, true), LOGGER_DATA);
543
544                 // Looking if its a reply to a GNU Social post
545                 $hostlength = strlen($hostname) + 2;
546                 if ((substr($b["parent-uri"], 0, $hostlength) != $hostname . "::") && (substr($b["extid"], 0, $hostlength) != $hostname . "::") && (substr($b["thr-parent"], 0, $hostlength) != $hostname . "::")) {
547                         logger("statusnet_post_hook: no GNU Social post " . $b["parent"]);
548                         return;
549                 }
550
551                 $r = q("SELECT `item`.`author-link`, `item`.`uri`, `contact`.`nick` AS contact_nick
552                         FROM `item` INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
553                         WHERE `item`.`uri` = '%s' AND `item`.`uid` = %d LIMIT 1", dbesc($b["thr-parent"]), intval($b["uid"]));
554
555                 if (!count($r)) {
556                         logger("statusnet_post_hook: no parent found " . $b["thr-parent"]);
557                         return;
558                 } else {
559                         $iscomment = true;
560                         $orig_post = $r[0];
561                 }
562
563                 //$nickname = "@[url=".$orig_post["author-link"]."]".$orig_post["contact_nick"]."[/url]";
564                 //$nicknameplain = "@".$orig_post["contact_nick"];
565
566                 $nick = preg_replace("=https?://(.*)/(.*)=ism", "$2", $orig_post["author-link"]);
567
568                 $nickname = "@[url=" . $orig_post["author-link"] . "]" . $nick . "[/url]";
569                 $nicknameplain = "@" . $nick;
570
571                 logger("statusnet_post_hook: comparing " . $nickname . " and " . $nicknameplain . " with " . $b["body"], LOGGER_DEBUG);
572                 if ((strpos($b["body"], $nickname) === false) && (strpos($b["body"], $nicknameplain) === false)) {
573                         $b["body"] = $nickname . " " . $b["body"];
574                 }
575
576                 logger("statusnet_post_hook: parent found " . print_r($orig_post, true), LOGGER_DEBUG);
577         } else {
578                 $iscomment = false;
579
580                 if ($b['private'] || !strstr($b['postopts'], 'statusnet')) {
581                         return;
582                 }
583
584                 // Dont't post if the post doesn't belong to us.
585                 // This is a check for forum postings
586                 $self = dba::selectFirst('contact', ['id'], ['uid' => $b['uid'], 'self' => true]);
587                 if ($b['contact-id'] != $self['id']) {
588                         return;
589                 }
590         }
591
592         if (($b['verb'] == ACTIVITY_POST) && $b['deleted']) {
593                 statusnet_action($a, $b["uid"], substr($orig_post["uri"], $hostlength), "delete");
594         }
595
596         if ($b['verb'] == ACTIVITY_LIKE) {
597                 logger("statusnet_post_hook: parameter 2 " . substr($b["thr-parent"], $hostlength), LOGGER_DEBUG);
598                 if ($b['deleted'])
599                         statusnet_action($a, $b["uid"], substr($b["thr-parent"], $hostlength), "unlike");
600                 else
601                         statusnet_action($a, $b["uid"], substr($b["thr-parent"], $hostlength), "like");
602                 return;
603         }
604
605         if ($b['deleted'] || ($b['created'] !== $b['edited'])) {
606                 return;
607         }
608
609         // if posts comes from GNU Social don't send it back
610         if ($b['extid'] == NETWORK_STATUSNET) {
611                 return;
612         }
613
614         if ($b['app'] == "StatusNet") {
615                 return;
616         }
617
618         logger('GNU Socialpost invoked');
619
620         PConfig::load($b['uid'], 'statusnet');
621
622         $api     = PConfig::get($b['uid'], 'statusnet', 'baseapi');
623         $ckey    = PConfig::get($b['uid'], 'statusnet', 'consumerkey');
624         $csecret = PConfig::get($b['uid'], 'statusnet', 'consumersecret');
625         $otoken  = PConfig::get($b['uid'], 'statusnet', 'oauthtoken');
626         $osecret = PConfig::get($b['uid'], 'statusnet', 'oauthsecret');
627
628         if ($ckey && $csecret && $otoken && $osecret) {
629                 // If it's a repeated message from GNU Social then do a native retweet and exit
630                 if (statusnet_is_retweet($a, $b['uid'], $b['body'])) {
631                         return;
632                 }
633
634                 require_once 'include/bbcode.php';
635                 $dent = new StatusNetOAuth($api, $ckey, $csecret, $otoken, $osecret);
636                 $max_char = $dent->get_maxlength(); // max. length for a dent
637
638                 PConfig::set($b['uid'], 'statusnet', 'max_char', $max_char);
639
640                 $tempfile = "";
641                 require_once "include/plaintext.php";
642                 require_once "include/network.php";
643                 $msgarr = plaintext($b, $max_char, true, 7);
644                 $msg = $msgarr["text"];
645
646                 if (($msg == "") && isset($msgarr["title"]))
647                         $msg = shortenmsg($msgarr["title"], $max_char - 50);
648
649                 $image = "";
650
651                 if (isset($msgarr["url"]) && ($msgarr["type"] != "photo")) {
652                         if ((strlen($msgarr["url"]) > 20) &&
653                                 ((strlen($msg . " \n" . $msgarr["url"]) > $max_char))) {
654                                 $msg .= " \n" . short_link($msgarr["url"]);
655                         } else {
656                                 $msg .= " \n" . $msgarr["url"];
657                         }
658                 } elseif (isset($msgarr["image"]) && ($msgarr["type"] != "video")) {
659                         $image = $msgarr["image"];
660                 }
661
662                 if ($image != "") {
663                         $img_str = fetch_url($image);
664                         $tempfile = tempnam(get_temppath(), "cache");
665                         file_put_contents($tempfile, $img_str);
666                         $postdata = ["status" => $msg, "media[]" => $tempfile];
667                 } else {
668                         $postdata = ["status" => $msg];
669                 }
670
671                 // and now dent it :-)
672                 if (strlen($msg)) {
673                         if ($iscomment) {
674                                 $postdata["in_reply_to_status_id"] = substr($orig_post["uri"], $hostlength);
675                                 logger('statusnet_post send reply ' . print_r($postdata, true), LOGGER_DEBUG);
676                         }
677
678                         // New code that is able to post pictures
679                         require_once "addon/statusnet/codebird.php";
680                         $cb = \CodebirdSN\CodebirdSN::getInstance();
681                         $cb->setAPIEndpoint($api);
682                         $cb->setConsumerKey($ckey, $csecret);
683                         $cb->setToken($otoken, $osecret);
684                         $result = $cb->statuses_update($postdata);
685                         //$result = $dent->post('statuses/update', $postdata);
686                         logger('statusnet_post send, result: ' . print_r($result, true) .
687                                 "\nmessage: " . $msg, LOGGER_DEBUG . "\nOriginal post: " . print_r($b, true) . "\nPost Data: " . print_r($postdata, true));
688
689                         if ($result->source) {
690                                 PConfig::set($b["uid"], "statusnet", "application_name", strip_tags($result->source));
691                         }
692
693                         if ($result->error) {
694                                 logger('Send to GNU Social failed: "' . $result->error . '"');
695                         } elseif ($iscomment) {
696                                 logger('statusnet_post: Update extid ' . $result->id . " for post id " . $b['id']);
697                                 q("UPDATE `item` SET `extid` = '%s', `body` = '%s' WHERE `id` = %d",
698                                         dbesc($hostname . "::" . $result->id),
699                                         dbesc($result->text),
700                                         intval($b['id'])
701                                 );
702                         }
703                 }
704                 if ($tempfile != "") {
705                         unlink($tempfile);
706                 }
707         }
708 }
709
710 function statusnet_plugin_admin_post(App $a)
711 {
712         $sites = [];
713
714         foreach ($_POST['sitename'] as $id => $sitename) {
715                 $sitename = trim($sitename);
716                 $apiurl = trim($_POST['apiurl'][$id]);
717                 if (!(substr($apiurl, -1) == '/')) {
718                         $apiurl = $apiurl . '/';
719                 }
720                 $secret = trim($_POST['secret'][$id]);
721                 $key = trim($_POST['key'][$id]);
722                 //$applicationname = ((x($_POST, 'applicationname')) ? notags(trim($_POST['applicationname'][$id])):'');
723                 if ($sitename != "" &&
724                         $apiurl != "" &&
725                         $secret != "" &&
726                         $key != "" &&
727                         !x($_POST['delete'][$id])) {
728
729                         $sites[] = [
730                                 'sitename' => $sitename,
731                                 'apiurl' => $apiurl,
732                                 'consumersecret' => $secret,
733                                 'consumerkey' => $key,
734                                 //'applicationname' => $applicationname
735                         ];
736                 }
737         }
738
739         $sites = Config::set('statusnet', 'sites', $sites);
740 }
741
742 function statusnet_plugin_admin(App $a, &$o)
743 {
744         $sites = Config::get('statusnet', 'sites');
745         $sitesform = [];
746         if (is_array($sites)) {
747                 foreach ($sites as $id => $s) {
748                         $sitesform[] = [
749                                 'sitename' => ["sitename[$id]", "Site name", $s['sitename'], ""],
750                                 'apiurl' => ["apiurl[$id]", "Api url", $s['apiurl'], t("Base API Path \x28remember the trailing /\x29")],
751                                 'secret' => ["secret[$id]", "Secret", $s['consumersecret'], ""],
752                                 'key' => ["key[$id]", "Key", $s['consumerkey'], ""],
753                                 //'applicationname' => Array("applicationname[$id]", "Application name", $s['applicationname'], ""),
754                                 'delete' => ["delete[$id]", "Delete", False, "Check to delete this preset"],
755                         ];
756                 }
757         }
758         /* empty form to add new site */
759         $id++;
760         $sitesform[] = [
761                 'sitename' => ["sitename[$id]", t("Site name"), "", ""],
762                 'apiurl' => ["apiurl[$id]", "Api url", "", t("Base API Path \x28remember the trailing /\x29")],
763                 'secret' => ["secret[$id]", t("Consumer Secret"), "", ""],
764                 'key' => ["key[$id]", t("Consumer Key"), "", ""],
765                 //'applicationname' => Array("applicationname[$id]", t("Application name"), "", ""),
766         ];
767
768         $t = get_markup_template("admin.tpl", "addon/statusnet/");
769         $o = replace_macros($t, [
770                 '$submit' => t('Save Settings'),
771                 '$sites' => $sitesform,
772         ]);
773 }
774
775 function statusnet_prepare_body(App $a, &$b)
776 {
777         if ($b["item"]["network"] != NETWORK_STATUSNET) {
778                 return;
779         }
780
781         if ($b["preview"]) {
782                 $max_char = PConfig::get(local_user(), 'statusnet', 'max_char');
783                 if (intval($max_char) == 0) {
784                         $max_char = 140;
785                 }
786
787                 require_once "include/plaintext.php";
788                 $item = $b["item"];
789                 $item["plink"] = $a->get_baseurl() . "/display/" . $a->user["nickname"] . "/" . $item["parent"];
790
791                 $r = q("SELECT `item`.`author-link`, `item`.`uri`, `contact`.`nick` AS contact_nick
792                         FROM `item` INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
793                         WHERE `item`.`uri` = '%s' AND `item`.`uid` = %d LIMIT 1",
794                         dbesc($item["thr-parent"]),
795                         intval(local_user()));
796
797                 if (count($r)) {
798                         $orig_post = $r[0];
799                         //$nickname = "@[url=".$orig_post["author-link"]."]".$orig_post["contact_nick"]."[/url]";
800                         //$nicknameplain = "@".$orig_post["contact_nick"];
801
802                         $nick = preg_replace("=https?://(.*)/(.*)=ism", "$2", $orig_post["author-link"]);
803
804                         $nickname = "@[url=" . $orig_post["author-link"] . "]" . $nick . "[/url]";
805                         $nicknameplain = "@" . $nick;
806
807                         if ((strpos($item["body"], $nickname) === false) && (strpos($item["body"], $nicknameplain) === false)) {
808                                 $item["body"] = $nickname . " " . $item["body"];
809                         }
810                 }
811
812                 $msgarr = plaintext($item, $max_char, true, 7);
813                 $msg = $msgarr["text"];
814
815                 if (isset($msgarr["url"]) && ($msgarr["type"] != "photo")) {
816                         $msg .= " " . $msgarr["url"];
817                 }
818
819                 if (isset($msgarr["image"])) {
820                         $msg .= " " . $msgarr["image"];
821                 }
822
823                 $b['html'] = nl2br(htmlspecialchars($msg));
824         }
825 }
826
827 function statusnet_cron(App $a, $b)
828 {
829         $last = Config::get('statusnet', 'last_poll');
830
831         $poll_interval = intval(Config::get('statusnet', 'poll_interval'));
832         if (!$poll_interval) {
833                 $poll_interval = STATUSNET_DEFAULT_POLL_INTERVAL;
834         }
835
836         if ($last) {
837                 $next = $last + ($poll_interval * 60);
838                 if ($next > time()) {
839                         logger('statusnet: poll intervall not reached');
840                         return;
841                 }
842         }
843         logger('statusnet: cron_start');
844
845         $r = q("SELECT * FROM `pconfig` WHERE `cat` = 'statusnet' AND `k` = 'mirror_posts' AND `v` = '1' ORDER BY RAND() ");
846         if (count($r)) {
847                 foreach ($r as $rr) {
848                         logger('statusnet: fetching for user ' . $rr['uid']);
849                         statusnet_fetchtimeline($a, $rr['uid']);
850                 }
851         }
852
853         $abandon_days = intval(Config::get('system', 'account_abandon_days'));
854         if ($abandon_days < 1) {
855                 $abandon_days = 0;
856         }
857
858         $abandon_limit = date("Y-m-d H:i:s", time() - $abandon_days * 86400);
859
860         $r = q("SELECT * FROM `pconfig` WHERE `cat` = 'statusnet' AND `k` = 'import' AND `v` ORDER BY RAND()");
861         if (count($r)) {
862                 foreach ($r as $rr) {
863                         if ($abandon_days != 0) {
864                                 $user = q("SELECT `login_date` FROM `user` WHERE uid=%d AND `login_date` >= '%s'", $rr['uid'], $abandon_limit);
865                                 if (!count($user)) {
866                                         logger('abandoned account: timeline from user ' . $rr['uid'] . ' will not be imported');
867                                         continue;
868                                 }
869                         }
870
871                         logger('statusnet: importing timeline from user ' . $rr['uid']);
872                         statusnet_fetchhometimeline($a, $rr["uid"], $rr["v"]);
873                 }
874         }
875
876         logger('statusnet: cron_end');
877
878         Config::set('statusnet', 'last_poll', time());
879 }
880
881 function statusnet_fetchtimeline(App $a, $uid)
882 {
883         $ckey    = PConfig::get($uid, 'statusnet', 'consumerkey');
884         $csecret = PConfig::get($uid, 'statusnet', 'consumersecret');
885         $api     = PConfig::get($uid, 'statusnet', 'baseapi');
886         $otoken  = PConfig::get($uid, 'statusnet', 'oauthtoken');
887         $osecret = PConfig::get($uid, 'statusnet', 'oauthsecret');
888         $lastid  = PConfig::get($uid, 'statusnet', 'lastid');
889
890         require_once 'mod/item.php';
891         require_once 'include/items.php';
892
893         //  get the application name for the SN app
894         //  1st try personal config, then system config and fallback to the
895         //  hostname of the node if neither one is set.
896         $application_name = PConfig::get($uid, 'statusnet', 'application_name');
897         if ($application_name == "") {
898                 $application_name = Config::get('statusnet', 'application_name');
899         }
900         if ($application_name == "") {
901                 $application_name = $a->get_hostname();
902         }
903
904         $connection = new StatusNetOAuth($api, $ckey, $csecret, $otoken, $osecret);
905
906         $parameters = ["exclude_replies" => true, "trim_user" => true, "contributor_details" => false, "include_rts" => false];
907
908         $first_time = ($lastid == "");
909
910         if ($lastid <> "") {
911                 $parameters["since_id"] = $lastid;
912         }
913
914         $items = $connection->get('statuses/user_timeline', $parameters);
915
916         if (!is_array($items)) {
917                 return;
918         }
919
920         $posts = array_reverse($items);
921
922         if (count($posts)) {
923                 foreach ($posts as $post) {
924                         if ($post->id > $lastid)
925                                 $lastid = $post->id;
926
927                         if ($first_time) {
928                                 continue;
929                         }
930
931                         if ($post->source == "activity") {
932                                 continue;
933                         }
934
935                         if (is_object($post->retweeted_status)) {
936                                 continue;
937                         }
938
939                         if ($post->in_reply_to_status_id != "") {
940                                 continue;
941                         }
942
943                         if (!stristr($post->source, $application_name)) {
944                                 $_SESSION["authenticated"] = true;
945                                 $_SESSION["uid"] = $uid;
946
947                                 unset($_REQUEST);
948                                 $_REQUEST["type"] = "wall";
949                                 $_REQUEST["api_source"] = true;
950                                 $_REQUEST["profile_uid"] = $uid;
951                                 //$_REQUEST["source"] = "StatusNet";
952                                 $_REQUEST["source"] = $post->source;
953                                 $_REQUEST["extid"] = NETWORK_STATUSNET;
954
955                                 if (isset($post->id)) {
956                                         $_REQUEST['message_id'] = item_new_uri($a->get_hostname(), $uid, NETWORK_STATUSNET . ":" . $post->id);
957                                 }
958
959                                 //$_REQUEST["date"] = $post->created_at;
960
961                                 $_REQUEST["title"] = "";
962
963                                 $_REQUEST["body"] = add_page_info_to_body($post->text, true);
964                                 if (is_string($post->place->name)) {
965                                         $_REQUEST["location"] = $post->place->name;
966                                 }
967
968                                 if (is_string($post->place->full_name)) {
969                                         $_REQUEST["location"] = $post->place->full_name;
970                                 }
971
972                                 if (is_array($post->geo->coordinates)) {
973                                         $_REQUEST["coord"] = $post->geo->coordinates[0] . " " . $post->geo->coordinates[1];
974                                 }
975
976                                 if (is_array($post->coordinates->coordinates)) {
977                                         $_REQUEST["coord"] = $post->coordinates->coordinates[1] . " " . $post->coordinates->coordinates[0];
978                                 }
979
980                                 //print_r($_REQUEST);
981                                 if ($_REQUEST["body"] != "") {
982                                         logger('statusnet: posting for user ' . $uid);
983
984                                         item_post($a);
985                                 }
986                         }
987                 }
988         }
989         PConfig::set($uid, 'statusnet', 'lastid', $lastid);
990 }
991
992 function statusnet_address($contact)
993 {
994         $hostname = normalise_link($contact->statusnet_profile_url);
995         $nickname = $contact->screen_name;
996
997         $hostname = preg_replace("=https?://([\w\.]*)/.*=ism", "$1", $contact->statusnet_profile_url);
998
999         $address = $contact->screen_name . "@" . $hostname;
1000
1001         return $address;
1002 }
1003
1004 function statusnet_fetch_contact($uid, $contact, $create_user)
1005 {
1006         if ($contact->statusnet_profile_url == "") {
1007                 return -1;
1008         }
1009
1010         GContact::update(["url" => $contact->statusnet_profile_url,
1011                 "network" => NETWORK_STATUSNET, "photo" => $contact->profile_image_url,
1012                 "name" => $contact->name, "nick" => $contact->screen_name,
1013                 "location" => $contact->location, "about" => $contact->description,
1014                 "addr" => statusnet_address($contact), "generation" => 3]);
1015
1016         $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `alias` = '%s' AND `network` = '%s'LIMIT 1", intval($uid), dbesc(normalise_link($contact->statusnet_profile_url)), dbesc(NETWORK_STATUSNET));
1017
1018         if (!count($r) && !$create_user) {
1019                 return 0;
1020         }
1021
1022         if (count($r) && ($r[0]["readonly"] || $r[0]["blocked"])) {
1023                 logger("statusnet_fetch_contact: Contact '" . $r[0]["nick"] . "' is blocked or readonly.", LOGGER_DEBUG);
1024                 return -1;
1025         }
1026
1027         if (!count($r)) {
1028                 // create contact record
1029                 q("INSERT INTO `contact` ( `uid`, `created`, `url`, `nurl`, `addr`, `alias`, `notify`, `poll`,
1030                                         `name`, `nick`, `photo`, `network`, `rel`, `priority`,
1031                                         `location`, `about`, `writable`, `blocked`, `readonly`, `pending` )
1032                                         VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, '%s', '%s', %d, 0, 0, 0 ) ",
1033                         intval($uid),
1034                         dbesc(datetime_convert()),
1035                         dbesc($contact->statusnet_profile_url),
1036                         dbesc(normalise_link($contact->statusnet_profile_url)),
1037                         dbesc(statusnet_address($contact)),
1038                         dbesc(normalise_link($contact->statusnet_profile_url)),
1039                         dbesc(''),
1040                         dbesc(''),
1041                         dbesc($contact->name),
1042                         dbesc($contact->screen_name),
1043                         dbesc($contact->profile_image_url),
1044                         dbesc(NETWORK_STATUSNET),
1045                         intval(CONTACT_IS_FRIEND),
1046                         intval(1),
1047                         dbesc($contact->location),
1048                         dbesc($contact->description),
1049                         intval(1)
1050                 );
1051
1052                 $r = q("SELECT * FROM `contact` WHERE `alias` = '%s' AND `uid` = %d AND `network` = '%s' LIMIT 1",
1053                         dbesc($contact->statusnet_profile_url),
1054                         intval($uid),
1055                         dbesc(NETWORK_STATUSNET));
1056
1057                 if (!count($r)) {
1058                         return false;
1059                 }
1060
1061                 $contact_id = $r[0]['id'];
1062
1063                 Group::addMember(User::getDefaultGroup($uid), $contact_id);
1064
1065                 $photos = Photo::importProfilePhoto($contact->profile_image_url, $uid, $contact_id);
1066
1067                 q("UPDATE `contact` SET `photo` = '%s',
1068                                         `thumb` = '%s',
1069                                         `micro` = '%s',
1070                                         `avatar-date` = '%s'
1071                                 WHERE `id` = %d",
1072                         dbesc($photos[0]),
1073                         dbesc($photos[1]),
1074                         dbesc($photos[2]),
1075                         dbesc(datetime_convert()),
1076                         intval($contact_id)
1077                 );
1078         } else {
1079                 // update profile photos once every two weeks as we have no notification of when they change.
1080                 //$update_photo = (($r[0]['avatar-date'] < datetime_convert('','','now -2 days')) ? true : false);
1081                 $update_photo = ($r[0]['avatar-date'] < datetime_convert('', '', 'now -12 hours'));
1082
1083                 // check that we have all the photos, this has been known to fail on occasion
1084                 if ((!$r[0]['photo']) || (!$r[0]['thumb']) || (!$r[0]['micro']) || ($update_photo)) {
1085                         logger("statusnet_fetch_contact: Updating contact " . $contact->screen_name, LOGGER_DEBUG);
1086
1087                         $photos = Photo::importProfilePhoto($contact->profile_image_url, $uid, $r[0]['id']);
1088
1089                         q("UPDATE `contact` SET `photo` = '%s',
1090                                                 `thumb` = '%s',
1091                                                 `micro` = '%s',
1092                                                 `name-date` = '%s',
1093                                                 `uri-date` = '%s',
1094                                                 `avatar-date` = '%s',
1095                                                 `url` = '%s',
1096                                                 `nurl` = '%s',
1097                                                 `addr` = '%s',
1098                                                 `name` = '%s',
1099                                                 `nick` = '%s',
1100                                                 `location` = '%s',
1101                                                 `about` = '%s'
1102                                         WHERE `id` = %d",
1103                                 dbesc($photos[0]),
1104                                 dbesc($photos[1]),
1105                                 dbesc($photos[2]),
1106                                 dbesc(datetime_convert()),
1107                                 dbesc(datetime_convert()),
1108                                 dbesc(datetime_convert()),
1109                                 dbesc($contact->statusnet_profile_url),
1110                                 dbesc(normalise_link($contact->statusnet_profile_url)),
1111                                 dbesc(statusnet_address($contact)),
1112                                 dbesc($contact->name),
1113                                 dbesc($contact->screen_name),
1114                                 dbesc($contact->location),
1115                                 dbesc($contact->description),
1116                                 intval($r[0]['id'])
1117                         );
1118                 }
1119         }
1120
1121         return $r[0]["id"];
1122 }
1123
1124 function statusnet_fetchuser(App $a, $uid, $screen_name = "", $user_id = "")
1125 {
1126         $ckey    = PConfig::get($uid, 'statusnet', 'consumerkey');
1127         $csecret = PConfig::get($uid, 'statusnet', 'consumersecret');
1128         $api     = PConfig::get($uid, 'statusnet', 'baseapi');
1129         $otoken  = PConfig::get($uid, 'statusnet', 'oauthtoken');
1130         $osecret = PConfig::get($uid, 'statusnet', 'oauthsecret');
1131
1132         require_once "addon/statusnet/codebird.php";
1133
1134         $cb = \Codebird\Codebird::getInstance();
1135         $cb->setConsumerKey($ckey, $csecret);
1136         $cb->setToken($otoken, $osecret);
1137
1138         $r = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
1139                 intval($uid));
1140
1141         if (count($r)) {
1142                 $self = $r[0];
1143         } else {
1144                 return;
1145         }
1146
1147         $parameters = [];
1148
1149         if ($screen_name != "") {
1150                 $parameters["screen_name"] = $screen_name;
1151         }
1152
1153         if ($user_id != "") {
1154                 $parameters["user_id"] = $user_id;
1155         }
1156
1157         // Fetching user data
1158         $user = $cb->users_show($parameters);
1159
1160         if (!is_object($user)) {
1161                 return;
1162         }
1163
1164         $contact_id = statusnet_fetch_contact($uid, $user, true);
1165
1166         return $contact_id;
1167 }
1168
1169 function statusnet_createpost(App $a, $uid, $post, $self, $create_user, $only_existing_contact)
1170 {
1171         require_once "include/html2bbcode.php";
1172
1173         logger("statusnet_createpost: start", LOGGER_DEBUG);
1174
1175         $api = PConfig::get($uid, 'statusnet', 'baseapi');
1176         $hostname = preg_replace("=https?://([\w\.]*)/.*=ism", "$1", $api);
1177
1178         $postarray = [];
1179         $postarray['network'] = NETWORK_STATUSNET;
1180         $postarray['gravity'] = 0;
1181         $postarray['uid'] = $uid;
1182         $postarray['wall'] = 0;
1183
1184         if (is_object($post->retweeted_status)) {
1185                 $content = $post->retweeted_status;
1186                 statusnet_fetch_contact($uid, $content->user, false);
1187         } else {
1188                 $content = $post;
1189         }
1190
1191         $postarray['uri'] = $hostname . "::" . $content->id;
1192
1193         $r = q("SELECT * FROM `item` WHERE `extid` = '%s' AND `uid` = %d LIMIT 1",
1194                         dbesc($postarray['uri']),
1195                         intval($uid)
1196         );
1197
1198         if (count($r)) {
1199                 return [];
1200         }
1201
1202         $contactid = 0;
1203
1204         if ($content->in_reply_to_status_id != "") {
1205
1206                 $parent = $hostname . "::" . $content->in_reply_to_status_id;
1207
1208                 $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1209                                 dbesc($parent),
1210                                 intval($uid)
1211                 );
1212                 if (count($r)) {
1213                         $postarray['thr-parent'] = $r[0]["uri"];
1214                         $postarray['parent-uri'] = $r[0]["parent-uri"];
1215                         $postarray['parent'] = $r[0]["parent"];
1216                         $postarray['object-type'] = ACTIVITY_OBJ_COMMENT;
1217                 } else {
1218                         $r = q("SELECT * FROM `item` WHERE `extid` = '%s' AND `uid` = %d LIMIT 1",
1219                                         dbesc($parent),
1220                                         intval($uid)
1221                         );
1222                         if (count($r)) {
1223                                 $postarray['thr-parent'] = $r[0]['uri'];
1224                                 $postarray['parent-uri'] = $r[0]['parent-uri'];
1225                                 $postarray['parent'] = $r[0]['parent'];
1226                                 $postarray['object-type'] = ACTIVITY_OBJ_COMMENT;
1227                         } else {
1228                                 $postarray['thr-parent'] = $postarray['uri'];
1229                                 $postarray['parent-uri'] = $postarray['uri'];
1230                                 $postarray['object-type'] = ACTIVITY_OBJ_NOTE;
1231                         }
1232                 }
1233
1234                 // Is it me?
1235                 $own_url = PConfig::get($uid, 'statusnet', 'own_url');
1236
1237                 if ($content->user->id == $own_url) {
1238                         $r = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
1239                                 intval($uid));
1240
1241                         if (count($r)) {
1242                                 $contactid = $r[0]["id"];
1243
1244                                 $postarray['owner-name'] = $r[0]["name"];
1245                                 $postarray['owner-link'] = $r[0]["url"];
1246                                 $postarray['owner-avatar'] = $r[0]["photo"];
1247                         } else {
1248                                 return [];
1249                         }
1250                 }
1251                 // Don't create accounts of people who just comment something
1252                 $create_user = false;
1253         } else {
1254                 $postarray['parent-uri'] = $postarray['uri'];
1255                 $postarray['object-type'] = ACTIVITY_OBJ_NOTE;
1256         }
1257
1258         if ($contactid == 0) {
1259                 $contactid = statusnet_fetch_contact($uid, $post->user, $create_user);
1260                 $postarray['owner-name'] = $post->user->name;
1261                 $postarray['owner-link'] = $post->user->statusnet_profile_url;
1262                 $postarray['owner-avatar'] = $post->user->profile_image_url;
1263         }
1264         if (($contactid == 0) && !$only_existing_contact) {
1265                 $contactid = $self['id'];
1266         } elseif ($contactid <= 0) {
1267                 return [];
1268         }
1269
1270         $postarray['contact-id'] = $contactid;
1271
1272         $postarray['verb'] = ACTIVITY_POST;
1273
1274         $postarray['author-name'] = $content->user->name;
1275         $postarray['author-link'] = $content->user->statusnet_profile_url;
1276         $postarray['author-avatar'] = $content->user->profile_image_url;
1277
1278         // To-Do: Maybe unreliable? Can the api be entered without trailing "/"?
1279         $hostname = str_replace("/api/", "/notice/", PConfig::get($uid, 'statusnet', 'baseapi'));
1280
1281         $postarray['plink'] = $hostname . $content->id;
1282         $postarray['app'] = strip_tags($content->source);
1283
1284         if ($content->user->protected) {
1285                 $postarray['private'] = 1;
1286                 $postarray['allow_cid'] = '<' . $self['id'] . '>';
1287         }
1288
1289         $postarray['body'] = html2bbcode($content->statusnet_html);
1290
1291         $converted = statusnet_convertmsg($a, $postarray['body'], false);
1292         $postarray['body'] = $converted["body"];
1293         $postarray['tag'] = $converted["tags"];
1294
1295         $postarray['created'] = datetime_convert('UTC', 'UTC', $content->created_at);
1296         $postarray['edited'] = datetime_convert('UTC', 'UTC', $content->created_at);
1297
1298         if (is_string($content->place->name)) {
1299                 $postarray["location"] = $content->place->name;
1300         }
1301
1302         if (is_string($content->place->full_name)) {
1303                 $postarray["location"] = $content->place->full_name;
1304         }
1305
1306         if (is_array($content->geo->coordinates)) {
1307                 $postarray["coord"] = $content->geo->coordinates[0] . " " . $content->geo->coordinates[1];
1308         }
1309
1310         if (is_array($content->coordinates->coordinates)) {
1311                 $postarray["coord"] = $content->coordinates->coordinates[1] . " " . $content->coordinates->coordinates[0];
1312         }
1313
1314         logger("statusnet_createpost: end", LOGGER_DEBUG);
1315
1316         return $postarray;
1317 }
1318
1319 function statusnet_checknotification(App $a, $uid, $own_url, $top_item, $postarray)
1320 {
1321         // This function necer worked and need cleanup
1322         $user = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` LIMIT 1",
1323                         intval($uid)
1324         );
1325
1326         if (!count($user)) {
1327                 return;
1328         }
1329
1330         // Is it me?
1331         if (link_compare($user[0]["url"], $postarray['author-link'])) {
1332                 return;
1333         }
1334
1335         $own_user = q("SELECT * FROM `contact` WHERE `uid` = %d AND `alias` = '%s' LIMIT 1",
1336                         intval($uid),
1337                         dbesc($own_url)
1338         );
1339
1340         if (!count($own_user)) {
1341                 return;
1342         }
1343
1344         // Is it me from GNU Social?
1345         if (link_compare($own_user[0]["url"], $postarray['author-link'])) {
1346                 return;
1347         }
1348
1349         $myconv = q("SELECT `author-link`, `author-avatar`, `parent` FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d AND `parent` != 0 AND `deleted` = 0",
1350                         dbesc($postarray['parent-uri']),
1351                         intval($uid)
1352         );
1353
1354         if (count($myconv)) {
1355                 foreach ($myconv as $conv) {
1356                         // now if we find a match, it means we're in this conversation
1357                         if (!link_compare($conv['author-link'], $user[0]["url"]) && !link_compare($conv['author-link'], $own_user[0]["url"])) {
1358                                 continue;
1359                         }
1360
1361                         require_once 'include/enotify.php';
1362
1363                         $conv_parent = $conv['parent'];
1364
1365                         notification([
1366                                 'type' => NOTIFY_COMMENT,
1367                                 'notify_flags' => $user[0]['notify-flags'],
1368                                 'language' => $user[0]['language'],
1369                                 'to_name' => $user[0]['username'],
1370                                 'to_email' => $user[0]['email'],
1371                                 'uid' => $user[0]['uid'],
1372                                 'item' => $postarray,
1373                                 'link' => $a->get_baseurl() . '/display/' . urlencode(get_item_guid($top_item)),
1374                                 'source_name' => $postarray['author-name'],
1375                                 'source_link' => $postarray['author-link'],
1376                                 'source_photo' => $postarray['author-avatar'],
1377                                 'verb' => ACTIVITY_POST,
1378                                 'otype' => 'item',
1379                                 'parent' => $conv_parent,
1380                         ]);
1381
1382                         // only send one notification
1383                         break;
1384                 }
1385         }
1386 }
1387
1388 function statusnet_fetchhometimeline(App $a, $uid, $mode = 1)
1389 {
1390         $conversations = [];
1391
1392         $ckey    = PConfig::get($uid, 'statusnet', 'consumerkey');
1393         $csecret = PConfig::get($uid, 'statusnet', 'consumersecret');
1394         $api     = PConfig::get($uid, 'statusnet', 'baseapi');
1395         $otoken  = PConfig::get($uid, 'statusnet', 'oauthtoken');
1396         $osecret = PConfig::get($uid, 'statusnet', 'oauthsecret');
1397         $create_user = PConfig::get($uid, 'statusnet', 'create_user');
1398
1399         // "create_user" is deactivated, since currently you cannot add users manually by now
1400         $create_user = true;
1401
1402         logger("statusnet_fetchhometimeline: Fetching for user " . $uid, LOGGER_DEBUG);
1403
1404         require_once 'library/twitteroauth.php';
1405         require_once 'include/items.php';
1406
1407         $connection = new StatusNetOAuth($api, $ckey, $csecret, $otoken, $osecret);
1408
1409         $own_contact = statusnet_fetch_own_contact($a, $uid);
1410
1411         $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
1412                 intval($own_contact),
1413                 intval($uid));
1414
1415         if (count($r)) {
1416                 $nick = $r[0]["nick"];
1417         } else {
1418                 logger("statusnet_fetchhometimeline: Own GNU Social contact not found for user " . $uid, LOGGER_DEBUG);
1419                 return;
1420         }
1421
1422         $r = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
1423                 intval($uid));
1424
1425         if (count($r)) {
1426                 $self = $r[0];
1427         } else {
1428                 logger("statusnet_fetchhometimeline: Own contact not found for user " . $uid, LOGGER_DEBUG);
1429                 return;
1430         }
1431
1432         $u = q("SELECT * FROM user WHERE uid = %d LIMIT 1",
1433                 intval($uid));
1434         if (!count($u)) {
1435                 logger("statusnet_fetchhometimeline: Own user not found for user " . $uid, LOGGER_DEBUG);
1436                 return;
1437         }
1438
1439         $parameters = ["exclude_replies" => false, "trim_user" => false, "contributor_details" => true, "include_rts" => true];
1440         //$parameters["count"] = 200;
1441
1442         if ($mode == 1) {
1443                 // Fetching timeline
1444                 $lastid = PConfig::get($uid, 'statusnet', 'lasthometimelineid');
1445                 //$lastid = 1;
1446
1447                 $first_time = ($lastid == "");
1448
1449                 if ($lastid != "") {
1450                         $parameters["since_id"] = $lastid;
1451                 }
1452
1453                 $items = $connection->get('statuses/home_timeline', $parameters);
1454
1455                 if (!is_array($items)) {
1456                         if (is_object($items) && isset($items->error)) {
1457                                 $errormsg = $items->error;
1458                         } elseif (is_object($items)) {
1459                                 $errormsg = print_r($items, true);
1460                         } elseif (is_string($items) || is_float($items) || is_int($items)) {
1461                                 $errormsg = $items;
1462                         } else {
1463                                 $errormsg = "Unknown error";
1464                         }
1465
1466                         logger("statusnet_fetchhometimeline: Error fetching home timeline: " . $errormsg, LOGGER_DEBUG);
1467                         return;
1468                 }
1469
1470                 $posts = array_reverse($items);
1471
1472                 logger("statusnet_fetchhometimeline: Fetching timeline for user " . $uid . " " . sizeof($posts) . " items", LOGGER_DEBUG);
1473
1474                 if (count($posts)) {
1475                         foreach ($posts as $post) {
1476
1477                                 if ($post->id > $lastid) {
1478                                         $lastid = $post->id;
1479                                 }
1480
1481                                 if ($first_time) {
1482                                         continue;
1483                                 }
1484
1485                                 if (isset($post->statusnet_conversation_id)) {
1486                                         if (!isset($conversations[$post->statusnet_conversation_id])) {
1487                                                 statusnet_complete_conversation($a, $uid, $self, $create_user, $nick, $post->statusnet_conversation_id);
1488                                                 $conversations[$post->statusnet_conversation_id] = $post->statusnet_conversation_id;
1489                                         }
1490                                 } else {
1491                                         $postarray = statusnet_createpost($a, $uid, $post, $self, $create_user, true);
1492
1493                                         if (trim($postarray['body']) == "") {
1494                                                 continue;
1495                                         }
1496
1497                                         $item = item_store($postarray);
1498                                         $postarray["id"] = $item;
1499
1500                                         logger('statusnet_fetchhometimeline: User ' . $self["nick"] . ' posted home timeline item ' . $item);
1501
1502                                         if ($item && !function_exists("check_item_notification")) {
1503                                                 statusnet_checknotification($a, $uid, $nick, $item, $postarray);
1504                                         }
1505                                 }
1506                         }
1507                 }
1508                 PConfig::set($uid, 'statusnet', 'lasthometimelineid', $lastid);
1509         }
1510
1511         // Fetching mentions
1512         $lastid = PConfig::get($uid, 'statusnet', 'lastmentionid');
1513         $first_time = ($lastid == "");
1514
1515         if ($lastid != "") {
1516                 $parameters["since_id"] = $lastid;
1517         }
1518
1519         $items = $connection->get('statuses/mentions_timeline', $parameters);
1520
1521         if (!is_array($items)) {
1522                 logger("statusnet_fetchhometimeline: Error fetching mentions: " . print_r($items, true), LOGGER_DEBUG);
1523                 return;
1524         }
1525
1526         $posts = array_reverse($items);
1527
1528         logger("statusnet_fetchhometimeline: Fetching mentions for user " . $uid . " " . sizeof($posts) . " items", LOGGER_DEBUG);
1529
1530         if (count($posts)) {
1531                 foreach ($posts as $post) {
1532                         if ($post->id > $lastid) {
1533                                 $lastid = $post->id;
1534                         }
1535
1536                         if ($first_time) {
1537                                 continue;
1538                         }
1539
1540                         $postarray = statusnet_createpost($a, $uid, $post, $self, false, false);
1541
1542                         if (isset($post->statusnet_conversation_id)) {
1543                                 if (!isset($conversations[$post->statusnet_conversation_id])) {
1544                                         statusnet_complete_conversation($a, $uid, $self, $create_user, $nick, $post->statusnet_conversation_id);
1545                                         $conversations[$post->statusnet_conversation_id] = $post->statusnet_conversation_id;
1546                                 }
1547                         } else {
1548                                 if (trim($postarray['body']) == "") {
1549                                         continue;
1550                                 }
1551
1552                                 $item = item_store($postarray);
1553                                 $postarray["id"] = $item;
1554
1555                                 logger('statusnet_fetchhometimeline: User ' . $self["nick"] . ' posted mention timeline item ' . $item);
1556
1557                                 if ($item && function_exists("check_item_notification")) {
1558                                         check_item_notification($item, $uid, NOTIFY_TAGSELF);
1559                                 }
1560                         }
1561
1562                         $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1563                                 dbesc($postarray['uri']),
1564                                 intval($uid)
1565                         );
1566                         if (count($r)) {
1567                                 $item = $r[0]['id'];
1568                                 $parent_id = $r[0]['parent'];
1569                         }
1570
1571                         if (($item != 0) && !function_exists("check_item_notification")) {
1572                                 require_once 'include/enotify.php';
1573                                 notification([
1574                                         'type'         => NOTIFY_TAGSELF,
1575                                         'notify_flags' => $u[0]['notify-flags'],
1576                                         'language'     => $u[0]['language'],
1577                                         'to_name'      => $u[0]['username'],
1578                                         'to_email'     => $u[0]['email'],
1579                                         'uid'          => $u[0]['uid'],
1580                                         'item'         => $postarray,
1581                                         'link'         => $a->get_baseurl() . '/display/' . urlencode(get_item_guid($item)),
1582                                         'source_name'  => $postarray['author-name'],
1583                                         'source_link'  => $postarray['author-link'],
1584                                         'source_photo' => $postarray['author-avatar'],
1585                                         'verb'         => ACTIVITY_TAG,
1586                                         'otype'        => 'item',
1587                                         'parent'       => $parent_id,
1588                                 ]);
1589                         }
1590                 }
1591         }
1592
1593         PConfig::set($uid, 'statusnet', 'lastmentionid', $lastid);
1594 }
1595
1596 function statusnet_complete_conversation(App $a, $uid, $self, $create_user, $nick, $conversation)
1597 {
1598         $ckey    = PConfig::get($uid, 'statusnet', 'consumerkey');
1599         $csecret = PConfig::get($uid, 'statusnet', 'consumersecret');
1600         $api     = PConfig::get($uid, 'statusnet', 'baseapi');
1601         $otoken  = PConfig::get($uid, 'statusnet', 'oauthtoken');
1602         $osecret = PConfig::get($uid, 'statusnet', 'oauthsecret');
1603         $own_url = PConfig::get($uid, 'statusnet', 'own_url');
1604
1605         require_once 'library/twitteroauth.php';
1606
1607         $connection = new StatusNetOAuth($api, $ckey, $csecret, $otoken, $osecret);
1608
1609         $parameters["count"] = 200;
1610
1611         $items = $connection->get('statusnet/conversation/' . $conversation, $parameters);
1612         if (is_array($items)) {
1613                 $posts = array_reverse($items);
1614
1615                 foreach ($posts AS $post) {
1616                         $postarray = statusnet_createpost($a, $uid, $post, $self, false, false);
1617
1618                         if (trim($postarray['body']) == "") {
1619                                 continue;
1620                         }
1621
1622                         $item = item_store($postarray);
1623                         $postarray["id"] = $item;
1624
1625                         logger('statusnet_complete_conversation: User ' . $self["nick"] . ' posted home timeline item ' . $item);
1626
1627                         if ($item && !function_exists("check_item_notification")) {
1628                                 statusnet_checknotification($a, $uid, $nick, $item, $postarray);
1629                         }
1630                 }
1631         }
1632 }
1633
1634 function statusnet_convertmsg(App $a, $body, $no_tags = false)
1635 {
1636         require_once "include/items.php";
1637         require_once "include/network.php";
1638
1639         $body = preg_replace("=\[url\=https?://([0-9]*).([0-9]*).([0-9]*).([0-9]*)/([0-9]*)\](.*?)\[\/url\]=ism", "$1.$2.$3.$4/$5", $body);
1640
1641         $URLSearchString = "^\[\]";
1642         $links = preg_match_all("/[^!#@]\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", $body, $matches, PREG_SET_ORDER);
1643
1644         $footer = "";
1645         $footerurl = "";
1646         $footerlink = "";
1647         $type = "";
1648
1649         if ($links) {
1650                 foreach ($matches AS $match) {
1651                         $search = "[url=" . $match[1] . "]" . $match[2] . "[/url]";
1652
1653                         logger("statusnet_convertmsg: expanding url " . $match[1], LOGGER_DEBUG);
1654
1655                         $expanded_url = original_url($match[1]);
1656
1657                         logger("statusnet_convertmsg: fetching data for " . $expanded_url, LOGGER_DEBUG);
1658
1659                         $oembed_data = OEmbed::fetchURL($expanded_url, true);
1660
1661                         logger("statusnet_convertmsg: fetching data: done", LOGGER_DEBUG);
1662
1663                         if ($type == "") {
1664                                 $type = $oembed_data->type;
1665                         }
1666
1667                         if ($oembed_data->type == "video") {
1668                                 //$body = str_replace($search, "[video]".$expanded_url."[/video]", $body);
1669                                 $type = $oembed_data->type;
1670                                 $footerurl = $expanded_url;
1671                                 $footerlink = "[url=" . $expanded_url . "]" . $expanded_url . "[/url]";
1672
1673                                 $body = str_replace($search, $footerlink, $body);
1674                         } elseif (($oembed_data->type == "photo") && isset($oembed_data->url) && !$dontincludemedia) {
1675                                 $body = str_replace($search, "[url=" . $expanded_url . "][img]" . $oembed_data->url . "[/img][/url]", $body);
1676                         } elseif ($oembed_data->type != "link") {
1677                                 $body = str_replace($search, "[url=" . $expanded_url . "]" . $expanded_url . "[/url]", $body);
1678                         } else {
1679                                 $img_str = fetch_url($expanded_url, true, $redirects, 4);
1680
1681                                 $tempfile = tempnam(get_temppath(), "cache");
1682                                 file_put_contents($tempfile, $img_str);
1683                                 $mime = image_type_to_mime_type(exif_imagetype($tempfile));
1684                                 unlink($tempfile);
1685
1686                                 if (substr($mime, 0, 6) == "image/") {
1687                                         $type = "photo";
1688                                         $body = str_replace($search, "[img]" . $expanded_url . "[/img]", $body);
1689                                 } else {
1690                                         $type = $oembed_data->type;
1691                                         $footerurl = $expanded_url;
1692                                         $footerlink = "[url=" . $expanded_url . "]" . $expanded_url . "[/url]";
1693
1694                                         $body = str_replace($search, $footerlink, $body);
1695                                 }
1696                         }
1697                 }
1698
1699                 if ($footerurl != "") {
1700                         $footer = add_page_info($footerurl);
1701                 }
1702
1703                 if (($footerlink != "") && (trim($footer) != "")) {
1704                         $removedlink = trim(str_replace($footerlink, "", $body));
1705
1706                         if (($removedlink == "") || strstr($body, $removedlink)) {
1707                                 $body = $removedlink;
1708                         }
1709
1710                         $body .= $footer;
1711                 }
1712         }
1713
1714         if ($no_tags) {
1715                 return ["body" => $body, "tags" => ""];
1716         }
1717
1718         $str_tags = '';
1719
1720         $cnt = preg_match_all("/([!#@])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", $body, $matches, PREG_SET_ORDER);
1721         if ($cnt) {
1722                 foreach ($matches as $mtch) {
1723                         if (strlen($str_tags)) {
1724                                 $str_tags .= ',';
1725                         }
1726
1727                         if ($mtch[1] == "#") {
1728                                 // Replacing the hash tags that are directed to the GNU Social server with internal links
1729                                 $snhash = "#[url=" . $mtch[2] . "]" . $mtch[3] . "[/url]";
1730                                 $frdchash = '#[url=' . $a->get_baseurl() . '/search?tag=' . rawurlencode($mtch[3]) . ']' . $mtch[3] . '[/url]';
1731                                 $body = str_replace($snhash, $frdchash, $body);
1732
1733                                 $str_tags .= $frdchash;
1734                         } else {
1735                                 $str_tags .= "@[url=" . $mtch[2] . "]" . $mtch[3] . "[/url]";
1736                         }
1737                         // To-Do:
1738                         // There is a problem with links with to GNU Social groups, so these links are stored with "@" like friendica groups
1739                         //$str_tags .= $mtch[1]."[url=".$mtch[2]."]".$mtch[3]."[/url]";
1740                 }
1741         }
1742
1743         return ["body" => $body, "tags" => $str_tags];
1744 }
1745
1746 function statusnet_fetch_own_contact(App $a, $uid)
1747 {
1748         $ckey    = PConfig::get($uid, 'statusnet', 'consumerkey');
1749         $csecret = PConfig::get($uid, 'statusnet', 'consumersecret');
1750         $api     = PConfig::get($uid, 'statusnet', 'baseapi');
1751         $otoken  = PConfig::get($uid, 'statusnet', 'oauthtoken');
1752         $osecret = PConfig::get($uid, 'statusnet', 'oauthsecret');
1753         $own_url = PConfig::get($uid, 'statusnet', 'own_url');
1754
1755         $contact_id = 0;
1756
1757         if ($own_url == "") {
1758                 require_once 'library/twitteroauth.php';
1759
1760                 $connection = new StatusNetOAuth($api, $ckey, $csecret, $otoken, $osecret);
1761
1762                 // Fetching user data
1763                 $user = $connection->get('account/verify_credentials');
1764
1765                 PConfig::set($uid, 'statusnet', 'own_url', normalise_link($user->statusnet_profile_url));
1766
1767                 $contact_id = statusnet_fetch_contact($uid, $user, true);
1768         } else {
1769                 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `alias` = '%s' LIMIT 1",
1770                         intval($uid), dbesc($own_url));
1771                 if (count($r)) {
1772                         $contact_id = $r[0]["id"];
1773                 } else {
1774                         PConfig::delete($uid, 'statusnet', 'own_url');
1775                 }
1776         }
1777         return $contact_id;
1778 }
1779
1780 function statusnet_is_retweet(App $a, $uid, $body)
1781 {
1782         $body = trim($body);
1783
1784         // Skip if it isn't a pure repeated messages
1785         // Does it start with a share?
1786         if (strpos($body, "[share") > 0) {
1787                 return false;
1788         }
1789
1790         // Does it end with a share?
1791         if (strlen($body) > (strrpos($body, "[/share]") + 8)) {
1792                 return false;
1793         }
1794
1795         $attributes = preg_replace("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism", "$1", $body);
1796         // Skip if there is no shared message in there
1797         if ($body == $attributes) {
1798                 return false;
1799         }
1800
1801         $link = "";
1802         preg_match("/link='(.*?)'/ism", $attributes, $matches);
1803         if ($matches[1] != "") {
1804                 $link = $matches[1];
1805         }
1806
1807         preg_match('/link="(.*?)"/ism', $attributes, $matches);
1808         if ($matches[1] != "") {
1809                 $link = $matches[1];
1810         }
1811
1812         $ckey    = PConfig::get($uid, 'statusnet', 'consumerkey');
1813         $csecret = PConfig::get($uid, 'statusnet', 'consumersecret');
1814         $api     = PConfig::get($uid, 'statusnet', 'baseapi');
1815         $otoken  = PConfig::get($uid, 'statusnet', 'oauthtoken');
1816         $osecret = PConfig::get($uid, 'statusnet', 'oauthsecret');
1817         $hostname = preg_replace("=https?://([\w\.]*)/.*=ism", "$1", $api);
1818
1819         $id = preg_replace("=https?://" . $hostname . "/notice/(.*)=ism", "$1", $link);
1820
1821         if ($id == $link) {
1822                 return false;
1823         }
1824
1825         logger('statusnet_is_retweet: Retweeting id ' . $id . ' for user ' . $uid, LOGGER_DEBUG);
1826
1827         $connection = new StatusNetOAuth($api, $ckey, $csecret, $otoken, $osecret);
1828
1829         $result = $connection->post('statuses/retweet/' . $id);
1830
1831         logger('statusnet_is_retweet: result ' . print_r($result, true), LOGGER_DEBUG);
1832
1833         return isset($result->id);
1834 }