aboutsummaryrefslogtreecommitdiff
path: root/Html/admin/upload.php
blob: a967bcc269c9daedc40aaad0adc72da32fa36f4c (plain)
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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
<?php
require('../includes/config.php');

//Si pas connecté pas de connexion à l'espace d'admin --> retour sur la page login
if(!$user->is_logged_in()) {
        header('Location: login.php?action=connecte');
}

// titre de la page
$pagetitle= 'Ajouter un torrent';
include_once('../includes/header.php');
?>

<body>
<div id="container">

	<?php
		include_once('../includes/header-logo.php');
		include_once('../includes/nav.php');
	?>

    	<div id="body">
		<div id="content">
		
<?php
//Si le formulaire a été soumis = GO !
if(isset($_POST['submit'])) {


	//Collecte des données ...
	//extract($_POST);

	// *****************************************
	// upload image torrent
	// *****************************************

	$image_torrent = $_FILES['imagetorrent']['name'];

	//si erreur de transfert
	if ($_FILES['imagetorrent']['error'] > 0) {
		$error[] = "Erreur lors du transfert";
	}

	// taille de l'image
	if ($_FILES['imagetorrent']['size'] > MAX_FILE_SIZE) {
		$error[] = "L'image est trop grosse.";
	}

	//$extensions_valides = array( 'jpg' , 'png' );
	//1. strrchr renvoie l'extension avec le point (« . »).
	//2. substr(chaine,1) ignore le premier caractère de chaine.
	//3. strtolower met l'extension en minuscules.
	$extension_upload = strtolower(  substr(  strrchr($_FILES['imagetorrent']['name'], '.')  ,1)  );

	if(!in_array($extension_upload,$EXTENSIONS_VALIDES)) {
		$error[] = "Extension d'image incorrecte (.png ou .jpg seulement !)";
	}

	$image_sizes = getimagesize($_FILES['imagetorrent']['tmp_name']);
	if ($image_sizes[0] > $WIDTH_MAX OR $image_sizes[1] > $HEIGHT_MAX) {
		$error[] = "Image trop grande (dimensions)";
	}

	// on upload l'image
	if(!move_uploaded_file($_FILES['imagetorrent']['tmp_name'], $REP_IMAGES_TORRENTS.$_FILES['imagetorrent']['name'])) {
		$error[] = 'Problème de téléchargement de l\'image.';
	}

	// ***************************************
	// fin image torrent upload
	// ***************************************


	// ***************************************
	// upload fichier torrent
	// ***************************************

	// si il y a bien un fichier .torrent, on poursuit ...
	if (!isset($_FILES["torrent"]) && empty($torrent)) {
        	$error[] = 'Veuillez choisir un fichier .torrent';
	}

	else {
		//Collecte des données ...
                extract($_POST);

		$type_file = $_FILES['torrent']['type'];
                $tmp_file = $_FILES['torrent']['tmp_name'];
                $name_file = $_FILES['torrent']['name'];


		$fd = fopen($_FILES["torrent"]["tmp_name"], "rb");
			
		$length=filesize($_FILES["torrent"]["tmp_name"]);
		if ($length) {
			$alltorrent = fread($fd, $length);
		}

		$array = BDecode($alltorrent);
			
		$hash = sha1(BEncode($array["info"]));
			
		fclose($fd);

		if (isset($array["info"]) && $array["info"]) {
			$upfile=$array["info"];
		}
		else {
			$upfile = 0;
		}

		if (isset($upfile["length"])) {
			$size = (float)($upfile["length"]);
		}
		else if (isset($upfile["files"])) {
		// multifiles torrent
			$size=0;
			foreach ($upfile["files"] as $file) {
				$size+=(float)($file["length"]);
                	}
		}
		else {
			$size = "0";
		}

		$announce=trim($array["announce"]);


		// on vérifie si le torrent existe dja : on compare les champs info_hash
		//$stmt = $db->query("SELECT * FROM xbt_files WHERE LOWER(hex('info_hash')) = '".$hash."'");
		$stmt = $db->query("SELECT * FROM xbt_files WHERE info_hash = 0x$hash");
		$exists = $stmt->fetch();
		if(!empty($exists)) {
        		$error[] = "Ce torrent existe dans la base.";
		}

		// On vérifie que l'url d'announce n'est pas vide
		//if(empty($array['announce'])) {
		//	$error[] = 'L\'url d\'announce est vide !';
		//}


		// on vérifie l'url d'announce
			if($array['announce'] != $ANNOUNCEURL) {
        			$error[] = 'Vous n\'avez pas fournit la bonne adresse d\'announce dans votre torrent : l\'url d\'announce doit etre '.$ANNOUNCEURL;
			}

		// si le nom du torrent n'a pas été fournit (facultatif), on récupère le nom public du fichier
    		if (empty($_POST['postTitle']))
    		{
    			// on calcule le nom du fichier SANS .torrent a la fin
    			$file = $_FILES['torrent']['name'];
    			$var = explode(".",$file);
    			$nb = count($var)-1;
    			$postTitle = substr($file, 0, strlen($file)-strlen($var[$nb])-1);
    		}
    		else
    		{
    			// sinon on prend le nom fournit dans le formulaire d'upload
    			$postTitle = $_POST['postTitle'];
    		}

		// on vérifie la taille du fichier .torrent
		if ($_FILES['torrent']['size'] > $MAX_FILE_SIZE){
			$error[] = 'Le fichier .torrent est trop gros. Etes-vous certain qu\'il s\'agisse d\'un fichier .torrent ?';
		}

		/*
		if(!strstr($type_file, 'torrent')){
        		$error[] = 'Le fichier n\'est pas un fichier .torrent !';
    		}	
		*/

		/*
                if($postTitle ==''){
                       	$error[] = 'Veuillez entrer un titre.';
                }
		*/

		if($postLink ==''){
                        $error[] = 'Veuillez entrer un lien web pour le média proposé.';
                }

                if($postDesc ==''){
                       	$error[] = 'Veuillez entrer une courte description.';
                }

                if($postCont ==''){
                       	$error[] = 'Veuillez entrer un contenu.';
                }

		if($catID ==''){
                       	$error[] = 'Veuillez choisir une catégorie.';
                }

		if($licenceID ==''){
                       	$error[] = 'Veuillez choisir une licence.';
                }

		}// fin if (isset($_FILES["torrent"]))



		// s'il n'y a pas d'erreur on y va !!!
                if(!isset($error)) {
		
		// on upload le fichier .torrent
		if(!move_uploaded_file($_FILES['torrent']['tmp_name'], $REP_TORRENTS.$_FILES['torrent']['name'])) {
			$error[] = 'Problème lors de l\'upload du fichier .torrent';
		}

// ***************************************
// fin upload fichier torrent
// ***************************************
                        try {

                                $postSlug = slug($postTitle);
                                $postAuthor = html($_SESSION['username']);

                                //On insert les données dans la table blog_posts_seo
                                $stmt = $db->prepare('INSERT INTO blog_posts_seo (postHash,postTitle,postAuthor,postSlug,postLink,postDesc,postCont,postTaille,postDate,postTorrent,postImage) VALUES (:postHash, :postTitle, :postAuthor, :postSlug, :postLink, :postDesc, :postCont, :postTaille, :postDate, :postTorrent, :postImage)') ;
                                $stmt->execute(array(
					':postHash' => $hash,
                                        ':postTitle' => $postTitle,
                                        ':postAuthor' => $postAuthor,
                                        ':postSlug' => $postSlug,
					':postLink' => $postLink,
                                        ':postDesc' => $postDesc,
                                        ':postCont' => $postCont,
					':postTaille' => $size,
                                        ':postDate' => date('Y-m-d H:i:s'),
					':postTorrent' => $name_file,
					':postImage' => $image_torrent
                                ));

                                $postID = $db->lastInsertId();

				write_log('<span style="color:#994d00; font-weight:bold;">Upload torrent : '.$postTitle.' par '.$postAuthor, $db);

				//On insert les données dans la table xbt_files également
				$stmt2 = $db->query("INSERT INTO xbt_files SET info_hash=0x$hash, ctime=UNIX_TIMESTAMP() ON DUPLICATE KEY UPDATE flags=0");

                                //On ajoute les données dans la table categories
                                if(is_array($catID)){
                                        foreach($_POST['catID'] as $catID){
                                                $stmt = $db->prepare('INSERT INTO blog_post_cats (postID,catID)VALUES(:postID,:catID)');
                                                $stmt->execute(array(
                                                        ':postID' => $postID,
                                                        ':catID' => $catID
                                                ));
                                        }
                                }

                                //On ajoute les données dans la table licences
                                if(is_array($licenceID)){
                                        foreach($_POST['licenceID'] as $licenceID){
                                                $stmt = $db->prepare('INSERT INTO blog_post_licences (postID_BPL,licenceID_BPL)VALUES(:postID_BPL,:licenceID_BPL)');
                                                $stmt->execute(array(
                                                        ':postID_BPL' => $postID,
                                                        ':licenceID_BPL' => $licenceID
                                                ));
                                        }
                                }

                                //On redirige vers la page torrents pour tout ajout de torrent 
                                header('Location: '.SITEURL.'/torrents.php?action=ajoute');
                                exit;

                        } catch(PDOException $e) {
                            echo $e->getMessage();
                        }

                }

        }

        //S'il y a des erreurs, on les affiche
        if(isset($error)){
                foreach($error as $error){
                        echo '<div class="alert-msg rnd8 error">ERREUR : '.$error.'</div>';
                }
        }
        ?>

	<!-- DEBUT du formulaire -->

	<h2>Ajouter un torrent</h2>
	<h4 class="edito">URL d'annonce : <?php echo $ANNOUNCEURL; ?></h4>

	<br />

        <form action='' method='post' enctype='multipart/form-data'>

		<fieldset>
		<legend>Fichier .torrent</legend>
		<input type="hidden" name="MAX_FILE_SIZE" value="1048576" />
		<input type='file' name='torrent'>
		</fieldset>

		<br />

		<fieldset>
		<legend>Titre (facultatif)</legend>
                <input type="text" size="50" name="postTitle" value="<?php if(isset($error)) { echo html($_POST['postTitle']); } ?>">
		</fieldset>

		<br />

		<fieldset>
		<legend>Lien web du projet, de l'oeuvre, ...</legend>
		<input type="text" size="50" name="postLink" value="<?php if(isset($error)) { echo html($_POST['postLink']); } ?>">
		</fieldset>

                <p><label style="font-weight: bold;">Courte description (Résumé de quelques lignes, sans image)</label><br />
                <textarea name="postDesc" style="height:150px;width:900px;"><?php if(isset($error)) { echo html($_POST['postDesc']); } ?></textarea></p>

                <p><label style="font-weight: bold;">Contenu (Détails, images, URL, etc.)</label><br />
                <textarea name="postCont" style="height:300px;width:900px;"><?php if(isset($error)) { echo html($_POST['postCont']); } ?></textarea></p>

		<fieldset>
			<legend>Icone d'illustration (page accueil et article)</legend>
			<span style="font-size: 9pt; font-style: italic;">PNG ou JPG seulement | max. <?php echo makesize($MAX_SIZE_ICON); ?> | max. <?php echo $WIDTH_MAX_ICON; ?>px X <?php echo $HEIGHT_MAX_ICON; ?>px</span></label><br />
                		<input type="file" name="imagetorrent">
		</fieldset>

		<br />

                <fieldset>
                        <legend>Catégories</legend>

                        <?php
                        $stmt2 = $db->query('SELECT catID, catTitle FROM blog_cats ORDER BY catTitle');
                        while($row2 = $stmt2->fetch()){
                        	echo '<input type="checkbox" name="catID[]" value="'.$row2['catID'].'"> '.$row2['catTitle'].'<br />';
                        }
                        ?>

                </fieldset>

		<br />
                <fieldset>
                        <legend>Licences</legend>

                        <?php
                        $stmt3 = $db->query('SELECT licenceID, licenceTitle FROM blog_licences ORDER BY licenceTitle');
                        while($row3 = $stmt3->fetch()){
                        	echo '<input type="checkbox" name="licenceID[]" value="'.$row3['licenceID'].'"> '.$row3['licenceTitle'].'<br />';
                        }

                        ?>

                </fieldset>

                <p><input type="submit" class="searchsubmit formbutton" name="submit" value="Ajouter"> <input type="reset" value="Annuler" /></p>

        </form>

	<!-- FIN du formulaire -->

        </div>
        
	<?php include_once '../sidebar.php'; ?>
        
    	<div class="clear"></div>
    </div>
</div>

<div id="footer">
	<?php include_once '../includes/footer.php'; ?>
</div>

</body>
</html>