2017-08-25 01:46:12 +00:00
|
|
|
<?php
|
2018-05-18 06:28:27 +00:00
|
|
|
/**
|
|
|
|
* @package Joomla.Component.Builder
|
|
|
|
*
|
|
|
|
* @created 30th April, 2015
|
|
|
|
* @author Llewellyn van der Merwe <http://www.joomlacomponentbuilder.com>
|
|
|
|
* @github Joomla Component Builder <https://github.com/vdm-io/Joomla-Component-Builder>
|
|
|
|
* @copyright Copyright (C) 2015 - 2018 Vast Development Method. All rights reserved.
|
|
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
|
|
*/
|
2017-08-25 01:46:12 +00:00
|
|
|
|
|
|
|
// No direct access to this file
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
|
|
|
|
/**
|
2018-02-15 00:42:39 +00:00
|
|
|
* Componentbuilder View class for the Servers
|
2017-08-25 01:46:12 +00:00
|
|
|
*/
|
2018-02-15 00:42:39 +00:00
|
|
|
class ComponentbuilderViewServers extends JViewLegacy
|
2017-08-25 01:46:12 +00:00
|
|
|
{
|
|
|
|
/**
|
2018-02-15 00:42:39 +00:00
|
|
|
* Servers view display method
|
2017-08-25 01:46:12 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function display($tpl = null)
|
|
|
|
{
|
|
|
|
if ($this->getLayout() !== 'modal')
|
|
|
|
{
|
|
|
|
// Include helper submenu
|
2018-02-15 00:42:39 +00:00
|
|
|
ComponentbuilderHelper::addSubmenu('servers');
|
2017-08-25 01:46:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Assign data to the view
|
2017-12-15 01:10:10 +00:00
|
|
|
$this->items = $this->get('Items');
|
|
|
|
$this->pagination = $this->get('Pagination');
|
|
|
|
$this->state = $this->get('State');
|
|
|
|
$this->user = JFactory::getUser();
|
|
|
|
$this->listOrder = $this->escape($this->state->get('list.ordering'));
|
|
|
|
$this->listDirn = $this->escape($this->state->get('list.direction'));
|
|
|
|
$this->saveOrder = $this->listOrder == 'ordering';
|
2017-12-14 23:10:47 +00:00
|
|
|
// get global action permissions
|
2018-02-15 00:42:39 +00:00
|
|
|
$this->canDo = ComponentbuilderHelper::getActions('server');
|
|
|
|
$this->canEdit = $this->canDo->get('server.edit');
|
|
|
|
$this->canState = $this->canDo->get('server.edit.state');
|
|
|
|
$this->canCreate = $this->canDo->get('server.create');
|
|
|
|
$this->canDelete = $this->canDo->get('server.delete');
|
2017-12-15 01:10:10 +00:00
|
|
|
$this->canBatch = $this->canDo->get('core.batch');
|
2017-08-25 01:46:12 +00:00
|
|
|
|
|
|
|
// We don't need toolbar in the modal window.
|
|
|
|
if ($this->getLayout() !== 'modal')
|
|
|
|
{
|
|
|
|
$this->addToolbar();
|
|
|
|
$this->sidebar = JHtmlSidebar::render();
|
2017-12-14 23:10:47 +00:00
|
|
|
// load the batch html
|
|
|
|
if ($this->canCreate && $this->canEdit && $this->canState)
|
|
|
|
{
|
|
|
|
$this->batchDisplay = JHtmlBatch_::render();
|
|
|
|
}
|
2017-08-25 01:46:12 +00:00
|
|
|
}
|
2017-10-14 17:18:29 +00:00
|
|
|
|
|
|
|
// Check for errors.
|
|
|
|
if (count($errors = $this->get('Errors')))
|
|
|
|
{
|
|
|
|
throw new Exception(implode("\n", $errors), 500);
|
|
|
|
}
|
2017-08-25 01:46:12 +00:00
|
|
|
|
|
|
|
// Display the template
|
|
|
|
parent::display($tpl);
|
|
|
|
|
|
|
|
// Set the document
|
|
|
|
$this->setDocument();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Setting the toolbar
|
|
|
|
*/
|
|
|
|
protected function addToolBar()
|
|
|
|
{
|
2018-02-15 00:42:39 +00:00
|
|
|
JToolBarHelper::title(JText::_('COM_COMPONENTBUILDER_SERVERS'), 'flash');
|
|
|
|
JHtmlSidebar::setAction('index.php?option=com_componentbuilder&view=servers');
|
2017-12-14 23:10:47 +00:00
|
|
|
JFormHelper::addFieldPath(JPATH_COMPONENT . '/models/fields');
|
2017-08-25 01:46:12 +00:00
|
|
|
|
|
|
|
if ($this->canCreate)
|
2017-12-14 23:10:47 +00:00
|
|
|
{
|
2018-02-15 00:42:39 +00:00
|
|
|
JToolBarHelper::addNew('server.add');
|
2017-08-25 01:46:12 +00:00
|
|
|
}
|
|
|
|
|
2017-12-14 23:10:47 +00:00
|
|
|
// Only load if there are items
|
|
|
|
if (ComponentbuilderHelper::checkArray($this->items))
|
2017-08-25 01:46:12 +00:00
|
|
|
{
|
2017-12-14 23:10:47 +00:00
|
|
|
if ($this->canEdit)
|
|
|
|
{
|
2018-02-15 00:42:39 +00:00
|
|
|
JToolBarHelper::editList('server.edit');
|
2017-12-14 23:10:47 +00:00
|
|
|
}
|
2017-08-25 01:46:12 +00:00
|
|
|
|
2017-12-14 23:10:47 +00:00
|
|
|
if ($this->canState)
|
|
|
|
{
|
2018-02-15 00:42:39 +00:00
|
|
|
JToolBarHelper::publishList('servers.publish');
|
|
|
|
JToolBarHelper::unpublishList('servers.unpublish');
|
|
|
|
JToolBarHelper::archiveList('servers.archive');
|
2017-08-25 01:46:12 +00:00
|
|
|
|
2017-12-14 23:10:47 +00:00
|
|
|
if ($this->canDo->get('core.admin'))
|
|
|
|
{
|
2018-02-15 00:42:39 +00:00
|
|
|
JToolBarHelper::checkin('servers.checkin');
|
2017-12-14 23:10:47 +00:00
|
|
|
}
|
|
|
|
}
|
2017-08-25 01:46:12 +00:00
|
|
|
|
2017-12-14 23:10:47 +00:00
|
|
|
// Add a batch button
|
|
|
|
if ($this->canBatch && $this->canCreate && $this->canEdit && $this->canState)
|
|
|
|
{
|
|
|
|
// Get the toolbar object instance
|
|
|
|
$bar = JToolBar::getInstance('toolbar');
|
|
|
|
// set the batch button name
|
|
|
|
$title = JText::_('JTOOLBAR_BATCH');
|
|
|
|
// Instantiate a new JLayoutFile instance and render the batch button
|
|
|
|
$layout = new JLayoutFile('joomla.toolbar.batch');
|
|
|
|
// add the button to the page
|
|
|
|
$dhtml = $layout->render(array('title' => $title));
|
|
|
|
$bar->appendButton('Custom', $dhtml, 'batch');
|
|
|
|
}
|
2017-08-25 01:46:12 +00:00
|
|
|
|
2017-12-14 23:10:47 +00:00
|
|
|
if ($this->state->get('filter.published') == -2 && ($this->canState && $this->canDelete))
|
|
|
|
{
|
2018-02-15 00:42:39 +00:00
|
|
|
JToolbarHelper::deleteList('', 'servers.delete', 'JTOOLBAR_EMPTY_TRASH');
|
2017-12-14 23:10:47 +00:00
|
|
|
}
|
|
|
|
elseif ($this->canState && $this->canDelete)
|
|
|
|
{
|
2018-02-15 00:42:39 +00:00
|
|
|
JToolbarHelper::trash('servers.trash');
|
2017-12-14 23:10:47 +00:00
|
|
|
}
|
2017-08-25 01:46:12 +00:00
|
|
|
|
2018-02-15 00:42:39 +00:00
|
|
|
if ($this->canDo->get('core.export') && $this->canDo->get('server.export'))
|
2017-08-25 01:46:12 +00:00
|
|
|
{
|
2018-02-15 00:42:39 +00:00
|
|
|
JToolBarHelper::custom('servers.exportData', 'download', '', 'COM_COMPONENTBUILDER_EXPORT_DATA', true);
|
2017-08-25 01:46:12 +00:00
|
|
|
}
|
2017-12-14 23:10:47 +00:00
|
|
|
}
|
2017-08-25 01:46:12 +00:00
|
|
|
|
2018-02-15 00:42:39 +00:00
|
|
|
if ($this->canDo->get('core.import') && $this->canDo->get('server.import'))
|
2017-08-25 01:46:12 +00:00
|
|
|
{
|
2018-02-15 00:42:39 +00:00
|
|
|
JToolBarHelper::custom('servers.importData', 'upload', '', 'COM_COMPONENTBUILDER_IMPORT_DATA', false);
|
2017-08-25 01:46:12 +00:00
|
|
|
}
|
|
|
|
|
2017-12-14 23:10:47 +00:00
|
|
|
// set help url for this view if found
|
2018-02-15 00:42:39 +00:00
|
|
|
$help_url = ComponentbuilderHelper::getHelpUrl('servers');
|
2017-12-14 23:10:47 +00:00
|
|
|
if (ComponentbuilderHelper::checkString($help_url))
|
|
|
|
{
|
2017-12-15 01:10:10 +00:00
|
|
|
JToolbarHelper::help('COM_COMPONENTBUILDER_HELP_MANAGER', false, $help_url);
|
2017-12-14 23:10:47 +00:00
|
|
|
}
|
2017-08-25 01:46:12 +00:00
|
|
|
|
2017-12-14 23:10:47 +00:00
|
|
|
// add the options comp button
|
|
|
|
if ($this->canDo->get('core.admin') || $this->canDo->get('core.options'))
|
|
|
|
{
|
2017-12-15 00:26:45 +00:00
|
|
|
JToolBarHelper::preferences('com_componentbuilder');
|
2017-12-14 23:10:47 +00:00
|
|
|
}
|
2017-08-25 01:46:12 +00:00
|
|
|
|
2017-12-14 23:10:47 +00:00
|
|
|
if ($this->canState)
|
|
|
|
{
|
2017-08-25 01:46:12 +00:00
|
|
|
JHtmlSidebar::addFilter(
|
|
|
|
JText::_('JOPTION_SELECT_PUBLISHED'),
|
|
|
|
'filter_published',
|
|
|
|
JHtml::_('select.options', JHtml::_('jgrid.publishedOptions'), 'value', 'text', $this->state->get('filter.published'), true)
|
|
|
|
);
|
2017-12-14 23:10:47 +00:00
|
|
|
// only load if batch allowed
|
|
|
|
if ($this->canBatch)
|
|
|
|
{
|
|
|
|
JHtmlBatch_::addListSelection(
|
|
|
|
JText::_('COM_COMPONENTBUILDER_KEEP_ORIGINAL_STATE'),
|
|
|
|
'batch[published]',
|
|
|
|
JHtml::_('select.options', JHtml::_('jgrid.publishedOptions', array('all' => false)), 'value', 'text', '', true)
|
|
|
|
);
|
|
|
|
}
|
2017-08-25 01:46:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
JHtmlSidebar::addFilter(
|
|
|
|
JText::_('JOPTION_SELECT_ACCESS'),
|
|
|
|
'filter_access',
|
|
|
|
JHtml::_('select.options', JHtml::_('access.assetgroups'), 'value', 'text', $this->state->get('filter.access'))
|
|
|
|
);
|
|
|
|
|
|
|
|
if ($this->canBatch && $this->canCreate && $this->canEdit)
|
|
|
|
{
|
|
|
|
JHtmlBatch_::addListSelection(
|
2017-12-14 23:10:47 +00:00
|
|
|
JText::_('COM_COMPONENTBUILDER_KEEP_ORIGINAL_ACCESS'),
|
|
|
|
'batch[access]',
|
|
|
|
JHtml::_('select.options', JHtml::_('access.assetgroups'), 'value', 'text')
|
2017-08-25 01:46:12 +00:00
|
|
|
);
|
2017-12-14 23:10:47 +00:00
|
|
|
}
|
2017-08-25 01:46:12 +00:00
|
|
|
|
|
|
|
// Set Name Selection
|
|
|
|
$this->nameOptions = $this->getTheNameSelections();
|
|
|
|
if ($this->nameOptions)
|
|
|
|
{
|
|
|
|
// Name Filter
|
|
|
|
JHtmlSidebar::addFilter(
|
2018-02-15 00:42:39 +00:00
|
|
|
'- Select '.JText::_('COM_COMPONENTBUILDER_SERVER_NAME_LABEL').' -',
|
2017-08-25 01:46:12 +00:00
|
|
|
'filter_name',
|
|
|
|
JHtml::_('select.options', $this->nameOptions, 'value', 'text', $this->state->get('filter.name'))
|
|
|
|
);
|
|
|
|
|
|
|
|
if ($this->canBatch && $this->canCreate && $this->canEdit)
|
|
|
|
{
|
|
|
|
// Name Batch Selection
|
|
|
|
JHtmlBatch_::addListSelection(
|
2018-02-15 00:42:39 +00:00
|
|
|
'- Keep Original '.JText::_('COM_COMPONENTBUILDER_SERVER_NAME_LABEL').' -',
|
2017-08-25 01:46:12 +00:00
|
|
|
'batch[name]',
|
|
|
|
JHtml::_('select.options', $this->nameOptions, 'value', 'text')
|
|
|
|
);
|
|
|
|
}
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Set Protocol Selection
|
|
|
|
$this->protocolOptions = $this->getTheProtocolSelections();
|
|
|
|
if ($this->protocolOptions)
|
|
|
|
{
|
|
|
|
// Protocol Filter
|
|
|
|
JHtmlSidebar::addFilter(
|
|
|
|
'- Select '.JText::_('COM_COMPONENTBUILDER_SERVER_PROTOCOL_LABEL').' -',
|
|
|
|
'filter_protocol',
|
|
|
|
JHtml::_('select.options', $this->protocolOptions, 'value', 'text', $this->state->get('filter.protocol'))
|
|
|
|
);
|
|
|
|
|
|
|
|
if ($this->canBatch && $this->canCreate && $this->canEdit)
|
|
|
|
{
|
|
|
|
// Protocol Batch Selection
|
|
|
|
JHtmlBatch_::addListSelection(
|
|
|
|
'- Keep Original '.JText::_('COM_COMPONENTBUILDER_SERVER_PROTOCOL_LABEL').' -',
|
|
|
|
'batch[protocol]',
|
|
|
|
JHtml::_('select.options', $this->protocolOptions, 'value', 'text')
|
|
|
|
);
|
|
|
|
}
|
2017-08-25 01:46:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to set up the document properties
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function setDocument()
|
|
|
|
{
|
2017-12-10 19:17:26 +00:00
|
|
|
if (!isset($this->document))
|
|
|
|
{
|
|
|
|
$this->document = JFactory::getDocument();
|
|
|
|
}
|
2018-02-15 00:42:39 +00:00
|
|
|
$this->document->setTitle(JText::_('COM_COMPONENTBUILDER_SERVERS'));
|
|
|
|
$this->document->addStyleSheet(JURI::root() . "administrator/components/com_componentbuilder/assets/css/servers.css", (ComponentbuilderHelper::jVersion()->isCompatible('3.8.0')) ? array('version' => 'auto') : 'text/css');
|
2017-08-25 01:46:12 +00:00
|
|
|
}
|
|
|
|
|
2017-12-14 23:10:47 +00:00
|
|
|
/**
|
2017-08-25 01:46:12 +00:00
|
|
|
* Escapes a value for output in a view script.
|
|
|
|
*
|
|
|
|
* @param mixed $var The output to escape.
|
|
|
|
*
|
|
|
|
* @return mixed The escaped value.
|
|
|
|
*/
|
|
|
|
public function escape($var)
|
|
|
|
{
|
|
|
|
if(strlen($var) > 50)
|
|
|
|
{
|
2017-12-14 23:10:47 +00:00
|
|
|
// use the helper htmlEscape method instead and shorten the string
|
2017-08-25 01:46:12 +00:00
|
|
|
return ComponentbuilderHelper::htmlEscape($var, $this->_charset, true);
|
|
|
|
}
|
2017-12-14 23:10:47 +00:00
|
|
|
// use the helper htmlEscape method instead.
|
2017-08-25 01:46:12 +00:00
|
|
|
return ComponentbuilderHelper::htmlEscape($var, $this->_charset);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns an array of fields the table can be sorted by
|
|
|
|
*
|
|
|
|
* @return array Array containing the field name to sort by as the key and display text as value
|
|
|
|
*/
|
|
|
|
protected function getSortFields()
|
|
|
|
{
|
|
|
|
return array(
|
|
|
|
'a.sorting' => JText::_('JGRID_HEADING_ORDERING'),
|
|
|
|
'a.published' => JText::_('JSTATUS'),
|
2018-02-15 00:42:39 +00:00
|
|
|
'a.name' => JText::_('COM_COMPONENTBUILDER_SERVER_NAME_LABEL'),
|
|
|
|
'a.protocol' => JText::_('COM_COMPONENTBUILDER_SERVER_PROTOCOL_LABEL'),
|
2017-08-25 01:46:12 +00:00
|
|
|
'a.id' => JText::_('JGRID_HEADING_ID')
|
|
|
|
);
|
2017-12-14 23:10:47 +00:00
|
|
|
}
|
2017-08-25 01:46:12 +00:00
|
|
|
|
|
|
|
protected function getTheNameSelections()
|
|
|
|
{
|
|
|
|
// Get a db connection.
|
|
|
|
$db = JFactory::getDbo();
|
|
|
|
|
|
|
|
// Create a new query object.
|
|
|
|
$query = $db->getQuery(true);
|
|
|
|
|
|
|
|
// Select the text.
|
|
|
|
$query->select($db->quoteName('name'));
|
2018-02-15 00:42:39 +00:00
|
|
|
$query->from($db->quoteName('#__componentbuilder_server'));
|
2017-08-25 01:46:12 +00:00
|
|
|
$query->order($db->quoteName('name') . ' ASC');
|
|
|
|
|
|
|
|
// Reset the query using our newly populated query object.
|
|
|
|
$db->setQuery($query);
|
|
|
|
|
|
|
|
$results = $db->loadColumn();
|
|
|
|
|
|
|
|
if ($results)
|
|
|
|
{
|
|
|
|
$results = array_unique($results);
|
|
|
|
$_filter = array();
|
|
|
|
foreach ($results as $name)
|
|
|
|
{
|
|
|
|
// Now add the name and its text to the options array
|
|
|
|
$_filter[] = JHtml::_('select.option', $name, $name);
|
|
|
|
}
|
|
|
|
return $_filter;
|
|
|
|
}
|
|
|
|
return false;
|
2018-02-15 00:42:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function getTheProtocolSelections()
|
|
|
|
{
|
|
|
|
// Get a db connection.
|
|
|
|
$db = JFactory::getDbo();
|
|
|
|
|
|
|
|
// Create a new query object.
|
|
|
|
$query = $db->getQuery(true);
|
|
|
|
|
|
|
|
// Select the text.
|
|
|
|
$query->select($db->quoteName('protocol'));
|
|
|
|
$query->from($db->quoteName('#__componentbuilder_server'));
|
|
|
|
$query->order($db->quoteName('protocol') . ' ASC');
|
|
|
|
|
|
|
|
// Reset the query using our newly populated query object.
|
|
|
|
$db->setQuery($query);
|
|
|
|
|
|
|
|
$results = $db->loadColumn();
|
|
|
|
|
|
|
|
if ($results)
|
|
|
|
{
|
|
|
|
// get model
|
|
|
|
$model = $this->getModel();
|
|
|
|
$results = array_unique($results);
|
|
|
|
$_filter = array();
|
|
|
|
foreach ($results as $protocol)
|
|
|
|
{
|
|
|
|
// Translate the protocol selection
|
|
|
|
$text = $model->selectionTranslation($protocol,'protocol');
|
|
|
|
// Now add the protocol and its text to the options array
|
|
|
|
$_filter[] = JHtml::_('select.option', $protocol, JText::_($text));
|
|
|
|
}
|
|
|
|
return $_filter;
|
|
|
|
}
|
|
|
|
return false;
|
2017-08-25 01:46:12 +00:00
|
|
|
}
|
|
|
|
}
|