Files
YuCheng Hu b6d9d59e37 添加 Piwik 到代码库中。
+YUCHENG HU+

git-svn-id: https://svn.code.sf.net/p/hawebs/svn@477 a2543c7e-f6e9-4f8a-8bff-1ffc34733512
2010-07-10 04:31:34 +00:00

207 lines
5.5 KiB
PHP

<?php
/**
* Piwik - Open source web analytics
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
* @version $Id: Provider.php 2305 2010-06-15 10:04:53Z matt $
*
* @category Piwik_Plugins
* @package Piwik_Provider
*/
/**
*
* @package Piwik_Provider
*/
class Piwik_Provider extends Piwik_Plugin
{
public function getInformation()
{
$info = array(
'description' => Piwik_Translate('Provider_PluginDescription'),
'author' => 'Piwik',
'author_homepage' => 'http://piwik.org/',
'version' => Piwik_Version::VERSION,
'TrackerPlugin' => true, // this plugin must be loaded during the stats logging
);
return $info;
}
function getListHooksRegistered()
{
$hooks = array(
'ArchiveProcessing_Day.compute' => 'archiveDay',
'ArchiveProcessing_Period.compute' => 'archivePeriod',
'Tracker.newVisitorInformation' => 'logProviderInfo',
'WidgetsList.add' => 'addWidget',
'Menu.add' => 'addMenu',
);
return $hooks;
}
function install()
{
// add column hostname / hostname ext in the visit table
$query = "ALTER IGNORE TABLE `".Piwik_Common::prefixTable('log_visit')."` ADD `location_provider` VARCHAR( 100 ) NULL";
// if the column already exist do not throw error. Could be installed twice...
try {
Piwik_Exec($query);
}
catch(Exception $e) {
if(!Zend_Registry::get('db')->isErrNo($e, '1060'))
{
throw $e;
}
}
}
function uninstall()
{
// add column hostname / hostname ext in the visit table
$query = "ALTER TABLE `".Piwik_Common::prefixTable('log_visit')."` DROP `location_provider`";
Piwik_Exec($query);
}
function addWidget()
{
Piwik_AddWidget('General_Visitors', 'Provider_WidgetProviders', 'Provider', 'getProvider');
}
function addMenu()
{
Piwik_RenameMenuEntry( 'General_Visitors', 'UserCountry_SubmenuLocations',
'General_Visitors', 'Provider_SubmenuLocationsProvider');
}
function postLoad()
{
Piwik_AddAction('template_headerUserCountry', array('Piwik_Provider','headerUserCountry'));
Piwik_AddAction('template_footerUserCountry', array('Piwik_Provider','footerUserCountry'));
}
function archivePeriod( $notification )
{
$maximumRowsInDataTable = Zend_Registry::get('config')->General->datatable_archiving_maximum_rows_standard;
$archiveProcessing = $notification->getNotificationObject();
$dataTableToSum = array( 'Provider_hostnameExt' );
$archiveProcessing->archiveDataTable($dataTableToSum, null, $maximumRowsInDataTable);
}
/**
* Archive the provider count
*/
function archiveDay($notification)
{
$archiveProcessing = $notification->getNotificationObject();
$recordName = 'Provider_hostnameExt';
$labelSQL = "location_provider";
$interestByProvider = $archiveProcessing->getArrayInterestForLabel($labelSQL);
$tableProvider = $archiveProcessing->getDataTableFromArray($interestByProvider);
$columnToSortByBeforeTruncation = Piwik_Archive::INDEX_NB_VISITS;
$maximumRowsInDataTable = Zend_Registry::get('config')->General->datatable_archiving_maximum_rows_standard;
$archiveProcessing->insertBlobRecord($recordName, $tableProvider->getSerialized($maximumRowsInDataTable, null, $columnToSortByBeforeTruncation));
destroy($tableProvider);
}
/**
* Logs the provider in the log_visit table
*/
public function logProviderInfo($notification)
{
$visitorInfo =& $notification->getNotificationObject();
$hostname = $this->getHost($visitorInfo['location_ip']);
$hostnameExtension = $this->getCleanHostname($hostname);
// add the provider value in the table log_visit
$visitorInfo['location_provider'] = $hostnameExtension;
$visitorInfo['location_provider'] = substr($visitorInfo['location_provider'], 0, 100);
// improve the country using the provider extension if valid
$hostnameDomain = substr($hostnameExtension, 1 + strrpos($hostnameExtension, '.'));
if(in_array($hostnameDomain, Piwik_Common::getCountriesList()))
{
$visitorInfo['location_country'] = $hostnameDomain;
}
}
/**
* Returns the hostname extension (site.co.jp in fvae.VARG.ceaga.site.co.jp)
* given the full hostname looked up from the IP
*
* @param string $hostname
*
* @return string
*/
private function getCleanHostname($hostname)
{
$extToExclude = array(
'com', 'net', 'org', 'co'
);
$off = strrpos($hostname, '.');
$ext = substr($hostname, $off);
if(empty($off) || is_numeric($ext) || strlen($hostname) < 5)
{
return 'Ip';
}
else
{
$cleanHostname = null;
Piwik_PostEvent('Provider.getCleanHostname', $cleanHostname, $hostname);
if($cleanHostname !== null)
{
return $cleanHostname;
}
$e = explode('.', $hostname);
$s = sizeof($e);
// if extension not correct
if(isset($e[$s-2]) && in_array($e[$s-2], $extToExclude))
{
return $e[$s-3].".".$e[$s-2].".".$e[$s-1];
}
else
{
return $e[$s-2].".".$e[$s-1];
}
}
}
/**
* Returns the hostname given the string IP in the format ip2long
* php.net/ip2long
*
* @param string $ip
*
* @return string hostname
*/
private function getHost($ip)
{
return trim(strtolower(@gethostbyaddr(long2ip($ip))));
}
static public function headerUserCountry($notification)
{
$out =& $notification->getNotificationObject();
$out = '<div id="leftcolumn">';
}
static public function footerUserCountry($notification)
{
$out =& $notification->getNotificationObject();
$out = '</div>
<div id="rightcolumn">
<h2>'.Piwik_Translate('Provider_WidgetProviders').'</h2>';
$out .= Piwik_FrontController::getInstance()->fetchDispatch('Provider','getProvider');
$out .= '</div>';
}
}