* @git GetBible * @copyright Copyright (C) 2015 Vast Development Method. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace TrueChristianChurch\Joomla\GetBible\Model; use TrueChristianChurch\Joomla\Abstraction\BaseConfig as Config; use TrueChristianChurch\Joomla\GetBible\Table; use TrueChristianChurch\Joomla\Utilities\StringHelper; use TrueChristianChurch\Joomla\Utilities\ArrayHelper; use TrueChristianChurch\Joomla\Utilities\ObjectHelper; use TrueChristianChurch\Joomla\Interfaces\ModelInterface; use TrueChristianChurch\Joomla\Abstraction\Model; /** * The GetBible Model to Load * * @since 2.0.1 */ final class Load extends Model implements ModelInterface { /** * GetBible Config * * @var Config * @since 2.0.1 */ protected Config $config; /** * Constructor * * @param Config $config The getBible config object. * @param Table $table The getBible table object. * * @since 2.0.1 */ public function __construct(Config $config, Table $table) { parent::__construct($table); $this->config = $config; } /** * Model the value * Example: $this->value(value, 'field_key', 'table_name'); * * @param mixed $value The value to model * @param string $field The field key * @param string|null $table The table * * @return mixed * @since 2.0.1 */ public function value($value, string $field, ?string $table = null) { // set the table name if (empty($table)) { $table = $this->getTable(); } // check if this is a valid table if (($store = $this->table->get($table, $field, 'store')) !== null) { // open the value based on the store method switch($store) { case 'json': $value = json_decode($value); break; } // Model Distribution History if ($table === 'translation' && $field === 'distribution_history') { $value = $this->modelDistributionHistory($value); } } return $value; } /** * Validate before the value is modelled * * @param mixed $value The field value * @param string|null $field The field key * @param string|null $table The table * * @return bool * @since 2.0.1 */ protected function validateBefore(&$value, ?string $field = null, ?string $table = null): bool { // only strings or numbers allowed if (StringHelper::check($value) || is_numeric($value)) { return true; } // remove empty values return false; } /** * Validate after the value is modelled * * @param mixed $value The field value * @param string|null $field The field key * @param string|null $table The table * * @return bool * @since 2.0.1 */ protected function validateAfter(&$value, ?string $field = null, ?string $table = null): bool { // check values if (StringHelper::check($value) || ArrayHelper::check($value, true) || ObjectHelper::check($value) || is_numeric($value)) { return true; } // remove empty values return false; } /** * Get the current active table * * @return string * @since 2.0.1 */ protected function getTable(): string { return $this->config->table_name; } /** * Model Distribution History * * @param mixed $value The value to model * * @return mixed * @since 2.0.1 */ public function modelDistributionHistory($value) { return $value; } }