kaktusy/classes/Guest.php

187 lines
5.4 KiB
PHP

<?php
/**
* Statistics
* @category stats
*
* @author Damien Metzger / Epitech
* @copyright Epitech / PrestaShop
* @license http://www.opensource.org/licenses/osl-3.0.php Open-source licence 3.0
* @version 1.2
*/
class Guest extends ObjectModel
{
public $id_operating_system;
public $id_web_browser;
public $id_customer;
public $javascript;
public $screen_resolution_x;
public $screen_resolution_y;
public $screen_color;
public $sun_java;
public $adobe_flash;
public $adobe_director;
public $apple_quicktime;
public $real_player;
public $windows_media;
public $accept_language;
protected $fieldsSize = array('accept_language' => 8);
protected $fieldsValidate = array(
'id_operating_system' => 'isUnsignedId',
'id_web_browser' => 'isUnsignedId',
'id_customer' => 'isUnsignedId',
'javascript' => 'isBool',
'screen_resolution_x' => 'isInt',
'screen_resolution_y' => 'isInt',
'screen_color' => 'isInt',
'sun_java' => 'isBool',
'adobe_flash' => 'isBool',
'adobe_director' => 'isBool',
'apple_quicktime' => 'isBool',
'real_player' => 'isBool',
'windows_media' => 'isBool',
'accept_language' => 'isGenericName'
);
protected $table = 'guest';
protected $identifier = 'id_guest';
public function getFields()
{
parent::validateFields();
$fields['id_operating_system'] = intval($this->id_operating_system);
$fields['id_web_browser'] = intval($this->id_web_browser);
$fields['id_customer'] = intval($this->id_customer);
$fields['javascript'] = intval($this->javascript);
$fields['screen_resolution_x'] = intval($this->screen_resolution_x);
$fields['screen_resolution_y'] = intval($this->screen_resolution_y);
$fields['screen_color'] = intval($this->screen_color);
$fields['sun_java'] = intval($this->sun_java);
$fields['adobe_flash'] = intval($this->adobe_flash);
$fields['adobe_director'] = intval($this->adobe_director);
$fields['apple_quicktime'] = intval($this->apple_quicktime);
$fields['real_player'] = intval($this->real_player);
$fields['windows_media'] = intval($this->windows_media);
$fields['accept_language'] = pSQL($this->accept_language);
return $fields;
}
function userAgent()
{
$userAgent = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : '';
$acceptLanguage = isset($_SERVER['HTTP_ACCEPT_LANGUAGE']) ? $_SERVER['HTTP_ACCEPT_LANGUAGE'] : '';
$this->id_operating_system = $this->getOs($userAgent);
$this->id_web_browser = $this->getBrowser($userAgent);
$this->accept_language = $this->getLanguage($acceptLanguage);
}
private function getLanguage($acceptLanguage)
{
// $langsArray is filled with all the languages accepted, ordered by priority
$langsArray = array();
preg_match_all('/([a-z]{2}(-[a-z]{2})?)\s*(;\s*q\s*=\s*(1|0\.[0-9]+))?/', $acceptLanguage, $array);
if (count($array[1]))
{
$langsArray = array_combine($array[1], $array[4]);
foreach ($langsArray as $lang => $val)
if ($val === '')
$langsArray[$lang] = 1;
arsort($langsArray, SORT_NUMERIC);
}
// Only the first language is returned
return (sizeof($langsArray) ? key($langsArray) : '');
}
private function getBrowser($userAgent)
{
$browserArray = array(
'Google Chrome' => 'Chrome/',
'Safari' => 'Safari',
'Firefox 3.x' => 'Firefox/3',
'Firefox 2.x' => 'Firefox/2',
'Opera' => 'Opera',
'IE 8.x' => 'MSIE 8',
'IE 7.x' => 'MSIE 7',
'IE 6.x' => 'MSIE 6'
);
foreach ($browserArray as $k => $value)
if (strstr($userAgent, $value))
{
$result = Db::getInstance()->getRow('
SELECT `id_web_browser`
FROM `'._DB_PREFIX_.'web_browser` wb
WHERE wb.`name` = \''.pSQL($k).'\'');
return $result['id_web_browser'];
}
return NULL;
}
private function getOs($userAgent)
{
$osArray = array(
'Windows Vista' => 'Windows NT 6',
'Windows XP' => 'Windows NT 5',
'MacOsX' => 'Mac OS X',
'Linux' => 'X11'
);
foreach ($osArray as $k => $value)
if (strstr($userAgent, $value))
{
$result = Db::getInstance()->getRow('
SELECT `id_operating_system`
FROM `'._DB_PREFIX_.'operating_system` os
WHERE os.`name` = \''.pSQL($k).'\'');
return $result['id_operating_system'];
}
return NULL;
}
public static function getFromCustomer($id_customer)
{
if (!Validate::isUnsignedId($id_customer))
return false;
$result = Db::getInstance()->getRow('
SELECT `id_guest`
FROM `'._DB_PREFIX_.'guest`
WHERE `id_customer` = '.intval($id_customer));
return $result['id_guest'];
}
public function mergeWithCustomer($id_guest, $id_customer)
{
// Since the guests are merged, the guest id in the connections table must be changed too
Db::getInstance()->Execute('
UPDATE `'._DB_PREFIX_.'connections` c
SET c.`id_guest` = '.intval($id_guest).'
WHERE c.`id_guest` = '.intval($this->id));
// The current guest is removed from the database
$this->delete();
// $this is still filled with values, so it's id is changed for the old guest
$this->id = intval($id_guest);
$this->id_customer = intval($id_customer);
// $this is now the old guest but filled with the most up to date values
$this->update();
}
public static function setNewGuest($cookie)
{
$guest = new Guest(isset($cookie->id_customer) ? Guest::getFromCustomer(intval($cookie->id_customer)) : NULL);
$guest->userAgent();
if ($guest->id_operating_system OR $guest->id_web_browser)
{
$guest->save();
$cookie->id_guest = intval($guest->id);
}
}
}
?>