From 28072f254cf1380fa6334e7adfc659d02eb9e436 Mon Sep 17 00:00:00 2001 From: donncha Date: Wed, 13 Jul 2005 15:58:58 +0000 Subject: Replaced Referers page with plugin. git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@19 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- wp-inst/wp-content/plugins/doc_referers.php | 678 ++++++++++++++++++++++++++++ 1 file changed, 678 insertions(+) create mode 100644 wp-inst/wp-content/plugins/doc_referers.php (limited to 'wp-inst/wp-content/plugins/doc_referers.php') diff --git a/wp-inst/wp-content/plugins/doc_referers.php b/wp-inst/wp-content/plugins/doc_referers.php new file mode 100644 index 0000000..5e6d0bb --- /dev/null +++ b/wp-inst/wp-content/plugins/doc_referers.php @@ -0,0 +1,678 @@ +settings = get_settings('doc_referers'); + $this->wpdb_tables(); + + if($this->settings['table_version'] != $this->table_version) + { + $this->make_tables(); + $this->added_tables = true; + } + } + + function admin_footer() + { + update_option('doc_referers', $this->settings); + } + + function admin_menu() + { + $pfile = basename(dirname(__FILE__)) . '/' . basename(__FILE__); + add_submenu_page('edit.php', 'Referers', 'Referers', 0, $pfile, array(&$this, 'plugin_content')); + } + + function wpdb_tables() { + global $wpdb, $table_prefix; + + $wpdb->doc_referers = "{$table_prefix}referer_visitLog"; + $wpdb->doc_blacklist = "{$table_prefix}referer_blacklist"; + } + function make_tables() { + global $wpdb, $table_prefix; + if(!include_once(ABSPATH . 'wp-admin/upgrade-functions.php')) { + die(_e('There is was error adding the required tables to the database. Please refer to the documentation regarding this issue.', 'DOC_Referers')); + } + $qry = "CREATE TABLE " . $wpdb->doc_blacklist . " ( + ID int(11) NOT NULL auto_increment, + blogID varchar(32) NOT NULL default '', + URL varchar(250) NOT NULL default '', + t timestamp(14) NOT NULL, + PRIMARY KEY (ID), + KEY blogID (blogID,URL), + KEY URL (URL) + ); + CREATE TABLE " . $wpdb->doc_referers . " ( + blogID char( 32 ) default NULL , + visitID int( 11 ) NOT NULL AUTO_INCREMENT , + visitTime timestamp( 14 ) NOT NULL , + visitURL char( 250 ) default NULL , + referingURL char( 250 ) default NULL , + baseDomain char( 250 ) default NULL , + refpost int( 11 ) NOT NULL default '0', + visitTimes int( 10 ) NOT NULL default '0', + dayofmonth smallint( 2 ) NOT NULL default '0', + PRIMARY KEY ( visitID ) , + KEY blogID ( blogID ) , + KEY refpost ( refpost ) , + KEY dayofmonth ( dayofmonth ) + ); + "; + dbDelta($qry); + + $this->settings['table_version'] = $this->table_version; + update_option('doc_referers', $this->settings); + } + + + function makeHiddenVals( $day, $order, $num, $more, $ignoreDIRECT, $visitID, $internal ) + { + $fields = array( "day", "order", "num", "more", "ignoreDIRECT", "visitID", "internal" ); + reset( $fields ); + while( list( $key, $field ) = each( $fields ) ) + { + if( $field == 'action' ) + { + $sep = '?'; + } + else + { + $sep = '&'; + } + + if( $$field != '' ) + $vals .= "\n"; + } + return $vals; + } + + function makeURL( $var, $val ) + { + $fields = array( "action", "day", "order", "num", "more", "ignoreDIRECT", "visitID", "internal" ); + reset( $fields ); + while( list( $key, $field ) = each( $fields ) ) + { + if( $field == 'action' ) + { + $sep = '?'; + } + else + { + $sep = '&'; + } + if( $field != $var ) + { + global $$field; + if( $$field != '' ) + $url .= $sep.$field."=".$$field; + } + else + { + $url .= $sep.$var."=".$val; + } + } + return $url; + } + + function plugin_content() + { + global $wpdb; + + $action = $_GET[ 'action' ]; + $day = $_GET[ 'day' ]; + $del = $_GET[ 'del' ]; + $num = $_GET[ 'num' ]; + $more = $_GET[ 'more' ]; + $ignoreDIRECT = $_GET[ 'ignoreDIRECT' ]; + $internal = $_GET[ 'internal' ]; + + if( $action == '' ) + { + $action = 'listday'; + $day = date( 'j' ); + } + + print '
'; + + if( $action == 'Delete' ) + { + if( is_array( $del ) ) + { + reset( $del ); + while( list( $key, $val ) = each( $del ) ) + { + $query = "DELETE FROM " . $wpdb->doc_referers . " + WHERE visitID = '".$val."'"; + $result = $wpdb->query($query); + } + } + $action = "listday"; + } + elseif( $action == 'deletedirect' ) + { + $query = "DELETE FROM " . $wpdb->doc_referers . " + WHERE dayofmonth='".$day."' + AND referingURL = 'DIRECT'"; + $result = $wpdb->query($query); + printf ("Records deleted: %d\n", $wpdb->rows_affected); + $action = "listday"; + } + elseif( $action == 'Add To Blacklist' ) + { + if( is_array( $del ) ) + { + reset( $del ); + while( list( $key, $val ) = each( $del ) ) + { + $query = "SELECT referingURL + FROM " . $wpdb->doc_referers . " + WHERE visitID = '".$val."'"; + $result=$wpdb->get_var( $query ); + if( $result ) + { + $query = "INSERT INTO " . $wpdb->doc_blacklist . " VALUES( NULL, 0, '".$result."', NOW() )"; + $result = $wpdb->query($query); + } + } + } + $action = "listday"; + } + elseif( $action == 'deleteblacklist' ) + { + if( is_array( $del ) ) + { + reset( $del ); + while( list( $key, $val ) = each( $del ) ) + { + $query = "DELETE FROM " . $wpdb->doc_blacklist . " WHERE ID='".$val."'"; + $result = $wpdb->query($query); + } + } + $action = "blacklist"; + } + + switch( $action ) + { + case "blacklist": + $query = "SELECT * FROM " . $wpdb->doc_blacklist; + $result = $wpdb->get_results($query, ARRAY_A ); + if( $result ) + { + print "

Referer Blacklist

"; + print "
"; + print ''; + print ""; + print ""; + print ""; + $c = 1; + while( list( $key, $row1 ) = each( $result ) ) + { + if( substr( $row1[ 'URL' ], 0, 16 ) == 'http://www.google' ) + { + $displayurl = "Google: ". substr( $row1[ 'URL' ], strpos( $row1[ 'URL' ], "search" )+6 ); + } + elseif( strstr( $row1[ 'URL' ], 'search.yahoo' ) ) + { + $displayurl = "Yahoo: ". substr( $row1[ 'URL' ], strpos( $row1[ 'URL' ], "p=" )+2 ); + } + elseif( strpos( $row1[ 'URL' ], 'www.blueyonder.co.uk' ) ) + { + $displayurl = "Blueyonder: ". substr( $row1[ 'URL' ], strpos( $row1[ 'URL' ], "q=" )+2 ); + } + else + { + $displayurl = $row1[ 'URL' ]; + } + print "\n"; + $c++; + } + print "
$c".$displayurl."
"; + print "
"; + print "
"; + } + else + { + print "No URLs in blacklist yet!"; + } + break; + case "listday": + + $query = "select visitTimes,referingURL,date_format( visitTime, '%k:%i' ) as visitTime2, visitURL, visitID from " . $wpdb->doc_referers . " where dayofmonth='".$day."'"; + + if( $internal == 'yes' ) + $query .= " and referingURL NOT LIKE '".get_settings( "siteurl" )."%'"; + + if( $ignoreDIRECT == 'yes' ) + $query .= " and referingURL != 'DIRECT'"; + + if( $order == '' || $order == 'time' ) + { + $query .= " order by visitTime desc"; + } + elseif( $order == 'hits' ) + { + $query .= " order by visitTimes desc"; + } + elseif( $order == 'url' ) + { + $query .= " order by visitURL desc"; + } + if( $num == '' ) + { + $num = 0; + } + if( $more == '' || $more == '0' ) + $more = '30'; + + $query .= " limit $num,$more"; + + $result = $wpdb->get_results($query, ARRAY_A ); + $rows = $wpdb->num_rows; + if( $result ) + { + // javascript from http://www.experts-exchange.com/Web/Web_Languages/JavaScript/Q_10105441.html and + // http://members.aol.com/grassblad/html/chkAllBut.html + print ""; + $c = $num+1; + $nav = "
"; + $nav .= "Month View | "; + $nav .= "makeURL( "num", 0 )."'>Top"; + if( $ignoreDIRECT == 'yes' ) + { + $nav .= " | makeURL( "ignoreDIRECT", 'no' )."'>Display DIRECT requests"; + } + else + { + $nav .= " | makeURL( "ignoreDIRECT", 'yes' )."'>Hide DIRECT requests"; + } + if( $internal == 'yes' ) + { + $nav .= " | makeURL( "internal", 'no' )."'>Display internal requests"; + } + else + { + $nav .= " | makeURL( "internal", 'yes' )."'>Hide internal requests"; + } + + if( $num >= 10 ) + { + if( $num > $more ) + { + $nav .= " | makeURL( "num", ( $num - $more ) )."'>Previous $more"; + } + } + else + { + $nav .= " | Previous"; + } + if( $rows >= $more ) + { + $nav .= " | makeURL( "num", ($num + $more) )."'>Next $more"; + } + else + { + $nav .= " | Next"; + } + $nav .= " | makeURL( "more", ($more + 10) )."'>More Hits"; + $nav .= " | makeURL( "more", ($more - 10) )."'>Less Hits"; + $nav .= "
"; + print "

Referers

"; + print $nav; + $today = date( 'd' ); + if( $day > $today ) + { + $month = date( 'F', mktime (0,0,0,date("m")-1,date("d"), date("Y")) ); + } + else + { + $month = date( 'F' ); + } + print "
"; + print ''; + print ""; + print $this->makeHiddenVals( $day, $order, $num, $more, $ignoreDIRECT, $visitID, $internal ); + print "
"; + print "
"; + print ''; + print $this->makeHiddenVals( $day, $order, $num, $more, $ignoreDIRECT, $visitID, $internal ); + //print ""; + print ""; + print ""; + print " + + + + + + \n"; + while( list( $key, $row1 ) = each( $result ) ) + { + if( $col == 'f5f5f5' ) + { + $col = 'ffffff'; + } + else + { + $col = 'f5f5f5'; + } + if( $row1[ 'referingURL' ] != 'DIRECT' ) + { + if( substr( $row1[ 'referingURL' ], 0, 17 ) == 'http://www.google' ) + { + $args = parse_url( $row1[ 'referingURL' ] ); + parse_str( $args[ 'query' ] ); + $url = "Google: ".stripslashes( htmlspecialchars( $q ) ).""; + } + elseif( strstr( $row1[ 'referingURL' ], 'search.yahoo' ) ) + { + $args = parse_url( $row1[ 'referingURL' ] ); + parse_str( $args[ 'query' ] ); + $url = "Yahoo: ".stripslashes( htmlspecialchars( $p ) ).""; + } + elseif( strpos( $row1[ 'referingURL' ], 'www.blueyonder.co.uk' ) ) + { + $args = parse_url( $row1[ 'referingURL' ] ); + parse_str( $args[ 'query' ] ); + $url = "Blueyonder: ".stripslashes( htmlspecialchars( $q ) ).""; + } + else + { + $url = "".substr( $row1[ 'referingURL' ], 0, 40 ).""; + } + } + else + { + $url = 'DIRECT'; + } + $visitID = $row1[ 'visitID' ]; + print " + + + + + + + "; + $c++; + + } + print "
Referers For $day $month
#Refering URLmakeURL( "order", "hits" )."' title='order by hits'>HitsmakeURL( "order", "url" )."' title='order by entry page'>Entry PagemakeURL( "order", "time" )."' title='order by time'>LastSelected
+ + +  |  +  |  +  | 
".$c."".$url."".substr($row1[ 'visitTimes' ],0, 40 )."".substr($row1[ 'visitURL' ],0, 40 )."".$row1[ 'visitTime2' ]."
"; + print $nav; + print "
"; + print "
"; + } + break; + default: + $query = "select sum( visitTimes ) as c, dayofmonth from " . $wpdb->doc_referers . " "; + $query .= "group by " . $wpdb->doc_referers . ".dayofmonth"; + $result = $wpdb->get_results($query, ARRAY_A ); + if( $result ) + { + $c = 0; + $col = 'ccc'; + print "

Referers

"; + print "
"; + print ""; + print ""; + while( list( $key, $row1 ) = each( $result ) ) + { + if( $col == 'f5f5f5' ) + { + $col = 'ffffff'; + } + else + { + $col = 'f5f5f5'; + } + print ""; + $c++; + if( $c == '15' ) + { + print "
DayHits
".$row1[ 'dayofmonth']."".$row1[ 'c']."
"; + print "
"; + print ""; + print ""; + } + + } + print "
DayHits
"; + print "
"; + print "
View Blacklist"; + print "
"; + } + else + { + print "There are no referers for your site! Wait until Google indexes you!"; + } + } + print "
"; + + } + + function template_redirect() { + global $wpdb; + + // delete tomorrow's referers today + $tomorrow = date( "j", mktime (0,0,0,date("m") ,date("d")+1,date("Y")) ); + $sec = date( "s" ); + $hour = date( "G" ); + if( $sec == 30 && $hour < 2 ) + { + $sql = "delete from " . $wpdb->doc_referers . " WHERE dayofmonth = '$tomorrow'"; // delete referers from a (month + 1 day) ago. + $wpdb->query($sql); + } + + $ref = $_SERVER["HTTP_REFERER"]; + $currentURL = $_SERVER[ 'REQUEST_URI' ]; + $fullCurrentURL = "http://" . $_SERVER[ 'HTTP_HOST' ] . $_SERVER[ 'REQUEST_URI' ]; + if( $ref == '' ) + { + $ref = "DIRECT"; + } + + $found = false; + + if( $currentURL[ strlen( $currentURL ) -1 ] == '/' ) + { + $found = true; + } + else + { + $count_files = array( "wp-admin" ); + reset( $count_files ); + while( list( $key, $val ) = each( $count_files ) ) + { + $pos = strpos( $currentURL, $val ); + if( $pos == true ) + { + $found = true; + } + } + if( $found == true ) + { + // Don't bother going further - no need to record request! + return; + } + } + + $ref = $wpdb->escape($ref); + if( $ref ) { + $realReferer = true; + $ignorePages = Array( 'lastupdated.php', 'b2rdf.php', 'b2rss2.php', 'b2bookmarklet.php', 'b2referers.php', 'b2commentspopup.php' ); + foreach ($ignorePages as $ignoresite){ + if (stristr($currentURL, $ignoresite)){ + $realReferer = false; + } + } + + $ignore = Array( + 'http://www.myelin.co.nz/ecosystem/bot.php', + 'http://radio.xmlstoragesystem.com/rcsPublic/', + 'http://blogdex.media.mit.edu//', + 'http://subhonker6.userland.com/rcsPublic/', + 'mastadonte.com', + 'http://blo.gs/ping.php' + ); + foreach ($ignore as $ignoresite){ + if (stristr($ref, $ignoresite)){ + $realReferer = false; + } + } + + $checkRef = true; + // Do we need to check the referer? If it's from a known site we can save some cycles. + $checkReflist = array( "direct", "http://www.technorati.com", "http://www.google", "http://www.yahoo", "http://www.linux.ie", "http://blogs.linux.ie", "http://blo.gs" ); + reset( $checkReflist ); + while( list( $key, $val ) = each( $checkReflist ) ) + { + $p = strpos( strtolower( $url ), $val ); + if( $p !== false ) + { + $checkRef = false; + } + } + + $doubleCheckReferers = 0; // must make this an option + if( $realReferer && $checkRef && $ref != 'DIRECT' && $doubleCheckReferers) + { + //this is so that the page up until the call to + //logReferer will get shown before it tries to check + //back against the refering URL. + flush(); + + $goodReferer = 0; + $fp = @fopen ($ref, "r"); + if ($fp){ + socket_set_timeout($fp, 5); + $c = 0; + while (!feof ($fp) || $c > 5) { + $page .= trim(fgets($fp, 4096)); + $c++; + } + fclose( $fp ); + if (strstr($page,$fullCurrentURL)){ + $goodReferer = 1; + } + } + + if(!$goodReferer){ + $realReferer = false; + } + } + + if( $realReferer == true && $ref != 'DIRECT' ) + { + $query = "SELECT ID FROM " . $wpdb->doc_blacklist . " WHERE URL like '%$ref%'"; + $result = $wpdb->get_var( $query ); + if( $result ) + { + $ref = "DIRECT"; + } + } + + $ua = getenv( 'HTTP_USER_AGENT' ); + $useragents = array( "http://www.syndic8.com", "http://dir.com/pompos.html", "NaverBot-1.0", "http://help.yahoo.com/help/us/ysearch/slurp", "http://www.google.com/bot.html", "http://www.blogdigger.com/", "http://search.msn.com/msnbot.htm", "Feedster, LLC.", "http://www.breakingblogs.com/timbo_bot.html", "fastbuzz.com", "http://www.pubsub.com/", "http://www.bloglines.com", "http://www.drupal.org/", "Ask Jeeves/Teoma", "ia_archiver", "http://minutillo.com/steve/feedonfeeds/", "larbin_2", "lmspider", "kinjabot", "lickBot 2.0", "Downes/Referrers", "daypopbot", "www.globalspec.com" ); + reset( $useragents ); + while( list( $key, $val ) = each( $useragents ) ) + { + if( strpos( $ua, $val ) !== false ) + { + $realReferer = false; + } + } + + if( $realReferer ) + { + if( $ref == 'DIRECT' ) + { + $anchor = $ref; + } + else + { + $anchor = preg_replace("/http:\/\//i", "", $ref); + $anchor = preg_replace("/^www\./i", "", $anchor); + $anchor = preg_replace("/\/.*/i", "", $anchor); + } + $today = date( "d" ); + + $sql = "UPDATE " . $wpdb->doc_referers . " + SET visitTimes = visitTimes + 1 + WHERE dayofmonth = '$today' + AND referingURL = '$ref' + AND visitURL = '$currentURL'"; + $result = $wpdb->query( $sql ); + if( $result == false ) + { + $sql ="insert delayed into " . $wpdb->doc_referers . " (referingURL,visitURL,refpost, visitTimes, dayofmonth) + values ('$ref','$currentURL','$p','1', '$today')"; + $result = $wpdb->query( $sql ); + } + } + } + } +} + +$doc_referer = new DOC_Referers(); + +?> -- cgit