Your IP : 13.59.34.214
<?php
namespace Bitrix\Location\Source;
use Bitrix\Location\Entity\Source\Factory;
use Bitrix\Location\Entity\Source\OrmConverter;
use Bitrix\Location\Infrastructure\SourceCodePicker;
use Bitrix\Location\Repository\SourceRepository;
use Bitrix\Location\Source\Google;
use Bitrix\Location\Source\Osm;
use Bitrix\Main\Result;
class SourceSelector
{
protected $sourceRepository;
public function __construct(SourceRepository $sourceRepository = null)
{
$this->sourceRepository = $sourceRepository ?: new SourceRepository(new OrmConverter());
}
public function setSource(string $sourceCode, IConfigFactory $configFactory): Result
{
$result = new Result();
$source = $this->sourceRepository->findByCode($sourceCode);
if (!$source)
{
$source = Factory::makeSource($sourceCode);
$source->setName($sourceCode);
}
$source->setConfig(
$configFactory->createConfig()
);
$res = $this->sourceRepository->save($source);
if(!$res->isSuccess())
{
$result->addErrors($res->getErrors());
}
SourceCodePicker::setSourceCode($sourceCode);
return $result;
}
public static function setGoogleSource(string $frontendKey, string $backendKey): Result
{
$sourceSelector = new self();
$configFactory = new Google\ConfigFactory($frontendKey, $backendKey);
return $sourceSelector->setSource(Factory::GOOGLE_SOURCE_CODE, $configFactory);
}
public static function setOsmSource(string $serviceUrl, string $token): Result
{
$sourceSelector = new self();
$configFactory = new Osm\ConfigFactory($serviceUrl, $token);
return $sourceSelector->setSource(Factory::OSM_SOURCE_CODE, $configFactory);
}
}