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