]> git.mxchange.org Git - friendica-addons.git/blob - twitter/twitter.php
fbpost: Beautifying the import to friendica
[friendica-addons.git] / twitter / twitter.php
1 <?php
2 /**
3  * Name: Twitter Connector
4  * Description: Relay public postings to a connected Twitter account
5  * Version: 1.0.4
6  * Author: Tobias Diekershoff <http://diekershoff.homeunix.net/friendika/profile/tobias>
7  */
8
9
10 /*   Twitter Plugin for Friendica
11  *
12  *   Author: Tobias Diekershoff
13  *           tobias.diekershoff@gmx.net
14  *
15  *   License:3-clause BSD license
16  *
17  *   Configuration:
18  *     To use this plugin you need a OAuth Consumer key pair (key & secret)
19  *     you can get it from Twitter at https://twitter.com/apps
20  *
21  *     Register your Friendica site as "Client" application with "Read & Write" access
22  *     we do not need "Twitter as login". When you've registered the app you get the
23  *     OAuth Consumer key and secret pair for your application/site.
24  *
25  *     Add this key pair to your global .htconfig.php or use the admin panel.
26  *
27  *     $a->config['twitter']['consumerkey'] = 'your consumer_key here';
28  *     $a->config['twitter']['consumersecret'] = 'your consumer_secret here';
29  *
30  *     To activate the plugin itself add it to the $a->config['system']['addon']
31  *     setting. After this, your user can configure their Twitter account settings
32  *     from "Settings -> Plugin Settings".
33  *
34  *     Requirements: PHP5, curl [Slinky library]
35  *
36  *     Documentation: http://diekershoff.homeunix.net/redmine/wiki/friendikaplugin/Twitter_Plugin
37  */
38
39 define('TWITTER_DEFAULT_POLL_INTERVAL', 5); // given in minutes
40
41 function twitter_install() {
42         //  we need some hooks, for the configuration and for sending tweets
43         register_hook('connector_settings', 'addon/twitter/twitter.php', 'twitter_settings'); 
44         register_hook('connector_settings_post', 'addon/twitter/twitter.php', 'twitter_settings_post');
45         register_hook('post_local', 'addon/twitter/twitter.php', 'twitter_post_local');
46         register_hook('notifier_normal', 'addon/twitter/twitter.php', 'twitter_post_hook');
47         register_hook('jot_networks', 'addon/twitter/twitter.php', 'twitter_jot_nets');
48         register_hook('cron', 'addon/twitter/twitter.php', 'twitter_cron');
49         logger("installed twitter");
50 }
51
52
53 function twitter_uninstall() {
54         unregister_hook('connector_settings', 'addon/twitter/twitter.php', 'twitter_settings'); 
55         unregister_hook('connector_settings_post', 'addon/twitter/twitter.php', 'twitter_settings_post');
56         unregister_hook('post_local', 'addon/twitter/twitter.php', 'twitter_post_local');
57         unregister_hook('notifier_normal', 'addon/twitter/twitter.php', 'twitter_post_hook');
58         unregister_hook('jot_networks', 'addon/twitter/twitter.php', 'twitter_jot_nets');
59         unregister_hook('cron', 'addon/twitter/twitter.php', 'twitter_cron');
60
61         // old setting - remove only
62         unregister_hook('post_local_end', 'addon/twitter/twitter.php', 'twitter_post_hook');
63         unregister_hook('plugin_settings', 'addon/twitter/twitter.php', 'twitter_settings'); 
64         unregister_hook('plugin_settings_post', 'addon/twitter/twitter.php', 'twitter_settings_post');
65
66 }
67
68 function twitter_jot_nets(&$a,&$b) {
69         if(! local_user())
70                 return;
71
72         $tw_post = get_pconfig(local_user(),'twitter','post');
73         if(intval($tw_post) == 1) {
74                 $tw_defpost = get_pconfig(local_user(),'twitter','post_by_default');
75                 $selected = ((intval($tw_defpost) == 1) ? ' checked="checked" ' : '');
76                 $b .= '<div class="profile-jot-net"><input type="checkbox" name="twitter_enable"' . $selected . ' value="1" /> ' 
77                         . t('Post to Twitter') . '</div>';
78         }
79 }
80
81 function twitter_settings_post ($a,$post) {
82         if(! local_user())
83                 return;
84         // don't check twitter settings if twitter submit button is not clicked 
85         if (!x($_POST,'twitter-submit')) return;
86         
87         if (isset($_POST['twitter-disconnect'])) {
88                 /***
89                  * if the twitter-disconnect checkbox is set, clear the OAuth key/secret pair
90                  * from the user configuration
91                  */
92                 del_pconfig(local_user(), 'twitter', 'consumerkey');
93                 del_pconfig(local_user(), 'twitter', 'consumersecret');
94                 del_pconfig(local_user(), 'twitter', 'oauthtoken');
95                 del_pconfig(local_user(), 'twitter', 'oauthsecret');
96                 del_pconfig(local_user(), 'twitter', 'post');
97                 del_pconfig(local_user(), 'twitter', 'post_by_default');
98                 del_pconfig(local_user(), 'twitter', 'post_taglinks');
99                 del_pconfig(local_user(), 'twitter', 'lastid');
100                 del_pconfig(local_user(), 'twitter', 'mirror_posts');
101                 del_pconfig(local_user(), 'twitter', 'intelligent_shortening');
102         } else {
103         if (isset($_POST['twitter-pin'])) {
104                 //  if the user supplied us with a PIN from Twitter, let the magic of OAuth happen
105                 logger('got a Twitter PIN');
106                 require_once('library/twitteroauth.php');
107                 $ckey    = get_config('twitter', 'consumerkey');
108                 $csecret = get_config('twitter', 'consumersecret');
109                 //  the token and secret for which the PIN was generated were hidden in the settings
110                 //  form as token and token2, we need a new connection to Twitter using these token
111                 //  and secret to request a Access Token with the PIN
112                 $connection = new TwitterOAuth($ckey, $csecret, $_POST['twitter-token'], $_POST['twitter-token2']);
113                 $token   = $connection->getAccessToken( $_POST['twitter-pin'] );
114                 //  ok, now that we have the Access Token, save them in the user config
115                 set_pconfig(local_user(),'twitter', 'oauthtoken',  $token['oauth_token']);
116                 set_pconfig(local_user(),'twitter', 'oauthsecret', $token['oauth_token_secret']);
117                 set_pconfig(local_user(),'twitter', 'post', 1);
118                 set_pconfig(local_user(),'twitter', 'post_taglinks', 1);
119                 //  reload the Addon Settings page, if we don't do it see Bug #42
120                 goaway($a->get_baseurl().'/settings/connectors');
121         } else {
122                 //  if no PIN is supplied in the POST variables, the user has changed the setting
123                 //  to post a tweet for every new __public__ posting to the wall
124                 set_pconfig(local_user(),'twitter','post',intval($_POST['twitter-enable']));
125                 set_pconfig(local_user(),'twitter','post_by_default',intval($_POST['twitter-default']));
126                 set_pconfig(local_user(),'twitter','post_taglinks',intval($_POST['twitter-sendtaglinks']));
127                 set_pconfig(local_user(), 'twitter', 'mirror_posts', intval($_POST['twitter-mirror']));
128                 set_pconfig(local_user(), 'twitter', 'intelligent_shortening', intval($_POST['twitter-shortening']));
129                 info( t('Twitter settings updated.') . EOL);
130         }}
131 }
132 function twitter_settings(&$a,&$s) {
133         if(! local_user())
134                 return;
135         $a->page['htmlhead'] .= '<link rel="stylesheet"  type="text/css" href="' . $a->get_baseurl() . '/addon/twitter/twitter.css' . '" media="all" />' . "\r\n";
136         /***
137          * 1) Check that we have global consumer key & secret
138          * 2) If no OAuthtoken & stuff is present, generate button to get some
139          * 3) Checkbox for "Send public notices (140 chars only)
140          */
141         $ckey    = get_config('twitter', 'consumerkey' );
142         $csecret = get_config('twitter', 'consumersecret' );
143         $otoken  = get_pconfig(local_user(), 'twitter', 'oauthtoken'  );
144         $osecret = get_pconfig(local_user(), 'twitter', 'oauthsecret' );
145         $enabled = get_pconfig(local_user(), 'twitter', 'post');
146         $checked = (($enabled) ? ' checked="checked" ' : '');
147         $defenabled = get_pconfig(local_user(),'twitter','post_by_default');
148         $defchecked = (($defenabled) ? ' checked="checked" ' : '');
149         $linksenabled = get_pconfig(local_user(),'twitter','post_taglinks');
150         $linkschecked = (($linksenabled) ? ' checked="checked" ' : '');
151         $mirrorenabled = get_pconfig(local_user(),'twitter','mirror_posts');
152         $mirrorchecked = (($mirrorenabled) ? ' checked="checked" ' : '');
153         $shorteningenabled = get_pconfig(local_user(),'twitter','intelligent_shortening');
154         $shorteningchecked = (($shorteningenabled) ? ' checked="checked" ' : '');
155
156         $s .= '<div class="settings-block">';
157         $s .= '<h3>'. t('Twitter Posting Settings') .'</h3>';
158
159         if ( (!$ckey) && (!$csecret) ) {
160                 /***
161                  * no global consumer keys
162                  * display warning and skip personal config
163                  */
164                 $s .= '<p>'. t('No consumer key pair for Twitter found. Please contact your site administrator.') .'</p>';
165         } else {
166                 /***
167                  * ok we have a consumer key pair now look into the OAuth stuff
168                  */
169                 if ( (!$otoken) && (!$osecret) ) {
170                         /***
171                          * the user has not yet connected the account to twitter...
172                          * get a temporary OAuth key/secret pair and display a button with
173                          * which the user can request a PIN to connect the account to a
174                          * account at Twitter.
175                          */
176                         require_once('library/twitteroauth.php');
177                         $connection = new TwitterOAuth($ckey, $csecret);
178                         $request_token = $connection->getRequestToken();
179                         $token = $request_token['oauth_token'];
180                         /***
181                          *  make some nice form
182                          */
183                         $s .= '<p>'. t('At this Friendica instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to Twitter.') .'</p>';
184                         $s .= '<a href="'.$connection->getAuthorizeURL($token).'" target="_twitter"><img src="addon/twitter/lighter.png" alt="'.t('Log in with Twitter').'"></a>';
185                         $s .= '<div id="twitter-pin-wrapper">';
186                         $s .= '<label id="twitter-pin-label" for="twitter-pin">'. t('Copy the PIN from Twitter here') .'</label>';
187                         $s .= '<input id="twitter-pin" type="text" name="twitter-pin" />';
188                         $s .= '<input id="twitter-token" type="hidden" name="twitter-token" value="'.$token.'" />';
189                         $s .= '<input id="twitter-token2" type="hidden" name="twitter-token2" value="'.$request_token['oauth_token_secret'].'" />';
190             $s .= '</div><div class="clear"></div>';
191             $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="twitter-submit" class="settings-submit" value="' . t('Submit') . '" /></div>';
192                 } else {
193                         /***
194                          *  we have an OAuth key / secret pair for the user
195                          *  so let's give a chance to disable the postings to Twitter
196                          */
197                         require_once('library/twitteroauth.php');
198                         $connection = new TwitterOAuth($ckey,$csecret,$otoken,$osecret);
199                         $details = $connection->get('account/verify_credentials');
200                         $s .= '<div id="twitter-info" ><img id="twitter-avatar" src="'.$details->profile_image_url.'" /><p id="twitter-info-block">'. t('Currently connected to: ') .'<a href="https://twitter.com/'.$details->screen_name.'" target="_twitter">'.$details->screen_name.'</a><br /><em>'.$details->description.'</em></p></div>';
201                         $s .= '<p>'. t('If enabled all your <strong>public</strong> postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry.') .'</p>';
202                         if ($a->user['hidewall']) {
203                             $s .= '<p>'. t('<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted.') .'</p>';
204                         }
205                         $s .= '<div id="twitter-enable-wrapper">';
206                         $s .= '<label id="twitter-enable-label" for="twitter-checkbox">'. t('Allow posting to Twitter'). '</label>';
207                         $s .= '<input id="twitter-checkbox" type="checkbox" name="twitter-enable" value="1" ' . $checked . '/>';
208                         $s .= '<div class="clear"></div>';
209                         $s .= '<label id="twitter-default-label" for="twitter-default">'. t('Send public postings to Twitter by default') .'</label>';
210                         $s .= '<input id="twitter-default" type="checkbox" name="twitter-default" value="1" ' . $defchecked . '/>';
211                         $s .= '<div class="clear"></div>';
212
213                         $s .= '<label id="twitter-mirror-label" for="twitter-mirror">'.t('Mirror all posts from twitter that are no replies or retweets').'</label>';
214                         $s .= '<input id="twitter-mirror" type="checkbox" name="twitter-mirror" value="1" '. $mirrorchecked . '/>';
215                         $s .= '<div class="clear"></div>';
216
217                         $s .= '<label id="twitter-shortening-label" for="twitter-shortening">'.t('Shortening method that optimizes the tweet').'</label>';
218                         $s .= '<input id="twitter-shortening" type="checkbox" name="twitter-shortening" value="1" '. $shorteningchecked . '/>';
219                         $s .= '<div class="clear"></div>';
220
221                         $s .= '<label id="twitter-sendtaglinks-label" for="twitter-sendtaglinks">'.t('Send linked #-tags and @-names to Twitter').'</label>';
222                         $s .= '<input id="twitter-sendtaglinks" type="checkbox" name="twitter-sendtaglinks" value="1" '. $linkschecked . '/>';
223                         $s .= '</div><div class="clear"></div>';
224
225                         $s .= '<div id="twitter-disconnect-wrapper">';
226                         $s .= '<label id="twitter-disconnect-label" for="twitter-disconnect">'. t('Clear OAuth configuration') .'</label>';
227                         $s .= '<input id="twitter-disconnect" type="checkbox" name="twitter-disconnect" value="1" />';
228                         $s .= '</div><div class="clear"></div>';
229                         $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="twitter-submit" class="settings-submit" value="' . t('Submit') . '" /></div>'; 
230                 }
231         }
232         $s .= '</div><div class="clear"></div>';
233 }
234
235
236 function twitter_post_local(&$a,&$b) {
237
238         if($b['edit'])
239                 return;
240
241         if((local_user()) && (local_user() == $b['uid']) && (! $b['private']) && (! $b['parent']) ) {
242
243                 $twitter_post = intval(get_pconfig(local_user(),'twitter','post'));
244                 $twitter_enable = (($twitter_post && x($_REQUEST,'twitter_enable')) ? intval($_REQUEST['twitter_enable']) : 0);
245
246                 // if API is used, default to the chosen settings
247                 if($_REQUEST['api_source'] && intval(get_pconfig(local_user(),'twitter','post_by_default')))
248                         $twitter_enable = 1;
249
250         if(! $twitter_enable)
251             return;
252
253         if(strlen($b['postopts']))
254             $b['postopts'] .= ',';
255         $b['postopts'] .= 'twitter';
256         }
257 }
258
259 if (! function_exists('short_link')) {
260 function short_link ($url) {
261     require_once('library/slinky.php');
262     $slinky = new Slinky( $url );
263     $yourls_url = get_config('yourls','url1');
264     if ($yourls_url) {
265             $yourls_username = get_config('yourls','username1');
266             $yourls_password = get_config('yourls', 'password1');
267             $yourls_ssl = get_config('yourls', 'ssl1');
268             $yourls = new Slinky_YourLS();
269             $yourls->set( 'username', $yourls_username );
270             $yourls->set( 'password', $yourls_password );
271             $yourls->set( 'ssl', $yourls_ssl );
272             $yourls->set( 'yourls-url', $yourls_url );
273             $slinky->set_cascade( array( $yourls, new Slinky_UR1ca(), new Slinky_Trim(), new Slinky_IsGd(), new Slinky_TinyURL() ) );
274     }
275     else {
276             // setup a cascade of shortening services
277             // try to get a short link from these services
278             // in the order ur1.ca, trim, id.gd, tinyurl
279             $slinky->set_cascade( array( new Slinky_UR1ca(), new Slinky_Trim(), new Slinky_IsGd(), new Slinky_TinyURL() ) );
280     }
281     return $slinky->short();
282 } };
283
284 function twitter_shortenmsg($b) {
285         require_once("include/bbcode.php");
286         require_once("include/html2plain.php");
287
288         $max_char = 140;
289
290         // Looking for the first image
291         $image = '';
292         if(preg_match("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/is",$b['body'],$matches))
293                 $image = $matches[3];
294
295         if ($image == '')
296                 if(preg_match("/\[img\](.*?)\[\/img\]/is",$b['body'],$matches))
297                         $image = $matches[1];
298
299         $multipleimages = (strpos($b['body'], "[img") != strrpos($b['body'], "[img"));
300
301         // When saved into the database the content is sent through htmlspecialchars
302         // That means that we have to decode all image-urls
303         $image = htmlspecialchars_decode($image);
304
305         $body = $b["body"];
306         if ($b["title"] != "")
307                 $body = $b["title"]."\n\n".$body;
308
309         // Add some newlines so that the message could be cut better
310         $body = str_replace(array("[quote", "[bookmark", "[/bookmark]", "[/quote]"),
311                         array("\n[quote", "\n[bookmark", "[/bookmark]\n", "[/quote]\n"), $body);
312
313         // remove the recycle signs and the names since they aren't helpful on twitter
314         // recycle 1
315         $recycle = html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8');
316         $body = preg_replace( '/'.$recycle.'\[url\=(\w+.*?)\](\w+.*?)\[\/url\]/i', "\n", $body);
317         // recycle 2 (Test)
318         $recycle = html_entity_decode("&#x25CC; ", ENT_QUOTES, 'UTF-8');
319         $body = preg_replace( '/'.$recycle.'\[url\=(\w+.*?)\](\w+.*?)\[\/url\]/i', "\n", $body);
320
321         // remove the share element
322         $body = preg_replace("/\[share(.*?)\](.*?)\[\/share\]/ism","\n\n$2\n\n",$body);
323
324         // At first convert the text to html
325         $html = bbcode($body, false, false);
326
327         // Then convert it to plain text
328         //$msg = trim($b['title']." \n\n".html2plain($html, 0, true));
329         $msg = trim(html2plain($html, 0, true));
330         $msg = html_entity_decode($msg,ENT_QUOTES,'UTF-8');
331
332         // Removing multiple newlines
333         while (strpos($msg, "\n\n\n") !== false)
334                 $msg = str_replace("\n\n\n", "\n\n", $msg);
335
336         // Removing multiple spaces
337         while (strpos($msg, "  ") !== false)
338                 $msg = str_replace("  ", " ", $msg);
339
340         // Removing URLs
341         $msg = preg_replace('/(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/i', "", $msg);
342
343         $msg = trim($msg);
344
345         $link = '';
346         // look for bookmark-bbcode and handle it with priority
347         if(preg_match("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/is",$b['body'],$matches))
348                 $link = $matches[1];
349
350         $multiplelinks = (strpos($b['body'], "[bookmark") != strrpos($b['body'], "[bookmark"));
351
352         // If there is no bookmark element then take the first link
353         if ($link == '') {
354                 $links = collecturls($html);
355                 if (sizeof($links) > 0) {
356                         reset($links);
357                         $link = current($links);
358                 }
359                 $multiplelinks = (sizeof($links) > 1);
360         }
361
362         $msglink = "";
363         if ($multiplelinks)
364                 $msglink = $b["plink"];
365         else if ($link != "")
366                 $msglink = $link;
367         else if ($multipleimages)
368                 $msglink = $b["plink"];
369         else if ($image != "")
370                 $msglink = $image;
371
372         if (($msglink == "") and strlen($msg) > $max_char)
373                 $msglink = $b["plink"];
374
375         if (strlen($msglink) > 20)
376                 $msglink = short_link($msglink);
377
378         if (strlen(trim($msg." ".$msglink)) > $max_char) {
379                 $msg = substr($msg, 0, $max_char - (strlen($msglink)));
380                 $lastchar = substr($msg, -1);
381                 $msg = substr($msg, 0, -1);
382                 $pos = strrpos($msg, "\n");
383                 if ($pos > 0)
384                         $msg = substr($msg, 0, $pos);
385                 else if ($lastchar != "\n")
386                         $msg = substr($msg, 0, -3)."...";
387         }
388         $msg = str_replace("\n", " ", $msg);
389
390         // Removing multiple spaces - again
391         while (strpos($msg, "  ") !== false)
392                 $msg = str_replace("  ", " ", $msg);
393
394         return(trim($msg." ".$msglink));
395 }
396
397 function twitter_post_hook(&$a,&$b) {
398
399         /**
400          * Post to Twitter
401          */
402
403         if($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited']))
404         return;
405
406         if(! strstr($b['postopts'],'twitter'))
407                 return;
408
409         if($b['parent'] != $b['id'])
410                 return;
411
412         // if post comes from twitter don't send it back
413         if($b['app'] == "Twitter")
414                 return;
415
416         logger('twitter post invoked');
417
418
419         load_pconfig($b['uid'], 'twitter');
420
421         $ckey    = get_config('twitter', 'consumerkey');
422         $csecret = get_config('twitter', 'consumersecret');
423         $otoken  = get_pconfig($b['uid'], 'twitter', 'oauthtoken');
424         $osecret = get_pconfig($b['uid'], 'twitter', 'oauthsecret');
425         $intelligent_shortening = get_pconfig($b['uid'], 'twitter', 'intelligent_shortening');
426
427         // Global setting overrides this
428         if (get_config('twitter','intelligent_shortening'))
429                 $intelligent_shortening = get_config('twitter','intelligent_shortening');
430
431         if($ckey && $csecret && $otoken && $osecret) {
432                 logger('twitter: we have customer key and oauth stuff, going to send.', LOGGER_DEBUG);
433
434                 require_once('library/twitteroauth.php');
435                 require_once('include/bbcode.php');
436                 $tweet = new TwitterOAuth($ckey,$csecret,$otoken,$osecret);
437                 // in theory max char is 140 but T. uses t.co to make links 
438                 // longer so we give them 10 characters extra
439                 if (!$intelligent_shortening) {
440                         $max_char = 130; // max. length for a tweet
441                         // we will only work with up to two times the length of the dent 
442                         // we can later send to Twitter. This way we can "gain" some 
443                         // information during shortening of potential links but do not 
444                         // shorten all the links in a 200000 character long essay.
445                         if (! $b['title']=='') {
446                             $tmp = $b['title'] . ' : '. $b['body'];
447         //                    $tmp = substr($tmp, 0, 4*$max_char);
448                         } else {
449                             $tmp = $b['body']; // substr($b['body'], 0, 3*$max_char);
450                         }
451                         // if [url=bla][img]blub.png[/img][/url] get blub.png
452                         $tmp = preg_replace( '/\[url\=(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)\]\[img\](\\w+.*?)\\[\\/img\]\\[\\/url\]/i', '$2', $tmp);
453                         // preserve links to images, videos and audios
454                         $tmp = preg_replace( '/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism', '$3', $tmp);
455                         $tmp = preg_replace( '/\[\\/?img(\\s+.*?\]|\])/i', '', $tmp);
456                         $tmp = preg_replace( '/\[\\/?video(\\s+.*?\]|\])/i', '', $tmp);
457                         $tmp = preg_replace( '/\[\\/?youtube(\\s+.*?\]|\])/i', '', $tmp);
458                         $tmp = preg_replace( '/\[\\/?vimeo(\\s+.*?\]|\])/i', '', $tmp);
459                         $tmp = preg_replace( '/\[\\/?audio(\\s+.*?\]|\])/i', '', $tmp);
460                         $linksenabled = get_pconfig($b['uid'],'twitter','post_taglinks');
461                         // if a #tag is linked, don't send the [url] over to SN
462                         // that is, don't send if the option is not set in the
463                         // connector settings
464                         if ($linksenabled=='0') {
465                                 // #-tags
466                                 $tmp = preg_replace( '/#\[url\=(\w+.*?)\](\w+.*?)\[\/url\]/i', '#$2', $tmp);
467                                 // @-mentions
468                                 $tmp = preg_replace( '/@\[url\=(\w+.*?)\](\w+.*?)\[\/url\]/i', '@$2', $tmp);
469                                 // recycle 1
470                                 $recycle = html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8');
471                                 $tmp = preg_replace( '/'.$recycle.'\[url\=(\w+.*?)\](\w+.*?)\[\/url\]/i', $recycle.'$2', $tmp);
472                                 // recycle 2 (Test)
473                                 $recycle = html_entity_decode("&#x25CC; ", ENT_QUOTES, 'UTF-8');
474                                 $tmp = preg_replace( '/'.$recycle.'\[url\=(\w+.*?)\](\w+.*?)\[\/url\]/i', $recycle.'$2', $tmp);
475                         }
476                         $tmp = preg_replace( '/\[url\=(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)\](\w+.*?)\[\/url\]/i', '$2 $1', $tmp);
477                         $tmp = preg_replace( '/\[bookmark\=(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)\](\w+.*?)\[\/bookmark\]/i', '$2 $1', $tmp);
478                         // find all http or https links in the body of the entry and
479                         // apply the shortener if the link is longer then 20 characters
480                         if (( strlen($tmp)>$max_char ) && ( $max_char > 0 )) {
481                             preg_match_all ( '/(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/i', $tmp, $allurls  );
482                             foreach ($allurls as $url) {
483                                 foreach ($url as $u) {
484                                     if (strlen($u)>20) {
485                                         $sl = short_link($u);
486                                         $tmp = str_replace( $u, $sl, $tmp );
487                                     }
488                                 }
489                             }
490                         }
491                         // ok, all the links we want to send out are save, now strip 
492                         // away the remaining bbcode
493                         //$msg = strip_tags(bbcode($tmp, false, false));
494                         $msg = bbcode($tmp, false, false);
495                         $msg = str_replace(array('<br>','<br />'),"\n",$msg);
496                         $msg = strip_tags($msg);
497
498                         // quotes not working - let's try this
499                         $msg = html_entity_decode($msg);
500                         if (( strlen($msg) > $max_char) && $max_char > 0) {
501                                 $shortlink = short_link( $b['plink'] );
502                                 // the new message will be shortened such that "... $shortlink"
503                                 // will fit into the character limit
504                                 $msg = nl2br(substr($msg, 0, $max_char-strlen($shortlink)-4));
505                                 $msg = str_replace(array('<br>','<br />'),' ',$msg);
506                                 $e = explode(' ', $msg);
507                                 //  remove the last word from the cut down message to 
508                                 //  avoid sending cut words to the MicroBlog
509                                 array_pop($e);
510                                 $msg = implode(' ', $e);
511                                 $msg .= '... ' . $shortlink;
512                         }
513
514                         $msg = trim($msg);
515                 } else
516                         $msg = twitter_shortenmsg($b);
517
518                 // and now tweet it :-)
519                 if(strlen($msg)) {
520                         $result = $tweet->post('statuses/update', array('status' => $msg));
521                         logger('twitter_post send, result: ' . print_r($result, true), LOGGER_DEBUG);
522                         if ($result->error) {
523                                 logger('Send to Twitter failed: "' . $result->error . '"');
524                         }
525                 }
526         }
527 }
528
529 function twitter_plugin_admin_post(&$a){
530         $consumerkey    =       ((x($_POST,'consumerkey'))              ? notags(trim($_POST['consumerkey']))   : '');
531         $consumersecret =       ((x($_POST,'consumersecret'))   ? notags(trim($_POST['consumersecret'])): '');
532         set_config('twitter','consumerkey',$consumerkey);
533         set_config('twitter','consumersecret',$consumersecret);
534         info( t('Settings updated.'). EOL );
535 }
536 function twitter_plugin_admin(&$a, &$o){
537         $t = get_markup_template( "admin.tpl", "addon/twitter/" );
538
539         $includes = array(
540                 '$field_input' => 'field_input.tpl',
541         );
542         //$includes = set_template_includes($a->theme['template_engine'], $includes);
543
544         $o = replace_macros($t, $includes + array(
545                 '$submit' => t('Submit'),
546                                                                 // name, label, value, help, [extra values]
547                 '$consumerkey' => array('consumerkey', t('Consumer key'),  get_config('twitter', 'consumerkey' ), ''),
548                 '$consumersecret' => array('consumersecret', t('Consumer secret'),  get_config('twitter', 'consumersecret' ), '')
549         ));
550 }
551
552 function twitter_cron($a,$b) {
553         $last = get_config('twitter','last_poll');
554
555         $poll_interval = intval(get_config('twitter','poll_interval'));
556         if(! $poll_interval)
557                 $poll_interval = TWITTER_DEFAULT_POLL_INTERVAL;
558
559         if($last) {
560                 $next = $last + ($poll_interval * 60);
561                 if($next > time()) {
562                         logger('twitter: poll intervall not reached');
563                         return;
564                 }
565         }
566         logger('twitter: cron_start');
567
568         $r = q("SELECT * FROM `pconfig` WHERE `cat` = 'twitter' AND `k` = 'mirror_posts' AND `v` = '1' ORDER BY RAND() ");
569         if(count($r)) {
570                 foreach($r as $rr) {
571                         logger('twitter: fetching for user '.$rr['uid']);
572                         twitter_fetchtimeline($a, $rr['uid']);
573                 }
574         }
575
576         logger('twitter: cron_end');
577
578         set_config('twitter','last_poll', time());
579 }
580
581 function twitter_fetchtimeline($a, $uid) {
582         $ckey    = get_config('twitter', 'consumerkey');
583         $csecret = get_config('twitter', 'consumersecret');
584         $otoken  = get_pconfig($uid, 'twitter', 'oauthtoken');
585         $osecret = get_pconfig($uid, 'twitter', 'oauthsecret');
586         $lastid  = get_pconfig($uid, 'twitter', 'lastid');
587
588         $application_name  = get_config('twitter', 'application_name');
589
590         if ($application_name == "")
591                 $application_name = $a->get_hostname();
592
593         require_once('library/twitteroauth.php');
594         $connection = new TwitterOAuth($ckey,$csecret,$otoken,$osecret);
595
596         $parameters = array("exclude_replies" => true, "trim_user" => true, "contributor_details" => false, "include_rts" => false);
597
598         if ($lastid <> "")
599                 $parameters["since_id"] = $lastid;
600
601         $items = $connection->get('statuses/user_timeline', $parameters);
602         $posts = array_reverse($items);
603
604         foreach ($posts as $post) {
605                 if ($post->id_str > $lastid)
606                         $lastid = $post->id_str;
607
608                 if (!strpos($post->source, $application_name)) {
609                         $_SESSION["authenticated"] = true;
610                         $_SESSION["uid"] = $uid;
611
612                         $_REQUEST["type"] = "wall";
613                         $_REQUEST["api_source"] = true;
614                         $_REQUEST["profile_uid"] = $uid;
615                         $_REQUEST["source"] = "Twitter";
616
617                         //$_REQUEST["date"] = $post->created_at;
618
619                         $_REQUEST["body"] = $post->text;
620                         if (is_string($post->place->name))
621                                 $_REQUEST["location"] = $post->place->name;
622
623                         if (is_string($post->place->full_name))
624                                 $_REQUEST["location"] = $post->place->full_name;
625
626                         if (is_array($post->geo->coordinates))
627                                 $_REQUEST["coord"] = $post->geo->coordinates[0]." ".$post->geo->coordinates[1];
628
629                         if (is_array($post->coordinates->coordinates))
630                                 $_REQUEST["coord"] = $post->coordinates->coordinates[1]." ".$post->coordinates->coordinates[0];
631
632                         //print_r($_REQUEST);
633                         logger('twitter: posting for user '.$uid);
634
635                         require_once('mod/item.php');
636                         item_post($a);
637
638                 }
639         }
640         set_pconfig($uid, 'twitter', 'lastid', $lastid);
641 }