2016-01-30 20:28:43 +00:00
< ? php
2018-05-18 06:28:27 +00:00
/**
* @ package Joomla . Component . Builder
*
* @ created 30 th 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
*/
2016-01-30 20:28:43 +00:00
// No direct access to this file
defined ( '_JEXEC' ) or die ( 'Restricted access' );
// import the Joomla modellist library
jimport ( 'joomla.application.component.modellist' );
/**
* Dynamic_gets Model
*/
class ComponentbuilderModelDynamic_gets extends JModelList
{
public function __construct ( $config = array ())
{
if ( empty ( $config [ 'filter_fields' ]))
{
$config [ 'filter_fields' ] = array (
'a.id' , 'id' ,
'a.published' , 'published' ,
'a.ordering' , 'ordering' ,
'a.created_by' , 'created_by' ,
'a.modified_by' , 'modified_by' ,
'a.name' , 'name' ,
'a.main_source' , 'main_source' ,
'a.gettype' , 'gettype'
);
}
parent :: __construct ( $config );
}
/**
* Method to auto - populate the model state .
*
* @ return void
*/
protected function populateState ( $ordering = null , $direction = null )
{
$app = JFactory :: getApplication ();
// Adjust the context to support modal layouts.
if ( $layout = $app -> input -> get ( 'layout' ))
{
$this -> context .= '.' . $layout ;
}
$name = $this -> getUserStateFromRequest ( $this -> context . '.filter.name' , 'filter_name' );
$this -> setState ( 'filter.name' , $name );
$main_source = $this -> getUserStateFromRequest ( $this -> context . '.filter.main_source' , 'filter_main_source' );
$this -> setState ( 'filter.main_source' , $main_source );
$gettype = $this -> getUserStateFromRequest ( $this -> context . '.filter.gettype' , 'filter_gettype' );
$this -> setState ( 'filter.gettype' , $gettype );
$sorting = $this -> getUserStateFromRequest ( $this -> context . '.filter.sorting' , 'filter_sorting' , 0 , 'int' );
$this -> setState ( 'filter.sorting' , $sorting );
$access = $this -> getUserStateFromRequest ( $this -> context . '.filter.access' , 'filter_access' , 0 , 'int' );
$this -> setState ( 'filter.access' , $access );
$search = $this -> getUserStateFromRequest ( $this -> context . '.filter.search' , 'filter_search' );
$this -> setState ( 'filter.search' , $search );
$published = $this -> getUserStateFromRequest ( $this -> context . '.filter.published' , 'filter_published' , '' );
$this -> setState ( 'filter.published' , $published );
$created_by = $this -> getUserStateFromRequest ( $this -> context . '.filter.created_by' , 'filter_created_by' , '' );
$this -> setState ( 'filter.created_by' , $created_by );
$created = $this -> getUserStateFromRequest ( $this -> context . '.filter.created' , 'filter_created' );
$this -> setState ( 'filter.created' , $created );
// List state information.
parent :: populateState ( $ordering , $direction );
}
/**
* Method to get an array of data items .
*
* @ return mixed An array of data items on success , false on failure .
*/
public function getItems ()
{
// check in items
$this -> checkInNow ();
// load parent items
$items = parent :: getItems ();
// set values to display correctly.
if ( ComponentbuilderHelper :: checkArray ( $items ))
{
// get user object.
$user = JFactory :: getUser ();
foreach ( $items as $nr => & $item )
{
$access = ( $user -> authorise ( 'dynamic_get.access' , 'com_componentbuilder.dynamic_get.' . ( int ) $item -> id ) && $user -> authorise ( 'dynamic_get.access' , 'com_componentbuilder' ));
if ( ! $access )
{
unset ( $items [ $nr ]);
continue ;
}
}
}
// set selection value to a translatable value
if ( ComponentbuilderHelper :: checkArray ( $items ))
{
foreach ( $items as $nr => & $item )
{
// convert main_source
$item -> main_source = $this -> selectionTranslation ( $item -> main_source , 'main_source' );
// convert gettype
$item -> gettype = $this -> selectionTranslation ( $item -> gettype , 'gettype' );
2018-05-24 13:56:56 +00:00
// convert addcalculation
$item -> addcalculation = $this -> selectionTranslation ( $item -> addcalculation , 'addcalculation' );
2016-01-30 20:28:43 +00:00
}
}
2016-09-03 21:44:47 +00:00
2016-01-30 20:28:43 +00:00
// return items
return $items ;
}
/**
* Method to convert selection values to translatable string .
*
* @ return translatable string
*/
2016-02-29 11:05:37 +00:00
public function selectionTranslation ( $value , $name )
2016-01-30 20:28:43 +00:00
{
// Array of main_source language strings
2017-02-01 13:17:04 +00:00
if ( $name === 'main_source' )
2016-01-30 20:28:43 +00:00
{
$main_sourceArray = array (
0 => 'COM_COMPONENTBUILDER_DYNAMIC_GET_PLEASE_SELECT' ,
1 => 'COM_COMPONENTBUILDER_DYNAMIC_GET_BACKEND_VIEW' ,
2 => 'COM_COMPONENTBUILDER_DYNAMIC_GET_JOOMLA_DATABASE' ,
3 => 'COM_COMPONENTBUILDER_DYNAMIC_GET_CUSTOM'
);
// Now check if value is found in this array
if ( isset ( $main_sourceArray [ $value ]) && ComponentbuilderHelper :: checkString ( $main_sourceArray [ $value ]))
{
return $main_sourceArray [ $value ];
}
}
// Array of gettype language strings
2017-02-01 13:17:04 +00:00
if ( $name === 'gettype' )
2016-01-30 20:28:43 +00:00
{
$gettypeArray = array (
1 => 'COM_COMPONENTBUILDER_DYNAMIC_GET_GETITEM' ,
2 => 'COM_COMPONENTBUILDER_DYNAMIC_GET_GETLISTQUERY' ,
3 => 'COM_COMPONENTBUILDER_DYNAMIC_GET_GETCUSTOM' ,
4 => 'COM_COMPONENTBUILDER_DYNAMIC_GET_GETCUSTOMS'
);
// Now check if value is found in this array
if ( isset ( $gettypeArray [ $value ]) && ComponentbuilderHelper :: checkString ( $gettypeArray [ $value ]))
{
return $gettypeArray [ $value ];
}
}
2018-05-24 13:56:56 +00:00
// Array of addcalculation language strings
if ( $name === 'addcalculation' )
{
$addcalculationArray = array (
1 => 'COM_COMPONENTBUILDER_DYNAMIC_GET_YES' ,
0 => 'COM_COMPONENTBUILDER_DYNAMIC_GET_NO'
);
// Now check if value is found in this array
if ( isset ( $addcalculationArray [ $value ]) && ComponentbuilderHelper :: checkString ( $addcalculationArray [ $value ]))
{
return $addcalculationArray [ $value ];
}
}
2016-01-30 20:28:43 +00:00
return $value ;
}
/**
* Method to build an SQL query to load the list data .
*
* @ return string An SQL query
*/
protected function getListQuery ()
{
// 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_item table
$query -> from ( $db -> quoteName ( '#__componentbuilder_dynamic_get' , 'a' ));
2018-05-24 13:56:56 +00:00
// From the componentbuilder_admin_view table.
$query -> select ( $db -> quoteName ( 'h.system_name' , 'view_table_main_system_name' ));
$query -> join ( 'LEFT' , $db -> quoteName ( '#__componentbuilder_admin_view' , 'h' ) . ' ON (' . $db -> quoteName ( 'a.view_table_main' ) . ' = ' . $db -> quoteName ( 'h.id' ) . ')' );
2016-01-30 20:28:43 +00:00
// Filter by published state
$published = $this -> getState ( 'filter.published' );
if ( is_numeric ( $published ))
{
$query -> where ( 'a.published = ' . ( int ) $published );
}
elseif ( $published === '' )
{
$query -> where ( '(a.published = 0 OR a.published = 1)' );
}
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 . ')' );
}
2016-01-30 20:28:43 +00:00
// Filter by search.
$search = $this -> getState ( 'filter.search' );
if ( ! empty ( $search ))
{
if ( stripos ( $search , 'id:' ) === 0 )
{
$query -> where ( 'a.id = ' . ( int ) substr ( $search , 3 ));
}
else
{
2016-10-23 22:48:26 +00:00
$search = $db -> quote ( '%' . $db -> escape ( $search ) . '%' );
2016-01-30 20:28:43 +00:00
$query -> where ( '(a.name LIKE ' . $search . ' OR a.main_source LIKE ' . $search . ' OR a.gettype LIKE ' . $search . ')' );
}
}
// Filter by Main_source.
if ( $main_source = $this -> getState ( 'filter.main_source' ))
{
2016-10-23 22:48:26 +00:00
$query -> where ( 'a.main_source = ' . $db -> quote ( $db -> escape ( $main_source )));
2016-01-30 20:28:43 +00:00
}
// Filter by Gettype.
if ( $gettype = $this -> getState ( 'filter.gettype' ))
{
2016-10-23 22:48:26 +00:00
$query -> where ( 'a.gettype = ' . $db -> quote ( $db -> escape ( $gettype )));
2016-01-30 20:28:43 +00:00
}
// Add the list ordering clause.
$orderCol = $this -> state -> get ( 'list.ordering' , 'a.id' );
$orderDirn = $this -> state -> get ( 'list.direction' , 'asc' );
if ( $orderCol != '' )
{
$query -> order ( $db -> escape ( $orderCol . ' ' . $orderDirn ));
}
return $query ;
}
/**
* Method to get list export data .
*
* @ return mixed An array of data items on success , false on failure .
*/
public function getExportData ( $pks )
{
// setup the query
if ( ComponentbuilderHelper :: checkArray ( $pks ))
{
2016-06-03 06:28:32 +00:00
// Set a value to know this is exporting method.
$_export = true ;
2016-01-30 20:28:43 +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_dynamic_get table
$query -> from ( $db -> quoteName ( '#__componentbuilder_dynamic_get' , 'a' ));
$query -> where ( 'a.id IN (' . implode ( ',' , $pks ) . ')' );
2017-10-19 03:53:55 +00:00
// Implement View Level Access
if ( ! $user -> authorise ( 'core.options' , 'com_componentbuilder' ))
{
$groups = implode ( ',' , $user -> getAuthorisedViewLevels ());
$query -> where ( 'a.access IN (' . $groups . ')' );
}
2016-01-30 20:28:43 +00:00
// Order the results by ordering
$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 ( 'dynamic_get.access' , 'com_componentbuilder.dynamic_get.' . ( int ) $item -> id ) && $user -> authorise ( 'dynamic_get.access' , 'com_componentbuilder' ));
if ( ! $access )
{
unset ( $items [ $nr ]);
continue ;
}
2017-05-04 22:34:28 +00:00
// decode php_custom_get
$item -> php_custom_get = base64_decode ( $item -> php_custom_get );
2017-10-06 14:53:22 +00:00
// decode php_before_getitem
$item -> php_before_getitem = base64_decode ( $item -> php_before_getitem );
2017-05-04 22:34:28 +00:00
// decode php_after_getitem
$item -> php_after_getitem = base64_decode ( $item -> php_after_getitem );
2016-01-30 20:28:43 +00:00
// decode php_getlistquery
$item -> php_getlistquery = base64_decode ( $item -> php_getlistquery );
2017-05-04 22:34:28 +00:00
// decode php_before_getitems
$item -> php_before_getitems = base64_decode ( $item -> php_before_getitems );
2016-01-30 20:28:43 +00:00
// decode php_after_getitems
$item -> php_after_getitems = base64_decode ( $item -> php_after_getitems );
2018-01-23 22:05:57 +00:00
// decode php_router_parse
$item -> php_router_parse = base64_decode ( $item -> php_router_parse );
2016-01-30 20:28:43 +00:00
// decode php_calculation
$item -> php_calculation = base64_decode ( $item -> php_calculation );
// unset the values we don't want exported.
unset ( $item -> asset_id );
unset ( $item -> checked_out );
unset ( $item -> checked_out_time );
}
}
// Add headers to items array.
$headers = $this -> getExImPortHeaders ();
if ( ComponentbuilderHelper :: checkObject ( $headers ))
{
array_unshift ( $items , $headers );
}
return $items ;
}
}
return false ;
2018-01-17 23:28:44 +00:00
}
/**
* Method to get header .
*
* @ return mixed An array of data items on success , false on failure .
*/
public function getExImPortHeaders ()
{
// Get a db connection.
$db = JFactory :: getDbo ();
// get the columns
$columns = $db -> getTableColumns ( " #__componentbuilder_dynamic_get " );
if ( ComponentbuilderHelper :: checkArray ( $columns ))
{
// remove the headers you don't import/export.
unset ( $columns [ 'asset_id' ]);
unset ( $columns [ 'checked_out' ]);
unset ( $columns [ 'checked_out_time' ]);
$headers = new stdClass ();
foreach ( $columns as $column => $type )
{
$headers -> { $column } = $column ;
}
return $headers ;
}
return false ;
2016-01-30 20:28:43 +00:00
}
/**
* Method to get a store id based on model configuration state .
*
* @ return string A store id .
*
*/
protected function getStoreId ( $id = '' )
{
// Compile the store id.
$id .= ':' . $this -> getState ( 'filter.id' );
$id .= ':' . $this -> getState ( 'filter.search' );
$id .= ':' . $this -> getState ( 'filter.published' );
$id .= ':' . $this -> getState ( 'filter.ordering' );
$id .= ':' . $this -> getState ( 'filter.created_by' );
$id .= ':' . $this -> getState ( 'filter.modified_by' );
$id .= ':' . $this -> getState ( 'filter.name' );
$id .= ':' . $this -> getState ( 'filter.main_source' );
$id .= ':' . $this -> getState ( 'filter.gettype' );
return parent :: getStoreId ( $id );
}
/**
* Build an SQL query to checkin all items left checked out longer then a set time .
*
* @ return a bool
*
*/
2016-02-26 12:46:15 +00:00
protected function checkInNow ()
2016-01-30 20:28:43 +00:00
{
// Get set check in time
$time = JComponentHelper :: getParams ( 'com_componentbuilder' ) -> get ( 'check_in' );
if ( $time )
{
// Get a db connection.
$db = JFactory :: getDbo ();
// reset query
$query = $db -> getQuery ( true );
$query -> select ( '*' );
$query -> from ( $db -> quoteName ( '#__componentbuilder_dynamic_get' ));
$db -> setQuery ( $query );
$db -> execute ();
if ( $db -> getNumRows ())
{
// Get Yesterdays date
$date = JFactory :: getDate () -> modify ( $time ) -> toSql ();
// reset query
$query = $db -> getQuery ( true );
// Fields to update.
$fields = array (
$db -> quoteName ( 'checked_out_time' ) . '=\'0000-00-00 00:00:00\'' ,
$db -> quoteName ( 'checked_out' ) . '=0'
);
// Conditions for which records should be updated.
$conditions = array (
$db -> quoteName ( 'checked_out' ) . '!=0' ,
$db -> quoteName ( 'checked_out_time' ) . '<\'' . $date . '\''
);
// Check table
$query -> update ( $db -> quoteName ( '#__componentbuilder_dynamic_get' )) -> set ( $fields ) -> where ( $conditions );
$db -> setQuery ( $query );
$db -> execute ();
}
}
return false ;
}
}