]> git.mxchange.org Git - friendica-addons.git/blobdiff - tumblr/tumblr.php
tumblr: Now works with oAuth
[friendica-addons.git] / tumblr / tumblr.php
index 03a67949b3ec299f439c95166a13b0d235317f7a..01ba04bb0a5f7f38f9f6fbbe0c034e34e718c80b 100755 (executable)
-<?php
-
-/**
- * Name: Tumblr Post Connector
- * Description: Post to Tumblr
- * Version: 1.0
- * Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
- */
-
-function tumblr_install() {
-    register_hook('post_local',           'addon/tumblr/tumblr.php', 'tumblr_post_local');
-    register_hook('notifier_normal',      'addon/tumblr/tumblr.php', 'tumblr_send');
-    register_hook('jot_networks',         'addon/tumblr/tumblr.php', 'tumblr_jot_nets');
-    register_hook('connector_settings',      'addon/tumblr/tumblr.php', 'tumblr_settings');
-    register_hook('connector_settings_post', 'addon/tumblr/tumblr.php', 'tumblr_settings_post');
-
-}
-function tumblr_uninstall() {
-    unregister_hook('post_local',       'addon/tumblr/tumblr.php', 'tumblr_post_local');
-    unregister_hook('notifier_normal',  'addon/tumblr/tumblr.php', 'tumblr_send');
-    unregister_hook('jot_networks',     'addon/tumblr/tumblr.php', 'tumblr_jot_nets');
-    unregister_hook('connector_settings',      'addon/tumblr/tumblr.php', 'tumblr_settings');
-    unregister_hook('connector_settings_post', 'addon/tumblr/tumblr.php', 'tumblr_settings_post');
-}
-
-
-function tumblr_jot_nets(&$a,&$b) {
-    if(! local_user())
-        return;
-
-    $tmbl_post = get_pconfig(local_user(),'tumblr','post');
-    if(intval($tmbl_post) == 1) {
-        $tmbl_defpost = get_pconfig(local_user(),'tumblr','post_by_default');
-        $selected = ((intval($tmbl_defpost) == 1) ? ' checked="checked" ' : '');
-        $b .= '<div class="profile-jot-net"><input type="checkbox" name="tumblr_enable"' . $selected . ' value="1" /> '
-            . t('Post to Tumblr') . '</div>';
-    }
-}
-
-
-function tumblr_settings(&$a,&$s) {
-
-    if(! local_user())
-        return;
-
-    /* Add our stylesheet to the page so we can make our settings look nice */
-
-    $a->page['htmlhead'] .= '<link rel="stylesheet"  type="text/css" href="' . $a->get_baseurl() . '/addon/tumblr/tumblr.css' . '" media="all" />' . "\r\n";
-
-    /* Get the current state of our config variables */
-
-    $enabled = get_pconfig(local_user(),'tumblr','post');
-
-    $checked = (($enabled) ? ' checked="checked" ' : '');
-
-    $def_enabled = get_pconfig(local_user(),'tumblr','post_by_default');
-
-    $def_checked = (($def_enabled) ? ' checked="checked" ' : '');
-
-       $tmbl_username = get_pconfig(local_user(), 'tumblr', 'tumblr_username');
-       $tmbl_password = get_pconfig(local_user(), 'tumblr', 'tumblr_password');
-
-
-    /* Add some HTML to the existing form */
-
-    $s .= '<div class="settings-block">';
-    $s .= '<h3>' . t('Tumblr Post Settings') . '</h3>';
-    $s .= '<div id="tumblr-enable-wrapper">';
-    $s .= '<label id="tumblr-enable-label" for="tumblr-checkbox">' . t('Enable Tumblr Post Plugin') . '</label>';
-    $s .= '<input id="tumblr-checkbox" type="checkbox" name="tumblr" value="1" ' . $checked . '/>';
-    $s .= '</div><div class="clear"></div>';
-
-    $s .= '<div id="tumblr-username-wrapper">';
-    $s .= '<label id="tumblr-username-label" for="tumblr-username">' . t('Tumblr login') . '</label>';
-    $s .= '<input id="tumblr-username" type="text" name="tumblr_username" value="' . $tmbl_username . '" />';
-    $s .= '</div><div class="clear"></div>';
-
-    $s .= '<div id="tumblr-password-wrapper">';
-    $s .= '<label id="tumblr-password-label" for="tumblr-password">' . t('Tumblr password') . '</label>';
-    $s .= '<input id="tumblr-password" type="password" name="tumblr_password" value="' . $tmbl_password . '" />';
-    $s .= '</div><div class="clear"></div>';
-
-    $s .= '<div id="tumblr-bydefault-wrapper">';
-    $s .= '<label id="tumblr-bydefault-label" for="tumblr-bydefault">' . t('Post to Tumblr by default') . '</label>';
-    $s .= '<input id="tumblr-bydefault" type="checkbox" name="tumblr_bydefault" value="1" ' . $def_checked . '/>';
-    $s .= '</div><div class="clear"></div>';
-
-    /* provide a submit button */
-
-    $s .= '<div class="settings-submit-wrapper" ><input type="submit" id="tumblr-submit" name="tumblr-submit" class="settings-submit" value="' . t('Submit') . '" /></div></div>';
-
-}
-
-
-function tumblr_settings_post(&$a,&$b) {
-
-       if(x($_POST,'tumblr-submit')) {
-
-               set_pconfig(local_user(),'tumblr','post',intval($_POST['tumblr']));
-               set_pconfig(local_user(),'tumblr','post_by_default',intval($_POST['tumblr_bydefault']));
-               set_pconfig(local_user(),'tumblr','tumblr_username',trim($_POST['tumblr_username']));
-               set_pconfig(local_user(),'tumblr','tumblr_password',trim($_POST['tumblr_password']));
-
-       }
-
-}
-
-function tumblr_post_local(&$a,&$b) {
-
-       // This can probably be changed to allow editing by pointing to a different API endpoint
-
-       if($b['edit'])
-               return;
-
-       if((! local_user()) || (local_user() != $b['uid']))
-               return;
-
-       if($b['private'] || $b['parent'])
-               return;
-
-    $tmbl_post   = intval(get_pconfig(local_user(),'tumblr','post'));
-
-       $tmbl_enable = (($tmbl_post && x($_REQUEST,'tumblr_enable')) ? intval($_REQUEST['tumblr_enable']) : 0);
-
-       if($_REQUEST['api_source'] && intval(get_pconfig(local_user(),'tumblr','post_by_default')))
-               $tmbl_enable = 1;
-
-    if(! $tmbl_enable)
-       return;
-
-    if(strlen($b['postopts']))
-       $b['postopts'] .= ',';
-     $b['postopts'] .= 'tumblr';
-}
-
-
-
-
-function tumblr_send(&$a,&$b) {
-
-    if($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited']))
-        return;
-
-    if(! strstr($b['postopts'],'tumblr'))
-        return;
-
-    if($b['parent'] != $b['id'])
-        return;
-
-
-       $tmbl_username = get_pconfig($b['uid'],'tumblr','tumblr_username');
-       $tmbl_password = get_pconfig($b['uid'],'tumblr','tumblr_password');
-       $tmbl_blog = 'http://www.tumblr.com/api/write';
-
-       if($tmbl_username && $tmbl_password && $tmbl_blog) {
-
-               require_once('include/bbcode.php');
-
-               $tag_arr = array();
-               $tags = '';
-               $x = preg_match_all('/\#\[(.*?)\](.*?)\[/',$b['tag'],$matches,PREG_SET_ORDER);
-
-               if($x) {
-                       foreach($matches as $mtch) {
-                               $tag_arr[] = $mtch[2];
-                       }
-               }
-               if(count($tag_arr))
-                       $tags = implode(',',$tag_arr);
-
-               $link = "";
-               $video = false;
-               $title = trim($b['title']);
-
-               // Checking for a bookmark
-               if(preg_match("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/is",$b['body'],$matches)) {
-                       $link = $matches[1];
-                       if ($title == '')
-                               $title = html_entity_decode($matches[2],ENT_QUOTES,'UTF-8');
-
-                       $body = $b['body'];
-                       // splitting the text in two parts:
-                       // before and after the bookmark
-                       $pos = strpos($body, "[bookmark");
-                       $body1 = substr($body, 0, $pos);
-                       $body2 = substr($body, $pos);
-
-                       // Removing the bookmark
-                       $body2 = preg_replace("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism",'',$body2);
-                       $body = $body1.$body2;
-
-                       $video = ((stristr($link,'youtube')) || (stristr($link,'youtu.be')) || (stristr($mtch[1],'vimeo')));
-               }
-
-               $params = array(
-                       'email' => $tmbl_username,
-                       'password' => $tmbl_password,
-                       'format' => 'html',
-                       'generator' => 'Friendica',
-                       'tags' => $tags);
-
-               if (($link != '') and $video) {
-                       $params['type'] = "video";
-                       $params['embed'] = $link;
-                       if ($title != '')
-                               $params['caption'] = '<h1><a href="'.$link.'">'.$title.
-                                                       "</a></h1><p>".bbcode($body)."</p>";
-                       else
-                               $params['caption'] = bbcode($body);
-               } else if (($link != '') and !$video) {
-                       $params['type'] = "link";
-                       $params['name'] = $title;
-                       $params['url'] = $link;
-                       //$params['description'] = bbcode($body);
-                       $params['description'] = bbcode($b["body"]);
-               } else {
-                       $params['type'] = "regular";
-                       $params['title'] = $title;
-                       $params['body'] = bbcode($b['body']);
-               }
-
-               $x = post_url($tmbl_blog,$params);
-               $ret_code = $a->get_curl_code();
-               if($ret_code == 201)
-                       logger('tumblr_send: success');
-               elseif($ret_code == 403)
-                       logger('tumblr_send: authentication failure');
-               else
-                       logger('tumblr_send: general error: ' . print_r($x,true));
-
-       }
-}
-
+<?php\r
+\r
+/**\r
+ * Name: Tumblr Post Connector\r
+ * Description: Post to Tumblr\r
+ * Version: 1.0\r
+ * Author: Mike Macgirvin <http://macgirvin.com/profile/mike>\r
+ */\r
+\r
+require_once('library/OAuth1.php');\r
+require_once('addon/tumblr/tumblroauth/tumblroauth.php');\r
+\r
+function tumblr_install() {\r
+    register_hook('post_local',           'addon/tumblr/tumblr.php', 'tumblr_post_local');\r
+    register_hook('notifier_normal',      'addon/tumblr/tumblr.php', 'tumblr_send');\r
+    register_hook('jot_networks',         'addon/tumblr/tumblr.php', 'tumblr_jot_nets');\r
+    register_hook('connector_settings',      'addon/tumblr/tumblr.php', 'tumblr_settings');\r
+    register_hook('connector_settings_post', 'addon/tumblr/tumblr.php', 'tumblr_settings_post');\r
+\r
+}\r
+function tumblr_uninstall() {\r
+    unregister_hook('post_local',       'addon/tumblr/tumblr.php', 'tumblr_post_local');\r
+    unregister_hook('notifier_normal',  'addon/tumblr/tumblr.php', 'tumblr_send');\r
+    unregister_hook('jot_networks',     'addon/tumblr/tumblr.php', 'tumblr_jot_nets');\r
+    unregister_hook('connector_settings',      'addon/tumblr/tumblr.php', 'tumblr_settings');\r
+    unregister_hook('connector_settings_post', 'addon/tumblr/tumblr.php', 'tumblr_settings_post');\r
+}\r
+\r
+function tumblr_module() {}\r
+\r
+function tumblr_content(&$a) {\r
+\r
+       if(! local_user()) {\r
+               notice( t('Permission denied.') . EOL);\r
+               return '';\r
+       }\r
+\r
+       if (isset($a->argv[1]))\r
+               switch ($a->argv[1]) {\r
+                       case "connect":\r
+                               $o = tumblr_connect($a);\r
+                               break;\r
+                       case "callback":\r
+                               $o = tumblr_callback($a);\r
+                               break;\r
+                       default:\r
+                               $o = print_r($a->argv, true);\r
+                               break;\r
+               }\r
+       else\r
+               $o = tumblr_connect($a);\r
+\r
+       return $o;\r
+}\r
+\r
+function tumblr_connect($a) {\r
+       // Start a session.  This is necessary to hold on to  a few keys the callback script will also need\r
+       session_start();\r
+\r
+       // Include the TumblrOAuth library\r
+       //require_once('addon/tumblr/tumblroauth/tumblroauth.php');\r
+\r
+       // Define the needed keys\r
+       $consumer_key = get_config('tumblr','consumer_key');\r
+       $consumer_secret = get_config('tumblr','consumer_secret');\r
+\r
+       // The callback URL is the script that gets called after the user authenticates with tumblr\r
+       // In this example, it would be the included callback.php\r
+       $callback_url = $a->get_baseurl()."/tumblr/callback";\r
+\r
+       // Let's begin.  First we need a Request Token.  The request token is required to send the user\r
+       // to Tumblr's login page.\r
+\r
+       // Create a new instance of the TumblrOAuth library.  For this step, all we need to give the library is our\r
+       // Consumer Key and Consumer Secret\r
+       $tum_oauth = new TumblrOAuth($consumer_key, $consumer_secret);\r
+\r
+       // Ask Tumblr for a Request Token.  Specify the Callback URL here too (although this should be optional)\r
+       $request_token = $tum_oauth->getRequestToken($callback_url);\r
+\r
+       // Store the request token and Request Token Secret as out callback.php script will need this\r
+       $_SESSION['request_token'] = $token = $request_token['oauth_token'];\r
+       $_SESSION['request_token_secret'] = $request_token['oauth_token_secret'];\r
+\r
+       // Check the HTTP Code.  It should be a 200 (OK), if it's anything else then something didn't work.\r
+       switch ($tum_oauth->http_code) {\r
+         case 200:\r
+           // Ask Tumblr to give us a special address to their login page\r
+           $url = $tum_oauth->getAuthorizeURL($token);\r
+\r
+               // Redirect the user to the login URL given to us by Tumblr\r
+           header('Location: ' . $url);\r
+\r
+               // That's it for our side.  The user is sent to a Tumblr Login page and\r
+               // asked to authroize our app.  After that, Tumblr sends the user back to\r
+               // our Callback URL (callback.php) along with some information we need to get\r
+               // an access token.\r
+\r
+           break;\r
+       default:\r
+           // Give an error message\r
+           $o = 'Could not connect to Tumblr. Refresh the page or try again later.';\r
+       }\r
+       return($o);\r
+}\r
+\r
+function tumblr_callback($a) {\r
+\r
+       // Start a session, load the library\r
+       session_start();\r
+       //require_once('addon/tumblr/tumblroauth/tumblroauth.php');\r
+\r
+       // Define the needed keys\r
+       $consumer_key = get_config('tumblr','consumer_key');\r
+       $consumer_secret = get_config('tumblr','consumer_secret');\r
+\r
+       // Once the user approves your app at Tumblr, they are sent back to this script.\r
+       // This script is passed two parameters in the URL, oauth_token (our Request Token)\r
+       // and oauth_verifier (Key that we need to get Access Token).\r
+       // We'll also need out Request Token Secret, which we stored in a session.\r
+\r
+       // Create instance of TumblrOAuth.\r
+       // It'll need our Consumer Key and Secret as well as our Request Token and Secret\r
+       $tum_oauth = new TumblrOAuth($consumer_key, $consumer_secret, $_SESSION['request_token'], $_SESSION['request_token_secret']);\r
+\r
+       // Ok, let's get an Access Token. We'll need to pass along our oauth_verifier which was given to us in the URL. \r
+       $access_token = $tum_oauth->getAccessToken($_REQUEST['oauth_verifier']);\r
+\r
+       // We're done with the Request Token and Secret so let's remove those.\r
+       unset($_SESSION['request_token']);\r
+       unset($_SESSION['request_token_secret']);\r
+\r
+       // Make sure nothing went wrong.\r
+       if (200 == $tum_oauth->http_code) {\r
+         // good to go\r
+       } else {\r
+         return('Unable to authenticate');\r
+       }\r
+\r
+       // What's next?  Now that we have an Access Token and Secret, we can make an API call.\r
+       set_pconfig(local_user(), "tumblr", "oauth_token", $access_token['oauth_token']);\r
+       set_pconfig(local_user(), "tumblr", "oauth_token_secret", $access_token['oauth_token_secret']);\r
+\r
+       $o = t("You are now authenticated to tumblr.");\r
+       $o .= '<br /><a href="'.$a->get_baseurl().'/settings/connectors">'.t("return to the connector page").'</a>';\r
+       return($o);\r
+}\r
+\r
+function tumblr_jot_nets(&$a,&$b) {\r
+    if(! local_user())\r
+        return;\r
+\r
+    $tmbl_post = get_pconfig(local_user(),'tumblr','post');\r
+    if(intval($tmbl_post) == 1) {\r
+        $tmbl_defpost = get_pconfig(local_user(),'tumblr','post_by_default');\r
+        $selected = ((intval($tmbl_defpost) == 1) ? ' checked="checked" ' : '');\r
+        $b .= '<div class="profile-jot-net"><input type="checkbox" name="tumblr_enable"' . $selected . ' value="1" /> '\r
+            . t('Post to Tumblr') . '</div>';\r
+    }\r
+}\r
+\r
+\r
+function tumblr_settings(&$a,&$s) {\r
+\r
+    if(! local_user())\r
+        return;\r
+\r
+    /* Add our stylesheet to the page so we can make our settings look nice */\r
+\r
+    $a->page['htmlhead'] .= '<link rel="stylesheet"  type="text/css" href="' . $a->get_baseurl() . '/addon/tumblr/tumblr.css' . '" media="all" />' . "\r\n";\r
+\r
+    /* Get the current state of our config variables */\r
+\r
+    $enabled = get_pconfig(local_user(),'tumblr','post');\r
+\r
+    $checked = (($enabled) ? ' checked="checked" ' : '');\r
+\r
+    $def_enabled = get_pconfig(local_user(),'tumblr','post_by_default');\r
+\r
+    $def_checked = (($def_enabled) ? ' checked="checked" ' : '');\r
+\r
+    /* Add some HTML to the existing form */\r
+\r
+    $s .= '<div class="settings-block">';\r
+    $s .= '<h3>' . t('Tumblr Post Settings') . '</h3>';\r
+\r
+    $s .= '<div id="tumblr-username-wrapper">';\r
+    $s .= '<a href="'.$a->get_baseurl().'/tumblr/connect">'.t("(Re-)Authenticate your tumblr page").'</a>';\r
+    $s .= '</div><div class="clear"></div>';\r
+\r
+    $s .= '<div id="tumblr-enable-wrapper">';\r
+    $s .= '<label id="tumblr-enable-label" for="tumblr-checkbox">' . t('Enable Tumblr Post Plugin') . '</label>';\r
+    $s .= '<input id="tumblr-checkbox" type="checkbox" name="tumblr" value="1" ' . $checked . '/>';\r
+    $s .= '</div><div class="clear"></div>';\r
+\r
+    $s .= '<div id="tumblr-bydefault-wrapper">';\r
+    $s .= '<label id="tumblr-bydefault-label" for="tumblr-bydefault">' . t('Post to Tumblr by default') . '</label>';\r
+    $s .= '<input id="tumblr-bydefault" type="checkbox" name="tumblr_bydefault" value="1" ' . $def_checked . '/>';\r
+    $s .= '</div><div class="clear"></div>';\r
+\r
+    $oauth_token = get_pconfig(local_user(), "tumblr", "oauth_token");\r
+    $oauth_token_secret = get_pconfig(local_user(), "tumblr", "oauth_token_secret");\r
+\r
+    $s .= '<div id="tumblr-password-wrapper">';\r
+    if (($oauth_token != "") and ($oauth_token_secret != "")) {\r
+\r
+       $page = get_pconfig(local_user(),'tumblr','page');\r
+       $consumer_key = get_config('tumblr','consumer_key');\r
+       $consumer_secret = get_config('tumblr','consumer_secret');\r
+\r
+       $tum_oauth = new TumblrOAuth($consumer_key, $consumer_secret, $oauth_token, $oauth_token_secret);\r
+\r
+       $userinfo = $tum_oauth->get('user/info');\r
+\r
+       $blogs = array();\r
+\r
+       $s .= t("Post to page:")."<select name='tumblr_page'>";\r
+       foreach($userinfo->response->user->blogs as $blog) {\r
+               $blogurl = substr(str_replace(array("http://", "https://"), array("", ""), $blog->url), 0, -1);\r
+               if ($page == $blogurl)\r
+                       $s .= "<option value='".$blogurl."' selected>".$blogurl."</option>";\r
+               else\r
+                       $s .= "<option value='".$blogurl."'>".$blogurl."</option>";\r
+       }\r
+\r
+       $s .= "</select>";\r
+    } else\r
+       $s .= t("You are not authenticated to tumblr");\r
+    $s .= '</div><div class="clear"></div>';\r
+\r
+    /* provide a submit button */\r
+\r
+    $s .= '<div class="settings-submit-wrapper" ><input type="submit" id="tumblr-submit" name="tumblr-submit" class="settings-submit" value="' . t('Submit') . '" /></div></div>';\r
+\r
+}\r
+\r
+\r
+function tumblr_settings_post(&$a,&$b) {\r
+\r
+       if(x($_POST,'tumblr-submit')) {\r
+\r
+               set_pconfig(local_user(),'tumblr','post',intval($_POST['tumblr']));\r
+               set_pconfig(local_user(),'tumblr','page',$_POST['tumblr_page']);\r
+               set_pconfig(local_user(),'tumblr','post_by_default',intval($_POST['tumblr_bydefault']));\r
+\r
+       }\r
+\r
+}\r
+\r
+function tumblr_post_local(&$a,&$b) {\r
+\r
+       // This can probably be changed to allow editing by pointing to a different API endpoint\r
+\r
+       if($b['edit'])\r
+               return;\r
+\r
+       if((! local_user()) || (local_user() != $b['uid']))\r
+               return;\r
+\r
+       if($b['private'] || $b['parent'])\r
+               return;\r
+\r
+    $tmbl_post   = intval(get_pconfig(local_user(),'tumblr','post'));\r
+\r
+       $tmbl_enable = (($tmbl_post && x($_REQUEST,'tumblr_enable')) ? intval($_REQUEST['tumblr_enable']) : 0);\r
+\r
+       if($_REQUEST['api_source'] && intval(get_pconfig(local_user(),'tumblr','post_by_default')))\r
+               $tmbl_enable = 1;\r
+\r
+    if(! $tmbl_enable)\r
+       return;\r
+\r
+    if(strlen($b['postopts']))\r
+       $b['postopts'] .= ',';\r
+     $b['postopts'] .= 'tumblr';\r
+}\r
+\r
+\r
+\r
+\r
+function tumblr_send(&$a,&$b) {\r
+\r
+    if($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited']))\r
+        return;\r
+\r
+    if(! strstr($b['postopts'],'tumblr'))\r
+        return;\r
+\r
+    if($b['parent'] != $b['id'])\r
+        return;\r
+\r
+       $oauth_token = get_pconfig($b['uid'], "tumblr", "oauth_token");\r
+       $oauth_token_secret = get_pconfig($b['uid'], "tumblr", "oauth_token_secret");\r
+       $page = get_pconfig($b['uid'], "tumblr", "page");\r
+       $tmbl_blog = 'blog/'.$page.'/post';\r
+\r
+       if($oauth_token && $oauth_token_secret && $tmbl_blog) {\r
+\r
+               require_once('include/bbcode.php');\r
+\r
+               $tag_arr = array();\r
+               $tags = '';\r
+               $x = preg_match_all('/\#\[(.*?)\](.*?)\[/',$b['tag'],$matches,PREG_SET_ORDER);\r
+\r
+               if($x) {\r
+                       foreach($matches as $mtch) {\r
+                               $tag_arr[] = $mtch[2];\r
+                       }\r
+               }\r
+               if(count($tag_arr))\r
+                       $tags = implode(',',$tag_arr);\r
+\r
+               $link = "";\r
+               $video = false;\r
+               $title = trim($b['title']);\r
+\r
+               // Checking for a bookmark\r
+               if(preg_match("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/is",$b['body'],$matches)) {\r
+                       $link = $matches[1];\r
+                       if ($title == '')\r
+                               $title = html_entity_decode($matches[2],ENT_QUOTES,'UTF-8');\r
+\r
+                       $body = $b['body'];\r
+                       // splitting the text in two parts:\r
+                       // before and after the bookmark\r
+                       $pos = strpos($body, "[bookmark");\r
+                       $body1 = substr($body, 0, $pos);\r
+                       $body2 = substr($body, $pos);\r
+\r
+                       // Removing the bookmark\r
+                       $body2 = preg_replace("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism",'',$body2);\r
+                       $body = $body1.$body2;\r
+\r
+                       $video = ((stristr($link,'youtube')) || (stristr($link,'youtu.be')) || (stristr($mtch[1],'vimeo')));\r
+               }\r
+\r
+               $params = array(\r
+                       'format' => 'html',\r
+                       'tweet' => 'off',\r
+                       'tags' => $tags);\r
+\r
+               if (($link != '') and $video) {\r
+                       $params['type'] = "video";\r
+                       $params['embed'] = $link;\r
+                       if ($title != '')\r
+                               $params['caption'] = '<h1><a href="'.$link.'">'.$title.\r
+                                                       "</a></h1><p>".bbcode($body, false, false)."</p>";\r
+                       else\r
+                               $params['caption'] = bbcode($body, false, false);\r
+               } else if (($link != '') and !$video) {\r
+                       $params['type'] = "link";\r
+                       $params['title'] = $title;\r
+                       $params['url'] = $link;\r
+                       $params['description'] = bbcode($b["body"], false, false);\r
+               } else {\r
+                       $params['type'] = "text";\r
+                       $params['title'] = $title;\r
+                       $params['body'] = bbcode($b['body'], false, false);\r
+               }\r
+\r
+               $consumer_key = get_config('tumblr','consumer_key');\r
+               $consumer_secret = get_config('tumblr','consumer_secret');\r
+\r
+               $tum_oauth = new TumblrOAuth($consumer_key, $consumer_secret, $oauth_token, $oauth_token_secret);\r
+\r
+               // Make an API call with the TumblrOAuth instance.\r
+               $x = $tum_oauth->post($tmbl_blog,$params);\r
+\r
+               $ret_code = $tum_oauth->http_code;\r
+\r
+               if($ret_code == 201)\r
+                       logger('tumblr_send: success');\r
+               elseif($ret_code == 403)\r
+                       logger('tumblr_send: authentication failure');\r
+               else\r
+                       logger('tumblr_send: general error: ' . print_r($x,true));\r
+\r
+       }\r
+}\r