_config = $config; if (function_exists("pcntl_signal")) { pcntl_signal(SIGTERM, array($this, "sigHandler")); pcntl_signal(SIGINT, array($this, "sigHandler")); } $this->_httpClient = $client; $this->_userStorage = $userStorage; $this->_logger = Logger::getLogger("main"); $this->_lockFile = DOCUMENT_ROOT."/var/.lock"; $this->_lock(); $this->_running = true; $this->_logger->info("[Pid ".getmypid()."] Vérification des alertes."); $this->_mailer = new PHPMailer($exceptions=true); $this->_mailer->setLanguage("fr", DOCUMENT_ROOT."/lib/PHPMailer/language/"); $this->_mailer->CharSet = "utf-8"; if ($config->hasSection("mailer")) { if ($smtp = $config->get("mailer", "smtp", array())) { $this->_mailer->SMTPKeepAlive = true; if (!empty($smtp["host"])) { $this->_mailer->Host = $smtp["host"]; if (!empty($smtp["port"])) { $this->_mailer->Port = $smtp["port"]; } $this->_mailer->isSMTP(); } if (!empty($smtp["username"])) { $this->_mailer->SMTPAuth = true; $this->_mailer->Username = $smtp["username"]; } if (!empty($smtp["password"])) { $this->_mailer->SMTPAuth = true; $this->_mailer->Password = $smtp["password"]; } if (!empty($smtp["secure"])) { $this->_mailer->SMTPSecure = $smtp["secure"]; } } if ($from = $config->get("mailer", "from", null)) { $this->_mailer->Sender = $from; $this->_mailer->From = $from; $this->_mailer->FromName = $from; } } $this->_mailer->isHTML(true); } public function __destruct() { $this->shutdown(); } public function check() { $checkStart = (int)$this->_config->get("general", "check_start", 7); $checkEnd = (int)$this->_config->get("general", "check_end", 24); if ($checkStart > 23) { $checkStart = 0; } if ($checkEnd < 1) { $checkEnd = 24; } $hour = (int)date("G"); if ($hour < $checkStart || $hour >= $checkEnd) { $this->_logger->info("[Pid ".getmypid()."] Hors de la plage horaire. Contrôle annulé."); return; } $this->_checkConnection(); $users = $this->_userStorage->fetchAll(); // génération d'URL court pour les SMS $curlTinyurl = curl_init(); curl_setopt($curlTinyurl, CURLOPT_RETURNTRANSFER, 1); $storageType = $this->_config->get("storage", "type", "files"); $baseurl = $this->_config->get("general", "baseurl", ""); foreach ($users AS $user) { if ($storageType == "db") { $storage = new \App\Storage\Db\Alert($this->_userStorage->getDbConnection(), $user); $this->_logger->info("[Pid ".getmypid()."] USER : ".$user->getUsername()); } else { $file = DOCUMENT_ROOT."/var/configs/".$user->getUsername().".csv"; if (!is_file($file)) { continue; } $storage = new \App\Storage\File\Alert($file); $this->_logger->info("[Pid ".getmypid()."] USER : ".$user->getUsername()." (".$file.")"); } $reset_filename = DOCUMENT_ROOT."/var/tmp/reset_".$user->getId(); $reset = is_file($reset_filename); if ($reset) { unlink($reset_filename); } // configuration des notifications. $notifications = array(); $notifications_enabled = $user->getNotificationsEnabled(); foreach ($notifications_enabled AS $notification_name => $options) { if (!is_array($options)) { continue; } try { $notifications[$notification_name] = \Message\AdapterFactory::factory($notification_name, $options); $this->_logger->debug( "[Pid ".getmypid()."] USER : ".$user->getUsername(). " -> Notification ".get_class($notifications[$notification_name])." activée" ); } catch (\Exception $e) { $this->_logger->warn( "[Pid ".getmypid()."] USER : ".$user->getUsername(). " -> Notification ".$notification_name." invalide" ); } } $alerts = $storage->fetchAll(); $this->_logger->info( "[Pid ".getmypid()."] USER : ".$user->getUsername()." -> ". count($alerts)." alerte".(count($alerts) > 1 ? "s" : ""). " trouvée".(count($alerts) > 1 ? "s" : "")); if (count($alerts) == 0) { continue; } foreach ($alerts AS $i => $alert) { $log_id = "[Pid ".getmypid()."] USER : ".$user->getUsername()." - ALERT ID : ".$alert->id." -> "; try { $config = SiteConfigFactory::factory($alert->url); } catch (Exception $e) { $this->_logger->warn($log_id.$e->getMessage()); continue; } $unique_ads = $user->getOption("unique_ads"); /** * Si le site ne fourni pas de date par annonce, * on est obligé de baser la dernière annonce reçue sur l'ID. */ if (!$config->getOption("has_date")) { $unique_ads = true; } $currentTime = time(); if (!isset($alert->time_updated)) { $alert->time_updated = 0; } if ($reset) { $alert->time_updated = 0; $alert->last_id = array(); $alert->max_id = 0; $alert->time_last_ad = 0; } if (((int)$alert->time_updated + (int)$alert->interval*60) > $currentTime || $alert->suspend) { continue; } $this->_logger->info($log_id."URL : ".$alert->url); try { $parser = \AdService\ParserFactory::factory($alert->url); } catch (\AdService\Exception $e) { $this->_logger->warn($log_id." ".$e->getMessage()); continue; } $this->_logger->debug($log_id."Dernière mise à jour : ".( !empty($alert->time_updated) ? date("d/m/Y H:i", (int) $alert->time_updated) : "inconnue" )); $this->_logger->debug($log_id."Dernière annonce : ".( !empty($alert->time_last_ad) ? date("d/m/Y H:i", (int) $alert->time_last_ad) : "inconnue" )); $alert->time_updated = $currentTime; if (!$content = $this->_httpClient->request($alert->url)) { $this->_logger->error($log_id."Curl Error : ".$this->_httpClient->getError()); continue; } $cities = array(); if ($alert->cities) { $cities = array_map("trim", explode("\n", mb_strtolower($alert->cities))); } $filter = new \AdService\Filter(array( "price_min" => $alert->price_min, "price_max" => $alert->price_max, "cities" => $cities, "price_strict" => (bool)$alert->price_strict, "categories" => $alert->getCategories(), "min_id" => $unique_ads ? $alert->max_id : 0, "exclude_ids" => $alert->last_id, )); $ads = $parser->process( $content, $filter, parse_url($alert->url, PHP_URL_SCHEME) ); $countAds = count($ads); /** * Migrer vers le nouveau système de détection d'annonce. */ if (is_numeric($alert->last_id)) { $filter->setExcludeIds(array()); $alert->last_id = array(); $tmp_ads = $parser->process( $content, $filter, parse_url($alert->url, PHP_URL_SCHEME) ); foreach ($tmp_ads AS $tmp_ad) { $alert->last_id[] = $tmp_ad->getId(); } unset($tmp_ads, $tmp_ad); } if ($countAds == 0) { $storage->save($alert); continue; } $siteConfig = \AdService\SiteConfigFactory::factory($alert->url); $newAds = array(); foreach ($ads AS $ad) { $time = $ad->getDate(); $id = $ad->getId(); $newAds[$id] = require DOCUMENT_ROOT."/app/mail/views/mail-ad.phtml"; if (!in_array($id, $alert->last_id)) { array_unshift($alert->last_id, $id); } if ($time && $alert->time_last_ad < $time) { $alert->time_last_ad = $time; } if ($unique_ads && $id > $alert->max_id) { $alert->max_id = $id; } } // On conserve 250 IDs d'annonce vues. if (250 < count($alert->last_id)) { $alert->last_id = array_slice($alert->last_id, 0, 250); } if (!$newAds) { $storage->save($alert); continue; } $countAds = count($newAds); $this->_logger->info( $log_id.$countAds. " annonce".($countAds > 1 ? "s" : ""). " trouvée".($countAds > 1?"s":"") ); $this->_mailer->clearAddresses(); $error = false; if ($alert->send_mail) { try { $emails = explode(",", $alert->email); foreach ($emails AS $email) { $this->_mailer->addAddress(trim($email)); } } catch (phpmailerException $e) { $this->_logger->warn($log_id.$e->getMessage()); $error = true; } if (!$error) { $message_header = '
LIEN DE RECHERCHE'; if ($baseurl) { $message_header .= ' - MODIFIER - ACTIVER / DÉSACTIVER - SUPPRIMER '; } $message_header .= '
'; $message_header .= ''. $newAdsCount.' nouvelle'.($newAdsCount > 1?'s':''). ' annonce'.($newAdsCount > 1?'s':''). ' - '.date("d/m/Y à H:i", $currentTime).'
'; $message .= '