Covivo/mobicoop

View on GitHub
api/src/Carpool/Service/MobicoopMatcher/MobicoopMatcherAdapter.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/**
 * Copyright (c) 2023, MOBICOOP. All rights reserved.
 * This project is dual licensed under AGPL and proprietary licence.
 ***************************
 *    This program is free software: you can redistribute it and/or modify
 *    it under the terms of the GNU Affero General Public License as
 *    published by the Free Software Foundation, either version 3 of the
 *    License, or (at your option) any later version.
 *
 *    This program is distributed in the hope that it will be useful,
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *    GNU Affero General Public License for more details.
 *
 *    You should have received a copy of the GNU Affero General Public License
 *    along with this program.  If not, see <gnu.org/licenses>.
 ***************************
 *    Licence MOBICOOP described in the file
 *    LICENSE
 */

namespace App\Carpool\Service\MobicoopMatcher;

use App\Carpool\Entity\Criteria;
use App\Carpool\Entity\Matching;
use App\Carpool\Entity\MobicoopMatcher\Ad;
use App\Carpool\Entity\MobicoopMatcher\MarginSchedule;
use App\Carpool\Entity\MobicoopMatcher\Schedule;
use App\Carpool\Entity\MobicoopMatcher\Search;
use App\Carpool\Entity\MobicoopMatcher\Waypoint;
use App\Carpool\Entity\Proposal;

/**
 * @author Maxime Bardot <maxime.bardot@mobicoop.org>
 */
class MobicoopMatcherAdapter
{
    public const DATE_FORMAT = 'Y-m-d';
    public const TIME_FORMAT = 'H:i';

    /**
     * @var Proposal
     */
    private $_searchProposal;

    /**
     * @var Search
     */
    private $_search;

    private $_matchingBuilder;

    public function __construct(MobicoopMatcherMatchingBuilder $matchingBuilder)
    {
        $this->_matchingBuilder = $matchingBuilder;
    }

    public function buildSearchFromProposal(Proposal $searchProposal): Search
    {
        $this->_searchProposal = $searchProposal;

        $this->_search = new Search();

        $this->_build();

        return $this->_search;
    }

    public function buildAdFromProposal(Proposal $searchProposal): Ad
    {
        $this->_searchProposal = $searchProposal;

        $this->_search = new Ad($searchProposal->getId());

        $this->_build();

        return $this->_search;
    }

    /**
     * @return Matching[]
     */
    public function buildMatchingsFromMatcherResult(Proposal $searchProposal, array $matcherResults): array
    {
        $matchings = [];
        foreach ($matcherResults as $result) {
            $matchings[] = $this->_matchingBuilder->build($searchProposal, $result);
        }

        return $matchings;
    }

    private function _build()
    {
        $this->_treatStartDate();
        $this->_treatWaypoints();
        $this->_treatRole();
        $this->_treatMargins();

        if (Criteria::FREQUENCY_REGULAR == $this->_searchProposal->getCriteria()->getFrequency()) {
            $this->_buildSchedule();
        }
    }

    private function _buildSchedule()
    {
        $schedule = new Schedule();
        $marginSchedule = new MarginSchedule();

        foreach (Criteria::DAYS as $day) {
            $checker = 'is'.ucfirst($day).'Check';
            $getterTime = 'get'.ucfirst($day).'Time';
            $getterDuration = 'get'.ucfirst($day).'MarginDuration';
            $setterTime = 'set'.ucfirst($day);

            if ($this->_searchProposal->getCriteria()->{$checker}()) {
                $schedule->{$setterTime}($this->_searchProposal->getCriteria()->{$getterTime}()->format(self::TIME_FORMAT));
                $marginSchedule->{$setterTime}($this->_searchProposal->getCriteria()->{$getterDuration}());
            }
        }

        $this->_search->setSchedule($schedule);
        $this->_search->setMarginSchedule($marginSchedule);
    }

    private function _treatStartDate()
    {
        if (Criteria::FREQUENCY_PUNCTUAL == $this->_searchProposal->getCriteria()->getFrequency()) {
            $departure = $this->_searchProposal->getCriteria()->getFromDate()->format(self::DATE_FORMAT).' '.$this->_searchProposal->getCriteria()->getFromTime()->format(self::TIME_FORMAT);
            $this->_search->setDeparture($departure);
        } else {
            $this->_search->setFromDate($this->_searchProposal->getCriteria()->getFromDate()->format(self::DATE_FORMAT));
        }
    }

    private function _treatWaypoints()
    {
        $waypoints = [];
        foreach ($this->_searchProposal->getWaypoints() as $searchProposalWaypoint) {
            $waypoint = new Waypoint();
            $waypoint->setLat($searchProposalWaypoint->getAddress()->getLatitude());
            $waypoint->setLon($searchProposalWaypoint->getAddress()->getLongitude());
            $waypoints[] = $waypoint;
        }

        $this->_search->setWaypoints($waypoints);
    }

    private function _treatRole()
    {
        if ($this->_searchProposal->getCriteria()->isDriver()) {
            $this->_search->setDriver(true);
        }
        if ($this->_searchProposal->getCriteria()->isPassenger()) {
            $this->_search->setPassenger(true);
        }
    }

    private function _treatMargins()
    {
        $this->_search->setMarginDuration($this->_searchProposal->getCriteria()->getMarginDuration());
    }
}