我的控制器。
public function showMonthlyReport($site_id, $report_id){
$reports = Report::where('report_id', $report_id)->firstOrFail();
$uptime = ???
return view('records', compact('site_id', 'report_id', 'reports', 'uptime'));
}
还有我的UptimeRobot.php参考https://uptimerobot.com/api getMonitors()
方法
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "https://api.uptimerobot.com/v2/getMonitors",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => "Your Api Key",
CURLOPT_HTTPHEADER => array(
"cache-control: no-cache",
"content-type: application/x-www-form-urlencoded"
),
));
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
$data = json_decode($response);
$custom_uptime = ($data->monitors[0]->custom_uptime_ratio);
$uptime = explode("-",$custom_uptime);
}
?>
ApiCommand.php
public function handle()
{
include(app_path() . '/Includes/DeepCrawl.php');
include(app_path() . '/Includes/Uptime.php');
include(app_path() . '/Includes/HelloAnalytics.php');
$stringData = ApiCommand::drawGraph($uptime, $dates, $users, $otherResultsRows, $array_issues, $array_pages_breakdown, $array_uncrawled_url, $array_non_200_pages, $array_orphaned_pages, $array_non_indexable_pages, $array_crawl_source_gap, $array_https_http);
Storage::disk('local')->put('hello.txt', $stringData);
}
当前正在构建laravel Web应用程序。
我只是想知道如何从uptimerobot收集数据。我将使用控制器,以便可以将其传递给视图,但是我不知道如何操作。我下面有curl php类型的代码。我真的很困惑我在这里做什么新程序员。有人可以解释我是否在正确的道路上,还是可以在控制器中做。预先感谢。
答案 0 :(得分:1)
我可以提出稍微不同的解决方案:
在单独的console command中提取卷曲代码,并每分钟运行一次此命令(例如,以cron job的身份)。
命令的结果保存到数据库/文件/内存中。
在您的showMonthlyReport()
中引用现有结果。
好处:
showMonthlyReport()
上的卷曲结果。所有代码将异步运行