2016-01-30 20:28:43 +00:00
|
|
|
<?php
|
|
|
|
/*--------------------------------------------------------------------------------------------------------| www.vdm.io |------/
|
|
|
|
__ __ _ _____ _ _ __ __ _ _ _
|
|
|
|
\ \ / / | | | __ \ | | | | | \/ | | | | | | |
|
|
|
|
\ \ / /_ _ ___| |_ | | | | _____ _____| | ___ _ __ _ __ ___ ___ _ __ | |_ | \ / | ___| |_| |__ ___ __| |
|
|
|
|
\ \/ / _` / __| __| | | | |/ _ \ \ / / _ \ |/ _ \| '_ \| '_ ` _ \ / _ \ '_ \| __| | |\/| |/ _ \ __| '_ \ / _ \ / _` |
|
|
|
|
\ / (_| \__ \ |_ | |__| | __/\ V / __/ | (_) | |_) | | | | | | __/ | | | |_ | | | | __/ |_| | | | (_) | (_| |
|
|
|
|
\/ \__,_|___/\__| |_____/ \___| \_/ \___|_|\___/| .__/|_| |_| |_|\___|_| |_|\__| |_| |_|\___|\__|_| |_|\___/ \__,_|
|
|
|
|
| |
|
|
|
|
|_|
|
2017-11-06 14:15:03 +00:00
|
|
|
/-------------------------------------------------------------------------------------------------------------------------------/
|
2016-01-30 20:28:43 +00:00
|
|
|
|
2017-11-06 14:04:23 +00:00
|
|
|
@version 2.6.x
|
|
|
|
@created 30th April, 2015
|
2016-01-30 20:28:43 +00:00
|
|
|
@package Component Builder
|
2017-02-16 14:02:23 +00:00
|
|
|
@subpackage joomla_component.php
|
2017-12-27 03:45:35 +00:00
|
|
|
@author Llewellyn van der Merwe <http://joomlacomponentbuilder.com>
|
2017-11-06 14:04:23 +00:00
|
|
|
@github Joomla Component Builder <https://github.com/vdm-io/Joomla-Component-Builder>
|
2016-01-30 20:28:43 +00:00
|
|
|
@copyright Copyright (C) 2015. All Rights Reserved
|
|
|
|
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
|
|
|
|
Builds Complex Joomla Components
|
|
|
|
|
|
|
|
/-----------------------------------------------------------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
// No direct access to this file
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
|
|
|
|
use Joomla\Registry\Registry;
|
|
|
|
|
|
|
|
// import Joomla modelform library
|
|
|
|
jimport('joomla.application.component.modeladmin');
|
|
|
|
|
|
|
|
/**
|
2017-02-16 14:02:23 +00:00
|
|
|
* Componentbuilder Joomla_component Model
|
2016-01-30 20:28:43 +00:00
|
|
|
*/
|
2017-02-16 14:02:23 +00:00
|
|
|
class ComponentbuilderModelJoomla_component extends JModelAdmin
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var string The prefix to use with controller messages.
|
|
|
|
* @since 1.6
|
|
|
|
*/
|
|
|
|
protected $text_prefix = 'COM_COMPONENTBUILDER';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The type alias for this content type.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
* @since 3.2
|
|
|
|
*/
|
2017-02-16 14:02:23 +00:00
|
|
|
public $typeAlias = 'com_componentbuilder.joomla_component';
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a Table object, always creating it
|
|
|
|
*
|
|
|
|
* @param type $type The table type to instantiate
|
|
|
|
* @param string $prefix A prefix for the table class name. Optional.
|
|
|
|
* @param array $config Configuration array for model. Optional.
|
|
|
|
*
|
|
|
|
* @return JTable A database object
|
|
|
|
*
|
|
|
|
* @since 1.6
|
|
|
|
*/
|
2017-02-16 14:02:23 +00:00
|
|
|
public function getTable($type = 'joomla_component', $prefix = 'ComponentbuilderTable', $config = array())
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
return JTable::getInstance($type, $prefix, $config);
|
2017-10-26 16:43:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getVDM()
|
|
|
|
{
|
|
|
|
return $this->vastDevMod;
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to get a single record.
|
|
|
|
*
|
|
|
|
* @param integer $pk The id of the primary key.
|
|
|
|
*
|
|
|
|
* @return mixed Object on success, false on failure.
|
|
|
|
*
|
|
|
|
* @since 1.6
|
|
|
|
*/
|
|
|
|
public function getItem($pk = null)
|
|
|
|
{
|
|
|
|
if ($item = parent::getItem($pk))
|
|
|
|
{
|
2017-11-26 00:29:08 +00:00
|
|
|
if (!empty($item->params) && !is_array($item->params))
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
// Convert the params field to an array.
|
|
|
|
$registry = new Registry;
|
|
|
|
$registry->loadString($item->params);
|
|
|
|
$item->params = $registry->toArray();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($item->metadata))
|
|
|
|
{
|
|
|
|
// Convert the metadata field to an array.
|
|
|
|
$registry = new Registry;
|
|
|
|
$registry->loadString($item->metadata);
|
|
|
|
$item->metadata = $registry->toArray();
|
|
|
|
}
|
|
|
|
|
2017-10-26 16:43:51 +00:00
|
|
|
if (!empty($item->addcontributors))
|
2017-02-02 11:54:07 +00:00
|
|
|
{
|
2017-10-26 16:43:51 +00:00
|
|
|
// Convert the addcontributors field to an array.
|
|
|
|
$addcontributors = new Registry;
|
|
|
|
$addcontributors->loadString($item->addcontributors);
|
|
|
|
$item->addcontributors = $addcontributors->toArray();
|
2017-02-02 11:54:07 +00:00
|
|
|
}
|
|
|
|
|
2017-11-06 14:04:23 +00:00
|
|
|
if (!empty($item->php_postflight_update))
|
2017-10-26 16:43:51 +00:00
|
|
|
{
|
2017-11-06 14:04:23 +00:00
|
|
|
// base64 Decode php_postflight_update.
|
|
|
|
$item->php_postflight_update = base64_decode($item->php_postflight_update);
|
2017-10-26 16:43:51 +00:00
|
|
|
}
|
|
|
|
|
2017-11-06 14:04:23 +00:00
|
|
|
if (!empty($item->php_preflight_update))
|
2016-06-03 06:28:32 +00:00
|
|
|
{
|
2017-11-06 14:04:23 +00:00
|
|
|
// base64 Decode php_preflight_update.
|
|
|
|
$item->php_preflight_update = base64_decode($item->php_preflight_update);
|
2016-06-03 06:28:32 +00:00
|
|
|
}
|
|
|
|
|
2017-11-06 14:04:23 +00:00
|
|
|
if (!empty($item->sql))
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2017-11-06 14:04:23 +00:00
|
|
|
// base64 Decode sql.
|
|
|
|
$item->sql = base64_decode($item->sql);
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
|
2017-11-06 14:04:23 +00:00
|
|
|
if (!empty($item->php_preflight_install))
|
2017-03-18 11:16:07 +00:00
|
|
|
{
|
2017-11-06 14:04:23 +00:00
|
|
|
// base64 Decode php_preflight_install.
|
|
|
|
$item->php_preflight_install = base64_decode($item->php_preflight_install);
|
2017-03-03 21:53:18 +00:00
|
|
|
}
|
|
|
|
|
2017-11-06 14:04:23 +00:00
|
|
|
if (!empty($item->php_postflight_install))
|
2017-03-03 21:53:18 +00:00
|
|
|
{
|
2017-11-06 14:04:23 +00:00
|
|
|
// base64 Decode php_postflight_install.
|
|
|
|
$item->php_postflight_install = base64_decode($item->php_postflight_install);
|
2017-10-30 18:50:56 +00:00
|
|
|
}
|
|
|
|
|
2017-11-06 14:04:23 +00:00
|
|
|
if (!empty($item->php_method_uninstall))
|
2017-10-30 18:50:56 +00:00
|
|
|
{
|
2017-11-06 14:04:23 +00:00
|
|
|
// base64 Decode php_method_uninstall.
|
|
|
|
$item->php_method_uninstall = base64_decode($item->php_method_uninstall);
|
2017-10-30 18:50:56 +00:00
|
|
|
}
|
|
|
|
|
2017-11-06 14:04:23 +00:00
|
|
|
if (!empty($item->readme))
|
2017-10-30 18:50:56 +00:00
|
|
|
{
|
2017-11-06 14:04:23 +00:00
|
|
|
// base64 Decode readme.
|
|
|
|
$item->readme = base64_decode($item->readme);
|
2016-03-04 20:58:05 +00:00
|
|
|
}
|
|
|
|
|
2017-03-18 11:16:07 +00:00
|
|
|
if (!empty($item->php_helper_both))
|
|
|
|
{
|
|
|
|
// base64 Decode php_helper_both.
|
|
|
|
$item->php_helper_both = base64_decode($item->php_helper_both);
|
|
|
|
}
|
|
|
|
|
2016-12-30 10:47:19 +00:00
|
|
|
if (!empty($item->php_helper_admin))
|
2016-03-04 20:58:05 +00:00
|
|
|
{
|
2016-12-30 10:47:19 +00:00
|
|
|
// base64 Decode php_helper_admin.
|
|
|
|
$item->php_helper_admin = base64_decode($item->php_helper_admin);
|
2016-03-04 20:58:05 +00:00
|
|
|
}
|
|
|
|
|
2016-12-30 10:47:19 +00:00
|
|
|
if (!empty($item->php_admin_event))
|
2016-03-04 20:58:05 +00:00
|
|
|
{
|
2016-12-30 10:47:19 +00:00
|
|
|
// base64 Decode php_admin_event.
|
|
|
|
$item->php_admin_event = base64_decode($item->php_admin_event);
|
2016-03-04 20:58:05 +00:00
|
|
|
}
|
|
|
|
|
2016-12-30 10:47:19 +00:00
|
|
|
if (!empty($item->php_helper_site))
|
2016-06-03 06:28:32 +00:00
|
|
|
{
|
2016-12-30 10:47:19 +00:00
|
|
|
// base64 Decode php_helper_site.
|
|
|
|
$item->php_helper_site = base64_decode($item->php_helper_site);
|
2016-10-23 22:48:26 +00:00
|
|
|
}
|
|
|
|
|
2016-12-30 10:47:19 +00:00
|
|
|
if (!empty($item->php_site_event))
|
2016-10-23 22:48:26 +00:00
|
|
|
{
|
2016-12-30 10:47:19 +00:00
|
|
|
// base64 Decode php_site_event.
|
|
|
|
$item->php_site_event = base64_decode($item->php_site_event);
|
2016-10-23 22:48:26 +00:00
|
|
|
}
|
|
|
|
|
2017-10-06 14:53:22 +00:00
|
|
|
if (!empty($item->javascript))
|
|
|
|
{
|
|
|
|
// base64 Decode javascript.
|
|
|
|
$item->javascript = base64_decode($item->javascript);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($item->css))
|
|
|
|
{
|
|
|
|
// base64 Decode css.
|
|
|
|
$item->css = base64_decode($item->css);
|
|
|
|
}
|
|
|
|
|
2017-03-18 11:16:07 +00:00
|
|
|
if (!empty($item->buildcompsql))
|
|
|
|
{
|
|
|
|
// base64 Decode buildcompsql.
|
|
|
|
$item->buildcompsql = base64_decode($item->buildcompsql);
|
|
|
|
}
|
|
|
|
|
2017-09-13 00:37:43 +00:00
|
|
|
// Get the basic encryption.
|
2016-01-30 20:28:43 +00:00
|
|
|
$basickey = ComponentbuilderHelper::getCryptKey('basic');
|
2017-09-13 00:37:43 +00:00
|
|
|
// Get the encryption object.
|
2016-01-30 20:28:43 +00:00
|
|
|
$basic = new FOFEncryptAes($basickey, 128);
|
|
|
|
|
2016-12-30 10:47:19 +00:00
|
|
|
if (!empty($item->whmcs_key) && $basickey && !is_numeric($item->whmcs_key) && $item->whmcs_key === base64_encode(base64_decode($item->whmcs_key, true)))
|
|
|
|
{
|
2017-09-13 00:37:43 +00:00
|
|
|
// basic decrypt data whmcs_key.
|
2016-12-30 10:47:19 +00:00
|
|
|
$item->whmcs_key = rtrim($basic->decryptString($item->whmcs_key), "\0");
|
2017-03-18 11:16:07 +00:00
|
|
|
}
|
|
|
|
|
2017-03-28 14:57:59 +00:00
|
|
|
if (!empty($item->export_key) && $basickey && !is_numeric($item->export_key) && $item->export_key === base64_encode(base64_decode($item->export_key, true)))
|
|
|
|
{
|
2017-09-13 00:37:43 +00:00
|
|
|
// basic decrypt data export_key.
|
2017-03-28 14:57:59 +00:00
|
|
|
$item->export_key = rtrim($basic->decryptString($item->export_key), "\0");
|
2017-10-26 16:43:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (empty($item->id))
|
|
|
|
{
|
|
|
|
$id = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$id = $item->id;
|
|
|
|
}
|
|
|
|
// set the id and view name to session
|
|
|
|
if ($vdm = ComponentbuilderHelper::get('joomla_component__'.$id))
|
|
|
|
{
|
|
|
|
$this->vastDevMod = $vdm;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$this->vastDevMod = ComponentbuilderHelper::randomkey(50);
|
|
|
|
ComponentbuilderHelper::set($this->vastDevMod, 'joomla_component__'.$id);
|
|
|
|
ComponentbuilderHelper::set('joomla_component__'.$id, $this->vastDevMod);
|
|
|
|
}
|
|
|
|
|
|
|
|
// update the fields
|
|
|
|
$objectUpdate = new stdClass();
|
|
|
|
$objectUpdate->id = (int) $item->id;
|
|
|
|
// repeatable values to check
|
|
|
|
$arrayChecker = array(
|
|
|
|
'addcontributors' => 'name'
|
|
|
|
);
|
|
|
|
foreach ($arrayChecker as $_value => $checker)
|
|
|
|
{
|
|
|
|
// check what type of array we have here (should be subform... but just in case)
|
|
|
|
// This could happen due to huge data sets
|
|
|
|
if (isset($item->{$_value}) && isset($item->{$_value}[$checker]))
|
|
|
|
{
|
|
|
|
$bucket = array();
|
|
|
|
foreach($item->{$_value} as $option => $values)
|
|
|
|
{
|
|
|
|
foreach($values as $nr => $value)
|
|
|
|
{
|
|
|
|
$bucket[$_value.$nr][$option] = $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$item->{$_value} = $bucket;
|
2017-12-25 12:46:35 +00:00
|
|
|
$objectUpdate->{$_value} = json_encode($bucket, JSON_FORCE_OBJECT);
|
2017-10-26 16:43:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// be sure to update the table if we found repeatable fields that are still not converted
|
|
|
|
if (count((array) $objectUpdate) > 1)
|
|
|
|
{
|
|
|
|
$this->_db->updateObject('#__componentbuilder_joomla_component', $objectUpdate, 'id');
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($item->id))
|
|
|
|
{
|
|
|
|
$item->tags = new JHelperTags;
|
2017-02-16 14:02:23 +00:00
|
|
|
$item->tags->getTagIds($item->id, 'com_componentbuilder.joomla_component');
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
}
|
2017-10-26 16:43:51 +00:00
|
|
|
$this->componentsvvvv = $item->id;
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
return $item;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to get list data.
|
|
|
|
*
|
|
|
|
* @return mixed An array of data items on success, false on failure.
|
|
|
|
*/
|
2017-10-26 16:43:51 +00:00
|
|
|
public function getVwmtranslation()
|
2017-04-05 16:26:17 +00:00
|
|
|
{
|
|
|
|
// Get the user object.
|
|
|
|
$user = JFactory::getUser();
|
|
|
|
// Create a new query object.
|
|
|
|
$db = JFactory::getDBO();
|
|
|
|
$query = $db->getQuery(true);
|
|
|
|
|
|
|
|
// Select some fields
|
|
|
|
$query->select('a.*');
|
|
|
|
|
|
|
|
// From the componentbuilder_language_translation table
|
|
|
|
$query->from($db->quoteName('#__componentbuilder_language_translation', 'a'));
|
|
|
|
|
2017-10-19 03:53:55 +00:00
|
|
|
// Join over the asset groups.
|
|
|
|
$query->select('ag.title AS access_level');
|
|
|
|
$query->join('LEFT', '#__viewlevels AS ag ON ag.id = a.access');
|
|
|
|
// Filter by access level.
|
|
|
|
if ($access = $this->getState('filter.access'))
|
|
|
|
{
|
|
|
|
$query->where('a.access = ' . (int) $access);
|
|
|
|
}
|
|
|
|
// Implement View Level Access
|
|
|
|
if (!$user->authorise('core.options', 'com_componentbuilder'))
|
|
|
|
{
|
|
|
|
$groups = implode(',', $user->getAuthorisedViewLevels());
|
|
|
|
$query->where('a.access IN (' . $groups . ')');
|
|
|
|
}
|
|
|
|
|
2017-04-05 16:26:17 +00:00
|
|
|
// Order the results by ordering
|
|
|
|
$query->order('a.published ASC');
|
|
|
|
$query->order('a.ordering ASC');
|
|
|
|
|
|
|
|
// Load the items
|
|
|
|
$db->setQuery($query);
|
|
|
|
$db->execute();
|
|
|
|
if ($db->getNumRows())
|
|
|
|
{
|
|
|
|
$items = $db->loadObjectList();
|
|
|
|
|
|
|
|
// set values to display correctly.
|
|
|
|
if (ComponentbuilderHelper::checkArray($items))
|
|
|
|
{
|
|
|
|
// get user object.
|
|
|
|
$user = JFactory::getUser();
|
|
|
|
foreach ($items as $nr => &$item)
|
|
|
|
{
|
|
|
|
$access = ($user->authorise('language_translation.access', 'com_componentbuilder.language_translation.' . (int) $item->id) && $user->authorise('language_translation.access', 'com_componentbuilder'));
|
|
|
|
if (!$access)
|
|
|
|
{
|
|
|
|
unset($items[$nr]);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-26 16:43:51 +00:00
|
|
|
// Filter by componentsvvvv Array Field
|
|
|
|
$componentsvvvv = $this->componentsvvvv;
|
|
|
|
if (ComponentbuilderHelper::checkArray($items) && $componentsvvvv)
|
2017-04-05 16:26:17 +00:00
|
|
|
{
|
2017-09-13 00:37:43 +00:00
|
|
|
foreach ($items as $nr => &$item)
|
|
|
|
{
|
|
|
|
if (ComponentbuilderHelper::checkJson($item->components))
|
|
|
|
{
|
|
|
|
$item->components = json_decode($item->components, true);
|
|
|
|
}
|
|
|
|
elseif (!isset($item->components) || !ComponentbuilderHelper::checkArray($item->components))
|
|
|
|
{
|
|
|
|
unset($items[$nr]);
|
|
|
|
continue;
|
|
|
|
}
|
2017-10-26 16:43:51 +00:00
|
|
|
if (!in_array($componentsvvvv,$item->components))
|
2017-09-13 00:37:43 +00:00
|
|
|
{
|
|
|
|
unset($items[$nr]);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// show all languages that are already set for this string
|
|
|
|
if (!isset($_export) && ComponentbuilderHelper::checkArray($items))
|
|
|
|
{
|
|
|
|
foreach ($items as $nr => &$item)
|
|
|
|
{
|
|
|
|
$langBucket = array();
|
|
|
|
if (ComponentbuilderHelper::checkJson($item->translation))
|
|
|
|
{
|
|
|
|
$translations = json_decode($item->translation, true);
|
2017-09-18 00:18:23 +00:00
|
|
|
if (ComponentbuilderHelper::checkArray($translations))
|
2017-09-13 00:37:43 +00:00
|
|
|
{
|
2017-09-18 00:18:23 +00:00
|
|
|
foreach ($translations as $language)
|
2017-09-13 00:37:43 +00:00
|
|
|
{
|
2017-09-18 00:18:23 +00:00
|
|
|
if (isset($language['translation']) && ComponentbuilderHelper::checkString($language['translation'])
|
|
|
|
&& isset($language['language']) && ComponentbuilderHelper::checkString($language['language']))
|
|
|
|
{
|
|
|
|
$langBucket[$language['language']] = $language['language'];
|
|
|
|
}
|
2017-09-13 00:37:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// set how many component use this string
|
|
|
|
$componentCounter = '';
|
|
|
|
if (ComponentbuilderHelper::checkJson($item->components))
|
|
|
|
{
|
|
|
|
$item->components = json_decode($item->components, true);
|
|
|
|
}
|
|
|
|
if (ComponentbuilderHelper::checkArray($item->components))
|
|
|
|
{
|
|
|
|
$componentCounter = ' - <small>' . JText::_('COM_COMPONENTBUILDER_USED_IN') . ' ' . count($item->components) . '</small>';
|
|
|
|
}
|
|
|
|
// load the languages to the string
|
|
|
|
if (ComponentbuilderHelper::checkArray($langBucket))
|
|
|
|
{
|
|
|
|
$item->entranslation = '<small><em>(' . implode(', ', $langBucket) . ')</em></small> ' . ComponentbuilderHelper::htmlEscape($item->entranslation, 'UTF-8', true, 150) . $componentCounter;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$item->entranslation = '<small><em>(' . JText::_('COM_COMPONENTBUILDER_NOTRANSLATION') . ')</em></small> ' . ComponentbuilderHelper::htmlEscape($item->entranslation, 'UTF-8', true, 150) . $componentCounter;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $items;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to get the record form.
|
|
|
|
*
|
|
|
|
* @param array $data Data for the form.
|
|
|
|
* @param boolean $loadData True if the form is to load its own data (default case), false if not.
|
|
|
|
*
|
|
|
|
* @return mixed A JForm object on success, false on failure
|
|
|
|
*
|
|
|
|
* @since 1.6
|
|
|
|
*/
|
|
|
|
public function getForm($data = array(), $loadData = true)
|
|
|
|
{
|
|
|
|
// Get the form.
|
|
|
|
$form = $this->loadForm('com_componentbuilder.joomla_component', 'joomla_component', array('control' => 'jform', 'load_data' => $loadData));
|
|
|
|
|
|
|
|
if (empty($form))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$jinput = JFactory::getApplication()->input;
|
|
|
|
|
|
|
|
// The front end calls this model and uses a_id to avoid id clashes so we need to check for that first.
|
|
|
|
if ($jinput->get('a_id'))
|
|
|
|
{
|
|
|
|
$id = $jinput->get('a_id', 0, 'INT');
|
|
|
|
}
|
|
|
|
// The back end uses id so we use that the rest of the time and set it to 0 by default.
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$id = $jinput->get('id', 0, 'INT');
|
|
|
|
}
|
|
|
|
|
|
|
|
$user = JFactory::getUser();
|
|
|
|
|
|
|
|
// Check for existing item.
|
|
|
|
// Modify the form based on Edit State access controls.
|
2017-10-14 18:07:23 +00:00
|
|
|
if ($id != 0 && (!$user->authorise('joomla_component.edit.state', 'com_componentbuilder.joomla_component.' . (int) $id))
|
|
|
|
|| ($id == 0 && !$user->authorise('joomla_component.edit.state', 'com_componentbuilder')))
|
2017-09-13 00:37:43 +00:00
|
|
|
{
|
|
|
|
// Disable fields for display.
|
|
|
|
$form->setFieldAttribute('ordering', 'disabled', 'true');
|
|
|
|
$form->setFieldAttribute('published', 'disabled', 'true');
|
|
|
|
// Disable fields while saving.
|
|
|
|
$form->setFieldAttribute('ordering', 'filter', 'unset');
|
|
|
|
$form->setFieldAttribute('published', 'filter', 'unset');
|
|
|
|
}
|
|
|
|
// If this is a new item insure the greated by is set.
|
|
|
|
if (0 == $id)
|
|
|
|
{
|
|
|
|
// Set the created_by to this user
|
|
|
|
$form->setValue('created_by', null, $user->id);
|
|
|
|
}
|
|
|
|
// Modify the form based on Edit Creaded By access controls.
|
2017-10-14 18:07:23 +00:00
|
|
|
if ($id != 0 && (!$user->authorise('joomla_component.edit.created_by', 'com_componentbuilder.joomla_component.' . (int) $id))
|
|
|
|
|| ($id == 0 && !$user->authorise('joomla_component.edit.created_by', 'com_componentbuilder')))
|
2017-09-13 00:37:43 +00:00
|
|
|
{
|
|
|
|
// Disable fields for display.
|
|
|
|
$form->setFieldAttribute('created_by', 'disabled', 'true');
|
|
|
|
// Disable fields for display.
|
|
|
|
$form->setFieldAttribute('created_by', 'readonly', 'true');
|
|
|
|
// Disable fields while saving.
|
|
|
|
$form->setFieldAttribute('created_by', 'filter', 'unset');
|
|
|
|
}
|
|
|
|
// Modify the form based on Edit Creaded Date access controls.
|
2017-10-14 18:07:23 +00:00
|
|
|
if ($id != 0 && (!$user->authorise('joomla_component.edit.created', 'com_componentbuilder.joomla_component.' . (int) $id))
|
|
|
|
|| ($id == 0 && !$user->authorise('joomla_component.edit.created', 'com_componentbuilder')))
|
2017-09-13 00:37:43 +00:00
|
|
|
{
|
|
|
|
// Disable fields for display.
|
|
|
|
$form->setFieldAttribute('created', 'disabled', 'true');
|
|
|
|
// Disable fields while saving.
|
|
|
|
$form->setFieldAttribute('created', 'filter', 'unset');
|
|
|
|
}
|
2016-02-20 18:13:00 +00:00
|
|
|
// Only load these values if no id is found
|
|
|
|
if (0 == $id)
|
|
|
|
{
|
|
|
|
// Set redirected field name
|
|
|
|
$redirectedField = $jinput->get('ref', null, 'STRING');
|
|
|
|
// Set redirected field value
|
|
|
|
$redirectedValue = $jinput->get('refid', 0, 'INT');
|
|
|
|
if (0 != $redirectedValue && $redirectedField)
|
|
|
|
{
|
|
|
|
// Now set the local-redirected field default value
|
|
|
|
$form->setValue($redirectedField, null, $redirectedValue);
|
|
|
|
}
|
|
|
|
}
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
return $form;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to get the script that have to be included on the form
|
|
|
|
*
|
|
|
|
* @return string script files
|
|
|
|
*/
|
|
|
|
public function getScript()
|
|
|
|
{
|
2017-02-16 14:02:23 +00:00
|
|
|
return 'administrator/components/com_componentbuilder/models/forms/joomla_component.js';
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to test whether a record can be deleted.
|
|
|
|
*
|
|
|
|
* @param object $record A record object.
|
|
|
|
*
|
|
|
|
* @return boolean True if allowed to delete the record. Defaults to the permission set in the component.
|
|
|
|
*
|
|
|
|
* @since 1.6
|
|
|
|
*/
|
|
|
|
protected function canDelete($record)
|
|
|
|
{
|
|
|
|
if (!empty($record->id))
|
|
|
|
{
|
|
|
|
if ($record->published != -2)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$user = JFactory::getUser();
|
|
|
|
// The record has been set. Check the record permissions.
|
2017-10-14 18:07:23 +00:00
|
|
|
return $user->authorise('joomla_component.delete', 'com_componentbuilder.joomla_component.' . (int) $record->id);
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to test whether a record can have its state edited.
|
|
|
|
*
|
|
|
|
* @param object $record A record object.
|
|
|
|
*
|
|
|
|
* @return boolean True if allowed to change the state of the record. Defaults to the permission set in the component.
|
|
|
|
*
|
|
|
|
* @since 1.6
|
|
|
|
*/
|
|
|
|
protected function canEditState($record)
|
|
|
|
{
|
|
|
|
$user = JFactory::getUser();
|
|
|
|
$recordId = (!empty($record->id)) ? $record->id : 0;
|
|
|
|
|
|
|
|
if ($recordId)
|
|
|
|
{
|
|
|
|
// The record has been set. Check the record permissions.
|
2017-10-14 18:07:23 +00:00
|
|
|
$permission = $user->authorise('joomla_component.edit.state', 'com_componentbuilder.joomla_component.' . (int) $recordId);
|
2016-01-30 20:28:43 +00:00
|
|
|
if (!$permission && !is_null($permission))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// In the absense of better information, revert to the component permissions.
|
2017-10-14 18:07:23 +00:00
|
|
|
return $user->authorise('joomla_component.edit.state', 'com_componentbuilder');
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method override to check if you can edit an existing record.
|
|
|
|
*
|
|
|
|
* @param array $data An array of input data.
|
|
|
|
* @param string $key The name of the key for the primary key.
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
* @since 2.5
|
|
|
|
*/
|
|
|
|
protected function allowEdit($data = array(), $key = 'id')
|
|
|
|
{
|
|
|
|
// Check specific edit permission then general edit permission.
|
2017-10-14 18:07:23 +00:00
|
|
|
$user = JFactory::getUser();
|
2016-01-30 20:28:43 +00:00
|
|
|
|
2017-10-14 18:07:23 +00:00
|
|
|
return $user->authorise('joomla_component.edit', 'com_componentbuilder.joomla_component.'. ((int) isset($data[$key]) ? $data[$key] : 0)) or $user->authorise('joomla_component.edit', 'com_componentbuilder');
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prepare and sanitise the table data prior to saving.
|
|
|
|
*
|
|
|
|
* @param JTable $table A JTable object.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*
|
|
|
|
* @since 1.6
|
|
|
|
*/
|
|
|
|
protected function prepareTable($table)
|
|
|
|
{
|
|
|
|
$date = JFactory::getDate();
|
|
|
|
$user = JFactory::getUser();
|
|
|
|
|
|
|
|
if (isset($table->name))
|
|
|
|
{
|
|
|
|
$table->name = htmlspecialchars_decode($table->name, ENT_QUOTES);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($table->alias) && empty($table->alias))
|
|
|
|
{
|
|
|
|
$table->generateAlias();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($table->id))
|
|
|
|
{
|
|
|
|
$table->created = $date->toSql();
|
|
|
|
// set the user
|
2016-02-20 18:13:00 +00:00
|
|
|
if ($table->created_by == 0 || empty($table->created_by))
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
$table->created_by = $user->id;
|
|
|
|
}
|
|
|
|
// Set ordering to the last item if not set
|
|
|
|
if (empty($table->ordering))
|
|
|
|
{
|
|
|
|
$db = JFactory::getDbo();
|
|
|
|
$query = $db->getQuery(true)
|
|
|
|
->select('MAX(ordering)')
|
2017-02-16 14:02:23 +00:00
|
|
|
->from($db->quoteName('#__componentbuilder_joomla_component'));
|
2016-01-30 20:28:43 +00:00
|
|
|
$db->setQuery($query);
|
|
|
|
$max = $db->loadResult();
|
|
|
|
|
|
|
|
$table->ordering = $max + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$table->modified = $date->toSql();
|
|
|
|
$table->modified_by = $user->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($table->id))
|
|
|
|
{
|
|
|
|
// Increment the items version number.
|
|
|
|
$table->version++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to get the data that should be injected in the form.
|
|
|
|
*
|
|
|
|
* @return mixed The data for the form.
|
|
|
|
*
|
|
|
|
* @since 1.6
|
|
|
|
*/
|
|
|
|
protected function loadFormData()
|
|
|
|
{
|
|
|
|
// Check the session for previously entered form data.
|
2017-02-16 14:02:23 +00:00
|
|
|
$data = JFactory::getApplication()->getUserState('com_componentbuilder.edit.joomla_component.data', array());
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
if (empty($data))
|
|
|
|
{
|
|
|
|
$data = $this->getItem();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to validate the form data.
|
|
|
|
*
|
|
|
|
* @param JForm $form The form to validate against.
|
|
|
|
* @param array $data The data to validate.
|
|
|
|
* @param string $group The name of the field group to validate.
|
|
|
|
*
|
|
|
|
* @return mixed Array of filtered data if valid, false otherwise.
|
|
|
|
*
|
|
|
|
* @see JFormRule
|
|
|
|
* @see JFilterInput
|
|
|
|
* @since 12.2
|
|
|
|
*/
|
|
|
|
public function validate($form, $data, $group = null)
|
|
|
|
{
|
|
|
|
// check if the not_required field is set
|
|
|
|
if (ComponentbuilderHelper::checkString($data['not_required']))
|
|
|
|
{
|
|
|
|
$requiredFields = (array) explode(',',(string) $data['not_required']);
|
|
|
|
$requiredFields = array_unique($requiredFields);
|
|
|
|
// now change the required field attributes value
|
|
|
|
foreach ($requiredFields as $requiredField)
|
|
|
|
{
|
|
|
|
// make sure there is a string value
|
|
|
|
if (ComponentbuilderHelper::checkString($requiredField))
|
|
|
|
{
|
|
|
|
// change to false
|
|
|
|
$form->setFieldAttribute($requiredField, 'required', 'false');
|
|
|
|
// also clear the data set
|
|
|
|
$data[$requiredField] = '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return parent::validate($form, $data, $group);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to get the unique fields of this table.
|
|
|
|
*
|
|
|
|
* @return mixed An array of field names, boolean false if none is set.
|
|
|
|
*
|
|
|
|
* @since 3.0
|
|
|
|
*/
|
2016-02-26 12:46:15 +00:00
|
|
|
protected function getUniqeFields()
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to delete one or more records.
|
|
|
|
*
|
|
|
|
* @param array &$pks An array of record primary keys.
|
|
|
|
*
|
|
|
|
* @return boolean True if successful, false if an error occurs.
|
|
|
|
*
|
|
|
|
* @since 12.2
|
|
|
|
*/
|
|
|
|
public function delete(&$pks)
|
|
|
|
{
|
|
|
|
if (!parent::delete($pks))
|
|
|
|
{
|
|
|
|
return false;
|
2017-10-26 16:43:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// we must also delete the linked tables found
|
|
|
|
if (ComponentbuilderHelper::checkArray($pks))
|
|
|
|
{
|
|
|
|
$_tablesArray = array(
|
|
|
|
'component_admin_views',
|
|
|
|
'component_site_views',
|
|
|
|
'component_custom_admin_views',
|
|
|
|
'component_updates',
|
|
|
|
'component_mysql_tweaks',
|
|
|
|
'component_custom_admin_menus',
|
|
|
|
'component_config',
|
|
|
|
'component_dashboard',
|
|
|
|
'component_files_folders'
|
|
|
|
);
|
|
|
|
foreach($_tablesArray as $_updateTable)
|
|
|
|
{
|
|
|
|
// get the linked IDs
|
|
|
|
if ($_pks = ComponentbuilderHelper::getVars($_updateTable, $pks, 'joomla_component', 'id'))
|
|
|
|
{
|
|
|
|
// load the model
|
|
|
|
$_Model = ComponentbuilderHelper::getModel($_updateTable);
|
|
|
|
// change publish state
|
|
|
|
$_Model->delete($_pks);
|
|
|
|
}
|
|
|
|
}
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2016-09-07 21:20:58 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to change the published state of one or more records.
|
|
|
|
*
|
|
|
|
* @param array &$pks A list of the primary keys to change.
|
|
|
|
* @param integer $value The value of the published state.
|
|
|
|
*
|
|
|
|
* @return boolean True on success.
|
|
|
|
*
|
|
|
|
* @since 12.2
|
|
|
|
*/
|
|
|
|
public function publish(&$pks, $value = 1)
|
|
|
|
{
|
|
|
|
if (!parent::publish($pks, $value))
|
|
|
|
{
|
|
|
|
return false;
|
2017-10-26 16:43:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// we must also update all linked tables
|
|
|
|
if (ComponentbuilderHelper::checkArray($pks))
|
|
|
|
{
|
|
|
|
$_tablesArray = array(
|
|
|
|
'component_admin_views',
|
|
|
|
'component_site_views',
|
|
|
|
'component_custom_admin_views',
|
|
|
|
'component_updates',
|
|
|
|
'component_mysql_tweaks',
|
|
|
|
'component_custom_admin_menus',
|
|
|
|
'component_config',
|
|
|
|
'component_dashboard',
|
|
|
|
'component_files_folders'
|
|
|
|
);
|
|
|
|
foreach($_tablesArray as $_updateTable)
|
|
|
|
{
|
|
|
|
// get the linked IDs
|
|
|
|
if ($_pks = ComponentbuilderHelper::getVars($_updateTable, $pks, 'joomla_component', 'id'))
|
|
|
|
{
|
|
|
|
// load the model
|
|
|
|
$_Model = ComponentbuilderHelper::getModel($_updateTable);
|
|
|
|
// change publish state
|
|
|
|
$_Model->publish($_pks, $value);
|
|
|
|
}
|
|
|
|
}
|
2016-09-07 21:20:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to perform batch operations on an item or a set of items.
|
|
|
|
*
|
|
|
|
* @param array $commands An array of commands to perform.
|
|
|
|
* @param array $pks An array of item ids.
|
|
|
|
* @param array $contexts An array of item contexts.
|
|
|
|
*
|
|
|
|
* @return boolean Returns true on success, false on failure.
|
|
|
|
*
|
|
|
|
* @since 12.2
|
|
|
|
*/
|
|
|
|
public function batch($commands, $pks, $contexts)
|
|
|
|
{
|
|
|
|
// Sanitize ids.
|
|
|
|
$pks = array_unique($pks);
|
|
|
|
JArrayHelper::toInteger($pks);
|
|
|
|
|
|
|
|
// Remove any values of zero.
|
|
|
|
if (array_search(0, $pks, true))
|
|
|
|
{
|
|
|
|
unset($pks[array_search(0, $pks, true)]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($pks))
|
|
|
|
{
|
|
|
|
$this->setError(JText::_('JGLOBAL_NO_ITEM_SELECTED'));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$done = false;
|
|
|
|
|
|
|
|
// Set some needed variables.
|
|
|
|
$this->user = JFactory::getUser();
|
|
|
|
$this->table = $this->getTable();
|
|
|
|
$this->tableClassName = get_class($this->table);
|
|
|
|
$this->contentType = new JUcmType;
|
|
|
|
$this->type = $this->contentType->getTypeByTable($this->tableClassName);
|
2017-02-16 14:02:23 +00:00
|
|
|
$this->canDo = ComponentbuilderHelper::getActions('joomla_component');
|
2016-01-30 20:28:43 +00:00
|
|
|
$this->batchSet = true;
|
|
|
|
|
|
|
|
if (!$this->canDo->get('core.batch'))
|
|
|
|
{
|
|
|
|
$this->setError(JText::_('JLIB_APPLICATION_ERROR_INSUFFICIENT_BATCH_INFORMATION'));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->type == false)
|
|
|
|
{
|
|
|
|
$type = new JUcmType;
|
|
|
|
$this->type = $type->getTypeByAlias($this->typeAlias);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->tagsObserver = $this->table->getObserverOfClass('JTableObserverTags');
|
|
|
|
|
|
|
|
if (!empty($commands['move_copy']))
|
|
|
|
{
|
|
|
|
$cmd = JArrayHelper::getValue($commands, 'move_copy', 'c');
|
|
|
|
|
|
|
|
if ($cmd == 'c')
|
|
|
|
{
|
|
|
|
$result = $this->batchCopy($commands, $pks, $contexts);
|
|
|
|
|
|
|
|
if (is_array($result))
|
|
|
|
{
|
|
|
|
foreach ($result as $old => $new)
|
|
|
|
{
|
|
|
|
$contexts[$new] = $contexts[$old];
|
|
|
|
}
|
|
|
|
$pks = array_values($result);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elseif ($cmd == 'm' && !$this->batchMove($commands, $pks, $contexts))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$done = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$done)
|
|
|
|
{
|
|
|
|
$this->setError(JText::_('JLIB_APPLICATION_ERROR_INSUFFICIENT_BATCH_INFORMATION'));
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clear the cache
|
|
|
|
$this->cleanCache();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Batch copy items to a new category or current.
|
|
|
|
*
|
|
|
|
* @param integer $values The new values.
|
|
|
|
* @param array $pks An array of row IDs.
|
|
|
|
* @param array $contexts An array of item contexts.
|
|
|
|
*
|
|
|
|
* @return mixed An array of new IDs on success, boolean false on failure.
|
|
|
|
*
|
|
|
|
* @since 12.2
|
|
|
|
*/
|
2016-02-26 12:46:15 +00:00
|
|
|
protected function batchCopy($values, $pks, $contexts)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
if (empty($this->batchSet))
|
|
|
|
{
|
|
|
|
// Set some needed variables.
|
|
|
|
$this->user = JFactory::getUser();
|
|
|
|
$this->table = $this->getTable();
|
|
|
|
$this->tableClassName = get_class($this->table);
|
|
|
|
$this->contentType = new JUcmType;
|
|
|
|
$this->type = $this->contentType->getTypeByTable($this->tableClassName);
|
2017-02-16 14:02:23 +00:00
|
|
|
$this->canDo = ComponentbuilderHelper::getActions('joomla_component');
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
|
2017-10-14 18:07:23 +00:00
|
|
|
if (!$this->canDo->get('joomla_component.create') && !$this->canDo->get('joomla_component.batch'))
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// get list of uniqe fields
|
|
|
|
$uniqeFields = $this->getUniqeFields();
|
|
|
|
// remove move_copy from array
|
|
|
|
unset($values['move_copy']);
|
|
|
|
|
|
|
|
// make sure published is set
|
|
|
|
if (!isset($values['published']))
|
|
|
|
{
|
|
|
|
$values['published'] = 0;
|
|
|
|
}
|
2017-10-14 18:07:23 +00:00
|
|
|
elseif (isset($values['published']) && !$this->canDo->get('joomla_component.edit.state'))
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
$values['published'] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
$newIds = array();
|
|
|
|
|
|
|
|
// Parent exists so let's proceed
|
|
|
|
while (!empty($pks))
|
|
|
|
{
|
|
|
|
// Pop the first ID off the stack
|
|
|
|
$pk = array_shift($pks);
|
|
|
|
|
|
|
|
$this->table->reset();
|
|
|
|
|
|
|
|
// only allow copy if user may edit this item.
|
|
|
|
|
2017-10-14 18:07:23 +00:00
|
|
|
if (!$this->user->authorise('joomla_component.edit', $contexts[$pk]))
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
// Not fatal error
|
|
|
|
|
|
|
|
$this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_BATCH_MOVE_ROW_NOT_FOUND', $pk));
|
|
|
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that the row actually exists
|
|
|
|
if (!$this->table->load($pk))
|
|
|
|
{
|
|
|
|
if ($error = $this->table->getError())
|
|
|
|
{
|
|
|
|
// Fatal error
|
|
|
|
$this->setError($error);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Not fatal error
|
|
|
|
$this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_BATCH_MOVE_ROW_NOT_FOUND', $pk));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-26 16:43:51 +00:00
|
|
|
$this->table->system_name = $this->generateUniqe('system_name',$this->table->system_name);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
// insert all set values
|
|
|
|
if (ComponentbuilderHelper::checkArray($values))
|
|
|
|
{
|
|
|
|
foreach ($values as $key => $value)
|
|
|
|
{
|
|
|
|
if (strlen($value) > 0 && isset($this->table->$key))
|
|
|
|
{
|
|
|
|
$this->table->$key = $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// update all uniqe fields
|
|
|
|
if (ComponentbuilderHelper::checkArray($uniqeFields))
|
|
|
|
{
|
|
|
|
foreach ($uniqeFields as $uniqeField)
|
|
|
|
{
|
|
|
|
$this->table->$uniqeField = $this->generateUniqe($uniqeField,$this->table->$uniqeField);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reset the ID because we are making a copy
|
|
|
|
$this->table->id = 0;
|
|
|
|
|
|
|
|
// TODO: Deal with ordering?
|
|
|
|
// $this->table->ordering = 1;
|
|
|
|
|
|
|
|
// Check the row.
|
|
|
|
if (!$this->table->check())
|
|
|
|
{
|
|
|
|
$this->setError($this->table->getError());
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($this->type))
|
|
|
|
{
|
|
|
|
$this->createTagsHelper($this->tagsObserver, $this->type, $pk, $this->typeAlias, $this->table);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Store the row.
|
|
|
|
if (!$this->table->store())
|
|
|
|
{
|
|
|
|
$this->setError($this->table->getError());
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the new item ID
|
|
|
|
$newId = $this->table->get('id');
|
|
|
|
|
|
|
|
// Add the new ID to the array
|
|
|
|
$newIds[$pk] = $newId;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clean the cache
|
|
|
|
$this->cleanCache();
|
|
|
|
|
|
|
|
return $newIds;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Batch move items to a new category
|
|
|
|
*
|
|
|
|
* @param integer $value The new category ID.
|
|
|
|
* @param array $pks An array of row IDs.
|
|
|
|
* @param array $contexts An array of item contexts.
|
|
|
|
*
|
|
|
|
* @return boolean True if successful, false otherwise and internal error is set.
|
|
|
|
*
|
|
|
|
* @since 12.2
|
|
|
|
*/
|
2016-02-26 12:46:15 +00:00
|
|
|
protected function batchMove($values, $pks, $contexts)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
if (empty($this->batchSet))
|
|
|
|
{
|
|
|
|
// Set some needed variables.
|
|
|
|
$this->user = JFactory::getUser();
|
|
|
|
$this->table = $this->getTable();
|
|
|
|
$this->tableClassName = get_class($this->table);
|
|
|
|
$this->contentType = new JUcmType;
|
|
|
|
$this->type = $this->contentType->getTypeByTable($this->tableClassName);
|
2017-02-16 14:02:23 +00:00
|
|
|
$this->canDo = ComponentbuilderHelper::getActions('joomla_component');
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
|
2017-10-14 18:07:23 +00:00
|
|
|
if (!$this->canDo->get('joomla_component.edit') && !$this->canDo->get('joomla_component.batch'))
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
$this->setError(JText::_('JLIB_APPLICATION_ERROR_BATCH_CANNOT_EDIT'));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// make sure published only updates if user has the permission.
|
2017-10-14 18:07:23 +00:00
|
|
|
if (isset($values['published']) && !$this->canDo->get('joomla_component.edit.state'))
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
unset($values['published']);
|
|
|
|
}
|
|
|
|
// remove move_copy from array
|
|
|
|
unset($values['move_copy']);
|
|
|
|
|
|
|
|
// Parent exists so we proceed
|
|
|
|
foreach ($pks as $pk)
|
|
|
|
{
|
2017-10-14 18:07:23 +00:00
|
|
|
if (!$this->user->authorise('joomla_component.edit', $contexts[$pk]))
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
$this->setError(JText::_('JLIB_APPLICATION_ERROR_BATCH_CANNOT_EDIT'));
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that the row actually exists
|
|
|
|
if (!$this->table->load($pk))
|
|
|
|
{
|
|
|
|
if ($error = $this->table->getError())
|
|
|
|
{
|
|
|
|
// Fatal error
|
|
|
|
$this->setError($error);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Not fatal error
|
|
|
|
$this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_BATCH_MOVE_ROW_NOT_FOUND', $pk));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// insert all set values.
|
|
|
|
if (ComponentbuilderHelper::checkArray($values))
|
|
|
|
{
|
|
|
|
foreach ($values as $key => $value)
|
|
|
|
{
|
|
|
|
// Do special action for access.
|
2017-02-02 11:54:07 +00:00
|
|
|
if ('access' === $key && strlen($value) > 0)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
$this->table->$key = $value;
|
|
|
|
}
|
|
|
|
elseif (strlen($value) > 0 && isset($this->table->$key))
|
|
|
|
{
|
|
|
|
$this->table->$key = $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Check the row.
|
|
|
|
if (!$this->table->check())
|
|
|
|
{
|
|
|
|
$this->setError($this->table->getError());
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($this->type))
|
|
|
|
{
|
|
|
|
$this->createTagsHelper($this->tagsObserver, $this->type, $pk, $this->typeAlias, $this->table);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Store the row.
|
|
|
|
if (!$this->table->store())
|
|
|
|
{
|
|
|
|
$this->setError($this->table->getError());
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clean the cache
|
|
|
|
$this->cleanCache();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to save the form data.
|
|
|
|
*
|
|
|
|
* @param array $data The form data.
|
|
|
|
*
|
|
|
|
* @return boolean True on success.
|
|
|
|
*
|
|
|
|
* @since 1.6
|
|
|
|
*/
|
|
|
|
public function save($data)
|
|
|
|
{
|
|
|
|
$input = JFactory::getApplication()->input;
|
|
|
|
$filter = JFilterInput::getInstance();
|
|
|
|
|
|
|
|
// set the metadata to the Item Data
|
|
|
|
if (isset($data['metadata']) && isset($data['metadata']['author']))
|
|
|
|
{
|
|
|
|
$data['metadata']['author'] = $filter->clean($data['metadata']['author'], 'TRIM');
|
|
|
|
|
|
|
|
$metadata = new JRegistry;
|
|
|
|
$metadata->loadArray($data['metadata']);
|
|
|
|
$data['metadata'] = (string) $metadata;
|
|
|
|
}
|
|
|
|
|
2017-10-26 16:43:51 +00:00
|
|
|
// Set the addcontributors items to data.
|
|
|
|
if (isset($data['addcontributors']) && is_array($data['addcontributors']))
|
2017-02-02 11:54:07 +00:00
|
|
|
{
|
2017-10-26 16:43:51 +00:00
|
|
|
$addcontributors = new JRegistry;
|
|
|
|
$addcontributors->loadArray($data['addcontributors']);
|
|
|
|
$data['addcontributors'] = (string) $addcontributors;
|
|
|
|
}
|
|
|
|
elseif (!isset($data['addcontributors']))
|
|
|
|
{
|
|
|
|
// Set the empty addcontributors to data
|
|
|
|
$data['addcontributors'] = '';
|
2017-02-02 11:54:07 +00:00
|
|
|
}
|
|
|
|
|
2017-11-06 14:04:23 +00:00
|
|
|
// Set the php_postflight_update string to base64 string.
|
|
|
|
if (isset($data['php_postflight_update']))
|
2017-10-26 16:43:51 +00:00
|
|
|
{
|
2017-11-06 14:04:23 +00:00
|
|
|
$data['php_postflight_update'] = base64_encode($data['php_postflight_update']);
|
2017-10-26 16:43:51 +00:00
|
|
|
}
|
|
|
|
|
2017-11-06 14:04:23 +00:00
|
|
|
// Set the php_preflight_update string to base64 string.
|
|
|
|
if (isset($data['php_preflight_update']))
|
2016-06-03 06:28:32 +00:00
|
|
|
{
|
2017-11-06 14:04:23 +00:00
|
|
|
$data['php_preflight_update'] = base64_encode($data['php_preflight_update']);
|
2016-06-03 06:28:32 +00:00
|
|
|
}
|
|
|
|
|
2017-11-06 14:04:23 +00:00
|
|
|
// Set the sql string to base64 string.
|
|
|
|
if (isset($data['sql']))
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2017-11-06 14:04:23 +00:00
|
|
|
$data['sql'] = base64_encode($data['sql']);
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
|
2017-11-06 14:04:23 +00:00
|
|
|
// Set the php_preflight_install string to base64 string.
|
|
|
|
if (isset($data['php_preflight_install']))
|
2017-03-18 11:16:07 +00:00
|
|
|
{
|
2017-11-06 14:04:23 +00:00
|
|
|
$data['php_preflight_install'] = base64_encode($data['php_preflight_install']);
|
2017-03-03 21:53:18 +00:00
|
|
|
}
|
|
|
|
|
2017-11-06 14:04:23 +00:00
|
|
|
// Set the php_postflight_install string to base64 string.
|
|
|
|
if (isset($data['php_postflight_install']))
|
2017-03-03 21:53:18 +00:00
|
|
|
{
|
2017-11-06 14:04:23 +00:00
|
|
|
$data['php_postflight_install'] = base64_encode($data['php_postflight_install']);
|
2017-10-30 18:50:56 +00:00
|
|
|
}
|
|
|
|
|
2017-11-06 14:04:23 +00:00
|
|
|
// Set the php_method_uninstall string to base64 string.
|
|
|
|
if (isset($data['php_method_uninstall']))
|
2017-10-30 18:50:56 +00:00
|
|
|
{
|
2017-11-06 14:04:23 +00:00
|
|
|
$data['php_method_uninstall'] = base64_encode($data['php_method_uninstall']);
|
2017-10-30 18:50:56 +00:00
|
|
|
}
|
|
|
|
|
2017-11-06 14:04:23 +00:00
|
|
|
// Set the readme string to base64 string.
|
|
|
|
if (isset($data['readme']))
|
2017-10-30 18:50:56 +00:00
|
|
|
{
|
2017-11-06 14:04:23 +00:00
|
|
|
$data['readme'] = base64_encode($data['readme']);
|
2016-03-04 20:58:05 +00:00
|
|
|
}
|
|
|
|
|
2017-03-18 11:16:07 +00:00
|
|
|
// Set the php_helper_both string to base64 string.
|
|
|
|
if (isset($data['php_helper_both']))
|
|
|
|
{
|
|
|
|
$data['php_helper_both'] = base64_encode($data['php_helper_both']);
|
|
|
|
}
|
|
|
|
|
2016-12-30 10:47:19 +00:00
|
|
|
// Set the php_helper_admin string to base64 string.
|
|
|
|
if (isset($data['php_helper_admin']))
|
2016-03-04 20:58:05 +00:00
|
|
|
{
|
2016-12-30 10:47:19 +00:00
|
|
|
$data['php_helper_admin'] = base64_encode($data['php_helper_admin']);
|
2016-03-04 20:58:05 +00:00
|
|
|
}
|
|
|
|
|
2016-12-30 10:47:19 +00:00
|
|
|
// Set the php_admin_event string to base64 string.
|
|
|
|
if (isset($data['php_admin_event']))
|
2016-03-04 20:58:05 +00:00
|
|
|
{
|
2016-12-30 10:47:19 +00:00
|
|
|
$data['php_admin_event'] = base64_encode($data['php_admin_event']);
|
2016-03-04 20:58:05 +00:00
|
|
|
}
|
|
|
|
|
2016-12-30 10:47:19 +00:00
|
|
|
// Set the php_helper_site string to base64 string.
|
|
|
|
if (isset($data['php_helper_site']))
|
2016-06-03 06:28:32 +00:00
|
|
|
{
|
2016-12-30 10:47:19 +00:00
|
|
|
$data['php_helper_site'] = base64_encode($data['php_helper_site']);
|
2016-10-23 22:48:26 +00:00
|
|
|
}
|
|
|
|
|
2016-12-30 10:47:19 +00:00
|
|
|
// Set the php_site_event string to base64 string.
|
|
|
|
if (isset($data['php_site_event']))
|
2016-10-23 22:48:26 +00:00
|
|
|
{
|
2016-12-30 10:47:19 +00:00
|
|
|
$data['php_site_event'] = base64_encode($data['php_site_event']);
|
2016-10-23 22:48:26 +00:00
|
|
|
}
|
|
|
|
|
2017-10-06 14:53:22 +00:00
|
|
|
// Set the javascript string to base64 string.
|
|
|
|
if (isset($data['javascript']))
|
|
|
|
{
|
|
|
|
$data['javascript'] = base64_encode($data['javascript']);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the css string to base64 string.
|
|
|
|
if (isset($data['css']))
|
|
|
|
{
|
|
|
|
$data['css'] = base64_encode($data['css']);
|
|
|
|
}
|
|
|
|
|
2017-03-18 11:16:07 +00:00
|
|
|
// Set the buildcompsql string to base64 string.
|
|
|
|
if (isset($data['buildcompsql']))
|
|
|
|
{
|
|
|
|
$data['buildcompsql'] = base64_encode($data['buildcompsql']);
|
|
|
|
}
|
|
|
|
|
2017-09-13 00:37:43 +00:00
|
|
|
// Get the basic encryption key.
|
2016-01-30 20:28:43 +00:00
|
|
|
$basickey = ComponentbuilderHelper::getCryptKey('basic');
|
2017-09-13 00:37:43 +00:00
|
|
|
// Get the encryption object
|
2016-01-30 20:28:43 +00:00
|
|
|
$basic = new FOFEncryptAes($basickey, 128);
|
|
|
|
|
2017-09-13 00:37:43 +00:00
|
|
|
// Encrypt data whmcs_key.
|
2016-01-30 20:28:43 +00:00
|
|
|
if (isset($data['whmcs_key']) && $basickey)
|
|
|
|
{
|
|
|
|
$data['whmcs_key'] = $basic->encryptString($data['whmcs_key']);
|
2016-03-04 20:58:05 +00:00
|
|
|
}
|
|
|
|
|
2017-09-13 00:37:43 +00:00
|
|
|
// Encrypt data export_key.
|
2017-03-28 14:57:59 +00:00
|
|
|
if (isset($data['export_key']) && $basickey)
|
|
|
|
{
|
|
|
|
$data['export_key'] = $basic->encryptString($data['export_key']);
|
|
|
|
}
|
|
|
|
|
2016-12-30 10:47:19 +00:00
|
|
|
// we check if component should be build from sql file
|
|
|
|
ComponentbuilderHelper::dynamicBuilder($data, 1);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
// Set the Params Items to data
|
|
|
|
if (isset($data['params']) && is_array($data['params']))
|
|
|
|
{
|
|
|
|
$params = new JRegistry;
|
|
|
|
$params->loadArray($data['params']);
|
|
|
|
$data['params'] = (string) $params;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Alter the uniqe field for save as copy
|
2017-02-01 13:17:04 +00:00
|
|
|
if ($input->get('task') === 'save2copy')
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
// Automatic handling of other uniqe fields
|
|
|
|
$uniqeFields = $this->getUniqeFields();
|
|
|
|
if (ComponentbuilderHelper::checkArray($uniqeFields))
|
|
|
|
{
|
|
|
|
foreach ($uniqeFields as $uniqeField)
|
|
|
|
{
|
|
|
|
$data[$uniqeField] = $this->generateUniqe($uniqeField,$data[$uniqeField]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (parent::save($data))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to generate a uniqe value.
|
|
|
|
*
|
|
|
|
* @param string $field name.
|
|
|
|
* @param string $value data.
|
|
|
|
*
|
|
|
|
* @return string New value.
|
|
|
|
*
|
|
|
|
* @since 3.0
|
|
|
|
*/
|
|
|
|
protected function generateUniqe($field,$value)
|
|
|
|
{
|
|
|
|
|
|
|
|
// set field value uniqe
|
|
|
|
$table = $this->getTable();
|
|
|
|
|
|
|
|
while ($table->load(array($field => $value)))
|
|
|
|
{
|
|
|
|
$value = JString::increment($value);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to change the title & alias.
|
|
|
|
*
|
|
|
|
* @param string $title The title.
|
|
|
|
*
|
|
|
|
* @return array Contains the modified title and alias.
|
|
|
|
*
|
|
|
|
*/
|
2016-02-26 12:46:15 +00:00
|
|
|
protected function _generateNewTitle($title)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
// Alter the title
|
|
|
|
$table = $this->getTable();
|
|
|
|
|
|
|
|
while ($table->load(array('title' => $title)))
|
|
|
|
{
|
|
|
|
$title = JString::increment($title);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $title;
|
|
|
|
}
|
|
|
|
}
|