jeyroik/extas-snuffbox-conditions

View on GitHub
src/components/conditions/TSnuffConditions.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace extas\components\conditions;

use extas\components\THasMagicClass;
use extas\interfaces\conditions\ICondition;
use extas\interfaces\repositories\IRepository;

/**
 * Trait TSnuffConditions
 *
 * @package extas\components\conditions
 * @author jeyroik <jeyroik@gmail.com>
 */
trait TSnuffConditions
{
    use THasMagicClass;

    protected array $available = [];

    /**
     * @param array $names
     */
    protected function createSnuffConditions(array $names): void
    {
        foreach ($names as $name) {
            $this->createSnuffCondition($name);
        }
    }

    /**
     * @param string $name
     * @throws \Exception
     */
    protected function createSnuffCondition(string $name): void
    {
        $available = $this->getAvailableConditions();
        $byName = array_column($available, null, ICondition::FIELD__NAME);

        if (isset($byName[$name])) {
            $this->getConditionRepository()->create(new Condition($byName[$name]));
        } else {
            throw new \Exception(sprintf('Unknown condition "%s"', $name));
        }
    }

    /**
     *
     */
    protected function deleteSnuffConditions(): void
    {
        $available = $this->getAvailableConditions();
        $this->getConditionRepository()->delete([
            ICondition::FIELD__NAME => array_column($available, ICondition::FIELD__NAME)
        ]);
    }

    /**
     * @return ConditionRepository
     */
    protected function getConditionRepository(): IRepository
    {
        return $this->getMagicClass('conditions');
    }

    /**
     * @return array
     * @throws \Exception
     */
    protected function getAvailableConditions(): array
    {
        if (empty($this->available)) {
            $condExtasPath = getcwd() . '/vendor/jeyroik/extas-conditions/extas.json';
            if (is_file($condExtasPath)) {
                $condExtas = json_decode(file_get_contents($condExtasPath), true);
                return $this->available = $condExtas['conditions'] ?? [];
            } else {
                throw new \Exception(sprintf('Missed conditions specs file on %s', $condExtasPath));
            }
        }

        return $this->available;
    }
}