Your IP : 216.73.216.11


Current Path : /home/digilove/www/administrator/components/com_jmap/tables/
Upload File :
Current File : /home/digilove/www/administrator/components/com_jmap/tables/aigenerator.php

<?php
// namespace administrator\components\com_jmap\tables;
/**
 *
 * @package JMAP::AIGENERATOR::administrator::components::com_jmap
 * @subpackage tables
 * @author Joomla! Extensions Store
 * @copyright (C) 2021 - Joomla! Extensions Store
 * @license GNU/GPLv2 http://www.gnu.org/licenses/gpl-2.0.html
 */
// no direct access
defined ( '_JEXEC' ) or die ( 'Restricted access' );

/**
 * ORM Table for AIGenerator urls
 *
 * @package JMAP::AIGENERATOR::administrator::components::com_jmap
 * @subpackage tables
 * @since 2.0
 */
class TableAIGenerator extends JTable {
	/**
	 * @var int
	 */
	public $id = 0;
	
	/**
	 * @var string
	 */
	public $keywords_phrase = '';
	
	/**
	 * @var string
	 */
	public $contents = null;
	
	/**
	 * @var string
	 */
	public $api = 'bing';
	
	/**
	 * @var int
	 */
	public $maxresults = 10;
	
	/**
	 * @var string
	 */
	public $language = '';
	
	/**
	 * @var string
	 */
	public $removeimgs = 0;
	
	/**
	 * @var string
	 */
	public $temperature = '0.5';
	
	/**
	 * @var int
	 */
	public $checked_out = 0;
	
	/**
	 * @var datetime
	 */
	public $checked_out_time = 0;
	/**
	 * Check Table override
	 * @override
	 * 
	 * @see Table::check()
	 */
	public function check() {
		// Title required
		if (! $this->keywords_phrase) {
			$this->setError ( Text::_('COM_JMAP_VALIDATION_ERROR' ) );
			return false;
		}
		
		return true;
	}
	
	/**
	 * Load Table override
	 * @override
	 *
	 * @see Table::load()
	 */
	public function load($idEntity = null, $reset = true) {
		// If not $idEntity set return empty object
		if($idEntity) {
			if(!parent::load ( $idEntity )) {
				return false;
			}
		}
		
		// Unserialize contents if any
		if($this->contents) {
			$deserializedContents = [];
			$contentsArray = explode('{contentdivider}', $this->contents);
			if(count($contentsArray)) {
				foreach ($contentsArray as $singleContent) {
					preg_match('/{title}(.*){\/title}/im', $singleContent, $matchesTitle);
					preg_match('/{content}(.*){\/content}/im', $singleContent, $matchesContent);
					if(isset($matchesTitle[1]) && isset($matchesContent[1])) {
						$deserializedContents[] = ['title'=>$matchesTitle[1], 'content'=>$matchesContent[1]];
					}
				}
			}
			$this->contents = $deserializedContents;
		}
		
		return true;
	}
	
	/**
	 * Class constructor
	 * @param Object& $_db
	 *
	 * return Object&
	 */
	public function __construct(&$_db) {
		parent::__construct ( '#__jmap_aigenerator', 'id', $_db );
		
		// Set the default max results number
		$this->maxresults = JComponentHelper::getParams('com_jmap')->get('aigenerator_default_results', 10);
	}
}