Your IP : 216.73.216.84


Current Path : /home/h/e/l/helpink/www/administrator/components/com_jbusinessdirectory/controllers/
Upload File :
Current File : /home/h/e/l/helpink/www/administrator/components/com_jbusinessdirectory/controllers/event.php

<?php
/**
 * @package    J-BusinessDirectory
 *
 * @author     CMSJunkie http://www.cmsjunkie.com/
 * @copyright  Copyright (C) 2007 - 2022 CMSJunkie. All rights reserved.
 * @license    https://www.gnu.org/licenses/agpl-3.0.en.html
 */
defined('_JEXEC') or die('Restricted access');

jimport('joomla.application.component.controllerform');

/**
 * The Event Controller
 *
 */
class JBusinessDirectoryControllerEvent extends JControllerForm {
	/**
	 * Dummy method to redirect back to standard controller
	 *
	 */
	public function display($cachable = false, $urlparams = false) {
		$this->setRedirect(JRoute::_('index.php?option=com_jbusinessdirectory&view=events', false));
	}

	public function add() {
		$app = JFactory::getApplication();
		$context = 'com_jbusinessdirectory.edit.event';
	
		$result = parent::add();
		if ($result) {
			$this->setRedirect(JRoute::_('index.php?option=com_jbusinessdirectory&view='.$this->view_item. $this->getRedirectToItemAppend(), false));
		}
		return $result;
	}
	
	
	/**
	 * Method to cancel an edit.
	 *
	 * @param   string  $key  The name of the primary key of the URL variable.
	 *
	 * @return  boolean  True if access level checks pass, false otherwise.
	 */
	public function cancel($key = null) {
		JSession::checkToken() or jexit(JText::_('JINVALID_TOKEN'));
	
		$app = JFactory::getApplication();
		$context = 'com_jbusinessdirectory.edit.event';
		$result = parent::cancel();
	}
	
	/**
	 * Method to edit an existing record.
	 *
	 * @param   string  $key     The name of the primary key of the URL variable.
	 * @param   string  $urlVar  The name of the URL variable if different from the primary key
	 * (sometimes required to avoid router collisions).
	 *
	 * @return  boolean  True if access level check and checkout passes, false otherwise.
	 *
	 */
	public function edit($key = null, $urlVar = null) {
		$app = JFactory::getApplication();
		$result = parent::edit();
	
		return true;
	}
	
	/**
	 * save a record (and redirect to main page)
	 * @return void
	 */
	public function save($key = null, $urlVar = null) {
		// Check for request forgeries.
		JSession::checkToken() or jexit(JText::_('JINVALID_TOKEN'));
		$app      = JFactory::getApplication();
		$model = $this->getModel('event');
		$jinput = JFactory::getApplication()->input;
		$data = $jinput->getArray();

		$data['description'] = $jinput->get("description", '', 'RAW');
		$context  = 'com_jbusinessdirectory.edit.event';
		$task     = $this->getTask();
		$recordId = $jinput->getInt('id');
		$recurringId = $data["recurring_id"];

		if ($task == 'save2copy') {
			$data['id'] = '';
			$data['view_count'] = '0';
		}

		$data["pictures"] = $this->preparePictures($data);
		
		if (!$model->save($data)) {
			// Save the data in the session.
			$app->setUserState('com_jbusinessdirectory.edit.event.data', $data);
			// Redirect back to the edit screen.
			$this->setMessage(JText::sprintf('JLIB_APPLICATION_ERROR_SAVE_FAILED', $model->getError()), 'warning');
			$this->setRedirect(JRoute::_('index.php?option=' . $this->option . '&view=' . $this->view_item . $this->getRedirectToItemAppend($recordId), false));
			return false;
		} elseif (!empty($model->getErrors())) {
			$implodeErrors = implode('<br />', $model->getErrors());
			$this->setMessage(JText::sprintf('COM_JBUSINESSDIRECTORY_SAVED_WARNING', $implodeErrors), 'Warning');
		} else {
			$this->setMessage(JText::_('COM_JBUSINESSDIRECTORY_EVENT_SAVE_SUCCESS'));
		}
		
		$recordId = $model->getState('event.id');
		if (!empty($data["frequency"]) && $data["frequency"] != 0) {
			$model->createRecurringEvents($recordId, $data);
		} elseif (!empty($recurringId) && $recurringId != 0) {
			$edit_mode = JFactory::getApplication()->input->get("edit_mode", 1);
			$model->setState('parent.event.id', $recordId);
			$id = $recordId;
			if ($edit_mode != 1) {
				$edit_ids = array();
				switch ($edit_mode) {
					case 2:
						$edit_ids= $model->getNextEventsIds($recordId);
						break;
					case 3:
						$edit_ids = $model->getAllSeriesEventsIds($recordId);
						break;
				}

				$data["preserve_alias"]=1;
				unset($data["start_date"]);
				unset($data["end_date"]);
				unset($data["alias"]);

				foreach ($edit_ids as $id) {
					$data["id"]= $id;
					if (!$model->save($data)) {
						// Save the data in the session.
						$app->setUserState('com_jbusinessdirectory.edit.event.data', $data);
							
						// Redirect back to the edit screen.
						$this->setMessage(JText::sprintf('JLIB_APPLICATION_ERROR_SAVE_FAILED', $model->getError()), 'warning');
						$this->setRedirect(JRoute::_('index.php?option=' . $this->option . '&view=' . $this->view_item . $this->getRedirectToItemAppend($recordId), false));
							
						return false;
					}
				}
			}
		}
		
		// Redirect the user and adjust session state based on the chosen task.
		switch ($task) {
			case 'apply':
				// Set the row data in the session.
				$this->holdEditId($context, $recordId);
				$app->setUserState('com_jbusinessdirectory.edit.event.data', null);
			
				// Redirect back to the edit screen.
				$this->setRedirect(JRoute::_('index.php?option=' . $this->option . '&view=' . $this->view_item . $this->getRedirectToItemAppend($recordId), false));
				break;

			default:
				// Clear the row id and data in the session.
				$this->releaseEditId($context, $recordId);
				$app->setUserState('com_jbusinessdirectory.edit.event.data', null);
							
				// Redirect to the list screen.
				$this->setRedirect(JRoute::_('index.php?option=' . $this->option . '&view=' . $this->view_list . $this->getRedirectToListAppend(), false));
				break;
		}
	}
	
	
	public function preparePictures($data) {
		//save images
		$pictures					= array();
		foreach ($data as $key => $value) {
			if (strpos($key, 'picture_title') !== false
				||
				strpos($key, 'picture_info') !== false
				||
				strpos($key, 'picture_path') !== false
				||
				strpos($key, 'picture_enable') !== false
			) {
				foreach ($value as $k => $v) {
					if (!isset($pictures[$k])) {
						$pictures[$k] = array('picture_title' => '', 'picture_info'=>'', 'picture_path'=>'','picture_enable'=>1);
					}
					$pictures[$k][$key] = $v;
				}
			}
		}
	
		return $pictures;
	}

