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