59 lines
1.6 KiB
PHP
59 lines
1.6 KiB
PHP
<?php
|
|
/**
|
|
* Piwik - free/libre analytics platform
|
|
*
|
|
* @link http://piwik.org
|
|
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
|
*
|
|
*/
|
|
namespace Piwik\Plugins\DevicesDetection\Columns;
|
|
|
|
use Piwik\Metrics\Formatter;
|
|
use Piwik\Piwik;
|
|
use Piwik\Tracker\Request;
|
|
use Piwik\Tracker\Settings;
|
|
use Piwik\Tracker\Visitor;
|
|
use Piwik\Tracker\Action;
|
|
|
|
class Os extends Base
|
|
{
|
|
protected $columnName = 'config_os';
|
|
protected $columnType = 'CHAR(3) NULL';
|
|
protected $segmentName = 'operatingSystemCode';
|
|
protected $nameSingular = 'DevicesDetection_ColumnOperatingSystem';
|
|
protected $namePlural = 'DevicesDetection_OperatingSystems';
|
|
protected $acceptValues = 'WIN, MAC, LIN, AND, IPD, etc.';
|
|
protected $type = self::TYPE_TEXT;
|
|
|
|
public function formatValue($value, $idSite, Formatter $formatter)
|
|
{
|
|
return \Piwik\Plugins\DevicesDetection\getOSFamilyFullName($value);
|
|
}
|
|
|
|
public function getName()
|
|
{
|
|
return Piwik::translate('DevicesDetection_OperatingSystemFamily');
|
|
}
|
|
|
|
/**
|
|
* @param Request $request
|
|
* @param Visitor $visitor
|
|
* @param Action|null $action
|
|
* @return mixed
|
|
*/
|
|
public function onNewVisit(Request $request, Visitor $visitor, $action)
|
|
{
|
|
$userAgent = $request->getUserAgent();
|
|
$parser = $this->getUAParser($userAgent);
|
|
|
|
if ($parser->isBot()) {
|
|
$os = Settings::OS_BOT;
|
|
} else {
|
|
$os = $parser->getOS();
|
|
$os = empty($os['short_name']) ? 'UNK' : $os['short_name'];
|
|
}
|
|
|
|
return $os;
|
|
}
|
|
}
|