2025-05-26 11:55:44 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Service;
|
|
|
|
|
|
|
|
use Symfony\Contracts\HttpClient\HttpClientInterface;
|
2025-05-26 12:57:10 +02:00
|
|
|
use Doctrine\ORM\EntityManagerInterface;
|
2025-05-26 11:55:44 +02:00
|
|
|
|
|
|
|
class Motocultrice
|
|
|
|
{
|
|
|
|
private $overpassApiUrl = 'https://overpass-api.de/api/interpreter';
|
2025-05-26 16:22:01 +02:00
|
|
|
private $osmApiUrl = 'https://www.openstreetmap.org/api/0.6';
|
2025-05-26 11:55:44 +02:00
|
|
|
|
|
|
|
public function __construct(
|
2025-05-26 12:57:10 +02:00
|
|
|
private HttpClientInterface $client,
|
|
|
|
private EntityManagerInterface $entityManager
|
2025-05-26 11:55:44 +02:00
|
|
|
) {
|
|
|
|
}
|
|
|
|
|
|
|
|
public function labourer(string $zone): array
|
|
|
|
{
|
2025-05-26 12:57:10 +02:00
|
|
|
if (!$zone) {
|
|
|
|
throw new \InvalidArgumentException("La zone ne peut pas être vide");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Nettoyer et échapper la zone pour la requête
|
|
|
|
$zone = addslashes(trim($zone));
|
|
|
|
|
2025-05-26 11:55:44 +02:00
|
|
|
$query = <<<QUERY
|
|
|
|
[out:json][timeout:25];
|
2025-05-26 12:57:10 +02:00
|
|
|
area["postal_code"="{$zone}"]->.searchArea;
|
2025-05-26 11:55:44 +02:00
|
|
|
(
|
2025-05-26 12:57:10 +02:00
|
|
|
// Recherche des commerces et services avec email
|
|
|
|
nw["amenity"]["contact:email"](area.searchArea);
|
|
|
|
nw["amenity"]["email"](area.searchArea);
|
|
|
|
nw["shop"]["contact:email"](area.searchArea);
|
|
|
|
nw["shop"]["email"](area.searchArea);
|
|
|
|
nw["office"]["contact:email"](area.searchArea);
|
|
|
|
nw["office"]["email"](area.searchArea);
|
|
|
|
|
|
|
|
// Recherche des commerces et services sans email pour référence
|
|
|
|
nw["amenity"](area.searchArea);
|
|
|
|
nw["shop"](area.searchArea);
|
|
|
|
nw["office"](area.searchArea);
|
2025-05-26 11:55:44 +02:00
|
|
|
);
|
|
|
|
out body;
|
|
|
|
>;
|
|
|
|
out skel qt;
|
2025-05-26 12:57:10 +02:00
|
|
|
QUERY;
|
2025-05-26 11:55:44 +02:00
|
|
|
|
|
|
|
try {
|
|
|
|
$response = $this->client->request('POST', $this->overpassApiUrl, [
|
|
|
|
'body' => ['data' => $query]
|
|
|
|
]);
|
|
|
|
|
|
|
|
$data = json_decode($response->getContent(), true);
|
|
|
|
|
2025-05-26 12:57:10 +02:00
|
|
|
$places = [];
|
2025-05-26 11:55:44 +02:00
|
|
|
if (isset($data['elements'])) {
|
|
|
|
foreach ($data['elements'] as $element) {
|
2025-05-26 12:57:10 +02:00
|
|
|
if (isset($element['tags'])) {
|
|
|
|
$email = $element['tags']['contact:email'] ?? $element['tags']['email'] ?? null;
|
|
|
|
// On passe si pas d'email
|
|
|
|
if (!$email) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$places[] = [
|
2025-05-26 11:55:44 +02:00
|
|
|
'id' => $element['id'],
|
|
|
|
'type' => $element['type'],
|
2025-05-26 12:57:10 +02:00
|
|
|
'name' => $element['tags']['name'] ?? '',
|
|
|
|
'email' => $email,
|
2025-05-26 11:55:44 +02:00
|
|
|
'lat' => $element['lat'] ?? null,
|
|
|
|
'lon' => $element['lon'] ?? null,
|
|
|
|
'tags' => $element['tags']
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-05-26 12:57:10 +02:00
|
|
|
return $places;
|
2025-05-26 11:55:44 +02:00
|
|
|
} catch (\Exception $e) {
|
|
|
|
throw new \Exception("Erreur lors de la requête Overpass : " . $e->getMessage());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-05-26 12:57:10 +02:00
|
|
|
public function get_osm_object_data($osm_kind = 'node', $osm_object_id = 12855459190)
|
2025-05-26 11:55:44 +02:00
|
|
|
{
|
2025-05-26 12:57:10 +02:00
|
|
|
$object_id = "https://www.openstreetmap.org/api/0.6/".$osm_kind."/".$osm_object_id;
|
2025-05-26 11:55:44 +02:00
|
|
|
|
|
|
|
try {
|
|
|
|
$response = $this->client->request('GET', $object_id);
|
|
|
|
$xml = simplexml_load_string($response->getContent());
|
|
|
|
$json = json_encode($xml);
|
|
|
|
$osm_object_data = json_decode($json, true);
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
throw new \Exception("Impossible de récupérer les données OSM : " . $e->getMessage());
|
|
|
|
}
|
|
|
|
|
|
|
|
// convertir les tags en clés et valeurs
|
|
|
|
$osm_object_data['tags_converted'] = [];
|
2025-05-26 12:57:10 +02:00
|
|
|
// Initialiser le tableau des tags convertis
|
|
|
|
if (isset($osm_object_data['node'])) {
|
|
|
|
$osm_object_data['node']['tags_converted'] = [];
|
|
|
|
} elseif (isset($osm_object_data['way'])) {
|
|
|
|
$osm_object_data['way']['tags_converted'] = [];
|
|
|
|
}
|
|
|
|
if(isset($osm_object_data['node'])){
|
|
|
|
foreach ($osm_object_data['node']['tag'] as $attribute) {
|
|
|
|
$osm_object_data['node']['tags_converted'][$attribute['@attributes']['k']] = $attribute['@attributes']['v'];
|
|
|
|
}
|
|
|
|
return $osm_object_data['node'];
|
|
|
|
}
|
|
|
|
if(isset($osm_object_data['way'])){
|
|
|
|
foreach ($osm_object_data['way']['tag'] as $attribute) {
|
|
|
|
$osm_object_data['way']['tags_converted'][$attribute['@attributes']['k']] = $attribute['@attributes']['v'];
|
|
|
|
}
|
|
|
|
return $osm_object_data['way'];
|
2025-05-26 11:55:44 +02:00
|
|
|
}
|
|
|
|
|
2025-05-26 12:57:10 +02:00
|
|
|
return $osm_object_data;
|
2025-05-26 11:55:44 +02:00
|
|
|
}
|
2025-05-26 12:57:10 +02:00
|
|
|
|
2025-05-26 11:55:44 +02:00
|
|
|
|
2025-05-26 12:57:10 +02:00
|
|
|
public function uuid_create() {
|
|
|
|
return sprintf( '%04x%04x-%04x-%04x-%04x-%04x%04x%04x',
|
|
|
|
// 32 bits for "time_low"
|
|
|
|
mt_rand( 0, 0xffff ), mt_rand( 0, 0xffff ),
|
2025-05-26 11:55:44 +02:00
|
|
|
|
2025-05-26 12:57:10 +02:00
|
|
|
// 16 bits for "time_mid"
|
|
|
|
mt_rand( 0, 0xffff ),
|
|
|
|
|
|
|
|
// 16 bits for "time_hi_and_version",
|
|
|
|
// four most significant bits holds version number 4
|
|
|
|
mt_rand( 0, 0x0fff ) | 0x4000,
|
|
|
|
|
|
|
|
// 16 bits, 8 bits for "clk_seq_hi_res",
|
|
|
|
// 8 bits for "clk_seq_low",
|
|
|
|
// two most significant bits holds zero and one for variant DCE1.1
|
|
|
|
mt_rand( 0, 0x3fff ) | 0x8000,
|
|
|
|
|
|
|
|
// 48 bits for "node"
|
|
|
|
mt_rand( 0, 0xffff ), mt_rand( 0, 0xffff ), mt_rand( 0, 0xffff )
|
|
|
|
);
|
|
|
|
}
|
2025-05-26 16:22:01 +02:00
|
|
|
|
|
|
|
public function formatOsmDataForSubmit(array $data): array
|
|
|
|
{
|
|
|
|
// Garder uniquement les tags essentiels
|
|
|
|
$essentialTags = [
|
|
|
|
'name',
|
|
|
|
'opening_hours',
|
|
|
|
'phone',
|
|
|
|
'contact:email',
|
|
|
|
'contact:phone',
|
|
|
|
'website',
|
|
|
|
'contact:website',
|
|
|
|
'wheelchair',
|
|
|
|
'addr:housenumber',
|
|
|
|
'addr:street',
|
|
|
|
'addr:city',
|
|
|
|
'addr:postcode',
|
|
|
|
'amenity',
|
|
|
|
'shop',
|
|
|
|
'tourism',
|
|
|
|
'source',
|
|
|
|
'ref:FR:SIRET'
|
|
|
|
];
|
|
|
|
|
|
|
|
$formattedData = [
|
|
|
|
'node' => [
|
|
|
|
'@attributes' => [
|
|
|
|
'id' => $data['@attributes']['id'],
|
|
|
|
'version' => $data['@attributes']['version'],
|
|
|
|
'changeset' => $data['@attributes']['changeset'],
|
|
|
|
'lat' => $data['@attributes']['lat'],
|
|
|
|
'lon' => $data['@attributes']['lon']
|
|
|
|
],
|
|
|
|
'tag' => []
|
|
|
|
]
|
|
|
|
];
|
|
|
|
|
|
|
|
// Filtrer et ajouter uniquement les tags essentiels
|
|
|
|
if (isset($data['tag'])) {
|
|
|
|
foreach ($data['tag'] as $tag) {
|
|
|
|
if (in_array($tag['@attributes']['k'], $essentialTags)) {
|
|
|
|
$formattedData['node']['tag'][] = $tag;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $formattedData;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function arrayToXml(array $data): string
|
|
|
|
{
|
|
|
|
$xml = new \SimpleXMLElement('<?xml version="1.0" encoding="UTF-8"?><osm></osm>');
|
|
|
|
|
|
|
|
if (isset($data['node'])) {
|
|
|
|
$node = $xml->addChild('node');
|
|
|
|
foreach ($data['node']['@attributes'] as $key => $value) {
|
|
|
|
$node->addAttribute($key, $value);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($data['node']['tag'])) {
|
|
|
|
foreach ($data['node']['tag'] as $tag) {
|
|
|
|
$tagElement = $node->addChild('tag');
|
|
|
|
$tagElement->addAttribute('k', $tag['@attributes']['k']);
|
|
|
|
$tagElement->addAttribute('v', $tag['@attributes']['v']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $xml->asXML();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function submitOsmData(array $data): void
|
|
|
|
{
|
|
|
|
$formattedData = $this->formatOsmDataForSubmit($data);
|
|
|
|
$xmlData = $this->arrayToXml($formattedData);
|
|
|
|
|
|
|
|
try {
|
|
|
|
$response = $this->client->request('PUT',
|
|
|
|
"{$this->osmApiUrl}/node/{$data['@attributes']['id']}",
|
|
|
|
[
|
|
|
|
'body' => $xmlData,
|
|
|
|
'headers' => [
|
|
|
|
'Content-Type' => 'application/xml; charset=utf-8'
|
|
|
|
]
|
|
|
|
]
|
|
|
|
);
|
|
|
|
|
|
|
|
if ($response->getStatusCode() !== 200) {
|
|
|
|
throw new \Exception("Erreur lors de la soumission des données : " . $response->getContent());
|
|
|
|
}
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
throw new \Exception("Erreur lors de la communication avec l'API OSM : " . $e->getMessage());
|
|
|
|
}
|
|
|
|
}
|
2025-05-26 11:55:44 +02:00
|
|
|
}
|