mirror of
https://github.com/ZeJMaN/LBCAlerte_ynh.git
synced 2025-07-06 11:50:48 +02:00
Initial commit
Functional, without SSO
This commit is contained in:
561
sources/app/mail/scripts/check.php
Normal file
561
sources/app/mail/scripts/check.php
Normal file
@ -0,0 +1,561 @@
|
||||
<?php
|
||||
|
||||
set_time_limit(0);
|
||||
|
||||
use AdService\SiteConfigFactory;
|
||||
|
||||
class Main
|
||||
{
|
||||
/**
|
||||
* @var HttpClientAbstract
|
||||
*/
|
||||
protected $_httpClient;
|
||||
|
||||
/**
|
||||
* @var Config_Lite
|
||||
*/
|
||||
protected $_config;
|
||||
|
||||
/**
|
||||
* @var PHPMailer
|
||||
*/
|
||||
protected $_mailer;
|
||||
|
||||
/**
|
||||
* @var App\User\Storage
|
||||
*/
|
||||
protected $_userStorage;
|
||||
|
||||
protected $_lockFile;
|
||||
protected $_logger;
|
||||
protected $_running = false;
|
||||
|
||||
public function __construct(
|
||||
\Config_Lite $config,
|
||||
\HttpClientAbstract $client,
|
||||
\App\Storage\User $userStorage)
|
||||
{
|
||||
$this->_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_params = $user->getOption("notification");
|
||||
if ($notifications_params && is_array($notifications_params)) {
|
||||
foreach ($notifications_params 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->err($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) {
|
||||
if ($alert->group_ads) {
|
||||
$newAdsCount = count($newAds);
|
||||
$subject = "Alerte ".$siteConfig->getOption("site_name")." : ".$alert->title;
|
||||
$message = '
|
||||
<h1 style="font-size: 16px;">Alerte : '.htmlspecialchars($alert->title, null, "UTF-8").'</h1>
|
||||
<p style="font-size: 14px; margin: 0;"><strong><a href="'.htmlspecialchars($alert->url, null, "UTF-8").'"
|
||||
style="text-decoration: none; color: #0B6CDA;">LIEN DE RECHERCHE</a>';
|
||||
if ($baseurl) {
|
||||
$message .= '
|
||||
- <a href="'.$baseurl.'?mod=mail&a=form&id='. $alert->id .
|
||||
'" style="text-decoration: none; color: #E77600;">MODIFIER</a>
|
||||
- <a href="'.$baseurl.'?mod=mail&a=toggle_status&s=suspend&id='. $alert->id .
|
||||
'" style="text-decoration: none; color: #999999;">ACTIVER / DÉSACTIVER</a>
|
||||
- <a href="'.$baseurl.'?mod=mail&a=form-delete&id='. $alert->id .
|
||||
'" style="text-decoration: none; color: #FF0000;">SUPPRIMER</a>
|
||||
';
|
||||
}
|
||||
$message .= '</strong></p>';
|
||||
$message .= '<hr />';
|
||||
$message .= '<p style="font-size: 16px; margin: 10px 0;"><strong>'.
|
||||
$newAdsCount.' nouvelle'.($newAdsCount > 1?'s':'').
|
||||
' annonce'.($newAdsCount > 1?'s':'').
|
||||
' - '.date("d/m/Y à H:i", $currentTime).'</strong></p>';
|
||||
$message .= '<hr /><br />';
|
||||
$message .= implode("<br /><hr /><br />", $newAds);
|
||||
$message .= '<hr /><br />';
|
||||
|
||||
$this->_mailer->Subject = $subject;
|
||||
$this->_mailer->Body = $message;
|
||||
try {
|
||||
$this->_mailer->send();
|
||||
} catch (phpmailerException $e) {
|
||||
$this->_logger->warn($log_id.$e->getMessage());
|
||||
}
|
||||
} else {
|
||||
$newAds = array_reverse($newAds, true);
|
||||
foreach ($newAds AS $id => $ad) {
|
||||
$subject = ($alert->title?$alert->title." : ":"").$ads[$id]->getTitle();
|
||||
$message = '
|
||||
<h1 style="font-size: 16px;">Alerte : '.htmlspecialchars($alert->title, null, "UTF-8").'</h1>
|
||||
<p style="font-size: 14px; margin: 0;"><strong><a href="'.htmlspecialchars($alert->url, null, "UTF-8").'"
|
||||
style="text-decoration: none; color: #0B6CDA;">LIEN DE RECHERCHE</a>';
|
||||
if ($baseurl) {
|
||||
$message .= '
|
||||
- <a href="'.$baseurl.'?mod=mail&a=form&id='. $alert->id .
|
||||
'" style="text-decoration: none; color: #E77600;">MODIFIER</a>
|
||||
- <a href="'.$baseurl.'?mod=mail&a=toggle_status&s=suspend&id='. $alert->id .
|
||||
'" style="text-decoration: none; color: #999999;">ACTIVER / DÉSACTIVER</a>
|
||||
- <a href="'.$baseurl.'?mod=mail&a=form-delete&id='. $alert->id .
|
||||
'" style="text-decoration: none; color: #FF0000;">SUPPRIMER</a>
|
||||
';
|
||||
}
|
||||
$message .= '</strong></p>';
|
||||
$message .= '<hr /><br />';
|
||||
$message .= $ad;
|
||||
|
||||
$this->_mailer->Subject = $subject;
|
||||
$this->_mailer->Body = $message;
|
||||
try {
|
||||
$this->_mailer->send();
|
||||
} catch (phpmailerException $e) {
|
||||
$this->_logger->warn($log_id.$e->getMessage());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if ($notifications && (
|
||||
$alert->send_sms_free_mobile
|
||||
|| $alert->send_sms_ovh
|
||||
|| $alert->send_pushbullet
|
||||
|| $alert->send_notifymyandroid
|
||||
|| $alert->send_pushover
|
||||
)) {
|
||||
if ($countAds < 5) { // limite à 5 SMS
|
||||
foreach ($newAds AS $id => $ad) {
|
||||
$ad = $ads[$id]; // récupère l'objet.
|
||||
$url = $ad->getLink();
|
||||
if (false !== strpos($url, "leboncoin")) {
|
||||
$url = "https://mobile.leboncoin.fr/vi/".$ad->getId().".htm";
|
||||
}
|
||||
curl_setopt($curlTinyurl, CURLOPT_URL, "http://tinyurl.com/api-create.php?url=".$url);
|
||||
if ($url = curl_exec($curlTinyurl)) {
|
||||
$msg = "Nouvelle annonce ".($alert->title?$alert->title." : ":"").$ad->getTitle();
|
||||
$others = array();
|
||||
if ($ad->getPrice()) {
|
||||
$others[] = number_format($ad->getPrice(), 0, ',', ' ').$ad->getCurrency();
|
||||
}
|
||||
if ($ad->getCity()) {
|
||||
$others[] = $ad->getCity();
|
||||
} elseif ($ad->getCountry()) {
|
||||
$others[] = $ad->getCountry();
|
||||
}
|
||||
if ($others) {
|
||||
$msg .= " (".implode(", ", $others).")";
|
||||
}
|
||||
$params = array(
|
||||
"title" => "Alerte ".$siteConfig->getOption("site_name"),
|
||||
"description" => "Nouvelle annonce".($alert->title ? " pour : ".$alert->title : ""),
|
||||
"url" => $url,
|
||||
);
|
||||
foreach ($notifications AS $key => $notifier) {
|
||||
switch ($key) {
|
||||
case "freeMobile":
|
||||
$key_test = "send_sms_free_mobile";
|
||||
break;
|
||||
case "ovh":
|
||||
$key_test = "send_sms_ovh";
|
||||
break;
|
||||
default:
|
||||
$key_test = "send_".$key;
|
||||
}
|
||||
if (isset($alert->$key_test) && $alert->$key_test) {
|
||||
try {
|
||||
$notifier->send($msg, $params);
|
||||
} catch (Exception $e) {
|
||||
$this->_logger->warn(
|
||||
$log_id."Erreur sur envoi via ".
|
||||
get_class($notifier).
|
||||
": (".$e->getCode().") ".
|
||||
$e->getMessage()
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
} else { // envoi un msg global
|
||||
curl_setopt($curlTinyurl, CURLOPT_URL, "http://tinyurl.com/api-create.php?url=".$alert->url);
|
||||
if ($url = curl_exec($curlTinyurl)) {
|
||||
$msg = "Il y a ".$countAds." nouvelles annonces pour votre alerte '".($alert->title?$alert->title:"sans nom")."'";
|
||||
$params = array(
|
||||
"title" => "Alerte ".$siteConfig->getOption("site_name"),
|
||||
"description" => "Nouvelle".($countAds > 1 ? "s" : "").
|
||||
" annonce".($countAds > 1 ? "s" : "").
|
||||
($alert->title ? " pour : ".$alert->title : ""),
|
||||
"url" => $url,
|
||||
);
|
||||
foreach ($notifications AS $key => $notifier) {
|
||||
switch ($key) {
|
||||
case "freeMobile":
|
||||
$key_test = "send_sms_free_mobile";
|
||||
break;
|
||||
case "ovh":
|
||||
$key_test = "send_sms_ovh";
|
||||
break;
|
||||
default:
|
||||
$key_test = "send_".$key;
|
||||
}
|
||||
if (isset($alert->$key_test) && $alert->$key_test) {
|
||||
try {
|
||||
$notifier->send($msg, $params);
|
||||
} catch (Exception $e) {
|
||||
$this->_logger->warn(
|
||||
$log_id."Erreur sur envoi via ".
|
||||
get_class($notifier).
|
||||
": (".$e->getCode().") ".
|
||||
$e->getMessage()
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
$storage->save($alert);
|
||||
}
|
||||
}
|
||||
|
||||
curl_close($curlTinyurl);
|
||||
$this->_mailer->smtpClose();
|
||||
}
|
||||
|
||||
public function shutdown()
|
||||
{
|
||||
if ($this->_running && is_file($this->_lockFile)) {
|
||||
unlink($this->_lockFile);
|
||||
}
|
||||
}
|
||||
|
||||
public function sigHandler($no)
|
||||
{
|
||||
if (in_array($no, array(SIGTERM, SIGINT))) {
|
||||
$this->_logger->info("[Pid ".getmypid()."] QUIT (".$no.")");
|
||||
$this->shutdown();
|
||||
exit;
|
||||
}
|
||||
}
|
||||
|
||||
protected function _checkConnection()
|
||||
{
|
||||
// teste la connexion
|
||||
$this->_httpClient->setDownloadBody(false);
|
||||
if (false === $this->_httpClient->request("https://www.leboncoin.fr")) {
|
||||
throw new Exception("Connexion vers https://www.leboncoin.fr échouée".
|
||||
(($error = $this->_httpClient->getError())?" (erreur: ".$error.")":"").".");
|
||||
}
|
||||
if (200 != $code = $this->_httpClient->getRespondCode()) {
|
||||
throw new Exception("Code HTTP différent de 200 : ".$code);
|
||||
}
|
||||
$this->_httpClient->setDownloadBody(true);
|
||||
}
|
||||
|
||||
protected function _lock()
|
||||
{
|
||||
if (is_file($this->_lockFile)) {
|
||||
throw new Exception("Un processus est en cours d'exécution.");
|
||||
}
|
||||
file_put_contents($this->_lockFile, time()."\n".getmypid());
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
|
||||
require __DIR__."/../../../bootstrap.php";
|
||||
|
||||
// lib
|
||||
require_once "PHPMailer/class.phpmailer.php";
|
||||
|
||||
// modèle
|
||||
$storageType = $config->get("storage", "type", "files");
|
||||
if ($storageType == "db") {
|
||||
$userStorage = new \App\Storage\Db\User($dbConnection);
|
||||
} else {
|
||||
$userStorage = new \App\Storage\File\User(DOCUMENT_ROOT."/var/users.db");
|
||||
}
|
||||
|
||||
if (is_file(DOCUMENT_ROOT."/var/.lock_update")) {
|
||||
Logger::getLogger("main")->info("Tâche annulée : une mise à jour de l'application est en cours.");
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
$main = new Main($config, $client, $userStorage);
|
||||
} catch (\Exception $e) {
|
||||
Logger::getLogger("main")->info($e->getMessage());
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
$main->check();
|
||||
} catch (\Exception $e) {
|
||||
Logger::getLogger("main")->warn($e->getMessage());
|
||||
}
|
||||
$main->shutdown();
|
||||
|
||||
|
||||
|
||||
|
||||
|
14
sources/app/mail/scripts/form-delete.php
Normal file
14
sources/app/mail/scripts/form-delete.php
Normal file
@ -0,0 +1,14 @@
|
||||
<?php
|
||||
if (!isset($_GET["id"])) {
|
||||
header("LOCATION: ./?mod=mail"); exit;
|
||||
}
|
||||
$alert = $storage->fetchById($_GET["id"]);
|
||||
if (!$alert->id) {
|
||||
header("LOCATION: ./?mod=mail"); exit;
|
||||
}
|
||||
if ($_SERVER["REQUEST_METHOD"] == "POST") {
|
||||
if (isset($_POST["id"]) && $_POST["id"] == $_GET["id"]) {
|
||||
$storage->delete($alert);
|
||||
}
|
||||
header("LOCATION: ./?mod=mail"); exit;
|
||||
}
|
82
sources/app/mail/scripts/form.php
Normal file
82
sources/app/mail/scripts/form.php
Normal file
@ -0,0 +1,82 @@
|
||||
<?php
|
||||
if (isset($_GET["id"])) {
|
||||
$alert = $storage->fetchById($_GET["id"]);
|
||||
}
|
||||
if (empty($alert)) {
|
||||
$alert = new App\Mail\Alert();
|
||||
}
|
||||
|
||||
$categoryCollection = new \Lbc\CategoryCollection();
|
||||
|
||||
if ($_SERVER["REQUEST_METHOD"] == "POST") {
|
||||
foreach ($_POST AS $name => $value) {
|
||||
if (is_array($value)) {
|
||||
$_POST[$name] = array_map("trim", $_POST[$name]);
|
||||
} else {
|
||||
$_POST[$name] = trim($_POST[$name]);
|
||||
}
|
||||
}
|
||||
$alert->fromArray($_POST);
|
||||
if (empty($alert->send_mail)
|
||||
&& empty($alert->send_sms_free_mobile)
|
||||
&& empty($alert->send_sms_ovh)
|
||||
&& empty($alert->send_pushbullet)
|
||||
&& empty($alert->send_notifymyandroid)
|
||||
&& empty($alert->send_pushover)
|
||||
) {
|
||||
$errors["send_type"] = "Vous devez sélectionner au moins un moyen de communication.";
|
||||
}
|
||||
if (empty($alert->email)) {
|
||||
$errors["email"] = "Ce champ est obligatoire.";
|
||||
}
|
||||
if (empty($alert->title)) {
|
||||
$errors["title"] = "Ce champ est obligatoire.";
|
||||
}
|
||||
if (empty($alert->price_min)) {
|
||||
$alert->price_min = -1;
|
||||
}
|
||||
if (empty($alert->price_max)) {
|
||||
$alert->price_max = -1;
|
||||
}
|
||||
if ($alert->price_min != (int)$alert->price_min) {
|
||||
$errors["price"] = "Valeur de \"prix min\" non valide. ";
|
||||
}
|
||||
if ($alert->price_max != (int)$alert->price_max) {
|
||||
$errors["price"] .= "Valeur de \"prix max\" non valide.";
|
||||
}
|
||||
if (!empty($_POST["price_strict"])) {
|
||||
$alert->price_strict = (int)(bool)$_POST["price_strict"];
|
||||
} else {
|
||||
$alert->price_strict = false;
|
||||
}
|
||||
$alert->group = !empty($_POST["group"])?trim($_POST["group"]):"";
|
||||
if (empty($alert->url)) {
|
||||
$errors["url"] = "Ce champ est obligatoire.";
|
||||
} else {
|
||||
try {
|
||||
$siteConfig = \AdService\SiteConfigFactory::factory($alert->url);
|
||||
if (false !== strpos($alert->url, "leboncoin.fr")) {
|
||||
$alert->url = rtrim(preg_replace("#(o|sp)=[0-9]*&?#", "", $alert->url), "?&");
|
||||
}
|
||||
} catch (\AdService\Exception $e) {
|
||||
$errors["url"] = "Cette adresse ne semble pas valide.";
|
||||
}
|
||||
}
|
||||
$alert->interval = (int)$alert->interval;
|
||||
if ($alert->interval != (int)$alert->interval || $alert->interval < 0) {
|
||||
$errors["interval"] = "Cette valeur n'est pas valide.";
|
||||
}
|
||||
if (empty($errors)) {
|
||||
if (!empty($_POST["categories"])) {
|
||||
if (is_array($alert->categories)) {
|
||||
$alert->categories = implode(",", $_POST["categories"]);
|
||||
} else {
|
||||
$alert->categories = null;
|
||||
}
|
||||
} else {
|
||||
$alert->categories = null;
|
||||
}
|
||||
$storage->save($alert);
|
||||
header("LOCATION: ./?mod=mail"); exit;
|
||||
}
|
||||
}
|
86
sources/app/mail/scripts/index.php
Normal file
86
sources/app/mail/scripts/index.php
Normal file
@ -0,0 +1,86 @@
|
||||
<?php
|
||||
|
||||
if (isset($_GET["sort"])) {
|
||||
if (in_array($_GET["sort"], array("title", "email"))) {
|
||||
if (!isset($_SESSION["mail"]["sort"]) || $_SESSION["mail"]["sort"] != $_GET["sort"]) {
|
||||
$_SESSION["mail"]["sort"] = $_GET["sort"];
|
||||
$_SESSION["mail"]["order"] = "asc";
|
||||
} elseif (!isset($_SESSION["mail"]["order"]) || $_SESSION["mail"]["order"] == "desc") {
|
||||
$_SESSION["mail"]["order"] = "asc";
|
||||
} else {
|
||||
$_SESSION["mail"]["order"] = "desc";
|
||||
}
|
||||
}
|
||||
header("LOCATION: ?mod=mail"); exit;
|
||||
}
|
||||
|
||||
$alerts = $storage->fetchAll();
|
||||
$sort = "";
|
||||
$order = isset($_SESSION["mail"]["order"])?$_SESSION["mail"]["order"]:"asc";
|
||||
|
||||
if (isset($_SESSION["mail"]["sort"])) {
|
||||
$sort = $_SESSION["mail"]["sort"];
|
||||
setlocale(LC_CTYPE, "fr_FR.UTF-8");
|
||||
usort($alerts, function ($alert1, $alert2) {
|
||||
$key = $_SESSION["mail"]["sort"];
|
||||
$param1 = mb_strtolower($alert1->$key);
|
||||
$param2 = mb_strtolower($alert2->$key);
|
||||
if ($key == "title" && function_exists("iconv")) {
|
||||
$param1 = iconv("UTF-8", "ASCII//TRANSLIT//IGNORE", $param1);
|
||||
$param2 = iconv("UTF-8", "ASCII//TRANSLIT//IGNORE", $param2);
|
||||
}
|
||||
if ($param1 < $param2) {
|
||||
return -1;
|
||||
}
|
||||
if ($param1 > $param2) {
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
});
|
||||
}
|
||||
if (isset($_SESSION["mail"]["order"]) && $_SESSION["mail"]["order"] == "desc") {
|
||||
$alerts = array_reverse($alerts);
|
||||
}
|
||||
|
||||
// configuration du tableau d'affichage
|
||||
$showCities = false;
|
||||
$showPrice = false;
|
||||
|
||||
// trie les alertes par groupes
|
||||
$alertsByGroup = array();
|
||||
$groups = array();
|
||||
foreach ($alerts AS $alert) {
|
||||
$group = $alert->group?$alert->group:"Sans groupe";
|
||||
$groups[] = $group;
|
||||
$alertsByGroup[$group][] = $alert;
|
||||
if (-1 != $alert->price_min || -1 != $alert->price_max) {
|
||||
$showPrice = true;
|
||||
}
|
||||
if ($alert->cities) {
|
||||
$showCities = true;
|
||||
}
|
||||
}
|
||||
$groups = array_unique($groups);
|
||||
sort($groups);
|
||||
if (in_array("Sans groupe", $groups)) {
|
||||
// met les alertes sans groupe à la fin.
|
||||
unset($groups[array_search("Sans groupe", $groups)]);
|
||||
$groups[] = "Sans groupe";
|
||||
}
|
||||
|
||||
$notification["freeMobile"] = $userAuthed->hasSMSFreeMobile();
|
||||
$notification["ovh"] = $userAuthed->hasSMSOvh();
|
||||
$notification["pushbullet"] = $userAuthed->hasPushbullet();
|
||||
$notification["notifymyandroid"] = $userAuthed->hasNotifyMyAndroid();
|
||||
$notification["pushover"] = $userAuthed->hasPushover();
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
8
sources/app/mail/scripts/reset.php
Normal file
8
sources/app/mail/scripts/reset.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
if ($_SERVER["REQUEST_METHOD"] == "POST") {
|
||||
// place le marqueur de réinitialisation
|
||||
file_put_contents(DOCUMENT_ROOT."/var/tmp/reset_".$userAuthed->getId(), time());
|
||||
|
||||
header("LOCATION: ./?mod=mail"); exit;
|
||||
}
|
12
sources/app/mail/scripts/toggle_status.php
Normal file
12
sources/app/mail/scripts/toggle_status.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
if (isset($_GET["id"]) && $alert = $storage->fetchById($_GET["id"])) {
|
||||
$status = isset($_GET["s"])?$_GET["s"]:"";
|
||||
if (in_array($status, array("suspend", "send_mail", "send_sms_free_mobile",
|
||||
"send_sms_ovh", "send_pushbullet", "send_notifymyandroid",
|
||||
"send_pushover"))) {
|
||||
$alert->$status = !$alert->$status;
|
||||
$storage->save($alert);
|
||||
}
|
||||
}
|
||||
header("LOCATION: ./?mod=mail"); exit;
|
Reference in New Issue
Block a user