Your IP : 216.73.216.147


Current Path : /home/lejardintz/www/administrator/components/com_komento/controllers/
Upload File :
Current File : /home/lejardintz/www/administrator/components/com_komento/controllers/integrations.php

<?php
/**
* @package		Komento
* @copyright	Copyright (C) 2012 Stack Ideas Private Limited. All rights reserved.
* @license		GNU/GPL, see LICENSE.php
* Komento is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
defined('_JEXEC') or die('Restricted access');

require_once( dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'controller.php' );

class KomentoControllerIntegrations extends KomentoController
{
	public function change()
	{
		$component = JRequest::getCmd( 'target', 'com_content' );
		$mainframe = JFactory::getApplication();
		$mainframe->redirect( 'index.php?option=com_komento&view=integrations&component=' . $component );
	}

	public function apply()
	{
		$result = $this->doSave();

		$layout		= Jstring::strtolower(JRequest::getString( 'active' , '' ));
		$child		= Jstring::strtolower(JRequest::getString( 'activechild' , '' ));

		$component = JRequest::getString( 'target', '' );

		$mainframe	= JFactory::getApplication();
		$mainframe->redirect( 'index.php?option=com_komento&view=integrations&component=' . $component . '&active=' . $layout, $result['message'], $result['type'] );
	}

	public function cancel()
	{
		$component = JRequest::getString( 'target', '' );

		$mainframe	= JFactory::getApplication();

		if( $component == '' )
		{
			$mainframe->redirect( 'index.php?option=com_komento' );
		}
		else
		{
			$mainframe->redirect( 'index.php?option=com_komento&view=integrations' );
		}
	}

	public function save()
	{
		$result = $this->doSave();

		$mainframe	= JFactory::getApplication();
		$mainframe->redirect( 'index.php?option=com_komento', $result['message'], $result['type'] );
	}

	private function doSave()
	{
		// Check for request forgeries
		JRequest::checkToken() or jexit( 'Invalid Token' );

		$result = array();

		$mainframe	= JFactory::getApplication();

		if( !JRequest::getMethod() == 'POST' )
		{
			// $mainframe->enqueueMessage( JText::_('COM_KOMENTO_SETTINGS_STORE_INVALID_REQUEST' ), 'error' );
			$result['message'] = JText::_('COM_KOMENTO_SETTINGS_STORE_INVALID_REQUEST' );
			$result['type'] = 'error';
			return $result;
		}

		// Unset unecessary post data.
		$post	= JRequest::get( 'POST' );
		unset( $post['active'] );
		unset( $post['activechild'] );
		unset( $post['task'] );
		unset( $post['option'] );
		unset( $post['c'] );

		$token = Komento::_( 'getToken' );
		unset( $post[$token] );

		// check the target component
		if ( !$post['component'] )
		{
			// $mainframe->enqueueMessage( JText::_('COM_KOMENTO_SETTINGS_MISSING_TARGET_COMPONENT'), 'error' );
			$result['message'] = JText::_('COM_KOMENTO_SETTINGS_MISSING_TARGET_COMPONENT' );
			$result['type'] = 'error';
			return $result;
		}

		// custom field that requires processing before save should all goes here
		if( array_key_exists( 'email_regex', $post ) )
		{
			$post['email_regex'] = array( urlencode( $post['email_regex'] ) );
		}
		if( array_key_exists( 'website_regex', $post ) )
		{
			$post['website_regex'] = array( urlencode( $post['website_regex'] ) );
		}
		if( array_key_exists( 'smileycode', $post ) )
		{
			foreach( $post['smileycode'] as $index => $smileycode )
			{
				if( empty( $smileycode ) )
				{
					unset( $post['smileycode'][$index] );
				}
			}
		}
		if( array_key_exists( 'smileypath', $post ) )
		{
			foreach( $post['smileypath'] as $index => $smileypath )
			{
				if( empty( $smileypath ) )
				{
					unset( $post['smileypath'][$index] );
				}
			}
		}

		// Overwrite the value by using getVar to preserve the html tag
		$post['tnc']	= JRequest::getVar( 'tnc', '', 'post', 'string', JREQUEST_ALLOWRAW );

		// Fix multiple select
		$multiples = array(
			'allowed_categories',
			'requires_moderation',
			'show_tnc',
			'notification_to_usergroup_comment',
			'notification_to_usergroup_reply',
			'notification_to_usergroup_pending',
			'notification_to_usergroup_reported',
			'notification_es_to_usergroup_comment',
			'notification_es_to_usergroup_reply',
			'notification_es_to_usergroup_like',
			'smileypath',
			'smileycode'
		);

		foreach( $multiples as $multiple )
		{
			if( !array_key_exists( $multiple, $post ) )
			{
				$post[$multiple] = array();
			}
		}

		// Save post data
		$model	= Komento::getModel( 'system', true );

		if ( !$model->save($post) )
		{
			$result['message'] = JText::_('COM_KOMENTO_SETTINGS_STORE_ERROR' );
			$result['type'] = 'error';
			return $result;
		}

		// Post save actions

		$result['message'] = JText::_('COM_KOMENTO_SETTINGS_STORE_SUCCESS' );
		$result['type'] = 'message';

		// Clear the component's cache
		$cache = JFactory::getCache();
		$cache->clean();

		return $result;
	}
}