*/
// must be run within DokuWiki
if(!defined('DOKU_INC')) die();
if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/');
require_once DOKU_PLUGIN.'syntax.php';
/**
* All DokuWiki plugins to extend the parser/rendering mechanism
* need to inherit from this class
*/
class syntax_plugin_googlepagerank extends DokuWiki_Syntax_Plugin {
function getType() { return 'substition'; }
function getSort() { return 314; }
/**
* settings - host and user agent
*/
public $googlehost = 'toolbarqueries.google.com';
public $googleua = 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.6) Gecko/20060728 Firefox/1.5';
function connectTo($mode) {
$this->Lexer->addSpecialPattern('\{\{pagerank>[^}]*\}\}',$mode,'plugin_googlepagerank');
}
/**
* Handle the match
*/
function handle($match, $state, $pos, &$handler) {
$match = substr($match,11,-2);
list($url,$width,$method) = explode(',',$match);
if ( empty($url)) { $url = "none";}
if ( empty($width)) { $width = 40;}
if ( empty($method)) {$method = "style";}
return array($url,$width,$method);
}
/**
* Create output
*/
function render($mode, &$renderer, $data) {
if($mode == 'xhtml'){
if (!preg_match('/^(http:\/\/)?([^\/]+)/i', $data[0])) { $data[0]='http://'.$data[0]; }
$pr=$this->getpr($data[0]);
if ($pr == '') {$pr = 0;}
$pagerank="PageRank: $pr/10";
//The (old) image method
if ($data[2] == 'image') {
$prpos=$data[1]*$pr/10;
$prneg=$data[1]-$prpos;
$html='';
}
//The pre-styled method
if ($data[2] == 'style') {
$prpercent=100*$pr/10;
$html='
$out\n"; //debug only $out .= "User-Agent: $this->googleua\r\n"; $out .= "Host: $this->googlehost\r\n"; $out .= "Connection: Close\r\n\r\n"; fwrite($fp, $out); //$pagerank = substr(fgets($fp, 128), 4); //debug only //echo $pagerank; //debug only while (!feof($fp)) { $data = fgets($fp, 128); //echo $data; $pos = strpos($data, "Rank_"); if($pos === false){} else{ $pr=substr($data, $pos + 9); $pr=trim($pr); $pr=str_replace("\n",'',$pr); return $pr; } } //else { echo "$errstr ($errno)