[*] BO : #PSFV-94 - added AdminReferrersController
git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@10046 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
+92
-73
@@ -30,7 +30,7 @@ class ReferrerCore extends ObjectModel
|
||||
public $id_shop;
|
||||
public $name;
|
||||
public $passwd;
|
||||
|
||||
|
||||
public $http_referer_regexp;
|
||||
public $http_referer_like;
|
||||
public $request_uri_regexp;
|
||||
@@ -39,25 +39,43 @@ class ReferrerCore extends ObjectModel
|
||||
public $http_referer_like_not;
|
||||
public $request_uri_regexp_not;
|
||||
public $request_uri_like_not;
|
||||
|
||||
|
||||
public $base_fee;
|
||||
public $percent_fee;
|
||||
public $click_fee;
|
||||
|
||||
public $date_add;
|
||||
|
||||
protected $fieldsRequired = array('name');
|
||||
protected $fieldsSize = array('name' => 64, 'http_referer_regexp' => 64, 'request_uri_regexp' => 64, 'http_referer_like' => 64, 'request_uri_like' => 64, 'passwd' => 32);
|
||||
protected $fieldsValidate = array(
|
||||
'id_shop' => 'isUnsignedInt',
|
||||
'name' => 'isGenericName', 'passwd' => 'isPasswd',
|
||||
'http_referer_regexp' => 'isCleanHtml', 'request_uri_regexp' => 'isCleanHtml', 'http_referer_like' => 'isCleanHtml', 'request_uri_like' => 'isCleanHtml',
|
||||
'http_referer_regexp_not' => 'isCleanHtml', 'request_uri_regexp_not' => 'isCleanHtml', 'http_referer_like_not' => 'isCleanHtml', 'request_uri_like_not' => 'isCleanHtml',
|
||||
'base_fee' => 'isFloat', 'percent_fee' => 'isFloat', 'click_fee' => 'isFloat');
|
||||
|
||||
protected $table = 'referrer';
|
||||
protected $identifier = 'id_referrer';
|
||||
|
||||
public $date_add;
|
||||
|
||||
protected $fieldsRequired = array('name');
|
||||
protected $fieldsSize = array(
|
||||
'name' => 64,
|
||||
'http_referer_regexp' => 64,
|
||||
'request_uri_regexp' => 64,
|
||||
'http_referer_like' => 64,
|
||||
'request_uri_like' => 64,
|
||||
'passwd' => 32
|
||||
);
|
||||
|
||||
protected $fieldsValidate = array(
|
||||
'id_shop' => 'isUnsignedInt',
|
||||
'name' => 'isGenericName',
|
||||
'passwd' => 'isPasswd',
|
||||
'http_referer_regexp' => 'isCleanHtml',
|
||||
'request_uri_regexp' => 'isCleanHtml',
|
||||
'http_referer_like' => 'isCleanHtml',
|
||||
'request_uri_like' => 'isCleanHtml',
|
||||
'http_referer_regexp_not' => 'isCleanHtml',
|
||||
'request_uri_regexp_not' => 'isCleanHtml',
|
||||
'http_referer_like_not' => 'isCleanHtml',
|
||||
'request_uri_like_not' => 'isCleanHtml',
|
||||
'base_fee' => 'isFloat',
|
||||
'percent_fee' => 'isFloat',
|
||||
'click_fee' => 'isFloat'
|
||||
);
|
||||
|
||||
protected $table = 'referrer';
|
||||
protected $identifier = 'id_referrer';
|
||||
|
||||
protected static $_join = '(r.http_referer_like IS NULL OR r.http_referer_like = \'\' OR cs.http_referer LIKE r.http_referer_like)
|
||||
AND (r.request_uri_like IS NULL OR r.request_uri_like = \'\' OR cs.request_uri LIKE r.request_uri_like)
|
||||
AND (r.http_referer_like_not IS NULL OR r.http_referer_like_not = \'\' OR cs.http_referer NOT LIKE r.http_referer_like_not)
|
||||
@@ -66,7 +84,7 @@ class ReferrerCore extends ObjectModel
|
||||
AND (r.request_uri_regexp IS NULL OR r.request_uri_regexp = \'\' OR cs.request_uri REGEXP r.request_uri_regexp)
|
||||
AND (r.http_referer_regexp_not IS NULL OR r.http_referer_regexp_not = \'\' OR cs.http_referer NOT REGEXP r.http_referer_regexp_not)
|
||||
AND (r.request_uri_regexp_not IS NULL OR r.request_uri_regexp_not = \'\' OR cs.request_uri NOT REGEXP r.request_uri_regexp_not)';
|
||||
|
||||
|
||||
public function getFields()
|
||||
{
|
||||
$this->validateFields();
|
||||
@@ -87,7 +105,7 @@ class ReferrerCore extends ObjectModel
|
||||
$fields['date_add'] = pSQL($this->date_add);
|
||||
return $fields;
|
||||
}
|
||||
|
||||
|
||||
public function add($autodate = true, $nullValues = false)
|
||||
{
|
||||
if (!($result = parent::add($autodate, $nullValues)))
|
||||
@@ -106,11 +124,11 @@ class ReferrerCore extends ObjectModel
|
||||
SELECT id_referrer, id_connections_source
|
||||
FROM '._DB_PREFIX_.'referrer r
|
||||
LEFT JOIN '._DB_PREFIX_.'connections_source cs ON ('.self::$_join.')
|
||||
WHERE id_connections_source = '.(int)($id_connections_source).'
|
||||
WHERE id_connections_source = '.(int)$id_connections_source.'
|
||||
)';
|
||||
Db::getInstance()->execute($sql);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Get list of referrers connections of a customer
|
||||
*
|
||||
@@ -124,7 +142,7 @@ class ReferrerCore extends ObjectModel
|
||||
LEFT JOIN '._DB_PREFIX_.'connections_source cs ON c.id_connections = cs.id_connections
|
||||
LEFT JOIN '._DB_PREFIX_.'referrer r ON ('.self::$_join.')
|
||||
LEFT JOIN '._DB_PREFIX_.'shop s ON s.id_shop = c.id_shop
|
||||
WHERE g.id_customer = '.(int)($id_customer).'
|
||||
WHERE g.id_customer = '.(int)$id_customer.'
|
||||
AND r.name IS NOT NULL
|
||||
ORDER BY c.date_add DESC';
|
||||
return Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($sql);
|
||||
@@ -145,7 +163,7 @@ class ReferrerCore extends ObjectModel
|
||||
$join = 'LEFT JOIN `'._DB_PREFIX_.'page` p ON cp.`id_page` = p.`id_page`
|
||||
LEFT JOIN `'._DB_PREFIX_.'page_type` pt ON pt.`id_page_type` = p.`id_page_type`';
|
||||
$where = ' AND pt.`name` = \'product\'
|
||||
AND p.`id_object` = '.(int)($id_product);
|
||||
AND p.`id_object` = '.(int)$id_product;
|
||||
}
|
||||
|
||||
$sql = 'SELECT COUNT(DISTINCT cs.id_connections_source) AS visits,
|
||||
@@ -183,9 +201,9 @@ class ReferrerCore extends ObjectModel
|
||||
LEFT JOIN `'._DB_PREFIX_.'page` p ON cp.`id_page` = p.`id_page`
|
||||
LEFT JOIN `'._DB_PREFIX_.'page_type` pt ON pt.`id_page_type` = p.`id_page_type`';
|
||||
$where = ' AND pt.`name` = \'product\'
|
||||
AND p.`id_object` = '.(int)($id_product);
|
||||
AND p.`id_object` = '.(int)$id_product;
|
||||
}
|
||||
|
||||
|
||||
$sql = 'SELECT COUNT(DISTINCT cu.id_customer) AS registrations
|
||||
FROM '._DB_PREFIX_.'referrer_cache rc
|
||||
LEFT JOIN '._DB_PREFIX_.'referrer_shop rs ON rc.id_referrer = rs.id_referrer
|
||||
@@ -199,7 +217,7 @@ class ReferrerCore extends ObjectModel
|
||||
'.$shop->addSqlRestriction(false, 'c').'
|
||||
'.$shop->addSqlRestriction(Shop::SHARE_CUSTOMER, 'cu').'
|
||||
AND cu.date_add > cs.date_add
|
||||
AND rc.id_referrer = '.(int)($this->id)
|
||||
AND rc.id_referrer = '.(int)$this->id
|
||||
.$where;
|
||||
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->getRow($sql);
|
||||
return (int)$result['registrations'];
|
||||
@@ -218,9 +236,9 @@ class ReferrerCore extends ObjectModel
|
||||
if ($id_product)
|
||||
{
|
||||
$join = 'LEFT JOIN '._DB_PREFIX_.'order_detail od ON oo.id_order = od.id_order';
|
||||
$where = ' AND od.product_id = '.(int)($id_product);
|
||||
$where = ' AND od.product_id = '.(int)$id_product;
|
||||
}
|
||||
|
||||
|
||||
$sql = 'SELECT oo.id_order
|
||||
FROM '._DB_PREFIX_.'referrer_cache rc
|
||||
LEFT JOIN '._DB_PREFIX_.'referrer_shop rs ON rc.id_referrer = rs.id_referrer
|
||||
@@ -234,16 +252,16 @@ class ReferrerCore extends ObjectModel
|
||||
'.$shop->addSqlRestriction(false, 'c').'
|
||||
'.$shop->addSqlRestriction(Shop::SHARE_ORDER, 'oo').'
|
||||
AND oo.date_add > cs.date_add
|
||||
AND rc.id_referrer = '.(int)($this->id).'
|
||||
AND rc.id_referrer = '.(int)$this->id.'
|
||||
AND oo.valid = 1'
|
||||
.$where;
|
||||
$result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($sql);
|
||||
|
||||
|
||||
$implode = array();
|
||||
foreach ($result as $row)
|
||||
if ((int)$row['id_order'])
|
||||
$implode[] = (int)$row['id_order'];
|
||||
|
||||
|
||||
if ($implode)
|
||||
{
|
||||
$sql = 'SELECT COUNT(id_order) AS orders, SUM(total_paid_real / conversion_rate) AS sales
|
||||
@@ -256,7 +274,7 @@ class ReferrerCore extends ObjectModel
|
||||
else
|
||||
return array('orders' => 0, 'sales' => 0);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Refresh cache data of referrer statistics in referrer_shop table
|
||||
*
|
||||
@@ -265,31 +283,31 @@ class ReferrerCore extends ObjectModel
|
||||
*/
|
||||
public static function refreshCache($referrers = null, $employee = null)
|
||||
{
|
||||
if (!$referrers OR !is_array($referrers))
|
||||
if (!$referrers || !is_array($referrers))
|
||||
$referrers = Db::getInstance()->executeS('SELECT id_referrer FROM '._DB_PREFIX_.'referrer');
|
||||
foreach ($referrers as $row)
|
||||
{
|
||||
$referrer = new Referrer($row['id_referrer']);
|
||||
foreach (Shop::getShops(true, null, true) as $shopID)
|
||||
foreach (Shop::getShops(true, null, true) as $shop_id)
|
||||
{
|
||||
if (!$referrer->isAssociatedToShop($shopID))
|
||||
if (!$referrer->isAssociatedToShop($shop_id))
|
||||
continue;
|
||||
|
||||
$shop = new Shop($shopID);
|
||||
$statsVisits = $referrer->getStatsVisits(null, $employee, $shop);
|
||||
$shop = new Shop($shop_id);
|
||||
$stats_visits = $referrer->getStatsVisits(null, $employee, $shop);
|
||||
$registrations = $referrer->getRegistrations(null, $employee, $shop);
|
||||
$statsSales = $referrer->getStatsSales(null, $employee, $shop);
|
||||
$stats_sales = $referrer->getStatsSales(null, $employee, $shop);
|
||||
|
||||
Db::getInstance()->autoExecute(_DB_PREFIX_.'referrer_shop', array(
|
||||
'cache_visitors' => $statsVisits['uniqs'],
|
||||
'cache_visits' => $statsVisits['visits'],
|
||||
'cache_pages' => $statsVisits['pages'],
|
||||
'cache_registrations' =>$registrations,
|
||||
'cache_orders' => $statsSales['orders'],
|
||||
'cache_sales' => number_format($statsSales['sales'], 2, '.', ''),
|
||||
'cache_reg_rate' => $statsVisits['uniqs'] ? $registrations / $statsVisits['uniqs'] : 0,
|
||||
'cache_order_rate' => $statsVisits['uniqs'] ? $statsSales['orders'] / $statsVisits['uniqs'] : 0,
|
||||
), 'UPDATE', 'id_referrer = '.$referrer->id.' AND id_shop = '.$shopID);
|
||||
'cache_visitors' => $stats_visits['uniqs'],
|
||||
'cache_visits' => $stats_visits['visits'],
|
||||
'cache_pages' => $stats_visits['pages'],
|
||||
'cache_registrations' => $registrations,
|
||||
'cache_orders' => $stats_sales['orders'],
|
||||
'cache_sales' => number_format($stats_sales['sales'], 2, '.', ''),
|
||||
'cache_reg_rate' => $stats_visits['uniqs'] ? $registrations / $stats_visits['uniqs'] : 0,
|
||||
'cache_order_rate' => $stats_visits['uniqs'] ? $stats_sales['orders'] / $stats_visits['uniqs'] : 0,
|
||||
), 'UPDATE', 'id_referrer = '.$referrer->id.' AND id_shop = '.$shop_id);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -297,7 +315,7 @@ class ReferrerCore extends ObjectModel
|
||||
Configuration::updateValue('PS_REFERRERS_CACHE_DATE', date('Y-m-d H:i:s'));
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Cache liaison between connections_source data and referrers data
|
||||
*
|
||||
@@ -305,7 +323,7 @@ class ReferrerCore extends ObjectModel
|
||||
*/
|
||||
public static function refreshIndex($referrers = null)
|
||||
{
|
||||
if (!$referrers OR !is_array($referrers))
|
||||
if (!$referrers || !is_array($referrers))
|
||||
{
|
||||
Db::getInstance()->execute('TRUNCATE '._DB_PREFIX_.'referrer_cache');
|
||||
Db::getInstance()->execute('
|
||||
@@ -318,46 +336,47 @@ class ReferrerCore extends ObjectModel
|
||||
else
|
||||
foreach ($referrers as $row)
|
||||
{
|
||||
Db::getInstance()->execute('DELETE FROM '._DB_PREFIX_.'referrer_cache WHERE id_referrer = '.(int)($row['id_referrer']));
|
||||
Db::getInstance()->execute('DELETE FROM '._DB_PREFIX_.'referrer_cache WHERE id_referrer = '.(int)$row['id_referrer']);
|
||||
Db::getInstance()->execute('
|
||||
INSERT INTO '._DB_PREFIX_.'referrer_cache (id_referrer, id_connections_source) (
|
||||
SELECT id_referrer, id_connections_source
|
||||
FROM '._DB_PREFIX_.'referrer r
|
||||
LEFT JOIN '._DB_PREFIX_.'connections_source cs ON ('.self::$_join.')
|
||||
WHERE id_referrer = '.(int)($row['id_referrer']).'
|
||||
WHERE id_referrer = '.(int)$row['id_referrer'].'
|
||||
)');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public static function getAjaxProduct($id_referrer, $id_product, $employee = null)
|
||||
{
|
||||
$context = Context::getContext();
|
||||
$product = new Product($id_product, false, Configuration::get('PS_LANG_DEFAULT'));
|
||||
$currency = Currency::getCurrencyInstance(Configuration::get('PS_CURRENCY_DEFAULT'));
|
||||
$referrer = new Referrer($id_referrer);
|
||||
$statsVisits = $referrer->getStatsVisits($id_product, $employee);
|
||||
$registrations = $referrer->getRegistrations($id_product, $employee);
|
||||
$statsSales = $referrer->getStatsSales($id_product, $employee);
|
||||
$stats_visits = $referrer->getStatsVisits($id_product, $employee, $context->shop);
|
||||
$registrations = $referrer->getRegistrations($id_product, $employee, $context->shop);
|
||||
$stats_sales = $referrer->getStatsSales($id_product, $employee, $context->shop);
|
||||
|
||||
// If it's a product and it has no visits nor orders
|
||||
if ((int)($id_product) AND !$statsVisits['visits'] AND !$statsSales['orders'])
|
||||
if ((int)$id_product && !$stats_visits['visits'] && !$stats_sales['orders'])
|
||||
exit;
|
||||
|
||||
$jsonArray = array();
|
||||
$jsonArray[] = '"id_product":"'.(int)($product->id).'"';
|
||||
$jsonArray[] = '"product_name":"'.addslashes($product->name).'"';
|
||||
$jsonArray[] = '"uniqs":"'.(int)($statsVisits['uniqs']).'"';
|
||||
$jsonArray[] = '"visitors":"'.(int)($statsVisits['visitors']).'"';
|
||||
$jsonArray[] = '"visits":"'.(int)($statsVisits['visits']).'"';
|
||||
$jsonArray[] = '"pages":"'.(int)($statsVisits['pages']).'"';
|
||||
$jsonArray[] = '"registrations":"'.(int)($registrations).'"';
|
||||
$jsonArray[] = '"orders":"'.(int)($statsSales['orders']).'"';
|
||||
$jsonArray[] = '"sales":"'.Tools::displayPrice($statsSales['sales'], $currency).'"';
|
||||
$jsonArray[] = '"cart":"'.Tools::displayPrice(((int)($statsSales['orders']) ? $statsSales['sales'] / (int)($statsSales['orders']) : 0), $currency).'"';
|
||||
$jsonArray[] = '"reg_rate":"'.number_format((int)($statsVisits['uniqs']) ? (int)($registrations) / (int)($statsVisits['uniqs']) : 0, 4, '.', '').'"';
|
||||
$jsonArray[] = '"order_rate":"'.number_format((int)($statsVisits['uniqs']) ? (int)($statsSales['orders']) / (int)($statsVisits['uniqs']) : 0, 4, '.', '').'"';
|
||||
$jsonArray[] = '"click_fee":"'.Tools::displayPrice((int)($statsVisits['visits']) * $referrer->click_fee, $currency).'"';
|
||||
$jsonArray[] = '"base_fee":"'.Tools::displayPrice($statsSales['orders'] * $referrer->base_fee, $currency).'"';
|
||||
$jsonArray[] = '"percent_fee":"'.Tools::displayPrice($statsSales['sales'] * $referrer->percent_fee / 100, $currency).'"';
|
||||
die ('[{'.implode(',', $jsonArray).'}]');
|
||||
|
||||
$json_array = array();
|
||||
$json_array[] = '"id_product":"'.(int)$product->id.'"';
|
||||
$json_array[] = '"product_name":"'.addslashes($product->name).'"';
|
||||
$json_array[] = '"uniqs":"'.(int)$stats_visits['uniqs'].'"';
|
||||
$json_array[] = '"visitors":"'.(int)$stats_visits['visitors'].'"';
|
||||
$json_array[] = '"visits":"'.(int)$stats_visits['visits'].'"';
|
||||
$json_array[] = '"pages":"'.(int)$stats_visits['pages'].'"';
|
||||
$json_array[] = '"registrations":"'.(int)$registrations.'"';
|
||||
$json_array[] = '"orders":"'.(int)$stats_sales['orders'].'"';
|
||||
$json_array[] = '"sales":"'.Tools::displayPrice($stats_sales['sales'], $currency).'"';
|
||||
$json_array[] = '"cart":"'.Tools::displayPrice(((int)$stats_sales['orders'] ? $stats_sales['sales'] / (int)$stats_sales['orders'] : 0), $currency).'"';
|
||||
$json_array[] = '"reg_rate":"'.number_format((int)$stats_visits['uniqs'] ? (int)$registrations / (int)$stats_visits['uniqs'] : 0, 4, '.', '').'"';
|
||||
$json_array[] = '"order_rate":"'.number_format((int)$stats_visits['uniqs'] ? (int)$stats_sales['orders'] / (int)$stats_visits['uniqs'] : 0, 4, '.', '').'"';
|
||||
$json_array[] = '"click_fee":"'.Tools::displayPrice((int)$stats_visits['visits'] * $referrer->click_fee, $currency).'"';
|
||||
$json_array[] = '"base_fee":"'.Tools::displayPrice($stats_sales['orders'] * $referrer->base_fee, $currency).'"';
|
||||
$json_array[] = '"percent_fee":"'.Tools::displayPrice($stats_sales['sales'] * $referrer->percent_fee / 100, $currency).'"';
|
||||
die ('[{'.implode(',', $json_array).'}]');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user