123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250 |
- <?php
- if (!defined('STATUSNET')) {
- exit(1);
- }
- require_once('Auth/Yadis/Yadis.php');
- define('LINKBACKPLUGIN_VERSION', '0.1');
- class LinkbackPlugin extends Plugin
- {
- var $notice = null;
- function __construct()
- {
- parent::__construct();
- }
- function onHandleQueuedNotice($notice)
- {
- if ($notice->is_local == 1) {
-
-
- $c = $notice->content;
- $this->notice = $notice;
-
- common_replace_urls_callback($c,
- array($this, 'linkbackUrl'));
- }
- return true;
- }
- function linkbackUrl($url)
- {
- common_log(LOG_DEBUG,"Attempting linkback for " . $url);
- $orig = $url;
- $url = htmlspecialchars_decode($orig);
- $scheme = parse_url($url, PHP_URL_SCHEME);
- if (!in_array($scheme, array('http', 'https'))) {
- return $orig;
- }
-
- $fetcher = Auth_Yadis_Yadis::getHTTPFetcher();
- $result = $fetcher->get($url,
- array('User-Agent: ' . $this->userAgent(),
- 'Accept: application/html+xml,text/html'));
- if (!in_array($result->status, array('200', '206'))) {
- return $orig;
- }
- $pb = null;
- $tb = null;
- if (array_key_exists('X-Pingback', $result->headers)) {
- $pb = $result->headers['X-Pingback'];
- } else if (preg_match('/<link rel="pingback" href="([^"]+)" ?\/?>/',
- $result->body,
- $match)) {
- $pb = $match[1];
- }
- if (!empty($pb)) {
- $this->pingback($result->final_url, $pb);
- } else {
- $tb = $this->getTrackback($result->body, $result->final_url);
- if (!empty($tb)) {
- $this->trackback($result->final_url, $tb);
- }
- }
- return $orig;
- }
- function pingback($url, $endpoint)
- {
- $args = array($this->notice->uri, $url);
- if (!extension_loaded('xmlrpc')) {
- if (!dl('xmlrpc.so')) {
- common_log(LOG_ERR, "Can't pingback; xmlrpc extension not available.");
- return;
- }
- }
- $request = HTTPClient::start();
- try {
- $response = $request->post($endpoint,
- array('Content-Type: text/xml'),
- xmlrpc_encode_request('pingback.ping', $args));
- $response = xmlrpc_decode($response->getBody());
- if (xmlrpc_is_fault($response)) {
- common_log(LOG_WARNING,
- "Pingback error for '$url' ($endpoint): ".
- "$response[faultString] ($response[faultCode])");
- } else {
- common_log(LOG_INFO,
- "Pingback success for '$url' ($endpoint): ".
- "'$response'");
- }
- } catch (HTTP_Request2_Exception $e) {
- common_log(LOG_WARNING,
- "Pingback request failed for '$url' ($endpoint)");
- }
- }
-
-
-
- function getTrackback($text, $url)
- {
- if (preg_match_all('/(<rdf:RDF.*?<\/rdf:RDF>)/sm', $text, $match, PREG_SET_ORDER)) {
- for ($i = 0; $i < count($match); $i++) {
- if (preg_match('|dc:identifier="' . preg_quote($url) . '"|ms', $match[$i][1])) {
- $rdf_array[] = trim($match[$i][1]);
- }
- }
-
- $tb_array = array();
- if (!empty($rdf_array)) {
- for ($i = 0; $i < count($rdf_array); $i++) {
- if (preg_match('/trackback:ping="([^"]+)"/', $rdf_array[$i], $array)) {
- $tb_array[] = trim($array[1]);
- break;
- }
- }
- }
-
- if (empty($tb_array)) {
- return null;
- } else {
- return $tb_array[0];
- }
- }
- if (preg_match_all('/(<a[^>]*?rel=[\'"]trackback[\'"][^>]*?>)/', $text, $match)) {
- foreach ($match[1] as $atag) {
- if (preg_match('/href=[\'"]([^\'"]*?)[\'"]/', $atag, $url)) {
- return $url[1];
- }
- }
- }
- return null;
- }
- function trackback($url, $endpoint)
- {
- $profile = $this->notice->getProfile();
-
-
- $args = array('title' => sprintf(_m('%1$s\'s status on %2$s'),
- $profile->nickname,
- common_exact_date($this->notice->created)),
- 'excerpt' => $this->notice->content,
- 'url' => $this->notice->getUrl(),
- 'blog_name' => $profile->nickname);
- $fetcher = Auth_Yadis_Yadis::getHTTPFetcher();
- $result = $fetcher->post($endpoint,
- http_build_query($args),
- array('User-Agent: ' . $this->userAgent()));
- if ($result->status != '200') {
- common_log(LOG_WARNING,
- "Trackback error for '$url' ($endpoint): ".
- "$result->body");
- } else {
- common_log(LOG_INFO,
- "Trackback success for '$url' ($endpoint): ".
- "'$result->body'");
- }
- }
- public function version()
- {
- return LINKBACKPLUGIN_VERSION;
- }
- function onPluginVersion(&$versions)
- {
- $versions[] = array('name' => 'Linkback',
- 'version' => LINKBACKPLUGIN_VERSION,
- 'author' => 'Evan Prodromou',
- 'homepage' => 'http://status.net/wiki/Plugin:Linkback',
- 'rawdescription' =>
-
- _m('Notify blog authors when their posts have been linked in '.
- 'microblog notices using '.
- '<a href="http://www.hixie.ch/specs/pingback/pingback">Pingback</a> '.
- 'or <a href="http://www.movabletype.org/docs/mttrackback.html">Trackback</a> protocols.'));
- return true;
- }
- }
|