Skip to content
Extraits de code Groupes Projets
Controller.php 3,14 ko
Newer Older
  • Learn to ignore specific revisions
  • <?php
    /**
     * Piwik - Open source web analytics
     *
     * @link http://piwik.org
     * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
     *
     * @category Piwik_Plugins
    
    namespace Piwik\Plugins\DevicesDetection;
    
    use Piwik\Common;
    use Piwik\Db;
    
    class Controller extends \Piwik\Plugin\Controller
    
        public function index()
    
            $view = new View('@DevicesDetection/index');
    
            $view->deviceTypes = $view->deviceModels = $view->deviceBrands = $view->osReport = $view->browserReport = "blank";
            $view->deviceTypes = $this->getType(true);
            $view->deviceBrands = $this->getBrand(true);
            $view->deviceModels = $this->getModel(true);
            $view->osReport = $this->getOsFamilies(true);
            $view->browserReport = $this->getBrowserFamilies(true);
    
            return $view->render();
    
        public function getType()
    
            return $this->renderReport(__FUNCTION__);
    
        public function getBrand()
    
            return $this->renderReport(__FUNCTION__);
    
        public function getModel()
    
            return $this->renderReport(__FUNCTION__);
    
        public function getOsFamilies()
    
            return $this->renderReport(__FUNCTION__);
    
        public function getOsVersions()
    
            return $this->renderReport(__FUNCTION__);
    
        public function getBrowserFamilies()
    
            return $this->renderReport(__FUNCTION__);
    
        public function getBrowserVersions()
    
            return $this->renderReport(__FUNCTION__);
    
        }
    
        private function getArray(UserAgentParserEnhanced $UAParser)
        {
            $UADetails['config_browser_name'] = $UAParser->getBrowser("short_name");
            $UADetails['config_browser_version'] = $UAParser->getBrowser("version");
            $UADetails['config_os'] = $UAParser->getOs("short_name");
            $UADetails['config_os_version'] = $UAParser->getOs("version");
            $UADetails['config_device_type'] = $UAParser->getDevice();
            $UADetails['config_device_model'] = $UAParser->getModel();
            $UADetails['config_device_brand'] = $UAParser->getBrand();
            return $UADetails;
        }
    
        private function updateVisit($idVisit, $uaDetails)
        {
    
            $q = "UPDATE " . Common::prefixTable("log_visit") . " SET " .
    
                "config_browser_name = '" . $uaDetails['config_browser_name'] . "' ," .
                "config_browser_version = '" . $uaDetails['config_browser_version'] . "' ," .
                "config_os = '" . $uaDetails['config_os'] . "' ," .
                "config_os_version = '" . $uaDetails['config_os_version'] . "' ," .
                "config_device_type =  " . (isset($uaDetails['config_device_type']) ? "'" . $uaDetails['config_device_type'] . "'" : "NULL") . " ," .
                "config_device_model = " . (isset($uaDetails['config_device_model']) ? "'" . $uaDetails['config_device_model'] . "'" : "NULL") . " ," .
                "config_device_brand = " . (isset($uaDetails['config_device_brand']) ? "'" . $uaDetails['config_device_brand'] . "'" : "NULL") . "
                        WHERE idvisit = " . $idVisit;