| 
									
										
										
										
											2018-04-10 21:18:38 +02: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 21:20:21 +02:00
										 |  |  | use GuzzleHttp\Client; | 
					
						
							|  |  |  | use GuzzleHttp\Exception\GuzzleException; | 
					
						
							| 
									
										
										
										
											2018-04-10 21:18:38 +02:00
										 |  |  | use Log; | 
					
						
							| 
									
										
										
										
											2018-08-06 19:14:30 +02:00
										 |  |  | use RuntimeException; | 
					
						
							| 
									
										
										
										
											2018-04-10 21:18:38 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * 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 21:20:21 +02:00
										 |  |  |             $client = new Client; | 
					
						
							|  |  |  |             $res    = $client->request('GET', 'https://api.ipify.org'); | 
					
						
							|  |  |  |         } catch (GuzzleException|Exception $e) { | 
					
						
							| 
									
										
										
										
											2018-04-10 21:18:38 +02: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 21:20:21 +02:00
										 |  |  |         if (200 !== $res->getStatusCode()) { | 
					
						
							| 
									
										
										
										
											2018-07-28 10:45:16 +02:00
										 |  |  |             Log::warning(sprintf('Could not retrieve external IP: %d', $res->getStatusCode())); | 
					
						
							| 
									
										
										
										
											2018-04-10 21:18:38 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |             return null; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-07-28 10:45:16 +02:00
										 |  |  |         try { | 
					
						
							|  |  |  |             $body = (string)$res->getBody()->getContents(); | 
					
						
							| 
									
										
										
										
											2018-08-06 19:14:30 +02:00
										 |  |  |         } catch (RuntimeException $e) { | 
					
						
							| 
									
										
										
										
											2018-07-28 10:45:16 +02:00
										 |  |  |             Log::error(sprintf('Could not get body from ipify.org result: %s', $e->getMessage())); | 
					
						
							|  |  |  |             $body = null; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-04-10 21:18:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 10:45:16 +02:00
										 |  |  |         return $body; | 
					
						
							| 
									
										
										
										
											2018-04-10 21:18:38 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-05-05 16:51:32 +02:00
										 |  |  | } |