<?php
/***************************************************************************
* Copyright (C) 2009-2011 by Geo Varghese(www.seopanel.in) *
* hide@address.com *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
# class defines all rank controller functions
class RankController extends Controller{
# func to show quick rank checker
function showQuickRankChecker() {
$this->render('rank/showquickrank');
}
function findQuickRank($searchInfo) {
$urlList = explode("\n", $searchInfo['website_urls']);
$list = array();
foreach ($urlList as $url) {
if(!preg_match('/\w+/', $url)) continue;
if(!stristr($url, 'http://')) $url = "http://".$url;
$list[] = $url;
}
$this->set('list', $list);
$this->render('rank/findquickrank');
}
function printGooglePageRank($url){
$pageRank = $this->__getGooglePageRank($url);
if($pageRank >= 0){
$imageUrl = SP_IMGPATH."/pr/pr".$pageRank.".gif";
}else{
$imageUrl = SP_IMGPATH."/pr/pr.gif";
}
print "<img src='$imageUrl'>";
}
function __getGooglePageRank ($url) {
$url = "http://www.google.com/search?client=navclient-auto&ch=".$this->CheckHash($this->hashURL($url))."&features=Rank&q=info:".$url."&num=100&filter=0";
$ret = $this->spider->getContent($url);
if(!empty($ret['page'])){
preg_match('/Rank_([0-9]+):([0-9]+):([0-9]+)/si', $ret['page'], $matches);
return ($matches[3]) ? $matches[3] : 0;
}
return 0;
}
function printAlexaRank($url){
$alexaRank = $this->__getAlexaRank($url);
$imageUrl = SP_WEBPATH."/rank.php?sec=alexaimg&rank=$alexaRank";
print "<img src='$imageUrl'>";
}
function printAlexaRankImg($alexaRank) {
$rankImage = SP_IMGPATH."/alexa-rank.jpeg";
$im = imagecreatefromjpeg ($rankImage);
$textColor = imagecolorallocate($im, 0, 0, 255);
$width = imagesx($im);
$height = imagesy($im);
$leftTextPos = ( $width - (7 * strlen($alexaRank)) )/2;
imagestring($im, 3, $leftTextPos, 35, $alexaRank, $textColor);
ob_end_clean();
Header('Content-type: image/jpeg');
imagejpeg($im);
exit;
}
# alexa_rank
function __getAlexaRank ($url) {
$url = 'http://data.alexa.com/data?cli=10&dat=snbamz&url=' . urlencode($url);
$ret = $this->spider->getContent($url);
if(!empty($ret['page'])){
preg_match('/\<popularity url\="(.*?)" TEXT\="([0-9]+)"\/\>/si', $ret['page'], $matches);
return ($matches[2]) ? $matches[2] : 0;
}
return 0;
}
function strToNum($Str, $Check, $Magic) {
$Int32Unit = 4294967296;
$length = strlen($Str);
for ($i = 0; $i < $length; $i++) {
$Check *= $Magic;
if ($Check >= $Int32Unit) {
$Check = ($Check - $Int32Unit * (int) ($Check / $Int32Unit));
$Check = ($Check < -2147483648)? ($Check + $Int32Unit) : $Check;
}
$Check += ord($Str{$i});
}
return $Check;
}
function hashURL($String) {
$Check1 = $this->strToNum($String, 0x1505, 0x21);
$Check2 = $this->strToNum($String, 0, 0x1003F);
$Check1 >>= 2;
$Check1 = (($Check1 >> 4) & 0x3FFFFC0 ) | ($Check1 & 0x3F);
$Check1 = (($Check1 >> 4) & 0x3FFC00 ) | ($Check1 & 0x3FF);
$Check1 = (($Check1 >> 4) & 0x3C000 ) | ($Check1 & 0x3FFF);
$T1 = (((($Check1 & 0x3C0) << 4) | ($Check1 & 0x3C)) <<2 ) | ($Check2 & 0xF0F );
$T2 = (((($Check1 & 0xFFFFC000) << 4) | ($Check1 & 0x3C00)) << 0xA) | ($Check2 & 0xF0F0000 );
return ($T1 | $T2);
}
function checkHash($Hashnum) {
$CheckByte = 0;
$Flag = 0;
$HashStr = sprintf('%u', $Hashnum) ;
$length = strlen($HashStr);
for ($i = $length - 1; $i >= 0; $i --) {
$Re = $HashStr{$i};
if (1 === ($Flag % 2)) {
$Re += $Re;
$Re = (int)($Re / 10) + ($Re % 10);
}
$CheckByte += $Re;
$Flag ++;
}
$CheckByte %= 10;
if (0!== $CheckByte) {
$CheckByte = 10 - $CheckByte;
if (1 === ($Flag % 2) ) {
if (1 === ($CheckByte % 2)) {$CheckByte += 9;}
$CheckByte >>= 1;
}
}
return '7'.$CheckByte.$HashStr;
}
# func to show genearte reports interface
function showGenerateReports($searchInfo = '') {
$userId = isLoggedIn();
$websiteController = New WebsiteController();
$websiteList = $websiteController->__getAllWebsites($userId, true);
$this->set('websiteList', $websiteList);
$this->render('rank/generatereport');
}
# func to generate reports
function generateReports( $searchInfo='' ) {
$userId = isLoggedIn();
$websiteId = empty ($searchInfo['website_id']) ? '' : intval($searchInfo['website_id']);
$sql = "select id,url from websites where status=1";
if(!empty($userId) && !isAdmin()) $sql .= " and user_id=$userId";
if(!empty($websiteId)) $sql .= " and id=$websiteId";
$sql .= " order by name";
$websiteList = $this->db->select($sql);
if(count($websiteList) <= 0){
echo "<p class='note'>".$_SESSION['text']['common']['nowebsites']."!</p>";
exit;
}
# loop through each websites
foreach ( $websiteList as $websiteInfo ) {
$websiteUrl = addHttpToUrl($websiteInfo['url']);
$websiteInfo['googlePagerank'] = $this->__getGooglePageRank($websiteUrl);
$websiteInfo['alexaRank'] = $this->__getAlexaRank($websiteUrl);
$this->saveRankResults($websiteInfo, true);
echo "<p class='note notesuccess'>".$this->spTextRank['Saved rank results of']." <b>$websiteUrl</b>.....</p>";
}
}
# function to save rank details
function saveRankResults($matchInfo, $remove=false) {
$time = mktime(0, 0, 0, date('m'), date('d'), date('Y'));
if($remove){
$sql = "delete from rankresults where website_id={$matchInfo['id']} and result_time=$time";
$this->db->query($sql);
}
$sql = "insert into rankresults(website_id,google_pagerank,alexa_rank,result_time)
values({$matchInfo['id']},{$matchInfo['googlePagerank']},{$matchInfo['alexaRank']},$time)";
$this->db->query($sql);
}
# func to show reports
function showReports($searchInfo = '') {
$userId = isLoggedIn();
if (!empty ($searchInfo['from_time'])) {
$fromTime = strtotime($searchInfo['from_time'] . ' 00:00:00');
} else {
$fromTime = mktime(0, 0, 0, date('m'), date('d') - 30, date('Y'));
}
if (!empty ($searchInfo['to_time'])) {
$toTime = strtotime($searchInfo['to_time'] . ' 23:59:59');
} else {
$toTime = mktime();
}
$this->set('fromTime', date('Y-m-d', $fromTime));
$this->set('toTime', date('Y-m-d', $toTime));
$websiteController = New WebsiteController();
$websiteList = $websiteController->__getAllWebsites($userId, true);
$this->set('websiteList', $websiteList);
$websiteId = empty ($searchInfo['website_id']) ? $websiteList[0]['id'] : intval($searchInfo['website_id']);
$this->set('websiteId', $websiteId);
$conditions = empty ($websiteId) ? "" : " and s.website_id=$websiteId";
$sql = "select s.* ,w.name
from rankresults s,websites w
where s.website_id=w.id
and result_time>= $fromTime and result_time<=$toTime $conditions
order by result_time";
$reportList = $this->db->select($sql);
$i = 0;
$colList = array('google' => 'google_pagerank', 'alexa' => 'alexa_rank');
foreach ($colList as $col => $dbCol) {
$prevRank[$col] = 0;
}
# loop throgh rank
foreach ($reportList as $key => $repInfo) {
foreach ($colList as $col => $dbCol) {
$rankDiff[$col] = '';
}
foreach ($colList as $col => $dbCol) {
if ($i > 0) {
$signVal = -1;
$greaterClass = 'green';
$lessClass = 'red';
if($col == 'alexa'){
$signVal = 1;
$greaterClass = 'green';
$lessClass = 'red';
}
$rankDiff[$col] = ($prevRank[$col] - $repInfo[$dbCol]) * $signVal;
if ($rankDiff[$col] > 0) {
$rankDiff[$col] = "<font class='$greaterClass'>($rankDiff[$col])</font>";
}elseif ($rankDiff[$col] < 0) {
$rankDiff[$col] = "<font class='$lessClass'>($rankDiff[$col])</font>";
}
}
$reportList[$key]['rank_diff_'.$col] = empty ($rankDiff[$col]) ? '' : $rankDiff[$col];
}
foreach ($colList as $col => $dbCol) {
$prevRank[$col] = $repInfo[$dbCol];
}
$i++;
}
$this->set('list', array_reverse($reportList, true));
$this->render('rank/rankreport');
}
# func to show reports for a particular website
function __getWebsiteRankReport($websiteId, $limit=1) {
$sql = "select s.* ,w.name
from rankresults s,websites w
where s.website_id=w.id
and s.website_id=$websiteId
order by result_time DESC
Limit 0, ".($limit+1);
$reportList = $this->db->select($sql);
$reportList = array_reverse($reportList);
$i = 0;
$colList = array('google' => 'google_pagerank', 'alexa' => 'alexa_rank');
foreach ($colList as $col => $dbCol) {
$prevRank[$col] = 0;
}
# loop throgh rank
foreach ($reportList as $key => $repInfo) {
foreach ($colList as $col => $dbCol) {
$rankDiff[$col] = '';
}
foreach ($colList as $col => $dbCol) {
if ($i > 0) {
$signVal = -1;
$greaterClass = 'green';
$lessClass = 'red';
if($col == 'alexa'){
$signVal = 1;
$greaterClass = 'green';
$lessClass = 'red';
}
$rankDiff[$col] = ($prevRank[$col] - $repInfo[$dbCol]) * $signVal;
if ($rankDiff[$col] > 0) {
$rankDiff[$col] = "<font class='$greaterClass'>($rankDiff[$col])</font>";
}elseif ($rankDiff[$col] < 0) {
$rankDiff[$col] = "<font class='$lessClass'>($rankDiff[$col])</font>";
}
}
$reportList[$key]['rank_diff_'.$col] = empty ($rankDiff[$col]) ? '' : $rankDiff[$col];
}
foreach ($colList as $col => $dbCol) {
$prevRank[$col] = $repInfo[$dbCol];
}
$i++;
}
$reportList = array_reverse(array_slice($reportList, count($reportList) - $limit));
return $reportList;
}
}
?>