importers/keyring-reactions-facebook.php (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 |
<?php
// a horrible hack borrowed from Beau Lebens
function Keyring_Facebook_Reactions() {
class Keyring_Facebook_Reactions extends Keyring_Reactions_Base {
const SLUG = 'facebook_reactions';
const LABEL = 'Facebook - comments, likes and re-shares';
const KEYRING_SERVICE = 'Keyring_Service_Facebook';
const KEYRING_NAME = 'facebook';
const REQUESTS_PER_LOAD = 3; // How many remote requests should be made before reloading the page?
const NUM_PER_REQUEST = 100; // Number of posts per request to ask for
const SILONAME = 'facebook.com';
const GRAPHAPI = '2.2';
function __construct() {
$this->methods = array (
// method name => comment type
'likes' => 'like',
'comments' => 'comment',
//'shares' => 'share'
);
//$this->methods = array ('votes', 'favs', 'comments');
parent::__construct();
}
function make_all_requests( $method, $post ) {
extract($post);
if (empty($post_id))
return new Keyring_Error(
'keyring-facebook-reactions-missing-post-id',
__( 'Missing post ID to make request for.', 'keyring')
);
if (empty($syndication_url))
return new Keyring_Error(
'keyring-facebook-reactions-missing-syndication-url',
__( 'Missing syndication URL.', 'keyring')
);
$silo_id = trim(end((explode('/', rtrim($syndication_url, '/')))));
if (empty($silo_id))
return new Keyring_Error(
'keyring-facebook-reactions-photo-id-not-found',
__( 'Cannot get photo ID out of syndication URL.', 'keyring' )
);
$func = 'get_' . $method;
if ( !method_exists( $this, $func ) )
return new Keyring_Error(
'keyring-facebook-reactions-missing-func',
sprintf(__( 'Function is missing for this method (%s), cannot proceed!', 'keyring'), $method)
);
return $this->$func ( $post_id, $silo_id );
}
/**
* FAVS
*/
function get_likes ( $post_id, $silo_id ) {
$res = array();
$baseurl = sprintf( "https://graph.facebook.com/v%s/%s/likes?", static::GRAPHAPI, $silo_id );
$params = array(
'access_token' => $this->service->token->token,
'limit' => static::NUM_PER_REQUEST,
);
$starturl = $baseurl . http_build_query( $params );
$results = $this->query($starturl);
if ($results && is_array($results) && !empty($results)) {
$auto = ( $this->get_option( 'auto_approve' ) == 1 ) ? 1 : 0;
$type = $this->methods[ 'likes' ];
foreach ( $results as $element ) {
$avatar = sprintf('https://graph.facebook.com/%s/picture', $element->id );
$author_url = 'https://facebook.com/' . $element->id;
$name = $element->name;
$tpl = __( '<a href="%s" rel="nofollow">%s</a> liked this entry on <a href="https://facebook.com" rel="nofollow">facebook</a>','keyring');
$c = array (
'comment_author' => $name,
'comment_author_url' => $author_url,
'comment_author_email' => $element->id . '@' . static::SILONAME,
'comment_post_ID' => $post_id,
'comment_type' => $type,
// DON'T set the date unless it's provided - not with likes
'comment_agent' => get_class($this),
'comment_approved' => $auto,
'comment_content' => sprintf( $tpl, $author_url, $name ),
);
$this->insert_comment($post_id, $c, $element, $avatar);
}
}
}
/**
* comments
*/
function get_comments ( $post_id, $silo_id ) {
$res = array();
$baseurl = sprintf( "https://graph.facebook.com/v%s/%s/comments?", static::GRAPHAPI, $silo_id );
$params = array(
'access_token' => $this->service->token->token,
'limit' => static::NUM_PER_REQUEST,
);
$starturl = $baseurl . http_build_query( $params );
$results = $this->query($starturl);
if ($results && is_array($results) && !empty($results)) {
$auto = ( $this->get_option( 'auto_approve' ) == 1 ) ? 1 : 0;
$type = $this->methods[ 'comments' ];
foreach ( $results as $element ) {
$ctime = strtotime($element->created_time);
$author_url = 'https://facebook.com/' . $element->from->id;
$name = $element->from->name;
$avatar = sprintf('https://graph.facebook.com/%s/picture/?width=%s&height=%s', $element->from->id, get_option( 'thumbnail_size_w' ), get_option( 'thumbnail_size_h' ));
$message = $element->message;
if ( isset($element->message_tags) && !empty($element->message_tags) && is_array($element->message_tags) ) {
foreach ( $element->message_tags as $tag ) {
$message = str_replace( $tag->name, sprintf('<a href="https://facebook.com/%s">%s</a>' , $tag->id, $tag->name), $message);
}
}
$c = array (
'comment_author' => $name,
'comment_author_url' => $author_url,
'comment_author_email' => $element->from->id . '@' . static::SILONAME,
'comment_post_ID' => $post_id,
'comment_type' => $type,
'comment_date' => date("Y-m-d H:i:s", $ctime),
'comment_date_gmt' => date("Y-m-d H:i:s", $ctime),
'comment_agent' => get_class($this),
'comment_approved' => $auto,
'comment_content' => $message,
);
$this->insert_comment($post_id, $c, $element, $avatar);
}
}
}
/**
*
*/
function query ( $starturl ) {
$nexurl = false;
$finished = false;
$res = array();
if (empty($starturl))
return false;
while (!$finished) {
if (empty($nexturl) or !filter_var($nexturl, FILTER_VALIDATE_URL) ) {
$url = $starturl;
}
else {
$url = $nexturl;
}
$data = $this->service->request( $url, array( 'method' => $this->request_method, 'timeout' => 10 ) );
if ( Keyring_Util::is_error( $data ) )
return ($data);
if (!empty($data->data))
foreach ($data->data as $element )
$res[] = $element;
// jump to the next url or finish
if (isset($data->paging->next) && filter_var($data->paging->next, FILTER_VALIDATE_URL) )
$nexturl = $data->paging->next;
else
$finished = true;
}
return $res;
}
}}
add_action( 'init', function() {
Keyring_Facebook_Reactions(); // Load the class code from above
keyring_register_reactions(
Keyring_Facebook_Reactions::SLUG,
'Keyring_Facebook_Reactions',
plugin_basename( __FILE__ ),
__( 'Import comments, likes and re-shares from Facebook as comments for your syndicated posts.', 'keyring' )
);
} );
|