bludit/bl-kernel/admin/themes/booty/html/media.php

258 lines
7.2 KiB
PHP
Raw Normal View History

<?php
2018-04-09 22:56:12 +02:00
// Preload the first 10 files to not call via AJAX when the user open the first time the media manager
2019-04-23 23:23:35 +02:00
$listOfFilesByPage = Filesystem::listFiles(PAGE_THUMBNAILS_DIRECTORY, '*', '*', MEDIA_MANAGER_SORT_BY_DATE, MEDIA_MANAGER_NUMBER_OF_FILES);
$preLoadFiles = array();
2018-05-08 00:15:40 +02:00
if (!empty($listOfFilesByPage[0])) {
foreach ($listOfFilesByPage[0] as $file) {
2019-04-23 23:23:35 +02:00
$filename = Filesystem::filename($file);
array_push($preLoadFiles, $filename);
2018-05-08 00:15:40 +02:00
}
}
2019-04-23 23:23:35 +02:00
2018-04-09 22:56:12 +02:00
// Amount of pages for the paginator
2018-08-06 21:46:58 +02:00
$numberOfPages = count($listOfFilesByPage);
?>
2018-10-17 22:35:30 +02:00
<div id="jsmediaManagerModal" class="modal" tabindex="-1" role="dialog">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="container-fluid">
<div class="row">
<div class="col p-3">
2018-04-09 22:56:12 +02:00
<!--
UPLOAD INPUT
-->
2019-04-23 23:23:35 +02:00
<h3 class="mt-2 mb-3"><i class="fa fa-image"></i> <?php $L->p('Images'); ?></h3>
2018-04-09 22:56:12 +02:00
<div id="jsalertMedia" class="alert alert-warning d-none" role="alert"></div>
2018-04-09 22:56:12 +02:00
<!-- Form and Input file -->
<form name="bluditFormUpload" id="jsbluditFormUpload" enctype="multipart/form-data">
<div class="custom-file">
2019-04-23 23:23:35 +02:00
<input type="file" class="custom-file-input" id="jsimages" name="images[]" multiple>
<label class="custom-file-label" for="jsimages"><?php $L->p('Choose images to upload'); ?></label>
2018-04-09 22:56:12 +02:00
</div>
</form>
<!-- Progress bar -->
<div class="progress mt-2">
2018-10-21 15:00:15 +02:00
<div id="jsbluditProgressBar" class="progress-bar bg-primary" role="progressbar" style="width:0%"></div>
2018-04-09 22:56:12 +02:00
</div>
<!--
2019-04-23 23:23:35 +02:00
IMAGES LIST
2018-04-09 22:56:12 +02:00
-->
<!-- Table for list files -->
2019-04-23 23:23:35 +02:00
<table id="jsbluditMediaTable" class="table mt-2">
2018-05-08 23:25:18 +02:00
<tr>
<td><?php $L->p('There are no images'); ?></td>
2018-05-08 23:25:18 +02:00
</tr>
</table>
2018-04-09 22:56:12 +02:00
<!-- Paginator -->
<nav>
2019-04-23 23:23:35 +02:00
<ul class="pagination justify-content-center flex-wrap">
2018-08-06 21:46:58 +02:00
<?php for ($i=1; $i<=$numberOfPages; $i++): ?>
2018-04-09 22:56:12 +02:00
<li class="page-item"><button type="button" class="btn btn-link page-link" onClick="getFiles(<?php echo $i ?>)"><?php echo $i ?></button></li>
<?php endfor; ?>
</ul>
</nav>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
<?php
echo 'var preLoadFiles = '.json_encode($preLoadFiles).';';
?>
function openMediaManager() {
2018-10-17 22:35:30 +02:00
$('#jsmediaManagerModal').modal('show');
}
function closeMediaManager() {
2018-10-17 22:35:30 +02:00
$('#jsmediaManagerModal').modal('hide');
}
2018-04-09 22:56:12 +02:00
// Remove all files from the table
2018-10-17 22:35:30 +02:00
function cleanTable() {
2018-04-09 22:56:12 +02:00
$('#jsbluditMediaTable').empty();
}
function showMediaAlert(message) {
$("#jsalertMedia").html(message).removeClass('d-none');
}
function hideMediaAlert() {
$("#jsalertMedia").addClass('d-none');
}
2018-04-09 22:56:12 +02:00
// Show the files in the table
function displayFiles(files) {
if (!Array.isArray(files)) {
return false;
}
2018-04-09 22:56:12 +02:00
// Clean table
2018-10-17 22:35:30 +02:00
cleanTable();
2018-04-09 22:56:12 +02:00
// Regenerate the table
2018-10-17 22:35:30 +02:00
if (files.length > 0) {
$.each(files, function(key, filename) {
2019-04-23 23:23:35 +02:00
var thumbnail = "<?php echo PAGE_THUMBNAILS_URL; ?>"+filename;
var image = "<?php echo PAGE_IMAGES_URL; ?>"+filename;
2018-10-17 22:35:30 +02:00
tableRow = '<tr id="js'+filename+'">'+
'<td style="width:80px"><img class="img-thumbnail" alt="200x200" src="'+thumbnail+'" style="width: 50px; height: 50px;"><\/td>'+
'<td class="information">'+
2019-04-23 23:23:35 +02:00
'<div class="text-primary pb-2">'+filename+'<\/div>'+
2018-10-17 22:35:30 +02:00
'<div>'+
2019-04-24 00:11:36 +02:00
'<a href="#" class="mr-3 text-secondary" onClick="editorInsertMedia(\''+image+'\'); closeMediaManager();"><i class="fa fa-plus"></i><?php $L->p('Insert') ?><\/a>'+
'<a href="#" class="text-secondary" onClick="setCoverImage(\''+filename+'\'); closeMediaManager();"><i class="fa fa-square-o"></i><?php $L->p('Set as cover image') ?><\/button>'+
'<a href="#" class="float-right text-danger" onClick="deleteMedia(\''+filename+'\')"><i class="fa fa-trash-o"></i><?php $L->p('Delete') ?><\/a>'+
2018-10-17 22:35:30 +02:00
'<\/div>'+
'<\/td>'+
'<\/tr>';
$('#jsbluditMediaTable').append(tableRow);
});
}
if (files.length == 0) {
$('#jsbluditMediaTable').html("<p><?php (IMAGE_RESTRICT ? $L->p('There are no images for the page') : $L->p('There are no images')) ?></p>");
}
}
2018-04-09 22:56:12 +02:00
// Get the list of files via AJAX, filter by the page number
function getFiles(pageNumber) {
$.post(HTML_PATH_ADMIN_ROOT+"ajax/list-images",
{ tokenCSRF: tokenCSRF,
pageNumber: pageNumber,
2019-04-23 23:23:35 +02:00
uuid: "<?php echo PAGE_IMAGES_KEY ?>",
path: "thumbnails" // the paths are defined in ajax/list-images
},
function(data) { // success function
if (data.status==0) {
displayFiles(data.files);
} else {
console.log(data.message);
}
}
);
2018-04-09 22:56:12 +02:00
}
// Delete the file and the thumbnail if exist
function deleteMedia(filename) {
$.post(HTML_PATH_ADMIN_ROOT+"ajax/delete-image",
{ tokenCSRF: tokenCSRF,
filename: filename,
2019-04-23 23:23:35 +02:00
uuid: "<?php echo PAGE_IMAGES_KEY; ?>"
},
function(data) { // success function
if (data.status==0) {
getFiles(1);
} else {
console.log(data.message);
}
}
);
}
2018-05-08 23:25:18 +02:00
function setCoverImage(filename) {
2019-04-23 23:23:35 +02:00
var image = "<?php echo PAGE_IMAGES_URL; ?>"+filename;
2018-05-08 23:25:18 +02:00
$("#jscoverImage").val(filename);
$("#jscoverImagePreview").attr("src", image);
2018-05-08 23:25:18 +02:00
}
2019-04-23 23:23:35 +02:00
function uploadImages() {
// Remove current alerts
hideMediaAlert();
var images = $("#jsimages")[0].files;
for (var i=0; i < images.length; i++) {
// Check file type/extension
const validImageTypes = ['image/gif', 'image/jpeg', 'image/png'];
if (!validImageTypes.includes(images[i].type)) {
showMediaAlert("<?php echo $L->g('File type is not supported. Allowed types:').' '.implode(', ',ALLOWED_IMG_EXTENSION) ?>");
return false;
}
// Check file size and compare with PHP upload_max_filesize
if (images[i].size > UPLOAD_MAX_FILESIZE) {
showMediaAlert("<?php echo $L->g('Maximum load file size allowed:').' '.ini_get('upload_max_filesize') ?>");
return false;
}
};
// Clean progress bar
$("#jsbluditProgressBar").removeClass().addClass("progress-bar bg-primary");
$("#jsbluditProgressBar").width("0");
// Data to send via AJAX
var formData = new FormData($("#jsbluditFormUpload")[0]);
formData.append("uuid", "<?php echo PAGE_IMAGES_KEY ?>");
formData.append("tokenCSRF", tokenCSRF);
$.ajax({
url: HTML_PATH_ADMIN_ROOT+"ajax/upload-images",
type: "POST",
data: formData,
cache: false,
contentType: false,
processData: false,
xhr: function() {
var xhr = $.ajaxSettings.xhr();
if (xhr.upload) {
xhr.upload.addEventListener("progress", function(e) {
if (e.lengthComputable) {
var percentComplete = (e.loaded / e.total)*100;
$("#jsbluditProgressBar").width(percentComplete+"%");
}
}, false);
}
return xhr;
}
}).done(function(data) {
if (data.status==0) {
$("#jsbluditProgressBar").removeClass("bg-primary").addClass("bg-success");
// Get the files for the first page, this include the files uploaded
getFiles(1);
} else {
$("#jsbluditProgressBar").removeClass("bg-primary").addClass("bg-danger");
showMediaAlert(data.message);
}
});
}
2018-04-09 22:56:12 +02:00
$(document).ready(function() {
// Display the files preloaded for the first time
displayFiles(preLoadFiles);
2019-04-23 23:23:35 +02:00
// Select image event
$("#jsimages").on("change", function(e) {
uploadImages();
});
// Drag and drop image
$(window).on("dragover dragenter", function(e) {
e.preventDefault();
e.stopPropagation();
openMediaManager();
});
// Drag and drop image
$(window).on("drop", function(e) {
e.preventDefault();
e.stopPropagation();
$("#jsimages").prop("files", e.originalEvent.dataTransfer.files);
uploadImages();
2018-04-09 22:56:12 +02:00
});
});
2018-05-08 00:15:40 +02:00
</script>