	public function aprove() {
		$model = $this->getModel('Event');
		$error = !$model->changeAprovalState(1);

		$cid  = $this->input->get('cid', array(), 'array');
		$ajax = $this->input->get('ajax');
		if (!empty($ajax)) {
			$response          = array();
			$response["cid"]   = $cid[0];
			$response["error"] = $error;

			echo json_encode($response);

			exit;
		}

		$this->setRedirect(JRoute::_('index.php?option=com_jbusinessdirectory&view=events', false));
	}

	public function disaprove() {
		$model = $this->getModel('Event');
		$error = !$model->changeAprovalState(-1);

		$cid  = $this->input->get('cid', array(), 'array');
		$ajax = $this->input->get('ajax');
		if (!empty($ajax)) {
			$response          = array();
			$response["cid"]   = $cid[0];
			$response["error"] = $error;

			echo json_encode($response);

			exit;
		}

		$this->setRedirect(JRoute::_('index.php?option=com_jbusinessdirectory&view=events', false));
	}
	
	public function chageState() {
		$model = $this->getModel('Event');
	
		if ($model->changeState()) {
			$msg = JText::_('');
		} else {
			$msg = JText::_('LNG_ERROR_CHANGE_STATE');
		}
	
	
		$this->setRedirect(JRoute::_('index.php?option=com_jbusinessdirectory&view=events', $msg));
	}
	
	
	public function changeStateEventOfTheDay() {
		$model = $this->getModel('Event');
	
		if ($model->changeStateEventOfTheDay()) {
			$msg = JText::_('');
		} else {
			$msg = JText::_('LNG_ERROR_CHANGE_STATE');
		}
	
		$this->setRedirect(JRoute::_('index.php?option=com_jbusinessdirectory&view=events', $msg));
	}
	
	public function changeStateFeatured() {
		$cid  = $this->input->post->get('cid', array(), 'array');
		
		if (!empty($cid)) {
			$model = $this->getModel('Event');
		
			if ($model->changeStateFeatured($cid[0])) {
				$msg = JText::_('');
			} else {
				$msg = JText::_('LNG_ERROR_CHANGE_STATE');
			}
		}
		$this->setRedirect(JRoute::_('index.php?option=com_jbusinessdirectory&view=events', $msg));
	}


	/**
	 * Method to run batch operations.
	 *
	 * @param   object  $model  The model.
	 *
	 * @return  boolean   True if successful, false otherwise and internal error is set.
	 *
	 * @since   1.6
	 */
	public function batch($model = null) {
		JSession::checkToken() or jexit(JText::_('JINVALID_TOKEN'));

		// Set the model
		$model = $this->getModel('Event', '', array());

		$vars = $this->input->post->get('batch', array(), 'array');
		$cid  = $this->input->post->get('cid', array(), 'array');

		// Attempt to run the batch operation.
		if ($model->batch($vars, $cid, null)) {
			$this->setMessage(JText::_('JLIB_APPLICATION_SUCCESS_BATCH'));
		} else {
			$this->setMessage(JText::sprintf('JLIB_APPLICATION_ERROR_BATCH_FAILED', $model->getError()), 'warning');
		}

		// Preset the redirect
		$this->setRedirect(JRoute::_('index.php?option=com_jbusinessdirectory&view=events' . $this->getRedirectToListAppend(), false));

		return parent::batch($model);
	}

	/**
	 * Method to retrieve attributes by ajax
	 */
	public function getAttributesAjax() {
		$jinput = JFactory::getApplication()->input;
		$categoryId = $jinput->get('categoryId');
		$eventId = $jinput->get('eventId');

		$model = $this->getModel('Event');
		$result = $model->getAttributesAjax($categoryId, $eventId);

		/* Send as JSON */
		header("Content-Type: application/json", true);
		echo json_encode($result);
		exit;
	}

	/**
	 * Method to retrieve listing by ajax
	 */
	public function getListingAddressAjax() {
		$companyId = JFactory::getApplication()->input->get('companyId');

		$model = $this->getModel('Event');
		$result = $model->getListing($companyId);

		/* Send as JSON */
		header("Content-Type: application/json", true);
		echo json_encode($result);
		exit;
	}
}