diff --git a/app/Controllers/Crawler/YamapController.php b/app/Controllers/Crawler/YamapController.php index 5f93353..675fed5 100644 --- a/app/Controllers/Crawler/YamapController.php +++ b/app/Controllers/Crawler/YamapController.php @@ -34,23 +34,19 @@ class YamapController extends CommonController if (!count($items)) { throw new \Exception("Yamap 사이트에서 게시물이 존재하지 않습니다."); } - $max_limit = intval(getenv("yamap.list.item.max_limit")); - $max_limit = count($items) <= $max_limit ? $items : $max_limit; $i = 0; foreach ($items as $item) { - if ($i <= $max_limit) { - try { - //3. DetailPage 처리 : bbs_view > div.contents 가진 객체를 찾아서 처리 - $fileEntitys = $crawler->detailPage($item["detail_url"]); - //4.망보드 일반게시판에 게시물 등록 처리 - if (count($fileEntitys)) { - $crawler->createBoard($item, $fileEntitys); - } - $i++; - log_message("notice", "게시물 {$i}번째 {$item["nickname"]} 작업완료."); - } catch (\Exception $e) { - log_message("debug", $e->getMessage()); + try { + //3. DetailPage 처리 : bbs_view > div.contents 가진 객체를 찾아서 처리 + $fileEntitys = $crawler->detailPage($item["detail_url"]); + //4.망보드 일반게시판에 게시물 등록 처리 + if (count($fileEntitys)) { + $crawler->createBoard($item, $fileEntitys); } + $i++; + log_message("notice", "게시물 {$i}번째 {$item["nickname"]} 작업완료."); + } catch (\Exception $e) { + log_message("debug", $e->getMessage()); } } log_message("notice", "Crawler->" . __FUNCTION__ . " 작업이 완료되었습니다.");