-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.php
95 lines (95 loc) · 4 KB
/
form.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?php
// vérifie la possibilité d'effectuer des requêtes distantes
$error = false;
if (!file_get_contents("http://www.leboncion.fr")) {
$error = true;
}
$values = array(
"url" => "", "price_min" => "", "price_max" => "", "price_strict" => false,
"cities" => ""
);
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$values = array_merge($values, array_map("trim", $_POST));
if (empty($values["url"])) {
$errors["url"] = "Ce champ est obligatoire.";
}
if ($values["price_min"] && $values["price_min"] != (int)$values["price_min"]) {
$errors["price"] = "Valeur de \"prix min\" non valide. ";
}
if ($values["price_max"] && $values["price_max"] != (int)$values["price_max"]) {
$errors["price"] .= "Valeur de \"prix max\" non valide.";
}
if (empty($errors)) {
$query = array("url" => $values["url"]);
if (!empty($values["price_min"])) {
$query["price_min"] = (int)$values["price_min"];
}
if (!empty($values["price_max"])) {
$query["price_max"] = (int)$values["price_max"];
}
if (!empty($values["cities"])) {
$query["cities"] = $values["cities"];
}
$query["price_strict"] = isset($values["price_strict"])?
(int)(bool)$values["price_strict"]:0;
header("LOCATION: ./?".http_build_query($query));
}
}
?>
<!DOCTYPE html>
<html>
<head>
<title>Flux RSS des annonces Leboncoin</title>
<meta charset="utf-8">
</head>
<body>
<h1>Flux RSS des annonces Leboncoin</h1>
<?php if ($error) : ?>
<p style="width: 600px; font-weight: bold; color: #EF0000;">
Les connexions distantes ne semblent pas actives sur cet hébergement.
Il ne sera pas possible de générer les flux RSS.
</p>
<?php endif; ?>
<form action="" method="post" style="width: 600px;">
<fieldset>
<legend>Génération d'un flux RSS</legend>
<dl>
<dt><label for="url">
Indiquer l'adresse de recherche Leboncoin</label></dt>
<dd><input type="text" id="url" name="url" value="<?php
echo $values["url"]; ?>" size="75" /></dd>
<dt>
<label>Filtre sur le prix</label>
<dt>
<dd>
<label for="price_min">
Prix min :
<input type="text" id="price_min" name="price_min" value="<?php
echo $values["price_min"]; ?>" size="6" />
</label>
<label for="price_max">
Prix max :
<input type="text" id="price_max" name="price_max" value="<?php
echo $values["price_max"]; ?>" size="6" />
</label>
<?php if (isset($errors["price"])) : ?>
<p class="error"><?php echo $errors["price"]; ?></p>
<?php endif; ?>
<br />
<label for="price_strict"><input type="checkbox"
id="price_strict" name="price_strict" value="1"<?php
echo $values["price_strict"]?' checked="checked"':"";
?> /> cochez cette case pour exclure les annonces sans prix d'indiqué de votre recherche.</label>
</dd>
<dt><label for="cities">Filtre sur les villes (une par ligne)</label></dt>
<dd>
<textarea id="cities" name="cities" cols="30" rows="10"><?php
echo htmlspecialchars($values["cities"]) ?></textarea>
</dd>
<dt> </dt>
<dd><input type="submit" value="Enregistrer" /></dd>
</dl>
</fieldset>
</form>
</body>
</html>