* Detailed instructions how to use this plugin can be found at
* https://github.com/friendica/friendica/wiki/How-to:-Friendica%E2%80%99s-Facebook-connector
*
- * Vidoes and embeds will not be posted if there is no other content. Links
- * and images will be converted to a format suitable for the Facebook API and
- * long posts truncated - with a link to view the full post.
+ * Vidoes and embeds will not be posted if there is no other content. Links
+ * and images will be converted to a format suitable for the Facebook API and
+ * long posts truncated - with a link to view the full post.
*
* Facebook contacts will not be able to view private photos, as they are not able to
- * authenticate to your site to establish identity. We will address this
+ * authenticate to your site to establish identity. We will address this
* in a future release.
*/
$o .= '<h3>' . t('Facebook Post') . '</h3>';
- if(! $fb_installed) {
+ if(! $fb_installed) {
$o .= '<div id="fbpost-enable-wrapper">';
//read_stream,publish_stream,manage_pages,photo_upload,user_groups,offline_access
}
function fbpost_fetchwall($a, $uid) {
+ require_once("include/oembed.php");
+
$access_token = get_pconfig($uid,'facebook','access_token');
$post_to_page = get_pconfig($uid,'facebook','post_to_page');
$lastcreated = get_pconfig($uid,'facebook','last_created');
$_REQUEST["body"] = (isset($item->message) ? escape_tags($item->message) : '');
- if(isset($item->name) and isset($item->link))
- $_REQUEST["body"] .= "\n\n[bookmark=".$item->link."]".$item->name."[/bookmark]";
- elseif (isset($item->name))
- $_REQUEST["body"] .= "\n\n[b]" . $item->name."[/b]";
+ $content = "";
+ $type = "";
- /*if(isset($item->caption)) {
- if(!isset($item->name) and isset($item->link))
- $_REQUEST["body"] .= "\n\n[bookmark=".$item->link."]".$item->caption."[/bookmark]";
- //else
- // $_REQUEST["body"] .= "[i]" . $item->caption."[/i]\n";
- }
-
- if(!isset($item->caption) and !isset($item->name)) {
- if (isset($item->link))
- $_REQUEST["body"] .= "\n[url]".$item->link."[/url]\n";
- else
- $_REQUEST["body"] .= "\n";
- }*/
+ if(isset($item->name) and isset($item->link)) {
+ $oembed_data = oembed_fetch_url($item->link);
+ $type = $oembed_data->type;
+ $content = "[bookmark=".$item->link."]".$item->name."[/bookmark]";
+ } elseif (isset($item->name))
+ $content .= "[b]".$item->name."[/b]";
$quote = "";
if(isset($item->description) and ($item->type != "photo"))
if(isset($item->caption) and ($item->type == "photo"))
$quote = $item->caption;
- //if (isset($item->properties))
- // foreach ($item->properties as $property)
- // $quote .= "\n".$property->name.": [url=".$property->href."]".$property->text."[/url]";
-
- if ($quote)
- $_REQUEST["body"] .= "\n[quote]".$quote."[/quote]";
-
// Only import the picture when the message is no video
// oembed display a picture of the video as well
- if ($item->type != "video") {
+ //if ($item->type != "video") {
//if (($item->type != "video") and ($item->type != "photo")) {
+ if (($type == "") OR ($type == "link")) {
+
+ $type = $item->type;
+
if(isset($item->picture) && isset($item->link))
- $_REQUEST["body"] .= "\n".'[url='.$item->link.'][img]'.fpost_cleanpicture($item->picture).'[/img][/url]';
+ $content .= "\n".'[url='.$item->link.'][img]'.fpost_cleanpicture($item->picture).'[/img][/url]';
else {
if (isset($item->picture))
- $_REQUEST["body"] .= "\n".'[img]'.fpost_cleanpicture($item->picture).'[/img]';
+ $content .= "\n".'[img]'.fpost_cleanpicture($item->picture).'[/img]';
// if just a link, it may be a wall photo - check
if(isset($item->link))
- $_REQUEST["body"] .= fbpost_get_photo($uid,$item->link);
+ $content .= fbpost_get_photo($uid,$item->link);
}
}
- /*if (($datarray['app'] == "Events") and isset($item->actions))
- foreach ($item->actions as $action)
- if ($action->name == "View")
- $_REQUEST["body"] .= " [url=".$action->link."]".$item->story."[/url]";
- */
-
- if(trim($_REQUEST["body"]) == '') {
+ if(trim($_REQUEST["body"].$content.$quote) == '') {
logger('facebook: empty body '.$item->id.' '.print_r($item, true));
continue;
}
+ if ($content)
+ $_REQUEST["body"] .= "\n\n";
+
+ if ($type)
+ $_REQUEST["body"] .= "[class=type-".$type."]";
+
+ if ($content)
+ $_REQUEST["body"] .= $content;
+
+ if ($quote)
+ $_REQUEST["body"] .= "\n[quote]".$quote."[/quote]";
+
+ if ($type)
+ $_REQUEST["body"] .= "[/class]";
+
$_REQUEST["body"] = trim($_REQUEST["body"]);
if (isset($item->place)) {
function fbsync_createpost($a, $uid, $self, $contacts, $applications, $post, $create_user) {
+ require_once("include/oembed.php");
+
// check if it was already imported
$r = q("SELECT * FROM `item` WHERE `uid` = %d AND `uri` = '%s' LIMIT 1",
intval($uid),
$postarray["body"] = $msgdata["body"];
$postarray["tag"] = $msgdata["tags"];
- if(isset($post->attachment->name) and isset($post->attachment->href))
- $postarray["body"] .= "\n\n[bookmark=".$post->attachment->href."]".$post->attachment->name."[/bookmark]";
- elseif (isset($post->attachment->name) AND ($post->attachment->name != ""))
- $postarray["body"] .= "\n\n[b]" . $post->attachment->name."[/b]";
+ $content = "";
+ $type = "";
+
+ if (isset($post->attachment->name) and isset($post->attachment->href)) {
+ $oembed_data = oembed_fetch_url($post->attachment->href);
+ $type = $oembed_data->type;
+ $content = "[bookmark=".$post->attachment->href."]".$post->attachment->name."[/bookmark]";
+ } elseif (isset($post->attachment->name) AND ($post->attachment->name != ""))
+ $content = "[b]" . $post->attachment->name."[/b]";
$quote = "";
if(isset($post->attachment->description) and ($post->attachment->fb_object_type != "photo"))
if(isset($post->attachment->caption) and ($post->attachment->fb_object_type == "photo"))
$quote = $post->attachment->caption;
- if ($quote.$post->attachment->href.$postarray["body"] == "")
+ if ($quote.$post->attachment->href.$content.$postarray["body"] == "")
return;
- if (isset($post->attachment->media) AND !strstr($post->attachment->href, "://www.youtube.com/")
- AND !strstr($post->attachment->href, "://youtu.be/")
- AND !strstr($post->attachment->href, ".vimeo.com/")) {
+ if (isset($post->attachment->media) // AND !strstr($post->attachment->href, "://www.youtube.com/")
+ //AND !strstr($post->attachment->href, "://youtu.be/")
+ //AND !strstr($post->attachment->href, ".vimeo.com/"))
+ AND (($type == "") OR ($type == "link"))) {
foreach ($post->attachment->media AS $media) {
//$media->photo->owner = number_format($media->photo->owner, 0, '', '');
//if ($media->photo->owner != '') {
// $postarray['author-avatar'] = $contacts[$media->photo->owner]->pic_square;
//}
+ if (isset($media->type))
+ $type = $media->type;
+
if(isset($media->src) && isset($media->href) AND ($media->src != "") AND ($media->href != ""))
- $postarray["body"] .= "\n".'[url='.$media->href.'][img]'.fpost_cleanpicture($media->src).'[/img][/url]';
+ $content .= "\n".'[url='.$media->href.'][img]'.fpost_cleanpicture($media->src).'[/img][/url]';
else {
if (isset($media->src) AND ($media->src != ""))
- $postarray["body"] .= "\n".'[img]'.fpost_cleanpicture($media->src).'[/img]';
+ $content .= "\n".'[img]'.fpost_cleanpicture($media->src).'[/img]';
// if just a link, it may be a wall photo - check
if(isset($post->link))
- $postarray["body"] .= fbpost_get_photo($media->href);
+ $content .= fbpost_get_photo($media->href);
}
}
}
+ if ($content)
+ $postarray["body"] .= "\n\n";
+
+ if ($type)
+ $postarray["body"] .= "[class=type-".$type."]";
+
+ if ($content)
+ $postarray["body"] .= $content;
+
if ($quote)
- $postarray["body"] .= "\n[quote]".$quote."[/quote]";
+ $postarray["body"] .= "\n[quote]".trim($quote)."[/quote]";
+
+ if ($type)
+ $postarray["body"] .= "[/class]";
$postarray["body"] = trim($postarray["body"]);
function fromgplus_handleattachments($item, $displaytext) {
$post = "";
$quote = "";
+ $type = "";
foreach ($item->object->attachments as $attachment) {
switch($attachment->objectType) {
break;
case "article":
- $post .= "\n\n[bookmark=".$attachment->url."]".fromgplus_html2bbcode($attachment->displayName)."[/bookmark]\n";
+ $post .= "\n\n[class=type-link][bookmark=".$attachment->url."]".fromgplus_html2bbcode($attachment->displayName)."[/bookmark]\n";
$images = fromgplus_cleanupgoogleproxy($attachment->fullImage, $attachment->image);
//if ($images["preview"] != "")
$quote = trim(fromgplus_html2bbcode($attachment->content));
if ($quote != "")
$quote = "\n[quote]".$quote."[/quote]";
+
+ $quote .= "[/class]";
break;
case "photo":
function twitter_convertmsg($a, $body, $no_tags = false, $dontincludemedia) {
+ require_once("include/oembed.php");
+
$links = preg_match_all("/([^\]\='".'"'."]|^)(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/ism", $body,$matches,PREG_SET_ORDER);
$footer = "";
$footerurl = "";
+ $type = "";
if ($links) {
foreach ($matches AS $match) {
$expanded_url = twitter_original_url($match[2]);
+ $oembed_data = oembed_fetch_url($expanded_url);
+
+ if ($type == "")
+ $type = $oembed_data->type;
+
// To-Do:
// Twitlonger
- if (strstr($expanded_url, "//www.youtube.com/"))
- $body = str_replace($match[2], "\n[youtube]".$expanded_url."[/youtube]\n", $body);
- elseif (strstr($expanded_url, "//player.vimeo.com/"))
- $body = str_replace($match[2], "\n[vimeo]".$expanded_url."[/vimeo]\n", $body);
- elseif (strstr($expanded_url, "//twitpic.com/")) // Test
- $body = str_replace($match[2], "\n[url]".$expanded_url."[/url]\n", $body);
- elseif (strstr($expanded_url, "//instagram.com/"))
+// if (strstr($expanded_url, "//www.youtube.com/"))
+// $body = str_replace($match[2], "\n[youtube]".$expanded_url."[/youtube]\n", $body);
+// elseif (strstr($expanded_url, "//player.vimeo.com/"))
+// $body = str_replace($match[2], "\n[vimeo]".$expanded_url."[/vimeo]\n", $body);
+// elseif (strstr($expanded_url, "//twitpic.com/")) // Test
+// $body = str_replace($match[2], "\n[url]".$expanded_url."[/url]\n", $body);
+// elseif (strstr($expanded_url, "//instagram.com/"))
+// $body = str_replace($match[2], "\n[url]".$expanded_url."[/url]\n", $body);
+ if ($oembed_data->type != "link")
$body = str_replace($match[2], "\n[url]".$expanded_url."[/url]\n", $body);
else {
$img_str = fetch_url($expanded_url, true, $redirects, 4);
unlink($tempfile);
if (substr($mime, 0, 6) == "image/") {
+ $type = "photo";
$body = str_replace($match[2], "[img]".$expanded_url."[/img]", $body);
$dontincludemedia = true;
} else {
+ $type = $oembed_data->type;
$footerurl = $expanded_url;
$footerlink = "[url=".$expanded_url."]".$expanded_url."[/url]";
}
if ($footerurl != "")
- $footer = "\n\n".twitter_siteinfo($footerurl, $dontincludemedia);
+ $footer = twitter_siteinfo($footerurl, $dontincludemedia);
if (($footerlink != "") AND (trim($footer) != "")) {
$removedlink = trim(str_replace($footerlink, "", $body));
if (strstr($body, $removedlink))
$body = $removedlink;
- $body .= $footer;
+ $body .= "\n\n[class=type-".$type."]".$footer."[/class]";
}
}