-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadd.php
304 lines (251 loc) · 8.91 KB
/
add.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
<?php
require_once("resources/config.php");
require_once(COMPONENTS_PATH . "/header.php");
require_once(COMPONENTS_PATH . "/navbar.php");
?>
<div class="jumbotron container mt-5" id="jumboIsbn">
<form action="" method="POST">
<div class="form-group">
<label for="inputisbn">Codice ISBN</label>
<input name="isbn" type="text" class="form-control" id="inputisbn" aria-describedby="isbnInput">
<small id="isbnInput" class="form-text text-muted">ISBN 10 o ISBN 13</small>
</div>
<button type="submit" name="addBook" class="btn btn-success">Aggiungi Libro</button>
</form>
</div>
<?php
if (isset($_POST["addBook"])) {
$isbn = $_POST['isbn'];
require_once(COMPONENTS_PATH . "/simple_html_dom.php");
$bookUrl = $config['url']['api'] . $isbn;
$html = file_get_html($bookUrl) or die;
if ($html) {
// Titolo
if ($html->find('.product_heading_title', 0)) {
$titolo = $html->find('.product_heading_title', 0)->plaintext;
} else {
$titolo = "";
}
// Sottotitolo
if ($html->find('.scheda-subtitle', 0)) {
$sottotitolo = $html->find('.scheda-subtitle', 0)->plaintext;
} else {
$sottotitolo = "";
}
// Autori
if ($html->find('.product_text', 0)) {
$autori = substr($html->find('.product_text', 0)->plaintext, 3);
} else {
$autori = "";
}
// Descrizione
if ($html->find('.more-block', 0)) {
$desc = substr($html->find('.more-block', 0)->plaintext, 21);
} else {
$desc = "";
}
// Prezzo pubblico
if ($html->find('.product-public-price', 0)) {
$prezzo = $html->find('.product-public-price', 0)->plaintext;
} else if ($html->find('.product-our-price', 0)) {
$prezzo = $html->find('.product-our-price', 0)->plaintext;
} else {
$prezzo = "";
}
// Copertina
if ($html->find('#photoprod', 0)) {
$copertina = $html->find('#photoprod', 0)->src;
} else {
$copertina = "https://i.imgur.com/WuI1P4e.png";
}
// Dettagli libri
$editore = "";
$collana = "";
$datapubb = "";
$ean = "";
$isbn = "";
$pagine = 0;
$formato = "";
$age = "";
$traduttore = "";
$cura = "";
$edizione = 0;
$illustratore = "";
$dettagli = $html->find('.dettagli-prodotto', 0)->children();
foreach ($dettagli as $item) {
$elem = explode(': ', $item->plaintext);
$tipo = $elem[0];
$val = $elem[1];
switch ($tipo) {
// Editore
case 'Editore':
$editore = trim($val);
break;
// Collana
case 'Collana':
$collana = trim($val);
break;
// Data di Pubblicazione
case 'Data di Pubblicazione':
$datapubb = trim($val);
break;
// EAN (isbn13)
case 'EAN':
$ean = trim($val);
break;
// ISBN (isbn10)
case 'ISBN':
$isbn = trim($val);
break;
// Pagine
case 'Pagine':
$pagine = trim($val);
break;
// Formato
case 'Formato':
$formato = trim($val);
break;
// Age
case 'Età consigliata':
$age = trim($val);
break;
// Traduttore
case 'Traduttore':
$traduttore = trim($val);
break;
// A cura di
case 'A cura di':
$cura = trim($val);
break;
// Edizione
case 'Edizione':
$edizione = trim($val);
break;
// Illustratore
case 'Illustratore':
$illustratore = trim($val);
break;
}
}
} else {
echo 'Libro non trovato. Inseriscilo manualmente';
$titolo = "";
$sottotitolo = "";
$autori = "";
$desc = "";
$prezzo = "";
$copertina = "";
$editore = "";
$collana = "";
$datapubb = "";
// $ean = "";
// $isbn = "";
$pagine = "";
$formato = "";
$age = "";
$traduttore = "";
$cura = "";
$edizione = "";
$illustratore = "";
if (strlen($postisbn) == 10) {
$isbn = $postisbn;
} else if (strlen($postisbn) == 13) {
$ean = $postisbn;
} else {
$isbn = "";
$ean = "";
}
}
?>
<script>
$('#jumboIsbn').hide();
</script>
<div class="jumbotron container mt-5">
<form action="process.php" method="POST">
<div class="row">
<div class="col-md-3">
<div class="form-group">
<label for="copertina">Copertina</label>
<input id="coverinput" type="text" class="form-control" name="copertina" value="<?= $copertina ?>">
</div>
<img class="img-fluid" id="coverimage" src="<?= $copertina ?>" alt="">
<script>
$('#coverinput').change(function() {
$('#coverimage').attr('src', $('#coverinput').val());
})
</script>
</div>
<div class="col-md-9">
<div class="form-group">
<label for="titolo">Titolo</label>
<input type="text" class="form-control" name="titolo" value="<?= $titolo ?>">
</div>
<div class="form-group">
<label for="sottotitolo">Sottotitolo</label>
<input type="text" class="form-control" name="sottotitolo" value="<?= $sottotitolo ?>">
</div>
<div class="form-group">
<label for="autori">Autori</label>
<input type="text" class="form-control" name="autori" value="<?= $autori ?>">
</div>
<div class="form-group">
<label for="prezzo">Prezzo</label>
<input type="text" class="form-control" name="prezzo" value="<?= $prezzo ?>">
</div>
<div class="form-group">
<label for="editore">Editore</label>
<input type="text" class="form-control" name="editore" value="<?= $editore ?>">
</div>
<div class="form-group">
<label for="collana">Collana</label>
<input type="text" class="form-control" name="collana" value="<?= $collana ?>">
</div>
<div class="form-group">
<label for="edizione">Edizione</label>
<input type="text" class="form-control" name="edizione" value="<?= $edizione ?>">
</div>
<div class="form-group">
<label for="cura">Curatrice</label>
<input type="text" class="form-control" name="cura" value="<?= $cura ?>">
</div>
<div class="form-group">
<label for="traduttore">Traduttore</label>
<input type="text" class="form-control" name="traduttore" value="<?= $traduttore ?>">
</div>
<div class="form-group">
<label for="illustratore">Illustratore</label>
<input type="text" class="form-control" name="illustratore" value="<?= $illustratore ?>">
</div>
<div class="form-group">
<label for="datapubb">Data di Pubblicazione</label>
<input type="text" class="form-control" name="datapubb" value="<?= $datapubb ?>">
</div>
<div class="form-group">
<label for="ean">EAN (ISBN 13)</label>
<input type="text" class="form-control" name="ean" value="<?= $ean ?>">
</div>
<div class="form-group">
<label for="isbn">ISBN (ISBN 10)</label>
<input type="text" class="form-control" name="isbn" value="<?= $isbn ?>">
</div>
<div class="form-group">
<label for="pagine">Pagine</label>
<input type="text" class="form-control" name="pagine" value="<?= $pagine ?>">
</div>
<div class="form-group">
<label for="formato">Formato</label>
<input type="text" class="form-control" name="formato" value="<?= $formato ?>">
</div>
<div class="form-group">
<label for="desc">Descrizione</label>
<input type="text" class="form-control" name="desc" value="<?= $desc ?>">
</div>
<button type="submit" name="submitBook" class="btn btn-success">Aggiungi Libro</button>
</div>
</div>
</form>
</div>
<?php
}
require_once(COMPONENTS_PATH . "/footer.php");
?>