IntegrationRepository.php 1.42 KB
<?php

namespace AC;

class IntegrationRepository {

	const ARG_FILTER = 'filter';

	/**
	 * @return Integrations
	 */
	private function all() {
		return new Integrations( [
			new Integration\ACF(),
			new Integration\BuddyPress(),
			new Integration\EventsCalendar(),
			new Integration\GravityForms(),
			new Integration\JetEngine(),
			new Integration\Pods(),
			new Integration\Types(),
			new Integration\MetaBox(),
			new Integration\WooCommerce(),
			new Integration\YoastSeo(),
		] );
	}

	/**
	 * @param string $basename
	 *
	 * @return Integration|null
	 */
	public function find_by_basename( $basename ) {
		foreach ( $this->find_all()->all() as $integration ) {
			if ( $integration->get_basename() === $basename ) {
				return $integration;
			}
		}

		return null;
	}

	/**
	 * @param string $slug
	 *
	 * @return Integration|null
	 */
	public function find_by_slug( $slug ) {
		foreach ( $this->find_all()->all() as $integration ) {
			if ( $integration->get_slug() === $slug ) {
				return $integration;
			}
		}

		return null;
	}

	/**
	 * @param array $args
	 *
	 * @return Integrations
	 */
	public function find_all( array $args = [] ) {
		$integrations = $this->all();

		$args = array_merge( [
			self::ARG_FILTER => [],
		], $args );

		foreach ( $args[ self::ARG_FILTER ] as $filter ) {
			if ( $filter instanceof Integration\Filter ) {
				$integrations = $filter->filter( $integrations );
			}
		}

		return $integrations;
	}

}