HEX
Server: LiteSpeed
System: Linux s3604.bom1.stableserver.net 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
User: dmstechonline (1480)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/dmstechonline/public_html/wp-content/plugins/depicter/app/src/DataSources/Catalogs.php
<?php
namespace Depicter\DataSources;


use Averta\Core\Utility\Arr;
use Averta\WordPress\Utility\JSON;

/**
 * DataSource which holds pre-defined content for replacement in document
 */
class Catalogs extends DataSourceBase implements DataSourceInterface
{
	/**
	 * DataSource name
	 *
	 * @var string
	 */
	protected string $type = 'catalogs';

	/**
	 * DataSource properties
	 *
	 * @var array
	 */
	protected array $properties = [];

	/**
	 * Default input params for retrieving dataSource records
	 *
	 * @var array
	 */
	protected array $defaultInputParams = [];

	/**
	 * Asset groups of this DataSource
	 *
	 * @var array
	 */
	protected array $assetGroupNames = [ 'catalog' ];

	/**
	 * Retrieves the list of records based on query params
	 *
	 * @param $args
	 *
	 * @return array
	 */
	protected function getRecords( $args ){
		return $args['catalogs'] ?? [];
	}

	public function previewRecords( array $args = [] ) {
		$args = $this->prepare( $args );
		return $this->getRecords( $args );
    }

	/**
	 * Get list of datasheets and corresponding required arguments
	 *
	 * @param array $args
	 *
	 * @return array
	 */
	public function getDataSheetArgs( array $args = [] ){
		// convert array of objects to associate array
		$sheets = $this->getRecords( $args );
		return JSON::decode( JSON::encode( $sheets ), true );
	}

	/**
	 * Get list of asset groups for this dataSource
	 *
	 * @param $args
	 *
	 * @return array
	 */
	public function getAssets( $args ){
		$assetGroupNames = $this->getAssetGroupNames();

		$groups = [];
		foreach( $assetGroupNames as $assetGroupName ){
			$groups[ $assetGroupName ] = $args;
		}

		return \Depicter::dataSource()->tagsManager()->getAssetsInGroups( $groups );
	}

}