rhymix/modules/counter/counter.controller.php

214 lines
4.1 KiB
PHP

<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* Counter module's controller class
*
* @author NAVER (developers@xpressengine.com)
*/
class counterController extends counter
{
/**
* Initialization
*
* @return void
*/
function init()
{
}
/**
* Counter logs.
* If want use below function, you can use 'counterExecute' function instead this function
*
* @return void
*/
function procCounterExecute()
{
}
/**
* Counter logs
*
* @return void
*/
function counterExecute()
{
$oDB = DB::getInstance();
$oDB->begin();
$site_module_info = Context::get('site_module_info');
$site_srl = (int) $site_module_info->site_srl;
// Check the logs
$oCounterModel = getModel('counter');
if($oCounterModel->isInsertedTodayStatus($site_srl))
{
if($oCounterModel->isLogged($site_srl))
{
// Register pageview
$this->insertPageView($site_srl);
}
else // If unregistered IP
{
// Leave logs
$this->insertLog($site_srl);
// Register unique and pageview
$this->insertUniqueVisitor($site_srl);
}
}
else // Register today's row if not exist
{
$this->insertTodayStatus(0, $site_srl);
// check user if the previous row exists
}
$oDB->commit();
}
/**
* Leave logs
*
* @param integer $site_srl
* @return Object result of count query
*/
function insertLog($site_srl = 0)
{
$args = new stdClass();
$args->regdate = date("YmdHis");
$args->user_agent = substr($_SERVER['HTTP_USER_AGENT'], 0, 250);
$args->site_srl = $site_srl;
return executeQuery('counter.insertCounterLog', $args);
}
/**
* Register the unique visitor
*
* @param integer $site_srl
* @return void
*/
function insertUniqueVisitor($site_srl = 0)
{
$args = new stdClass();
$args->regdate = '0,' . date('Ymd');
if($site_srl)
{
$args->site_srl = $site_srl;
$output = executeQuery('counter.updateSiteCounterUnique', $args);
}
else
{
$output = executeQuery('counter.updateCounterUnique', $args);
}
}
/**
* Register pageview
*
* @param integer $site_srl
* @return void
*/
function insertPageView($site_srl = 0)
{
$args = new stdClass;
$args->regdate = '0,' . date('Ymd');
if($site_srl)
{
$args->site_srl = $site_srl;
executeQuery('counter.updateSiteCounterPageview', $args);
}
else
{
executeQuery('counter.updateCounterPageview', $args);
}
}
/**
* Add the total counter status
*
* @param integer $site_srl
* @return void
*/
function insertTotalStatus($site_srl = 0)
{
$args = new stdClass();
$args->regdate = 0;
if($site_srl)
{
$args->site_srl = $site_srl;
executeQuery('counter.insertSiteTodayStatus', $args);
}
else
{
executeQuery('counter.insertTodayStatus', $args);
}
}
/**
* Add today's counter status
*
* @param integer $regdate date(YYYYMMDD) type
* @param integer $site_srl
* @return void
*/
function insertTodayStatus($regdate = 0, $site_srl = 0)
{
$args = new stdClass();
if($regdate)
{
$args->regdate = $regdate;
}
else
{
$args->regdate = date("Ymd");
}
if($site_srl)
{
$args->site_srl = $site_srl;
$query_id = 'counter.insertSiteTodayStatus';
$u_args = new stdClass();
$u_args->site_srl = $site_srl; // /< when inserting a daily row, attempt to inser total rows(where regdate=0) together
executeQuery($query_id, $u_args);
}
else
{
$query_id = 'counter.insertTodayStatus';
executeQuery($query_id); // /< when inserting a daily row, attempt to inser total rows(where regdate=0) together
}
$output = executeQuery($query_id, $args);
// Leave logs
$this->insertLog($site_srl);
// Register unique and pageview
$this->insertUniqueVisitor($site_srl);
}
/**
* Delete counter logs of the specific virtual site
*
* @param integer $site_srl
* @return void
*/
function deleteSiteCounterLogs($site_srl)
{
$args = new stdClass();
$args->site_srl = $site_srl;
executeQuery('counter.deleteSiteCounter', $args);
executeQuery('counter.deleteSiteCounterLog', $args);
}
}
/* End of file counter.controller.php */
/* Location: ./modules/counter/counter.controller.php */