]> git.mxchange.org Git - friendica-addons.git/blob - twitter/twitter.php
twitter: It is now possible to mirror own postings from twitter 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', 30); // 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         // remove the recycle signs and the names since they aren't helpful on twitter
310         // recycle 1
311         $recycle = html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8');
312         $body = preg_replace( '/'.$recycle.'\[url\=(\w+.*?)\](\w+.*?)\[\/url\]/i', "\n", $body);
313         // recycle 2 (Test)
314         $recycle = html_entity_decode("&#x25CC; ", ENT_QUOTES, 'UTF-8');
315         $body = preg_replace( '/'.$recycle.'\[url\=(\w+.*?)\](\w+.*?)\[\/url\]/i', "\n", $body);
316
317         // remove the share element
318         $body = preg_replace("/\[share(.*?)\](.*?)\[\/share\]/ism","\n\n$2\n\n",$body);
319
320         // At first convert the text to html
321         $html = bbcode($body, false, false);
322
323         // Then convert it to plain text
324         //$msg = trim($b['title']." \n\n".html2plain($html, 0, true));
325         $msg = trim(html2plain($html, 0, true));
326         $msg = html_entity_decode($msg,ENT_QUOTES,'UTF-8');
327
328         // Removing multiple newlines
329         while (strpos($msg, "\n\n\n") !== false)
330                 $msg = str_replace("\n\n\n", "\n\n", $msg);
331
332         // Removing multiple spaces
333         while (strpos($msg, "  ") !== false)
334                 $msg = str_replace("  ", " ", $msg);
335
336         // Removing URLs
337         $msg = preg_replace('/(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/i', "", $msg);
338
339         $msg = trim($msg);
340
341         $link = '';
342         // look for bookmark-bbcode and handle it with priority
343         if(preg_match("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/is",$b['body'],$matches))
344                 $link = $matches[1];
345
346         $multiplelinks = (strpos($b['body'], "[bookmark") != strrpos($b['body'], "[bookmark"));
347
348         // If there is no bookmark element then take the first link
349         if ($link == '') {
350                 $links = collecturls($html);
351                 if (sizeof($links) > 0) {
352                         reset($links);
353                         $link = current($links);
354                 }
355                 $multiplelinks = (sizeof($links) > 1);
356         }
357
358         $msglink = "";
359         if ($multiplelinks)
360                 $msglink = $b["plink"];
361         else if ($link != "")
362                 $msglink = $link;
363         else if ($multipleimages)
364                 $msglink = $b["plink"];
365         else if ($image != "")
366                 $msglink = $image;
367
368         if (($msglink == "") and strlen($msg) > $max_char)
369                 $msglink = $b["plink"];
370
371         if (strlen($msglink) > 20)
372                 $msglink = short_link($msglink);
373
374         if (strlen(trim($msg." ".$msglink)) > $max_char) {
375                 $msg = substr($msg, 0, $max_char - (strlen($msglink)));
376                 $lastchar = substr($msg, -1);
377                 $msg = substr($msg, 0, -1);
378                 $pos = strrpos($msg, "\n");
379                 if ($pos > 0)
380                         $msg = substr($msg, 0, $pos);
381                 else if ($lastchar != "\n")
382                         $msg = substr($msg, 0, -3)."...";
383         }
384         $msg = str_replace("\n", " ", $msg);
385
386         // Removing multiple spaces - again
387         while (strpos($msg, "  ") !== false)
388                 $msg = str_replace("  ", " ", $msg);
389
390         return(trim($msg." ".$msglink));
391 }
392
393 function twitter_post_hook(&$a,&$b) {
394
395         /**
396          * Post to Twitter
397          */
398
399         if($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited']))
400         return;
401
402         if(! strstr($b['postopts'],'twitter'))
403                 return;
404
405         if($b['parent'] != $b['id'])
406                 return;
407
408         // if posts comes from twitter don't send it back
409         if($b['app'] == "twitter.com")
410                 return;
411
412         logger('twitter post invoked');
413
414
415         load_pconfig($b['uid'], 'twitter');
416
417         $ckey    = get_config('twitter', 'consumerkey');
418         $csecret = get_config('twitter', 'consumersecret');
419         $otoken  = get_pconfig($b['uid'], 'twitter', 'oauthtoken');
420         $osecret = get_pconfig($b['uid'], 'twitter', 'oauthsecret');
421         $intelligent_shortening = get_pconfig($b['uid'], 'twitter', 'intelligent_shortening');
422
423         // Global setting overrides this
424         if (get_config('twitter','intelligent_shortening'))
425                 $intelligent_shortening = get_config('twitter','intelligent_shortening');
426
427         if($ckey && $csecret && $otoken && $osecret) {
428                 logger('twitter: we have customer key and oauth stuff, going to send.', LOGGER_DEBUG);
429
430                 require_once('library/twitteroauth.php');
431                 require_once('include/bbcode.php');
432                 $tweet = new TwitterOAuth($ckey,$csecret,$otoken,$osecret);
433                 // in theory max char is 140 but T. uses t.co to make links 
434                 // longer so we give them 10 characters extra
435                 if (!$intelligent_shortening) {
436                         $max_char = 130; // max. length for a tweet
437                         // we will only work with up to two times the length of the dent 
438                         // we can later send to Twitter. This way we can "gain" some 
439                         // information during shortening of potential links but do not 
440                         // shorten all the links in a 200000 character long essay.
441                         if (! $b['title']=='') {
442                             $tmp = $b['title'] . ' : '. $b['body'];
443         //                    $tmp = substr($tmp, 0, 4*$max_char);
444                         } else {
445                             $tmp = $b['body']; // substr($b['body'], 0, 3*$max_char);
446                         }
447                         // if [url=bla][img]blub.png[/img][/url] get blub.png
448                         $tmp = preg_replace( '/\[url\=(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)\]\[img\](\\w+.*?)\\[\\/img\]\\[\\/url\]/i', '$2', $tmp);
449                         // preserve links to images, videos and audios
450                         $tmp = preg_replace( '/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism', '$3', $tmp);
451                         $tmp = preg_replace( '/\[\\/?img(\\s+.*?\]|\])/i', '', $tmp);
452                         $tmp = preg_replace( '/\[\\/?video(\\s+.*?\]|\])/i', '', $tmp);
453                         $tmp = preg_replace( '/\[\\/?youtube(\\s+.*?\]|\])/i', '', $tmp);
454                         $tmp = preg_replace( '/\[\\/?vimeo(\\s+.*?\]|\])/i', '', $tmp);
455                         $tmp = preg_replace( '/\[\\/?audio(\\s+.*?\]|\])/i', '', $tmp);
456                         $linksenabled = get_pconfig($b['uid'],'twitter','post_taglinks');
457                         // if a #tag is linked, don't send the [url] over to SN
458                         // that is, don't send if the option is not set in the
459                         // connector settings
460                         if ($linksenabled=='0') {
461                                 // #-tags
462                                 $tmp = preg_replace( '/#\[url\=(\w+.*?)\](\w+.*?)\[\/url\]/i', '#$2', $tmp);
463                                 // @-mentions
464                                 $tmp = preg_replace( '/@\[url\=(\w+.*?)\](\w+.*?)\[\/url\]/i', '@$2', $tmp);
465                                 // recycle 1
466                                 $recycle = html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8');
467                                 $tmp = preg_replace( '/'.$recycle.'\[url\=(\w+.*?)\](\w+.*?)\[\/url\]/i', $recycle.'$2', $tmp);
468                                 // recycle 2 (Test)
469                                 $recycle = html_entity_decode("&#x25CC; ", ENT_QUOTES, 'UTF-8');
470                                 $tmp = preg_replace( '/'.$recycle.'\[url\=(\w+.*?)\](\w+.*?)\[\/url\]/i', $recycle.'$2', $tmp);
471                         }
472                         $tmp = preg_replace( '/\[url\=(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)\](\w+.*?)\[\/url\]/i', '$2 $1', $tmp);
473                         $tmp = preg_replace( '/\[bookmark\=(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)\](\w+.*?)\[\/bookmark\]/i', '$2 $1', $tmp);
474                         // find all http or https links in the body of the entry and
475                         // apply the shortener if the link is longer then 20 characters
476                         if (( strlen($tmp)>$max_char ) && ( $max_char > 0 )) {
477                             preg_match_all ( '/(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/i', $tmp, $allurls  );
478                             foreach ($allurls as $url) {
479                                 foreach ($url as $u) {
480                                     if (strlen($u)>20) {
481                                         $sl = short_link($u);
482                                         $tmp = str_replace( $u, $sl, $tmp );
483                                     }
484                                 }
485                             }
486                         }
487                         // ok, all the links we want to send out are save, now strip 
488                         // away the remaining bbcode
489                         //$msg = strip_tags(bbcode($tmp, false, false));
490                         $msg = bbcode($tmp, false, false);
491                         $msg = str_replace(array('<br>','<br />'),"\n",$msg);
492                         $msg = strip_tags($msg);
493
494                         // quotes not working - let's try this
495                         $msg = html_entity_decode($msg);
496                         if (( strlen($msg) > $max_char) && $max_char > 0) {
497                                 $shortlink = short_link( $b['plink'] );
498                                 // the new message will be shortened such that "... $shortlink"
499                                 // will fit into the character limit
500                                 $msg = nl2br(substr($msg, 0, $max_char-strlen($shortlink)-4));
501                                 $msg = str_replace(array('<br>','<br />'),' ',$msg);
502                                 $e = explode(' ', $msg);
503                                 //  remove the last word from the cut down message to 
504                                 //  avoid sending cut words to the MicroBlog
505                                 array_pop($e);
506                                 $msg = implode(' ', $e);
507                                 $msg .= '... ' . $shortlink;
508                         }
509
510                         $msg = trim($msg);
511                 } else
512                         $msg = twitter_shortenmsg($b);
513
514                 // and now tweet it :-)
515                 if(strlen($msg)) {
516                         $result = $tweet->post('statuses/update', array('status' => $msg));
517                         logger('twitter_post send, result: ' . print_r($result, true), LOGGER_DEBUG);
518                         if ($result->error) {
519                                 logger('Send to Twitter failed: "' . $result->error . '"');
520                         }
521                 }
522         }
523 }
524
525 function twitter_plugin_admin_post(&$a){
526         $consumerkey    =       ((x($_POST,'consumerkey'))              ? notags(trim($_POST['consumerkey']))   : '');
527         $consumersecret =       ((x($_POST,'consumersecret'))   ? notags(trim($_POST['consumersecret'])): '');
528         set_config('twitter','consumerkey',$consumerkey);
529         set_config('twitter','consumersecret',$consumersecret);
530         info( t('Settings updated.'). EOL );
531 }
532 function twitter_plugin_admin(&$a, &$o){
533         $t = get_markup_template( "admin.tpl", "addon/twitter/" );
534
535         $includes = array(
536                 '$field_input' => 'field_input.tpl',
537         );
538         //$includes = set_template_includes($a->theme['template_engine'], $includes);
539
540         $o = replace_macros($t, $includes + array(
541                 '$submit' => t('Submit'),
542                                                                 // name, label, value, help, [extra values]
543                 '$consumerkey' => array('consumerkey', t('Consumer key'),  get_config('twitter', 'consumerkey' ), ''),
544                 '$consumersecret' => array('consumersecret', t('Consumer secret'),  get_config('twitter', 'consumersecret' ), '')
545         ));
546 }
547
548 function twitter_cron($a,$b) {
549         $last = get_config('twitter','last_poll');
550
551         $poll_interval = intval(get_config('twitter','poll_interval'));
552         if(! $poll_interval)
553                 $poll_interval = TWITTER_DEFAULT_POLL_INTERVAL;
554
555         if($last) {
556                 $next = $last + ($poll_interval * 60);
557                 if($next > time()) {
558                         logger('twitter: poll intervall not reached');
559                         return;
560                 }
561         }
562         logger('twitter: cron_start');
563
564         $r = q("SELECT * FROM `pconfig` WHERE `cat` = 'twitter' AND `k` = 'mirror_posts' AND `v` = '1' ORDER BY RAND() ");
565         if(count($r)) {
566                 foreach($r as $rr) {
567                         logger('twitter: fetching for user '.$rr['uid']);
568                         twitter_fetchtimeline($a, $rr['uid']);
569                 }
570         }
571
572         logger('twitter: cron_end');
573
574         set_config('twitter','last_poll', time());
575 }
576
577 function twitter_fetchtimeline($a, $uid) {
578         $ckey    = get_config('twitter', 'consumerkey');
579         $csecret = get_config('twitter', 'consumersecret');
580         $otoken  = get_pconfig($uid, 'twitter', 'oauthtoken');
581         $osecret = get_pconfig($uid, 'twitter', 'oauthsecret');
582         $lastid  = get_pconfig($uid, 'twitter', 'lastid');
583
584         require_once('library/twitteroauth.php');
585         $connection = new TwitterOAuth($ckey,$csecret,$otoken,$osecret);
586
587         $parameters = array("exclude_replies" => true, "trim_user" => true, "contributor_details" => false, "include_rts" => false);
588
589         if ($lastid <> "")
590                 $parameters["since_id"] = $lastid;
591
592         $items = $connection->get('statuses/user_timeline', $parameters);
593         $posts = array_reverse($items);
594
595         foreach ($posts as $post) {
596                 if ($post->id_str > $lastid)
597                         $lastid = $post->id_str;
598
599                 if (!strpos($post->source, $a->get_hostname())) {
600                         $_SESSION["authenticated"] = true;
601                         $_SESSION["uid"] = $uid;
602
603                         $_REQUEST["type"] = "wall";
604                         $_REQUEST["api_source"] = true;
605                         $_REQUEST["profile_uid"] = $uid;
606                         $_REQUEST["source"] = "twitter.com";
607
608                         //$_REQUEST["date"] = $post->created_at;
609
610                         $_REQUEST["body"] = $post->text;
611                         if (is_string($post->place->name))
612                                 $_REQUEST["location"] = $post->place->name;
613
614                         if (is_string($post->place->full_name))
615                                 $_REQUEST["location"] = $post->place->full_name;
616
617                         if (is_array($post->geo->coordinates))
618                                 $_REQUEST["coord"] = $post->geo->coordinates[0]." ".$post->geo->coordinates[1];
619
620                         if (is_array($post->coordinates->coordinates))
621                                 $_REQUEST["coord"] = $post->coordinates->coordinates[1]." ".$post->coordinates->coordinates[0];
622
623                         //print_r($_REQUEST);
624                         logger('twitter: posting for user '.$uid);
625
626                         require_once('mod/item.php');
627                         item_post($a);
628
629                 }
630         }
631         set_pconfig($uid, 'twitter', 'lastid', $lastid);
632 }