|
@ -1,8 +1,7 @@ |
|
|
<?php |
|
|
<?php |
|
|
namespace App\Jobs; |
|
|
namespace App\Jobs; |
|
|
|
|
|
|
|
|
use DB; |
|
|
|
|
|
use Log; |
|
|
|
|
|
|
|
|
use DB, Log; |
|
|
use App\Jobs\Job; |
|
|
use App\Jobs\Job; |
|
|
use Illuminate\Contracts\Bus\SelfHandling; |
|
|
use Illuminate\Contracts\Bus\SelfHandling; |
|
|
use Illuminate\Contracts\Queue\ShouldQueue; |
|
|
use Illuminate\Contracts\Queue\ShouldQueue; |
|
@ -11,22 +10,30 @@ use DateTime, DateTimeZone; |
|
|
class NotifyOfNewLocations extends Job implements SelfHandling, ShouldQueue |
|
|
class NotifyOfNewLocations extends Job implements SelfHandling, ShouldQueue |
|
|
{ |
|
|
{ |
|
|
private $_dbid; |
|
|
private $_dbid; |
|
|
|
|
|
private $_last_location; |
|
|
|
|
|
|
|
|
public function __construct($dbid) { |
|
|
|
|
|
|
|
|
public function __construct($dbid, $last_location) { |
|
|
$this->_dbid = $dbid; |
|
|
$this->_dbid = $dbid; |
|
|
|
|
|
$this->_last_location = $last_location; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public function handle() { |
|
|
public function handle() { |
|
|
$db = DB::table('databases')->where('id','=',$this->_dbid)->first(); |
|
|
$db = DB::table('databases')->where('id','=',$this->_dbid)->first(); |
|
|
$urls = preg_split('/\s+/', $db->ping_urls); |
|
|
$urls = preg_split('/\s+/', $db->ping_urls); |
|
|
foreach($urls as $url) { |
|
|
foreach($urls as $url) { |
|
|
$ch = curl_init($url); |
|
|
|
|
|
curl_setopt($ch, CURLOPT_POST, true); |
|
|
|
|
|
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query([ |
|
|
|
|
|
'url' => env('BASE_URL').'api/last?token='.$db->read_token.'&geocode=1' |
|
|
|
|
|
])); |
|
|
|
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); |
|
|
|
|
|
curl_exec($ch); |
|
|
|
|
|
|
|
|
if(trim($url)) { |
|
|
|
|
|
$ch = curl_init($url); |
|
|
|
|
|
curl_setopt($ch, CURLOPT_POST, true); |
|
|
|
|
|
curl_setopt($ch, CURLOPT_HTTPHEADER, [ |
|
|
|
|
|
'Content-Type: application/json', |
|
|
|
|
|
'Authorization: Bearer '.$db->read_token, |
|
|
|
|
|
'Compass-Url: '.env('BASE_URL').'api/last?token='.$db->read_token.'&geocode=1' |
|
|
|
|
|
]); |
|
|
|
|
|
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($this->_last_location)); |
|
|
|
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); |
|
|
|
|
|
curl_exec($ch); |
|
|
|
|
|
Log::info("Notifying ".$url." with current location"); |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |