2018-04-10 14:18:38 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* IpifyOrg.php
|
|
|
|
* Copyright (c) 2018 thegrumpydictator@gmail.com
|
|
|
|
*
|
|
|
|
* This file is part of Firefly III.
|
|
|
|
*
|
|
|
|
* Firefly III is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Firefly III 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace FireflyIII\Services\IP;
|
|
|
|
|
|
|
|
use Exception;
|
2018-06-06 14:20:21 -05:00
|
|
|
use GuzzleHttp\Client;
|
|
|
|
use GuzzleHttp\Exception\GuzzleException;
|
2018-04-10 14:18:38 -05:00
|
|
|
use Log;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class IpifyOrg
|
|
|
|
*/
|
|
|
|
class IpifyOrg implements IPRetrievalInterface
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Returns the user's IP address.
|
|
|
|
*
|
|
|
|
* @noinspection MultipleReturnStatementsInspection
|
|
|
|
* @return null|string
|
|
|
|
*/
|
|
|
|
public function getIP(): ?string
|
|
|
|
{
|
|
|
|
try {
|
2018-06-06 14:20:21 -05:00
|
|
|
$client = new Client;
|
|
|
|
$res = $client->request('GET', 'https://api.ipify.org');
|
|
|
|
} catch (GuzzleException|Exception $e) {
|
2018-04-10 14:18:38 -05:00
|
|
|
Log::warning(sprintf('The ipify.org service could not retrieve external IP: %s', $e->getMessage()));
|
|
|
|
Log::warning($e->getTraceAsString());
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
2018-06-06 14:20:21 -05:00
|
|
|
if (200 !== $res->getStatusCode()) {
|
|
|
|
Log::warning(sprintf('Could not retrieve external IP: %d %s', $res->getStatusCode(), $res->getBody()->getContents()));
|
2018-04-10 14:18:38 -05:00
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2018-06-06 14:20:21 -05:00
|
|
|
return (string)$res->getBody()->getContents();
|
2018-04-10 14:18:38 -05:00
|
|
|
}
|
2018-05-05 09:51:32 -05:00
|
|
|
}
|