aboutsummaryrefslogtreecommitdiff
path: root/Html/admin/edit-post.php
blob: 32e76340d308d560eeb9b195013c9ed7344bf491 (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
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
<?php
require('../includes/config.php');

try {
	$stmt = $db->prepare('SELECT * FROM blog_posts_seo WHERE postID = :postID');
	$stmt->execute(array(':postID' => $_GET['id']));
	$rowpost = $stmt->fetch();
}

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

//Si pas connecté : on renvoie sur page principale 
if(!$user->is_logged_in()) {
        header('Location: '.SITEURL.'/login.php');
}

//Si pas l'auteur du post : on renvoie sur page principale 
//if($rowpost['postAuthor'] != $_SESSION['username']) {
//	header('Location: '.SITEURL);
//}


// -----------------------------------------------------------------------------------------------
// si c'est l'auteur du post ou si c'est l'admin, on donne les droits d'édition
if(isset($_SESSION['username']) && isset($_SESSION['userid'])) {
	if(($rowpost['postAuthor'] == $_SESSION['username']) || ($_SESSION['userid'] == 1)) {



//Si on supprime l'icone de présentation
if(isset($_GET['delimage'])) {

	$delimage = $_GET['delimage'];

	//on supprime le fichier image
	$stmt = $db->prepare('SELECT postImage FROM blog_posts_seo WHERE postID = :postID');
	$stmt->execute(array(
		':postID' => $delimage
	));
	$sup = $stmt->fetch();
	$file = $REP_IMAGES_TORRENTS.$sup['postImage']; 
	if (file_exists($file)) {
		unlink($file);
	}

	//puis on supprime l'image dans la base
	$stmt = $db->prepare('UPDATE blog_posts_seo SET postImage = NULL WHERE postID = :postID');
	$stmt->execute(array(
                ':postID' => $delimage
        ));

	header('Location: edit-post.php?id='.$delimage);
}

// titre de la page
$pagetitle = 'Admin : édition du torrent : '.$rowpost['postTitle'];
require('../includes/header.php');

?>


<body>
<div id="container">

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

    	<div id="body">
		<div id="content">
		
		        <?php //include('menu.php');?>
        		<!-- <p><a href="./">Blog Admin Index</a></p> -->

        <h2>Edition du post : <?php echo $rowpost['postTitle']; ?></h2>


<?php

$id = $_GET['id'];

//if form has been submitted process it
if(isset($_POST['submit'])) {

	//collect form data
	//extract($_POST);

	if(isset($_FILES['icontorr']['name']) && !empty($_FILES['icontorr']['name'])) {
	//if(isset($_POST['icontorr']) && !empty($_POST['icontorr'])) {

		// *****************************************
		// upload icone de présentation du torrent
		// *****************************************
	
		$target_dir = $REP_IMAGES_TORRENTS;
		$target_file = $target_dir . basename($_FILES["icontorr"]["name"]);
		$imageFileType = pathinfo($target_file,PATHINFO_EXTENSION);

		//L'erreur N°4 indique qu'il n'y a pas de fichier. On l'exclut car l'icone de présentation du torrent n'est pas obligatoire.
		if ($_FILES['icontorr']['error'] > 0 && $_FILES['icontorr']['error'] != 4) {
		//if ($_FILES['icontorr']['error'] > 0) {
			$error[] = 'Erreur lors du transfert de l\'icone de présentation du torrent.';
		}

		// On cherche si l'image n'existe pas déjà sous ce même nom
		if (file_exists($target_file)) {
			$error[] = 'Désolé, cette image existe déjà. Veillez en choisir une autre ou tout simplement changer son nom.';
		}

		// taille de l'image
		if ($_FILES['icontorr']['size'] > $MAX_SIZE_ICON) {
			$error[] = 'Image trop grosse. Taille maxi : '.makesize($MAX_SIZE_ICON);
		}
	
		// format de l'image	
		if($imageFileType != "jpg" && $imageFileType != "png" && $imageFileType != "jpeg") {
    			$error[] = 'Désolé : seuls les fichiers .jpg, .png, .jpeg sont autorisés !';
		} 
	
		// poids de l'image	
		$image_sizes = getimagesize($_FILES['icontorr']['tmp_name']);
		if ($image_sizes[0] > $WIDTH_MAX_ICON OR $image_sizes[1] > $HEIGHT_MAX_ICON) {
			$error[] = 'Image trop grande : '.$WIDTH_MAX_ICON.' x '.$HEIGHT_MAX_ICON.' maxi !';
		}
		
		// on vérifie que c'est bien une image
		if($image_sizes == false) {
			$error[] = 'L\'image envoyée n\'est pas une image !';
		}

		// on upload l'image s'il n'y a pas d'erreur
		if(!isset($error)) {
			if(!move_uploaded_file($_FILES['icontorr']['tmp_name'], $REP_IMAGES_TORRENTS.$_FILES['icontorr']['name'])) {
				$error[] = 'Problème de téléchargement de l\'icone de présentation du torrent.';
			}
		}

		}//fin de if(isset($_FILES['icontorr']['name']))

		// ***************************************
		// fin upload icone de présentation du torrent
		// ***************************************



		extract($_POST);

                //very basic validation
                if($postID == ''){
                        $error[] = 'Ce post possède un ID invalide !';
                }

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

		if($postLink == ''){
                        $error[] = 'Veuillez entrer une URL pour le média.';
                }

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

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

		if($catID == '') {
			$error[] = 'Veuillez sélectionner au moins une catégorie.';
		}

		if($licenceID == '') {
                        $error[] = 'Veuillez sélectionner au moins une licence.';
                }


                if(!isset($error)){
                        try {

                                $postSlug = slug($postTitle);

				// Si on a une nouvelle image, on met tout à jour, même l'image de présentation
				if(isset($_FILES['icontorr']['name']) && !empty($_FILES['icontorr']['name'])) {

                                //insert into database
                                $stmt = $db->prepare('UPDATE blog_posts_seo SET postTitle = :postTitle, postSlug = :postSlug, postLink = :postLink, postDesc = :postDesc, postCont = :postCont, postImage = :postImage WHERE postID = :postID') ;
                                $stmt->execute(array(
                                        ':postTitle' => $postTitle,
                                        ':postSlug' => $postSlug,
					':postLink' => $postLink,
                                        ':postDesc' => $postDesc,
                                        ':postCont' => $postCont,
					':postImage' => $_FILES['icontorr']['name'],
                                        ':postID' => $_GET['id']
                                ));

				}
				
				else { // sinon on met tout à jour SAUF l'icone de présentation
				
				//insert into database
                                $stmt = $db->prepare('UPDATE blog_posts_seo SET postTitle = :postTitle, postSlug = :postSlug, postLink = :postLink, postDesc = :postDesc, postCont = :postCont WHERE postID = :postID') ;
                                $stmt->execute(array(
                                        ':postTitle' => $postTitle,
                                        ':postSlug' => $postSlug,
					':postLink' => $postLink,
                                        ':postDesc' => $postDesc,
                                        ':postCont' => $postCont,
                                        ':postID' => $_GET['id']
                                ));

				}


                                //delete all items with the current postID in categories
                                $stmt = $db->prepare('DELETE FROM blog_post_cats WHERE postID = :postID');
                                $stmt->execute(array(':postID' => $postID));

                                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
                                                ));
                                        }
                                }

				//delete all items with the current postID in licences
                                $stmt = $db->prepare('DELETE FROM blog_post_licences WHERE postID_BPL = :postID_BPL');
                                $stmt->execute(array(':postID_BPL' => $postID));

                                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
                                                ));
                                        }
                                }

                                //redirect to index page
				header('Location: '.SITEURL.'/torrents.php');
                                exit;

                        } // fin de try
						
			catch(PDOException $e) {
                            echo $e->getMessage();
                        }

                } // fin de if(!isset($error))

        } // fin if(isset($_POST['submit']))
       

	//check for any errors
        if(isset($error)){
                foreach($error as $error){
                        echo '<p class="error">'.$error.'</p>';
                }
        }

                try {

                        $stmt = $db->prepare('SELECT postID, postTitle, postLink, postDesc, postCont, postImage FROM blog_posts_seo WHERE postID = :postID') ;
                        $stmt->execute(array(
				':postID' => $id
			));

                        $row = $stmt->fetch();

                }

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

        <form action='' method='post' enctype='multipart/form-data'>
                <input type='hidden' name='postID' value='<?php echo html($row['postID']);?>'>

                <p><label>Titre</label><br />
                <input type='text' name='postTitle' value='<?php echo html($row['postTitle']);?>'></p>

		<p><label>URL : lien web du média</label><br />
                <input type='text' name='postLink' value='<?php echo html($row['postLink']);?>'></p>

                <p><label>Description</label><br />
                <textarea name='postDesc' style="height:150px;width:900px;"><?php echo html($row['postDesc']);?></textarea></p>

                <p><label>Contenu</label><br />
                <textarea name='postCont' style="height:300px;width:900px;"><?php echo html($row['postCont']);?></textarea></p>

		<p><label>Icone de présentation (JPG ou PNG, <?php echo $WIDTH_MAX_ICON; ?> x <?php echo $HEIGHT_MAX_ICON; ?>, <?php echo makesize($MAX_SIZE_ICON); ?> max.)</label><br />
                <input type='file' name='icontorr'>

		<br /><br />Icone de présentation :
		<?php
		if(!empty($row['postImage']) && file_exists($REP_IMAGES_TORRENTS.$row['postImage'])) {
			echo '<img style="max-width: 150px; max-height: 150px;" src="/images/imgtorrents/'.html($row['postImage']).'" alt="Icone de présentation de '.html($row['postTitle']).'" />';	
		?>

		<a href="javascript:delimage('<?php echo html($row['postID']);?>','<?php echo html($row['postImage']);?>')">Supprimer</a>
	
		<?php
		}
		
		else {
			echo '<img style="max-width: 150px; max-height: 150px;" src="/images/noimage.png" alt="Pas d\'icone de présentation pour '.html($row['postTitle']).'" />';
		}
		?>


		</p><br />

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

                        <?php
                        $stmt2 = $db->query('SELECT catID, catTitle FROM blog_cats ORDER BY catTitle');
                        while($row2 = $stmt2->fetch()){

                                $stmt3 = $db->prepare('SELECT catID FROM blog_post_cats WHERE catID = :catID AND postID = :postID') ;
                                $stmt3->execute(array(':catID' => $row2['catID'], ':postID' => $row['postID']));
                                $row3 = $stmt3->fetch();

                                if($row3['catID'] == $row2['catID']){
                                        $checked = 'checked=checked';
                                } else {
                                        $checked = null;
                                }

                            echo "<input type='checkbox' name='catID[]' value='".$row2['catID']."' $checked> ".$row2['catTitle']."<br />";
                        }

			$stmt2->closeCursor();

                        ?>
                </fieldset>


                <fieldset>
                        <legend>Licences</legend>

                        <?php
                        $stmt2 = $db->query('SELECT licenceID, licenceTitle FROM blog_licences ORDER BY licenceTitle');
                        while($row2 = $stmt2->fetch()) {

                                $stmt3 = $db->prepare('SELECT licenceID_BPL FROM blog_post_licences WHERE licenceID_BPL = :licenceID_BPL AND postID_BPL = :postID_BPL') ;
                                $stmt3->execute(array(
					':licenceID_BPL' => $row2['licenceID'], 
					':postID_BPL' => $row['postID']));
                                $row3 = $stmt3->fetch();

                                if($row3['licenceID_BPL'] == $row2['licenceID']){
                                        $checked = 'checked=checked';
                                } else {
                                        $checked = null;
                                }

                            echo "<input type='checkbox' name='licenceID[]' value='".$row2['licenceID']."' $checked> ".$row2['licenceTitle']."<br />";
                        }
                        ?>
                </fieldset>


                <p><input type='submit' class="searchsubmit formbutton" name='submit' value='Mettre à jour'></p>
        </form>
        </div>
        
	<?php require('../sidebar.php'); ?>
        
    	<div class="clear"></div>
    </div>
</div>

<div id="footer">
	<?php require('../includes/footer.php'); ?>
</div>

</body>
</html>


<?php
}
}
else {
  header('Location: '.SITEURL);

}
?>