2015-06-20 16:40:05 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Name: Geocoordinates
|
|
|
|
* Description: Use the OpenCage Geocoder http://geocoder.opencagedata.com to resolve nearest populated location for given latitude, longitude. Derived from "geonames"
|
|
|
|
* Version: 0.1
|
|
|
|
* Author: Michael Vogel <https://pirati.ca/profile/heluecht>
|
|
|
|
*/
|
2020-03-04 21:07:04 +00:00
|
|
|
|
2022-06-23 05:16:22 +00:00
|
|
|
use Friendica\App;
|
2018-12-26 07:28:16 +00:00
|
|
|
use Friendica\Core\Hook;
|
2018-10-29 23:40:18 +00:00
|
|
|
use Friendica\Core\Logger;
|
2018-10-31 14:55:15 +00:00
|
|
|
use Friendica\Core\Renderer;
|
2020-01-18 21:07:06 +00:00
|
|
|
use Friendica\DI;
|
2017-11-06 23:55:24 +00:00
|
|
|
|
2017-11-09 16:08:32 +00:00
|
|
|
function geocoordinates_install()
|
|
|
|
{
|
2018-12-26 07:28:16 +00:00
|
|
|
Hook::register('post_local', 'addon/geocoordinates/geocoordinates.php', 'geocoordinates_post_hook');
|
|
|
|
Hook::register('post_remote', 'addon/geocoordinates/geocoordinates.php', 'geocoordinates_post_hook');
|
2015-06-20 16:40:05 +00:00
|
|
|
}
|
|
|
|
|
2022-06-30 11:32:13 +00:00
|
|
|
function geocoordinates_resolve_item(array &$item)
|
2017-11-09 16:08:32 +00:00
|
|
|
{
|
2022-06-30 11:32:13 +00:00
|
|
|
if ((!$item['coord']) || ($item['location'])) {
|
2015-06-20 16:40:05 +00:00
|
|
|
return;
|
2022-06-30 11:32:13 +00:00
|
|
|
}
|
2015-06-20 16:40:05 +00:00
|
|
|
|
2022-06-30 11:32:13 +00:00
|
|
|
$key = DI::config()->get('geocoordinates', 'api_key');
|
|
|
|
if ($key == '') {
|
2015-06-20 16:40:05 +00:00
|
|
|
return;
|
2022-06-30 11:32:13 +00:00
|
|
|
}
|
2015-06-20 16:40:05 +00:00
|
|
|
|
2022-06-30 11:32:13 +00:00
|
|
|
$language = DI::config()->get('geocoordinates', 'language');
|
|
|
|
if ($language == '') {
|
|
|
|
$language = 'de';
|
|
|
|
}
|
2015-06-20 16:40:05 +00:00
|
|
|
|
2022-06-30 11:32:13 +00:00
|
|
|
$coords = explode(' ', $item['coord']);
|
2015-06-20 23:58:19 +00:00
|
|
|
|
2022-06-30 11:32:13 +00:00
|
|
|
if (count($coords) < 2) {
|
2015-06-20 23:58:19 +00:00
|
|
|
return;
|
2022-06-30 11:32:13 +00:00
|
|
|
}
|
2015-06-20 23:58:19 +00:00
|
|
|
|
|
|
|
$coords[0] = round($coords[0], 5);
|
|
|
|
$coords[1] = round($coords[1], 5);
|
|
|
|
|
2022-06-30 11:32:13 +00:00
|
|
|
$result = DI::cache()->get('geocoordinates:' . $language . ':' . $coords[0] . '-' . $coords[1]);
|
2015-06-20 16:40:05 +00:00
|
|
|
if (!is_null($result)) {
|
2022-06-30 11:32:13 +00:00
|
|
|
$item['location'] = $result;
|
2015-06-20 16:40:05 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-06-30 11:32:13 +00:00
|
|
|
$s = DI::httpClient()->fetch('https://api.opencagedata.com/geocode/v1/json?q=' . $coords[0] . ',' . $coords[1] . '&key=' . $key . '&language=' . $language);
|
2015-06-20 16:40:05 +00:00
|
|
|
|
|
|
|
if (!$s) {
|
2022-06-30 11:32:13 +00:00
|
|
|
Logger::info('API could not be queried');
|
2015-06-20 16:40:05 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$data = json_decode($s);
|
|
|
|
|
2022-06-30 11:32:13 +00:00
|
|
|
if ($data->status->code != '200') {
|
|
|
|
Logger::info('API returned error ' . $data->status->code . ' ' . $data->status->message);
|
2015-06-20 16:40:05 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-06-09 01:20:27 +00:00
|
|
|
if (($data->total_results == 0) || (count($data->results) == 0)) {
|
2022-06-30 11:32:13 +00:00
|
|
|
Logger::info('No results found for coordinates ' . $item['coord']);
|
2015-06-20 16:40:05 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-06-30 11:32:13 +00:00
|
|
|
$item['location'] = $data->results[0]->formatted;
|
2015-06-20 16:40:05 +00:00
|
|
|
|
2022-06-30 11:32:13 +00:00
|
|
|
Logger::info('Got location for coordinates ' . $coords[0] . '-' . $coords[1] . ': ' . $item['location']);
|
2015-06-20 16:40:05 +00:00
|
|
|
|
2022-06-30 11:32:13 +00:00
|
|
|
if ($item['location'] != '') {
|
|
|
|
DI::cache()->set('geocoordinates:' . $language.':' . $coords[0] . '-' . $coords[1], $item['location']);
|
|
|
|
}
|
2015-06-20 16:40:05 +00:00
|
|
|
}
|
|
|
|
|
2022-06-23 05:16:22 +00:00
|
|
|
function geocoordinates_post_hook(App $a, &$item)
|
2017-11-09 16:08:32 +00:00
|
|
|
{
|
2015-06-20 16:40:05 +00:00
|
|
|
geocoordinates_resolve_item($item);
|
|
|
|
}
|
|
|
|
|
2022-06-30 11:32:13 +00:00
|
|
|
function geocoordinates_addon_admin(App $a, string &$o)
|
2017-11-09 16:08:32 +00:00
|
|
|
{
|
2022-06-30 11:32:13 +00:00
|
|
|
$t = Renderer::getMarkupTemplate('admin.tpl', 'addon/geocoordinates/');
|
2015-06-20 16:40:05 +00:00
|
|
|
|
2018-10-31 14:55:15 +00:00
|
|
|
$o = Renderer::replaceMacros($t, [
|
2020-01-18 19:52:33 +00:00
|
|
|
'$submit' => DI::l10n()->t('Save Settings'),
|
2020-01-19 20:21:12 +00:00
|
|
|
'$api_key' => ['api_key', DI::l10n()->t('API Key'), DI::config()->get('geocoordinates', 'api_key'), ''],
|
|
|
|
'$language' => ['language', DI::l10n()->t('Language code (IETF format)'), DI::config()->get('geocoordinates', 'language'), ''],
|
2018-01-15 13:15:33 +00:00
|
|
|
]);
|
2015-06-20 16:40:05 +00:00
|
|
|
}
|
|
|
|
|
2022-06-23 05:16:22 +00:00
|
|
|
function geocoordinates_addon_admin_post(App $a)
|
2017-11-09 16:08:32 +00:00
|
|
|
{
|
2022-06-30 11:32:13 +00:00
|
|
|
DI::config()->set('geocoordinates', 'api_key', trim($_POST['api_key'] ?? ''));
|
|
|
|
DI::config()->set('geocoordinates', 'language', trim($_POST['language'] ?? ''));
|
2015-06-20 16:40:05 +00:00
|
|
|
}
|