4 * Name: GNU Social Connector
5 * Description: Bidirectional (posting, relaying and reading) connector for GNU Social.
7 * Author: Tobias Diekershoff <https://f.diekershoff.de/profile/tobias>
8 * Author: Michael Vogel <https://pirati.ca/profile/heluecht>
10 * Copyright (c) 2011-2013 Tobias Diekershoff, Michael Vogel
11 * All rights reserved.
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.
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.
36 define('STATUSNET_DEFAULT_POLL_INTERVAL', 5); // given in minutes
38 require_once __DIR__ . DIRECTORY_SEPARATOR . 'library' . DIRECTORY_SEPARATOR . 'statusnetoauth.php';
40 use CodebirdSN\CodebirdSN;
42 use Friendica\Content\OEmbed;
43 use Friendica\Content\PageInfo;
44 use Friendica\Content\Text\HTML;
45 use Friendica\Content\Text\Plaintext;
46 use Friendica\Core\Hook;
47 use Friendica\Core\Logger;
48 use Friendica\Core\Protocol;
49 use Friendica\Core\Renderer;
50 use Friendica\Database\DBA;
52 use Friendica\Model\Contact;
53 use Friendica\Model\Group;
54 use Friendica\Model\Item;
55 use Friendica\Model\Photo;
56 use Friendica\Model\Post;
57 use Friendica\Model\User;
58 use Friendica\Protocol\Activity;
59 use Friendica\Util\DateTimeFormat;
60 use Friendica\Util\Strings;
62 function statusnet_install()
64 // we need some hooks, for the configuration and for sending tweets
65 Hook::register('connector_settings', 'addon/statusnet/statusnet.php', 'statusnet_settings');
66 Hook::register('connector_settings_post', 'addon/statusnet/statusnet.php', 'statusnet_settings_post');
67 Hook::register('notifier_normal', 'addon/statusnet/statusnet.php', 'statusnet_post_hook');
68 Hook::register('hook_fork', 'addon/statusnet/statusnet.php', 'statusnet_hook_fork');
69 Hook::register('post_local', 'addon/statusnet/statusnet.php', 'statusnet_post_local');
70 Hook::register('jot_networks', 'addon/statusnet/statusnet.php', 'statusnet_jot_nets');
71 Hook::register('cron', 'addon/statusnet/statusnet.php', 'statusnet_cron');
72 Hook::register('prepare_body', 'addon/statusnet/statusnet.php', 'statusnet_prepare_body');
73 Hook::register('check_item_notification', 'addon/statusnet/statusnet.php', 'statusnet_check_item_notification');
74 Logger::log("installed GNU Social");
77 function statusnet_check_item_notification(App $a, &$notification_data)
79 if (DI::pConfig()->get($notification_data["uid"], 'statusnet', 'post')) {
80 $notification_data["profiles"][] = DI::pConfig()->get($notification_data["uid"], 'statusnet', 'own_url');
84 function statusnet_jot_nets(App $a, array &$jotnets_fields)
90 if (DI::pConfig()->get(local_user(), 'statusnet', 'post')) {
95 DI::l10n()->t('Post to GNU Social'),
96 DI::pConfig()->get(local_user(), 'statusnet', 'post_by_default')
102 function statusnet_settings_post(App $a, $post)
107 // don't check GNU Social settings if GNU Social submit button is not clicked
108 if (empty($_POST['statusnet-submit'])) {
112 if (isset($_POST['statusnet-disconnect'])) {
114 * if the GNU Social-disconnect checkbox is set, clear the GNU Social configuration
116 DI::pConfig()->delete(local_user(), 'statusnet', 'consumerkey');
117 DI::pConfig()->delete(local_user(), 'statusnet', 'consumersecret');
118 DI::pConfig()->delete(local_user(), 'statusnet', 'post');
119 DI::pConfig()->delete(local_user(), 'statusnet', 'post_by_default');
120 DI::pConfig()->delete(local_user(), 'statusnet', 'oauthtoken');
121 DI::pConfig()->delete(local_user(), 'statusnet', 'oauthsecret');
122 DI::pConfig()->delete(local_user(), 'statusnet', 'baseapi');
123 DI::pConfig()->delete(local_user(), 'statusnet', 'lastid');
124 DI::pConfig()->delete(local_user(), 'statusnet', 'mirror_posts');
125 DI::pConfig()->delete(local_user(), 'statusnet', 'import');
126 DI::pConfig()->delete(local_user(), 'statusnet', 'create_user');
127 DI::pConfig()->delete(local_user(), 'statusnet', 'own_url');
129 if (isset($_POST['statusnet-preconf-apiurl'])) {
131 * If the user used one of the preconfigured GNU Social server credentials
132 * use them. All the data are available in the global config.
133 * Check the API Url never the less and blame the admin if it's not working ^^
135 $globalsn = DI::config()->get('statusnet', 'sites');
136 foreach ($globalsn as $asn) {
137 if ($asn['apiurl'] == $_POST['statusnet-preconf-apiurl']) {
138 $apibase = $asn['apiurl'];
139 $c = DI::httpRequest()->fetch($apibase . 'statusnet/version.xml');
140 if (strlen($c) > 0) {
141 DI::pConfig()->set(local_user(), 'statusnet', 'consumerkey', $asn['consumerkey']);
142 DI::pConfig()->set(local_user(), 'statusnet', 'consumersecret', $asn['consumersecret']);
143 DI::pConfig()->set(local_user(), 'statusnet', 'baseapi', $asn['apiurl']);
144 //DI::pConfig()->set(local_user(), 'statusnet', 'application_name', $asn['applicationname'] );
146 notice(DI::l10n()->t('Please contact your site administrator.<br />The provided API URL is not valid.') . EOL . $asn['apiurl'] . EOL);
150 DI::baseUrl()->redirect('settings/connectors');
152 if (isset($_POST['statusnet-consumersecret'])) {
153 // check if we can reach the API of the GNU Social server
154 // we'll check the API Version for that, if we don't get one we'll try to fix the path but will
155 // resign quickly after this one try to fix the path ;-)
156 $apibase = $_POST['statusnet-baseapi'];
157 $c = DI::httpRequest()->fetch($apibase . 'statusnet/version.xml');
158 if (strlen($c) > 0) {
159 // ok the API path is correct, let's save the settings
160 DI::pConfig()->set(local_user(), 'statusnet', 'consumerkey', $_POST['statusnet-consumerkey']);
161 DI::pConfig()->set(local_user(), 'statusnet', 'consumersecret', $_POST['statusnet-consumersecret']);
162 DI::pConfig()->set(local_user(), 'statusnet', 'baseapi', $apibase);
163 //DI::pConfig()->set(local_user(), 'statusnet', 'application_name', $_POST['statusnet-applicationname'] );
165 // the API path is not correct, maybe missing trailing / ?
166 $apibase = $apibase . '/';
167 $c = DI::httpRequest()->fetch($apibase . 'statusnet/version.xml');
168 if (strlen($c) > 0) {
169 // ok the API path is now correct, let's save the settings
170 DI::pConfig()->set(local_user(), 'statusnet', 'consumerkey', $_POST['statusnet-consumerkey']);
171 DI::pConfig()->set(local_user(), 'statusnet', 'consumersecret', $_POST['statusnet-consumersecret']);
172 DI::pConfig()->set(local_user(), 'statusnet', 'baseapi', $apibase);
174 // still not the correct API base, let's do noting
175 notice(DI::l10n()->t('We could not contact the GNU Social API with the Path you entered.') . EOL);
178 DI::baseUrl()->redirect('settings/connectors');
180 if (isset($_POST['statusnet-pin'])) {
181 // if the user supplied us with a PIN from GNU Social, let the magic of OAuth happen
182 $api = DI::pConfig()->get(local_user(), 'statusnet', 'baseapi');
183 $ckey = DI::pConfig()->get(local_user(), 'statusnet', 'consumerkey');
184 $csecret = DI::pConfig()->get(local_user(), 'statusnet', 'consumersecret');
185 // the token and secret for which the PIN was generated were hidden in the settings
186 // form as token and token2, we need a new connection to GNU Social using these token
187 // and secret to request a Access Token with the PIN
188 $connection = new StatusNetOAuth($api, $ckey, $csecret, $_POST['statusnet-token'], $_POST['statusnet-token2']);
189 $token = $connection->getAccessToken($_POST['statusnet-pin']);
190 // ok, now that we have the Access Token, save them in the user config
191 DI::pConfig()->set(local_user(), 'statusnet', 'oauthtoken', $token['oauth_token']);
192 DI::pConfig()->set(local_user(), 'statusnet', 'oauthsecret', $token['oauth_token_secret']);
193 DI::pConfig()->set(local_user(), 'statusnet', 'post', 1);
194 DI::pConfig()->set(local_user(), 'statusnet', 'post_taglinks', 1);
195 // reload the Addon Settings page, if we don't do it see Bug #42
196 DI::baseUrl()->redirect('settings/connectors');
198 // if no PIN is supplied in the POST variables, the user has changed the setting
199 // to post a dent for every new __public__ posting to the wall
200 DI::pConfig()->set(local_user(), 'statusnet', 'post', intval($_POST['statusnet-enable']));
201 DI::pConfig()->set(local_user(), 'statusnet', 'post_by_default', intval($_POST['statusnet-default']));
202 DI::pConfig()->set(local_user(), 'statusnet', 'mirror_posts', intval($_POST['statusnet-mirror']));
203 DI::pConfig()->set(local_user(), 'statusnet', 'import', intval($_POST['statusnet-import']));
204 DI::pConfig()->set(local_user(), 'statusnet', 'create_user', intval($_POST['statusnet-create_user']));
206 if (!intval($_POST['statusnet-mirror']))
207 DI::pConfig()->delete(local_user(), 'statusnet', 'lastid');
214 function statusnet_settings(App $a, &$s)
219 DI::page()['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . DI::baseUrl()->get() . '/addon/statusnet/statusnet.css' . '" media="all" />' . "\r\n";
221 * 1) Check that we have a base api url and a consumer key & secret
222 * 2) If no OAuthtoken & stuff is present, generate button to get some
223 * allow the user to cancel the connection process at this step
224 * 3) Checkbox for "Send public notices (respect size limitation)
226 $api = DI::pConfig()->get(local_user(), 'statusnet', 'baseapi');
227 $ckey = DI::pConfig()->get(local_user(), 'statusnet', 'consumerkey');
228 $csecret = DI::pConfig()->get(local_user(), 'statusnet', 'consumersecret');
229 $otoken = DI::pConfig()->get(local_user(), 'statusnet', 'oauthtoken');
230 $osecret = DI::pConfig()->get(local_user(), 'statusnet', 'oauthsecret');
231 $enabled = DI::pConfig()->get(local_user(), 'statusnet', 'post');
232 $checked = (($enabled) ? ' checked="checked" ' : '');
233 $defenabled = DI::pConfig()->get(local_user(), 'statusnet', 'post_by_default');
234 $defchecked = (($defenabled) ? ' checked="checked" ' : '');
235 $mirrorenabled = DI::pConfig()->get(local_user(), 'statusnet', 'mirror_posts');
236 $mirrorchecked = (($mirrorenabled) ? ' checked="checked" ' : '');
237 $import = DI::pConfig()->get(local_user(), 'statusnet', 'import');
238 $importselected = ["", "", ""];
239 $importselected[$import] = ' selected="selected"';
240 //$importenabled = DI::pConfig()->get(local_user(),'statusnet','import');
241 //$importchecked = (($importenabled) ? ' checked="checked" ' : '');
242 $create_userenabled = DI::pConfig()->get(local_user(), 'statusnet', 'create_user');
243 $create_userchecked = (($create_userenabled) ? ' checked="checked" ' : '');
245 $css = (($enabled) ? '' : '-disabled');
247 $s .= '<span id="settings_statusnet_inflated" class="settings-block fakelink" style="display: block;" onclick="openClose(\'settings_statusnet_expanded\'); openClose(\'settings_statusnet_inflated\');">';
248 $s .= '<img class="connector' . $css . '" src="images/gnusocial.png" /><h3 class="connector">' . DI::l10n()->t('GNU Social Import/Export/Mirror') . '</h3>';
250 $s .= '<div id="settings_statusnet_expanded" class="settings-block" style="display: none;">';
251 $s .= '<span class="fakelink" onclick="openClose(\'settings_statusnet_expanded\'); openClose(\'settings_statusnet_inflated\');">';
252 $s .= '<img class="connector' . $css . '" src="images/gnusocial.png" /><h3 class="connector">' . DI::l10n()->t('GNU Social Import/Export/Mirror') . '</h3>';
255 if ((!$ckey) && (!$csecret)) {
259 $globalsn = DI::config()->get('statusnet', 'sites');
261 * lets check if we have one or more globally configured GNU Social
262 * server OAuth credentials in the configuration. If so offer them
263 * with a little explanation to the user as choice - otherwise
264 * ignore this option entirely.
266 if (!$globalsn == null) {
267 $s .= '<h4>' . DI::l10n()->t('Globally Available GNU Social OAuthKeys') . '</h4>';
268 $s .= '<p>' . DI::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>';
269 $s .= '<div id="statusnet-preconf-wrapper">';
270 foreach ($globalsn as $asn) {
271 $s .= '<input type="radio" name="statusnet-preconf-apiurl" value="' . $asn['apiurl'] . '">' . $asn['sitename'] . '<br />';
273 $s .= '<p></p><div class="clear"></div></div>';
274 $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="statusnet-submit" class="settings-submit" value="' . DI::l10n()->t('Save Settings') . '" /></div>';
276 $s .= '<h4>' . DI::l10n()->t('Provide your own OAuth Credentials') . '</h4>';
277 $s .= '<p>' . DI::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>';
278 $s .= '<div id="statusnet-consumer-wrapper">';
279 $s .= '<label id="statusnet-consumerkey-label" for="statusnet-consumerkey">' . DI::l10n()->t('OAuth Consumer Key') . '</label>';
280 $s .= '<input id="statusnet-consumerkey" type="text" name="statusnet-consumerkey" size="35" /><br />';
281 $s .= '<div class="clear"></div>';
282 $s .= '<label id="statusnet-consumersecret-label" for="statusnet-consumersecret">' . DI::l10n()->t('OAuth Consumer Secret') . '</label>';
283 $s .= '<input id="statusnet-consumersecret" type="text" name="statusnet-consumersecret" size="35" /><br />';
284 $s .= '<div class="clear"></div>';
285 $s .= '<label id="statusnet-baseapi-label" for="statusnet-baseapi">' . DI::l10n()->t("Base API Path \x28remember the trailing /\x29") . '</label>';
286 $s .= '<input id="statusnet-baseapi" type="text" name="statusnet-baseapi" size="35" /><br />';
287 $s .= '<div class="clear"></div>';
288 //$s .= '<label id="statusnet-applicationname-label" for="statusnet-applicationname">'.DI::l10n()->t('GNU Socialapplication name').'</label>';
289 //$s .= '<input id="statusnet-applicationname" type="text" name="statusnet-applicationname" size="35" /><br />';
290 $s .= '<p></p><div class="clear"></div>';
291 $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="statusnet-submit" class="settings-submit" value="' . DI::l10n()->t('Save Settings') . '" /></div>';
295 * ok we have a consumer key pair now look into the OAuth stuff
297 if ((!$otoken) && (!$osecret)) {
299 * the user has not yet connected the account to GNU Social
300 * get a temporary OAuth key/secret pair and display a button with
301 * which the user can request a PIN to connect the account to a
302 * account at GNU Social
304 $connection = new StatusNetOAuth($api, $ckey, $csecret);
305 $request_token = $connection->getRequestToken('oob');
306 $token = $request_token['oauth_token'];
308 * make some nice form
310 $s .= '<p>' . DI::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>';
311 $s .= '<a href="' . $connection->getAuthorizeURL($token, False) . '" target="_statusnet"><img src="addon/statusnet/signinwithstatusnet.png" alt="' . DI::l10n()->t('Log in with GNU Social') . '"></a>';
312 $s .= '<div id="statusnet-pin-wrapper">';
313 $s .= '<label id="statusnet-pin-label" for="statusnet-pin">' . DI::l10n()->t('Copy the security code from GNU Social here') . '</label>';
314 $s .= '<input id="statusnet-pin" type="text" name="statusnet-pin" />';
315 $s .= '<input id="statusnet-token" type="hidden" name="statusnet-token" value="' . $token . '" />';
316 $s .= '<input id="statusnet-token2" type="hidden" name="statusnet-token2" value="' . $request_token['oauth_token_secret'] . '" />';
317 $s .= '</div><div class="clear"></div>';
318 $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="statusnet-submit" class="settings-submit" value="' . DI::l10n()->t('Save Settings') . '" /></div>';
319 $s .= '<h4>' . DI::l10n()->t('Cancel Connection Process') . '</h4>';
320 $s .= '<div id="statusnet-cancel-wrapper">';
321 $s .= '<p>' . DI::l10n()->t('Current GNU Social API is') . ': ' . $api . '</p>';
322 $s .= '<label id="statusnet-cancel-label" for="statusnet-cancel">' . DI::l10n()->t('Cancel GNU Social Connection') . '</label>';
323 $s .= '<input id="statusnet-cancel" type="checkbox" name="statusnet-disconnect" value="1" />';
324 $s .= '</div><div class="clear"></div>';
325 $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="statusnet-submit" class="settings-submit" value="' . DI::l10n()->t('Save Settings') . '" /></div>';
328 * we have an OAuth key / secret pair for the user
329 * so let's give a chance to disable the postings to GNU Social
331 $connection = new StatusNetOAuth($api, $ckey, $csecret, $otoken, $osecret);
332 $details = $connection->get('account/verify_credentials');
333 if (!empty($details)) {
334 $s .= '<div id="statusnet-info" ><img id="statusnet-avatar" src="' . $details->profile_image_url . '" /><p id="statusnet-info-block">' . DI::l10n()->t('Currently connected to: ') . '<a href="' . $details->statusnet_profile_url . '" target="_statusnet">' . $details->screen_name . '</a><br /><em>' . $details->description . '</em></p></div>';
336 $s .= '<p>' . DI::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>';
337 if ($a->user['hidewall']) {
338 $s .= '<p>' . DI::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>';
340 $s .= '<div id="statusnet-enable-wrapper">';
341 $s .= '<label id="statusnet-enable-label" for="statusnet-checkbox">' . DI::l10n()->t('Allow posting to GNU Social') . '</label>';
342 $s .= '<input id="statusnet-checkbox" type="checkbox" name="statusnet-enable" value="1" ' . $checked . '/>';
343 $s .= '<div class="clear"></div>';
344 $s .= '<label id="statusnet-default-label" for="statusnet-default">' . DI::l10n()->t('Send public postings to GNU Social by default') . '</label>';
345 $s .= '<input id="statusnet-default" type="checkbox" name="statusnet-default" value="1" ' . $defchecked . '/>';
346 $s .= '<div class="clear"></div>';
348 $s .= '<label id="statusnet-mirror-label" for="statusnet-mirror">' . DI::l10n()->t('Mirror all posts from GNU Social that are no replies or repeated messages') . '</label>';
349 $s .= '<input id="statusnet-mirror" type="checkbox" name="statusnet-mirror" value="1" ' . $mirrorchecked . '/>';
351 $s .= '<div class="clear"></div>';
354 $s .= '<label id="statusnet-import-label" for="statusnet-import">' . DI::l10n()->t('Import the remote timeline') . '</label>';
355 //$s .= '<input id="statusnet-import" type="checkbox" name="statusnet-import" value="1" '. $importchecked . '/>';
357 $s .= '<select name="statusnet-import" id="statusnet-import" />';
358 $s .= '<option value="0" ' . $importselected[0] . '>' . DI::l10n()->t("Disabled") . '</option>';
359 $s .= '<option value="1" ' . $importselected[1] . '>' . DI::l10n()->t("Full Timeline") . '</option>';
360 $s .= '<option value="2" ' . $importselected[2] . '>' . DI::l10n()->t("Only Mentions") . '</option>';
362 $s .= '<div class="clear"></div>';
364 $s .= '<label id="statusnet-create_user-label" for="statusnet-create_user">'.DI::l10n()->t('Automatically create contacts').'</label>';
365 $s .= '<input id="statusnet-create_user" type="checkbox" name="statusnet-create_user" value="1" '. $create_userchecked . '/>';
366 $s .= '<div class="clear"></div>';
368 $s .= '<div id="statusnet-disconnect-wrapper">';
369 $s .= '<label id="statusnet-disconnect-label" for="statusnet-disconnect">' . DI::l10n()->t('Clear OAuth configuration') . '</label>';
370 $s .= '<input id="statusnet-disconnect" type="checkbox" name="statusnet-disconnect" value="1" />';
371 $s .= '</div><div class="clear"></div>';
372 $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="statusnet-submit" class="settings-submit" value="' . DI::l10n()->t('Save Settings') . '" /></div>';
375 $s .= '</div><div class="clear"></div>';
378 function statusnet_hook_fork(App $a, array &$b)
380 if ($b['name'] != 'notifier_normal') {
386 // Deleting and editing is not supported by the addon
387 if ($post['deleted'] || ($post['created'] !== $post['edited'])) {
388 $b['execute'] = false;
392 // if post comes from GNU Social don't send it back
393 if ($post['extid'] == Protocol::STATUSNET) {
394 $b['execute'] = false;
398 if ($post['app'] == 'StatusNet') {
399 $b['execute'] = false;
403 if (DI::pConfig()->get($post['uid'], 'statusnet', 'import')) {
404 // Don't fork if it isn't a reply to a GNU Social post
405 if (($post['parent'] != $post['id']) && !Post::exists(['id' => $post['parent'], 'network' => Protocol::STATUSNET])) {
406 Logger::log('No GNU Social parent found for item ' . $post['id']);
407 $b['execute'] = false;
411 // Comments are never exported when we don't import the GNU Social timeline
412 if (!strstr($post['postopts'], 'statusnet') || ($post['parent'] != $post['id']) || $post['private']) {
413 $b['execute'] = false;
419 function statusnet_post_local(App $a, &$b)
425 if (!local_user() || (local_user() != $b['uid'])) {
429 $statusnet_post = DI::pConfig()->get(local_user(), 'statusnet', 'post');
430 $statusnet_enable = (($statusnet_post && !empty($_REQUEST['statusnet_enable'])) ? intval($_REQUEST['statusnet_enable']) : 0);
432 // if API is used, default to the chosen settings
433 if ($b['api_source'] && intval(DI::pConfig()->get(local_user(), 'statusnet', 'post_by_default'))) {
434 $statusnet_enable = 1;
437 if (!$statusnet_enable) {
441 if (strlen($b['postopts'])) {
442 $b['postopts'] .= ',';
445 $b['postopts'] .= 'statusnet';
448 function statusnet_action(App $a, $uid, $pid, $action)
450 $api = DI::pConfig()->get($uid, 'statusnet', 'baseapi');
451 $ckey = DI::pConfig()->get($uid, 'statusnet', 'consumerkey');
452 $csecret = DI::pConfig()->get($uid, 'statusnet', 'consumersecret');
453 $otoken = DI::pConfig()->get($uid, 'statusnet', 'oauthtoken');
454 $osecret = DI::pConfig()->get($uid, 'statusnet', 'oauthsecret');
456 $connection = new StatusNetOAuth($api, $ckey, $csecret, $otoken, $osecret);
458 Logger::log("statusnet_action '" . $action . "' ID: " . $pid, Logger::DATA);
462 $result = $connection->post("statuses/destroy/" . $pid);
465 $result = $connection->post("favorites/create/" . $pid);
468 $result = $connection->post("favorites/destroy/" . $pid);
471 Logger::log("statusnet_action '" . $action . "' send, result: " . print_r($result, true), Logger::DEBUG);
474 function statusnet_post_hook(App $a, &$b)
479 if (!DI::pConfig()->get($b["uid"], 'statusnet', 'import')) {
480 if ($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited']))
484 $b['body'] = Post\Media::addAttachmentsToBody($b['uri-id'], $b['body']);
486 $api = DI::pConfig()->get($b["uid"], 'statusnet', 'baseapi');
487 $hostname = preg_replace("=https?://([\w\.]*)/.*=ism", "$1", $api);
489 if ($b['parent'] != $b['id']) {
490 Logger::log("statusnet_post_hook: parameter " . print_r($b, true), Logger::DATA);
492 // Looking if its a reply to a GNU Social post
493 $hostlength = strlen($hostname) + 2;
494 if ((substr($b["parent-uri"], 0, $hostlength) != $hostname . "::") && (substr($b["extid"], 0, $hostlength) != $hostname . "::") && (substr($b["thr-parent"], 0, $hostlength) != $hostname . "::")) {
495 Logger::log("statusnet_post_hook: no GNU Social post " . $b["parent"]);
499 $condition = ['uri' => $b["thr-parent"], 'uid' => $b["uid"]];
500 $orig_post = Post::selectFirst(['author-link', 'uri'], $condition);
501 if (!DBA::isResult($orig_post)) {
502 Logger::log("statusnet_post_hook: no parent found " . $b["thr-parent"]);
508 $nick = preg_replace("=https?://(.*)/(.*)=ism", "$2", $orig_post["author-link"]);
510 $nickname = "@[url=" . $orig_post["author-link"] . "]" . $nick . "[/url]";
511 $nicknameplain = "@" . $nick;
513 Logger::log("statusnet_post_hook: comparing " . $nickname . " and " . $nicknameplain . " with " . $b["body"], Logger::DEBUG);
514 if ((strpos($b["body"], $nickname) === false) && (strpos($b["body"], $nicknameplain) === false)) {
515 $b["body"] = $nickname . " " . $b["body"];
518 Logger::log("statusnet_post_hook: parent found " . print_r($orig_post, true), Logger::DEBUG);
522 if ($b['private'] || !strstr($b['postopts'], 'statusnet')) {
526 // Dont't post if the post doesn't belong to us.
527 // This is a check for forum postings
528 $self = DBA::selectFirst('contact', ['id'], ['uid' => $b['uid'], 'self' => true]);
529 if ($b['contact-id'] != $self['id']) {
534 if (($b['verb'] == Activity::POST) && $b['deleted']) {
535 statusnet_action($a, $b["uid"], substr($orig_post["uri"], $hostlength), "delete");
538 if ($b['verb'] == Activity::LIKE) {
539 Logger::log("statusnet_post_hook: parameter 2 " . substr($b["thr-parent"], $hostlength), Logger::DEBUG);
541 statusnet_action($a, $b["uid"], substr($b["thr-parent"], $hostlength), "unlike");
543 statusnet_action($a, $b["uid"], substr($b["thr-parent"], $hostlength), "like");
547 if ($b['deleted'] || ($b['created'] !== $b['edited'])) {
551 // if posts comes from GNU Social don't send it back
552 if ($b['extid'] == Protocol::STATUSNET) {
556 if ($b['app'] == "StatusNet") {
560 Logger::log('GNU Socialpost invoked');
562 DI::pConfig()->load($b['uid'], 'statusnet');
564 $api = DI::pConfig()->get($b['uid'], 'statusnet', 'baseapi');
565 $ckey = DI::pConfig()->get($b['uid'], 'statusnet', 'consumerkey');
566 $csecret = DI::pConfig()->get($b['uid'], 'statusnet', 'consumersecret');
567 $otoken = DI::pConfig()->get($b['uid'], 'statusnet', 'oauthtoken');
568 $osecret = DI::pConfig()->get($b['uid'], 'statusnet', 'oauthsecret');
570 if ($ckey && $csecret && $otoken && $osecret) {
571 // If it's a repeated message from GNU Social then do a native retweet and exit
572 if (statusnet_is_retweet($a, $b['uid'], $b['body'])) {
576 $dent = new StatusNetOAuth($api, $ckey, $csecret, $otoken, $osecret);
577 $max_char = $dent->get_maxlength(); // max. length for a dent
579 DI::pConfig()->set($b['uid'], 'statusnet', 'max_char', $max_char);
582 $msgarr = Plaintext::getPost($b, $max_char, true, 7);
583 $msg = $msgarr["text"];
585 if (($msg == "") && isset($msgarr["title"]))
586 $msg = Plaintext::shorten($msgarr["title"], $max_char - 50, $b['uid']);
590 if (isset($msgarr["url"]) && ($msgarr["type"] != "photo")) {
591 $msg .= " \n" . $msgarr["url"];
592 } elseif (isset($msgarr["image"]) && ($msgarr["type"] != "video")) {
593 $image = $msgarr["image"];
597 $img_str = DI::httpRequest()->fetch($image);
598 $tempfile = tempnam(get_temppath(), "cache");
599 file_put_contents($tempfile, $img_str);
600 $postdata = ["status" => $msg, "media[]" => $tempfile];
602 $postdata = ["status" => $msg];
605 // and now send it :-)
608 $postdata["in_reply_to_status_id"] = substr($orig_post["uri"], $hostlength);
609 Logger::log('statusnet_post send reply ' . print_r($postdata, true), Logger::DEBUG);
612 // New code that is able to post pictures
613 require_once __DIR__ . DIRECTORY_SEPARATOR . 'library' . DIRECTORY_SEPARATOR . 'codebirdsn.php';
614 $cb = CodebirdSN::getInstance();
615 $cb->setAPIEndpoint($api);
616 $cb->setConsumerKey($ckey, $csecret);
617 $cb->setToken($otoken, $osecret);
618 $result = $cb->statuses_update($postdata);
619 //$result = $dent->post('statuses/update', $postdata);
620 Logger::log('statusnet_post send, result: ' . print_r($result, true) .
621 "\nmessage: " . $msg . "\nOriginal post: " . print_r($b, true) . "\nPost Data: " . print_r($postdata, true), Logger::DEBUG);
623 if (!empty($result->source)) {
624 DI::pConfig()->set($b["uid"], "statusnet", "application_name", strip_tags($result->source));
627 if (!empty($result->error)) {
628 Logger::log('Send to GNU Social failed: "' . $result->error . '"');
629 } elseif ($iscomment) {
630 Logger::log('statusnet_post: Update extid ' . $result->id . " for post id " . $b['id']);
631 Item::update(['extid' => $hostname . "::" . $result->id, 'body' => $result->text], ['id' => $b['id']]);
634 if ($tempfile != "") {
640 function statusnet_addon_admin_post(App $a)
644 foreach ($_POST['sitename'] as $id => $sitename) {
645 $sitename = trim($sitename);
646 $apiurl = trim($_POST['apiurl'][$id]);
647 if (!(substr($apiurl, -1) == '/')) {
648 $apiurl = $apiurl . '/';
650 $secret = trim($_POST['secret'][$id]);
651 $key = trim($_POST['key'][$id]);
652 //$applicationname = (!empty($_POST['applicationname']) ? Strings::escapeTags(trim($_POST['applicationname'][$id])):'');
653 if ($sitename != "" &&
657 empty($_POST['delete'][$id])) {
660 'sitename' => $sitename,
662 'consumersecret' => $secret,
663 'consumerkey' => $key,
664 //'applicationname' => $applicationname
669 $sites = DI::config()->set('statusnet', 'sites', $sites);
672 function statusnet_addon_admin(App $a, &$o)
674 $sites = DI::config()->get('statusnet', 'sites');
676 if (is_array($sites)) {
677 foreach ($sites as $id => $s) {
679 'sitename' => ["sitename[$id]", "Site name", $s['sitename'], ""],
680 'apiurl' => ["apiurl[$id]", "Api url", $s['apiurl'], DI::l10n()->t("Base API Path \x28remember the trailing /\x29")],
681 'secret' => ["secret[$id]", "Secret", $s['consumersecret'], ""],
682 'key' => ["key[$id]", "Key", $s['consumerkey'], ""],
683 //'applicationname' => Array("applicationname[$id]", "Application name", $s['applicationname'], ""),
684 'delete' => ["delete[$id]", "Delete", False, "Check to delete this preset"],
688 /* empty form to add new site */
689 $id = count($sitesform);
691 'sitename' => ["sitename[$id]", DI::l10n()->t("Site name"), "", ""],
692 'apiurl' => ["apiurl[$id]", "Api url", "", DI::l10n()->t("Base API Path \x28remember the trailing /\x29")],
693 'secret' => ["secret[$id]", DI::l10n()->t("Consumer Secret"), "", ""],
694 'key' => ["key[$id]", DI::l10n()->t("Consumer Key"), "", ""],
695 //'applicationname' => Array("applicationname[$id]", DI::l10n()->t("Application name"), "", ""),
698 $t = Renderer::getMarkupTemplate("admin.tpl", "addon/statusnet/");
699 $o = Renderer::replaceMacros($t, [
700 '$submit' => DI::l10n()->t('Save Settings'),
701 '$sites' => $sitesform,
705 function statusnet_prepare_body(App $a, &$b)
707 if ($b["item"]["network"] != Protocol::STATUSNET) {
712 $max_char = DI::pConfig()->get(local_user(), 'statusnet', 'max_char');
713 if (intval($max_char) == 0) {
718 $item["plink"] = DI::baseUrl()->get() . "/display/" . $item["guid"];
720 $condition = ['uri' => $item["thr-parent"], 'uid' => local_user()];
721 $orig_post = Post::selectFirst(['author-link', 'uri'], $condition);
722 if (DBA::isResult($orig_post)) {
723 $nick = preg_replace("=https?://(.*)/(.*)=ism", "$2", $orig_post["author-link"]);
725 $nickname = "@[url=" . $orig_post["author-link"] . "]" . $nick . "[/url]";
726 $nicknameplain = "@" . $nick;
728 if ((strpos($item["body"], $nickname) === false) && (strpos($item["body"], $nicknameplain) === false)) {
729 $item["body"] = $nickname . " " . $item["body"];
733 $msgarr = Plaintext::getPost($item, $max_char, true, 7);
734 $msg = $msgarr["text"];
736 if (isset($msgarr["url"]) && ($msgarr["type"] != "photo")) {
737 $msg .= " " . $msgarr["url"];
740 if (isset($msgarr["image"])) {
741 $msg .= " " . $msgarr["image"];
744 $b['html'] = nl2br(htmlspecialchars($msg));
748 function statusnet_cron(App $a, $b)
750 $last = DI::config()->get('statusnet', 'last_poll');
752 $poll_interval = intval(DI::config()->get('statusnet', 'poll_interval'));
753 if (!$poll_interval) {
754 $poll_interval = STATUSNET_DEFAULT_POLL_INTERVAL;
758 $next = $last + ($poll_interval * 60);
759 if ($next > time()) {
760 Logger::log('statusnet: poll intervall not reached');
764 Logger::log('statusnet: cron_start');
766 $r = q("SELECT * FROM `pconfig` WHERE `cat` = 'statusnet' AND `k` = 'mirror_posts' AND `v` = '1' ORDER BY RAND() ");
767 if (DBA::isResult($r)) {
768 foreach ($r as $rr) {
769 Logger::log('statusnet: fetching for user ' . $rr['uid']);
770 statusnet_fetchtimeline($a, $rr['uid']);
774 $abandon_days = intval(DI::config()->get('system', 'account_abandon_days'));
775 if ($abandon_days < 1) {
779 $abandon_limit = date(DateTimeFormat::MYSQL, time() - $abandon_days * 86400);
781 $r = q("SELECT * FROM `pconfig` WHERE `cat` = 'statusnet' AND `k` = 'import' AND `v` ORDER BY RAND()");
782 if (DBA::isResult($r)) {
783 foreach ($r as $rr) {
784 if ($abandon_days != 0) {
785 $user = q("SELECT `login_date` FROM `user` WHERE uid=%d AND `login_date` >= '%s'", $rr['uid'], $abandon_limit);
786 if (!DBA::isResult($user)) {
787 Logger::log('abandoned account: timeline from user ' . $rr['uid'] . ' will not be imported');
792 Logger::log('statusnet: importing timeline from user ' . $rr['uid']);
793 statusnet_fetchhometimeline($a, $rr["uid"], $rr["v"]);
797 Logger::log('statusnet: cron_end');
799 DI::config()->set('statusnet', 'last_poll', time());
802 function statusnet_fetchtimeline(App $a, $uid)
804 $ckey = DI::pConfig()->get($uid, 'statusnet', 'consumerkey');
805 $csecret = DI::pConfig()->get($uid, 'statusnet', 'consumersecret');
806 $api = DI::pConfig()->get($uid, 'statusnet', 'baseapi');
807 $otoken = DI::pConfig()->get($uid, 'statusnet', 'oauthtoken');
808 $osecret = DI::pConfig()->get($uid, 'statusnet', 'oauthsecret');
809 $lastid = DI::pConfig()->get($uid, 'statusnet', 'lastid');
811 require_once 'mod/item.php';
812 // get the application name for the SN app
813 // 1st try personal config, then system config and fallback to the
814 // hostname of the node if neither one is set.
815 $application_name = DI::pConfig()->get($uid, 'statusnet', 'application_name');
816 if ($application_name == "") {
817 $application_name = DI::config()->get('statusnet', 'application_name');
819 if ($application_name == "") {
820 $application_name = DI::baseUrl()->getHostname();
823 $connection = new StatusNetOAuth($api, $ckey, $csecret, $otoken, $osecret);
825 $parameters = ["exclude_replies" => true, "trim_user" => true, "contributor_details" => false, "include_rts" => false];
827 $first_time = ($lastid == "");
830 $parameters["since_id"] = $lastid;
833 $items = $connection->get('statuses/user_timeline', $parameters);
835 if (!is_array($items)) {
839 $posts = array_reverse($items);
842 foreach ($posts as $post) {
843 if ($post->id > $lastid)
850 if ($post->source == "activity") {
854 if (!empty($post->retweeted_status)) {
858 if ($post->in_reply_to_status_id != "") {
862 if (!stristr($post->source, $application_name)) {
863 $_SESSION["authenticated"] = true;
864 $_SESSION["uid"] = $uid;
867 $_REQUEST["api_source"] = true;
868 $_REQUEST["profile_uid"] = $uid;
869 //$_REQUEST["source"] = "StatusNet";
870 $_REQUEST["source"] = $post->source;
871 $_REQUEST["extid"] = Protocol::STATUSNET;
873 if (isset($post->id)) {
874 $_REQUEST['message_id'] = Item::newURI($uid, Protocol::STATUSNET . ":" . $post->id);
877 //$_REQUEST["date"] = $post->created_at;
879 $_REQUEST["title"] = "";
881 $_REQUEST["body"] = $post->text;
882 if (is_string($post->place->name)) {
883 $_REQUEST["location"] = $post->place->name;
886 if (is_string($post->place->full_name)) {
887 $_REQUEST["location"] = $post->place->full_name;
890 if (is_array($post->geo->coordinates)) {
891 $_REQUEST["coord"] = $post->geo->coordinates[0] . " " . $post->geo->coordinates[1];
894 if (is_array($post->coordinates->coordinates)) {
895 $_REQUEST["coord"] = $post->coordinates->coordinates[1] . " " . $post->coordinates->coordinates[0];
898 //print_r($_REQUEST);
899 if ($_REQUEST["body"] != "") {
900 Logger::log('statusnet: posting for user ' . $uid);
907 DI::pConfig()->set($uid, 'statusnet', 'lastid', $lastid);
910 function statusnet_address($contact)
912 $hostname = Strings::normaliseLink($contact->statusnet_profile_url);
913 $nickname = $contact->screen_name;
915 $hostname = preg_replace("=https?://([\w\.]*)/.*=ism", "$1", $contact->statusnet_profile_url);
917 $address = $contact->screen_name . "@" . $hostname;
922 function statusnet_fetch_contact($uid, $contact, $create_user)
924 if (empty($contact->statusnet_profile_url)) {
928 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `alias` = '%s' AND `network` = '%s'LIMIT 1", intval($uid), DBA::escape(Strings::normaliseLink($contact->statusnet_profile_url)), DBA::escape(Protocol::STATUSNET));
930 if (!DBA::isResult($r) && !$create_user) {
934 if (DBA::isResult($r) && ($r[0]["readonly"] || $r[0]["blocked"])) {
935 Logger::log("statusnet_fetch_contact: Contact '" . $r[0]["nick"] . "' is blocked or readonly.", Logger::DEBUG);
939 if (!DBA::isResult($r)) {
940 // create contact record
941 q("INSERT INTO `contact` ( `uid`, `created`, `url`, `nurl`, `addr`, `alias`, `notify`, `poll`,
942 `name`, `nick`, `photo`, `network`, `rel`, `priority`,
943 `location`, `about`, `writable`, `blocked`, `readonly`, `pending` )
944 VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, '%s', '%s', %d, 0, 0, 0 ) ",
946 DBA::escape(DateTimeFormat::utcNow()),
947 DBA::escape($contact->statusnet_profile_url),
948 DBA::escape(Strings::normaliseLink($contact->statusnet_profile_url)),
949 DBA::escape(statusnet_address($contact)),
950 DBA::escape(Strings::normaliseLink($contact->statusnet_profile_url)),
953 DBA::escape($contact->name),
954 DBA::escape($contact->screen_name),
955 DBA::escape($contact->profile_image_url),
956 DBA::escape(Protocol::STATUSNET),
957 intval(Contact::FRIEND),
959 DBA::escape($contact->location),
960 DBA::escape($contact->description),
964 $r = q("SELECT * FROM `contact` WHERE `alias` = '%s' AND `uid` = %d AND `network` = '%s' LIMIT 1",
965 DBA::escape($contact->statusnet_profile_url),
967 DBA::escape(Protocol::STATUSNET));
969 if (!DBA::isResult($r)) {
973 $contact_id = $r[0]['id'];
975 Group::addMember(User::getDefaultGroup($uid), $contact_id);
977 $photos = Photo::importProfilePhoto($contact->profile_image_url, $uid, $contact_id);
979 q("UPDATE `contact` SET `photo` = '%s',
984 DBA::escape($photos[0]),
985 DBA::escape($photos[1]),
986 DBA::escape($photos[2]),
987 DBA::escape(DateTimeFormat::utcNow()),
991 // update profile photos once every two weeks as we have no notification of when they change.
992 //$update_photo = (($r[0]['avatar-date'] < DateTimeFormat::convert('now -2 days', '', '', )) ? true : false);
993 $update_photo = ($r[0]['avatar-date'] < DateTimeFormat::utc('now -12 hours'));
995 // check that we have all the photos, this has been known to fail on occasion
996 if ((!$r[0]['photo']) || (!$r[0]['thumb']) || (!$r[0]['micro']) || ($update_photo)) {
997 Logger::log("statusnet_fetch_contact: Updating contact " . $contact->screen_name, Logger::DEBUG);
999 $photos = Photo::importProfilePhoto($contact->profile_image_url, $uid, $r[0]['id']);
1001 q("UPDATE `contact` SET `photo` = '%s',
1006 `avatar-date` = '%s',
1015 DBA::escape($photos[0]),
1016 DBA::escape($photos[1]),
1017 DBA::escape($photos[2]),
1018 DBA::escape(DateTimeFormat::utcNow()),
1019 DBA::escape(DateTimeFormat::utcNow()),
1020 DBA::escape(DateTimeFormat::utcNow()),
1021 DBA::escape($contact->statusnet_profile_url),
1022 DBA::escape(Strings::normaliseLink($contact->statusnet_profile_url)),
1023 DBA::escape(statusnet_address($contact)),
1024 DBA::escape($contact->name),
1025 DBA::escape($contact->screen_name),
1026 DBA::escape($contact->location),
1027 DBA::escape($contact->description),
1036 function statusnet_fetchuser(App $a, $uid, $screen_name = "", $user_id = "")
1038 $ckey = DI::pConfig()->get($uid, 'statusnet', 'consumerkey');
1039 $csecret = DI::pConfig()->get($uid, 'statusnet', 'consumersecret');
1040 $api = DI::pConfig()->get($uid, 'statusnet', 'baseapi');
1041 $otoken = DI::pConfig()->get($uid, 'statusnet', 'oauthtoken');
1042 $osecret = DI::pConfig()->get($uid, 'statusnet', 'oauthsecret');
1044 require_once __DIR__ . DIRECTORY_SEPARATOR . 'library' . DIRECTORY_SEPARATOR . 'codebirdsn.php';
1046 $cb = CodebirdSN::getInstance();
1047 $cb->setConsumerKey($ckey, $csecret);
1048 $cb->setToken($otoken, $osecret);
1050 $r = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
1053 if (DBA::isResult($r)) {
1061 if ($screen_name != "") {
1062 $parameters["screen_name"] = $screen_name;
1065 if ($user_id != "") {
1066 $parameters["user_id"] = $user_id;
1069 // Fetching user data
1070 $user = $cb->users_show($parameters);
1072 if (!is_object($user)) {
1076 $contact_id = statusnet_fetch_contact($uid, $user, true);
1081 function statusnet_createpost(App $a, $uid, $post, $self, $create_user, $only_existing_contact)
1083 Logger::log("statusnet_createpost: start", Logger::DEBUG);
1085 $api = DI::pConfig()->get($uid, 'statusnet', 'baseapi');
1086 $hostname = preg_replace("=https?://([\w\.]*)/.*=ism", "$1", $api);
1089 $postarray['network'] = Protocol::STATUSNET;
1090 $postarray['uid'] = $uid;
1091 $postarray['wall'] = 0;
1093 if (!empty($post->retweeted_status)) {
1094 $content = $post->retweeted_status;
1095 statusnet_fetch_contact($uid, $content->user, false);
1100 $postarray['uri'] = $hostname . "::" . $content->id;
1102 if (Post::exists(['extid' => $postarray['uri'], 'uid' => $uid])) {
1108 if (!empty($content->in_reply_to_status_id)) {
1109 $thr_parent = $hostname . "::" . $content->in_reply_to_status_id;
1111 $item = Post::selectFirst(['uri'], ['uri' => $thr_parent, 'uid' => $uid]);
1112 if (!DBA::isResult($item)) {
1113 $item = Post::selectFirst(['uri'], ['extid' => $thr_parent, 'uid' => $uid]);
1116 if (DBA::isResult($item)) {
1117 $postarray['thr-parent'] = $item['uri'];
1118 $postarray['object-type'] = Activity\ObjectType::COMMENT;
1120 $postarray['object-type'] = Activity\ObjectType::NOTE;
1124 $own_url = DI::pConfig()->get($uid, 'statusnet', 'own_url');
1126 if ($content->user->id == $own_url) {
1127 $r = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
1130 if (DBA::isResult($r)) {
1131 $contactid = $r[0]["id"];
1133 $postarray['owner-name'] = $r[0]["name"];
1134 $postarray['owner-link'] = $r[0]["url"];
1135 $postarray['owner-avatar'] = $r[0]["photo"];
1140 // Don't create accounts of people who just comment something
1141 $create_user = false;
1143 $postarray['object-type'] = Activity\ObjectType::NOTE;
1146 if ($contactid == 0) {
1147 $contactid = statusnet_fetch_contact($uid, $post->user, $create_user);
1148 $postarray['owner-name'] = $post->user->name;
1149 $postarray['owner-link'] = $post->user->statusnet_profile_url;
1150 $postarray['owner-avatar'] = $post->user->profile_image_url;
1152 if (($contactid == 0) && !$only_existing_contact) {
1153 $contactid = $self['id'];
1154 } elseif ($contactid <= 0) {
1158 $postarray['contact-id'] = $contactid;
1160 $postarray['verb'] = Activity::POST;
1162 $postarray['author-name'] = $content->user->name;
1163 $postarray['author-link'] = $content->user->statusnet_profile_url;
1164 $postarray['author-avatar'] = $content->user->profile_image_url;
1166 // To-Do: Maybe unreliable? Can the api be entered without trailing "/"?
1167 $hostname = str_replace("/api/", "/notice/", DI::pConfig()->get($uid, 'statusnet', 'baseapi'));
1169 $postarray['plink'] = $hostname . $content->id;
1170 $postarray['app'] = strip_tags($content->source);
1172 if ($content->user->protected) {
1173 $postarray['private'] = 1;
1174 $postarray['allow_cid'] = '<' . $self['id'] . '>';
1177 $postarray['body'] = HTML::toBBCode($content->statusnet_html);
1179 $postarray['body'] = statusnet_convertmsg($a, $postarray['body']);
1181 $postarray['created'] = DateTimeFormat::utc($content->created_at);
1182 $postarray['edited'] = DateTimeFormat::utc($content->created_at);
1184 if (!empty($content->place->name)) {
1185 $postarray["location"] = $content->place->name;
1188 if (!empty($content->place->full_name)) {
1189 $postarray["location"] = $content->place->full_name;
1192 if (!empty($content->geo->coordinates)) {
1193 $postarray["coord"] = $content->geo->coordinates[0] . " " . $content->geo->coordinates[1];
1196 if (!empty($content->coordinates->coordinates)) {
1197 $postarray["coord"] = $content->coordinates->coordinates[1] . " " . $content->coordinates->coordinates[0];
1200 Logger::log("statusnet_createpost: end", Logger::DEBUG);
1205 function statusnet_fetchhometimeline(App $a, $uid, $mode = 1)
1207 $conversations = [];
1209 $ckey = DI::pConfig()->get($uid, 'statusnet', 'consumerkey');
1210 $csecret = DI::pConfig()->get($uid, 'statusnet', 'consumersecret');
1211 $api = DI::pConfig()->get($uid, 'statusnet', 'baseapi');
1212 $otoken = DI::pConfig()->get($uid, 'statusnet', 'oauthtoken');
1213 $osecret = DI::pConfig()->get($uid, 'statusnet', 'oauthsecret');
1214 $create_user = DI::pConfig()->get($uid, 'statusnet', 'create_user');
1216 // "create_user" is deactivated, since currently you cannot add users manually by now
1217 $create_user = true;
1219 Logger::log("statusnet_fetchhometimeline: Fetching for user " . $uid, Logger::DEBUG);
1221 $connection = new StatusNetOAuth($api, $ckey, $csecret, $otoken, $osecret);
1223 $own_contact = statusnet_fetch_own_contact($a, $uid);
1225 if (empty($own_contact)) {
1229 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
1230 intval($own_contact),
1233 if (DBA::isResult($r)) {
1234 $nick = $r[0]["nick"];
1236 Logger::log("statusnet_fetchhometimeline: Own GNU Social contact not found for user " . $uid, Logger::DEBUG);
1240 $r = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
1243 if (DBA::isResult($r)) {
1246 Logger::log("statusnet_fetchhometimeline: Own contact not found for user " . $uid, Logger::DEBUG);
1250 $u = q("SELECT * FROM user WHERE uid = %d LIMIT 1",
1252 if (!DBA::isResult($u)) {
1253 Logger::log("statusnet_fetchhometimeline: Own user not found for user " . $uid, Logger::DEBUG);
1257 $parameters = ["exclude_replies" => false, "trim_user" => false, "contributor_details" => true, "include_rts" => true];
1258 //$parameters["count"] = 200;
1261 // Fetching timeline
1262 $lastid = DI::pConfig()->get($uid, 'statusnet', 'lasthometimelineid');
1265 $first_time = ($lastid == "");
1267 if ($lastid != "") {
1268 $parameters["since_id"] = $lastid;
1271 $items = $connection->get('statuses/home_timeline', $parameters);
1273 if (!is_array($items)) {
1274 if (is_object($items) && isset($items->error)) {
1275 $errormsg = $items->error;
1276 } elseif (is_object($items)) {
1277 $errormsg = print_r($items, true);
1278 } elseif (is_string($items) || is_float($items) || is_int($items)) {
1281 $errormsg = "Unknown error";
1284 Logger::log("statusnet_fetchhometimeline: Error fetching home timeline: " . $errormsg, Logger::DEBUG);
1288 $posts = array_reverse($items);
1290 Logger::log("statusnet_fetchhometimeline: Fetching timeline for user " . $uid . " " . sizeof($posts) . " items", Logger::DEBUG);
1292 if (count($posts)) {
1293 foreach ($posts as $post) {
1295 if ($post->id > $lastid) {
1296 $lastid = $post->id;
1303 if (isset($post->statusnet_conversation_id)) {
1304 if (!isset($conversations[$post->statusnet_conversation_id])) {
1305 statusnet_complete_conversation($a, $uid, $self, $create_user, $nick, $post->statusnet_conversation_id);
1306 $conversations[$post->statusnet_conversation_id] = $post->statusnet_conversation_id;
1309 $postarray = statusnet_createpost($a, $uid, $post, $self, $create_user, true);
1311 if (trim($postarray['body']) == "") {
1315 $item = Item::insert($postarray);
1316 $postarray["id"] = $item;
1318 Logger::log('statusnet_fetchhometimeline: User ' . $self["nick"] . ' posted home timeline item ' . $item);
1322 DI::pConfig()->set($uid, 'statusnet', 'lasthometimelineid', $lastid);
1325 // Fetching mentions
1326 $lastid = DI::pConfig()->get($uid, 'statusnet', 'lastmentionid');
1327 $first_time = ($lastid == "");
1329 if ($lastid != "") {
1330 $parameters["since_id"] = $lastid;
1333 $items = $connection->get('statuses/mentions_timeline', $parameters);
1335 if (!is_array($items)) {
1336 Logger::log("statusnet_fetchhometimeline: Error fetching mentions: " . print_r($items, true), Logger::DEBUG);
1340 $posts = array_reverse($items);
1342 Logger::log("statusnet_fetchhometimeline: Fetching mentions for user " . $uid . " " . sizeof($posts) . " items", Logger::DEBUG);
1344 if (count($posts)) {
1345 foreach ($posts as $post) {
1346 if ($post->id > $lastid) {
1347 $lastid = $post->id;
1354 $postarray = statusnet_createpost($a, $uid, $post, $self, false, false);
1356 if (isset($post->statusnet_conversation_id)) {
1357 if (!isset($conversations[$post->statusnet_conversation_id])) {
1358 statusnet_complete_conversation($a, $uid, $self, $create_user, $nick, $post->statusnet_conversation_id);
1359 $conversations[$post->statusnet_conversation_id] = $post->statusnet_conversation_id;
1362 if (trim($postarray['body']) == "") {
1366 $item = Item::insert($postarray);
1368 Logger::log('statusnet_fetchhometimeline: User ' . $self["nick"] . ' posted mention timeline item ' . $item);
1373 DI::pConfig()->set($uid, 'statusnet', 'lastmentionid', $lastid);
1376 function statusnet_complete_conversation(App $a, $uid, $self, $create_user, $nick, $conversation)
1378 $ckey = DI::pConfig()->get($uid, 'statusnet', 'consumerkey');
1379 $csecret = DI::pConfig()->get($uid, 'statusnet', 'consumersecret');
1380 $api = DI::pConfig()->get($uid, 'statusnet', 'baseapi');
1381 $otoken = DI::pConfig()->get($uid, 'statusnet', 'oauthtoken');
1382 $osecret = DI::pConfig()->get($uid, 'statusnet', 'oauthsecret');
1383 $own_url = DI::pConfig()->get($uid, 'statusnet', 'own_url');
1385 $connection = new StatusNetOAuth($api, $ckey, $csecret, $otoken, $osecret);
1387 $parameters["count"] = 200;
1389 $items = $connection->get('statusnet/conversation/' . $conversation, $parameters);
1390 if (is_array($items)) {
1391 $posts = array_reverse($items);
1393 foreach ($posts as $post) {
1394 $postarray = statusnet_createpost($a, $uid, $post, $self, false, false);
1396 if (empty($postarray['body'])) {
1400 $item = Item::insert($postarray);
1401 $postarray["id"] = $item;
1403 Logger::log('statusnet_complete_conversation: User ' . $self["nick"] . ' posted home timeline item ' . $item);
1408 function statusnet_convertmsg(App $a, $body)
1410 $body = preg_replace("=\[url\=https?://([0-9]*).([0-9]*).([0-9]*).([0-9]*)/([0-9]*)\](.*?)\[\/url\]=ism", "$1.$2.$3.$4/$5", $body);
1412 $URLSearchString = "^\[\]";
1413 $links = preg_match_all("/[^!#@]\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", $body, $matches, PREG_SET_ORDER);
1421 foreach ($matches AS $match) {
1422 $search = "[url=" . $match[1] . "]" . $match[2] . "[/url]";
1424 Logger::log("statusnet_convertmsg: expanding url " . $match[1], Logger::DEBUG);
1426 $expanded_url = DI::httpRequest()->finalUrl($match[1]);
1428 Logger::log("statusnet_convertmsg: fetching data for " . $expanded_url, Logger::DEBUG);
1430 $oembed_data = OEmbed::fetchURL($expanded_url, true);
1432 Logger::log("statusnet_convertmsg: fetching data: done", Logger::DEBUG);
1435 $type = $oembed_data->type;
1438 if ($oembed_data->type == "video") {
1439 //$body = str_replace($search, "[video]".$expanded_url."[/video]", $body);
1440 $type = $oembed_data->type;
1441 $footerurl = $expanded_url;
1442 $footerlink = "[url=" . $expanded_url . "]" . $expanded_url . "[/url]";
1444 $body = str_replace($search, $footerlink, $body);
1445 } elseif (($oembed_data->type == "photo") && isset($oembed_data->url)) {
1446 $body = str_replace($search, "[url=" . $expanded_url . "][img]" . $oembed_data->url . "[/img][/url]", $body);
1447 } elseif ($oembed_data->type != "link") {
1448 $body = str_replace($search, "[url=" . $expanded_url . "]" . $expanded_url . "[/url]", $body);
1450 $img_str = DI::httpRequest()->fetch($expanded_url, 4);
1452 $tempfile = tempnam(get_temppath(), "cache");
1453 file_put_contents($tempfile, $img_str);
1454 $mime = mime_content_type($tempfile);
1457 if (substr($mime, 0, 6) == "image/") {
1459 $body = str_replace($search, "[img]" . $expanded_url . "[/img]", $body);
1461 $type = $oembed_data->type;
1462 $footerurl = $expanded_url;
1463 $footerlink = "[url=" . $expanded_url . "]" . $expanded_url . "[/url]";
1465 $body = str_replace($search, $footerlink, $body);
1470 if ($footerurl != "") {
1471 $footer = "\n" . PageInfo::getFooterFromUrl($footerurl);
1474 if (($footerlink != "") && (trim($footer) != "")) {
1475 $removedlink = trim(str_replace($footerlink, "", $body));
1477 if (($removedlink == "") || strstr($body, $removedlink)) {
1478 $body = $removedlink;
1488 function statusnet_fetch_own_contact(App $a, $uid)
1490 $ckey = DI::pConfig()->get($uid, 'statusnet', 'consumerkey');
1491 $csecret = DI::pConfig()->get($uid, 'statusnet', 'consumersecret');
1492 $api = DI::pConfig()->get($uid, 'statusnet', 'baseapi');
1493 $otoken = DI::pConfig()->get($uid, 'statusnet', 'oauthtoken');
1494 $osecret = DI::pConfig()->get($uid, 'statusnet', 'oauthsecret');
1495 $own_url = DI::pConfig()->get($uid, 'statusnet', 'own_url');
1499 if ($own_url == "") {
1500 $connection = new StatusNetOAuth($api, $ckey, $csecret, $otoken, $osecret);
1502 // Fetching user data
1503 $user = $connection->get('account/verify_credentials');
1509 DI::pConfig()->set($uid, 'statusnet', 'own_url', Strings::normaliseLink($user->statusnet_profile_url));
1511 $contact_id = statusnet_fetch_contact($uid, $user, true);
1513 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `alias` = '%s' LIMIT 1",
1514 intval($uid), DBA::escape($own_url));
1515 if (DBA::isResult($r)) {
1516 $contact_id = $r[0]["id"];
1518 DI::pConfig()->delete($uid, 'statusnet', 'own_url');
1524 function statusnet_is_retweet(App $a, $uid, $body)
1526 $body = trim($body);
1528 // Skip if it isn't a pure repeated messages
1529 // Does it start with a share?
1530 if (strpos($body, "[share") > 0) {
1534 // Does it end with a share?
1535 if (strlen($body) > (strrpos($body, "[/share]") + 8)) {
1539 $attributes = preg_replace("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism", "$1", $body);
1540 // Skip if there is no shared message in there
1541 if ($body == $attributes) {
1546 preg_match("/link='(.*?)'/ism", $attributes, $matches);
1547 if (!empty($matches[1])) {
1548 $link = $matches[1];
1551 preg_match('/link="(.*?)"/ism', $attributes, $matches);
1552 if (!empty($matches[1])) {
1553 $link = $matches[1];
1556 $ckey = DI::pConfig()->get($uid, 'statusnet', 'consumerkey');
1557 $csecret = DI::pConfig()->get($uid, 'statusnet', 'consumersecret');
1558 $api = DI::pConfig()->get($uid, 'statusnet', 'baseapi');
1559 $otoken = DI::pConfig()->get($uid, 'statusnet', 'oauthtoken');
1560 $osecret = DI::pConfig()->get($uid, 'statusnet', 'oauthsecret');
1561 $hostname = preg_replace("=https?://([\w\.]*)/.*=ism", "$1", $api);
1563 $id = preg_replace("=https?://" . $hostname . "/notice/(.*)=ism", "$1", $link);
1569 Logger::log('statusnet_is_retweet: Retweeting id ' . $id . ' for user ' . $uid, Logger::DEBUG);
1571 $connection = new StatusNetOAuth($api, $ckey, $csecret, $otoken, $osecret);
1573 $result = $connection->post('statuses/retweet/' . $id);
1575 Logger::log('statusnet_is_retweet: result ' . print_r($result, true), Logger::DEBUG);
1577 return isset($result->id);