Your IP : 216.73.216.218


Current Path : /proc/self/root/home/antonen/chenglong.lt/libraries/foxcontact/action/
Upload File :
Current File : //proc/self/root/home/antonen/chenglong.lt/libraries/foxcontact/action/database.php

<?php defined('_JEXEC') or die(file_get_contents('index.html'));
/**
 * @package   Fox Contact for Joomla
 * @copyright Copyright (c) 2010 - 2015 Demis Palma. All rights reserved.
 * @license   Distributed under the terms of the GNU General Public License GNU/GPL v3 http://www.gnu.org/licenses/gpl-3.0.html
 * @see       Documentation: http://www.fox.ra.it/forum/2-documentation.html
 */
jimport('foxcontact.action.base');
jimport('foxcontact.design.item_user_info');
use FoxContact\Log;

class FoxActionDatabase extends FoxActionBase
{
	
	public function process($target)
	{
		if (!(bool) $this->params->get('delivery_db', true))
		{
			return true;
		}
		
		$oid = $this->form->getScope() === 'component' ? +$this->form->getId() : -$this->form->getId();
		$date = JFactory::getDate()->toSql();
		$ip = FoxDesignItemUserInfo::getCurrentIp();
		$url = $this->form->getDesign()->getFoxDesignItemSystem()->getFormPageUri();
		$data_json = $this->getDataJson();
		$result = $data_json !== false ? $this->insert($oid, $date, $ip, $url, $data_json) : false;
		if (!$result)
		{
			Log::GetInstance()->Add('Enquiry NOT saved to the database.', 'error', 'action');
			$this->form->getBoard()->add(JText::_('COM_FOXCONTACT_ERR_DATABASE'), FoxFormBoard::error);
		}
		else
		{
			Log::GetInstance()->Add('Enquiry saved to the database.', 'info', 'action');
		}
		
		return $result;
	}
	
	
	private function insert($oid, $date, $ip, $uri, $data_json)
	{
		try
		{
			$db = JFactory::getDbo();
			$query = $db->getQuery(true)->insert($db->quoteName('#__foxcontact_enquiries'))->set($db->quoteName('form_id') . '=' . $db->quote($oid))->set($db->quoteName('date') . '=' . $db->quote($date))->set($db->quoteName('ip') . '=' . $db->quote($ip))->set($db->quoteName('url') . '=' . $db->quote($uri))->set($db->quoteName('fields') . '=' . $db->quote($data_json));
			$result = (bool) $db->setQuery($query)->execute();
		}
		catch (Exception $e)
		{
			Log::GetInstance()->Add("Unable to save the enquiry into the database. Database error details: {$e->getMessage()}", 'error', 'action');
			$result = false;
		}
		
		return $result;
	}
	
	
	private function getDataJson()
	{
		$data = array();
		foreach ($this->form->getDesign()->getItems() as $item)
		{
			if ($item->ProvidesData)
			{
				$type = $item->getType();
				$label = $item->get('label');
				$unique_id = $item->get('unique_id');
				$value = $item->getValueAsText();
				$data[] = array($type, !empty($label) ? $label : $unique_id, $value);
			}
		
		}
		
		return json_encode($data);
	}

}