mirror of https://github.com/itflow-org/itflow
133 lines
5.8 KiB
PHP
133 lines
5.8 KiB
PHP
<?php
|
|
|
|
require_once '../../../includes/modal_header.php';
|
|
|
|
$file_id = intval($_GET['id']);
|
|
|
|
$sql = mysqli_query($mysqli, "SELECT * FROM files WHERE file_id = $file_id LIMIT 1");
|
|
|
|
$row = mysqli_fetch_array($sql);
|
|
$client_id = intval($row['file_client_id']);
|
|
$file_folder_id = nullable_htmlentities($row['file_folder_id']);
|
|
$file_name = nullable_htmlentities($row['file_name']);
|
|
$file_ext = nullable_htmlentities($row['file_ext']);
|
|
if ($file_ext == 'pdf') {
|
|
$file_icon = "file-pdf";
|
|
} elseif ($file_ext == 'gz' || $file_ext == 'tar' || $file_ext == 'zip' || $file_ext == '7z' || $file_ext == 'rar') {
|
|
$file_icon = "file-archive";
|
|
} elseif ($file_ext == 'txt' || $file_ext == 'md') {
|
|
$file_icon = "file-alt";
|
|
} elseif ($file_ext == 'msg') {
|
|
$file_icon = "envelope";
|
|
} elseif ($file_ext == 'doc' || $file_ext == 'docx' || $file_ext == 'odt') {
|
|
$file_icon = "file-word";
|
|
} elseif ($file_ext == 'xls' || $file_ext == 'xlsx' || $file_ext == 'ods') {
|
|
$file_icon = "file-excel";
|
|
} elseif ($file_ext == 'pptx' || $file_ext == 'odp') {
|
|
$file_icon = "file-powerpoint";
|
|
} elseif ($file_ext == 'mp3' || $file_ext == 'wav' || $file_ext == 'ogg') {
|
|
$file_icon = "file-audio";
|
|
} elseif ($file_ext == 'mov' || $file_ext == 'mp4' || $file_ext == 'av1') {
|
|
$file_icon = "file-video";
|
|
} elseif ($file_ext == 'jpg' || $file_ext == 'jpeg' || $file_ext == 'png' || $file_ext == 'gif' || $file_ext == 'webp' || $file_ext == 'bmp' || $file_ext == 'tif') {
|
|
$file_icon = "file-image";
|
|
} else {
|
|
$file_icon = "file";
|
|
}
|
|
|
|
// Generate the HTML form content using output buffering.
|
|
ob_start();
|
|
?>
|
|
<div class="modal-header bg-dark">
|
|
<h5 class="modal-title"><i class="fa fa-fw fa-<?php echo $file_icon; ?> mr-2"></i>Moving File: <strong><?php echo $file_name; ?></strong></h5>
|
|
<button type="button" class="close text-white" data-dismiss="modal">
|
|
<span>×</span>
|
|
</button>
|
|
</div>
|
|
<form action="post.php" method="post" autocomplete="off">
|
|
<input type="hidden" name="file_id" value="<?php echo $file_id; ?>">
|
|
<div class="modal-body">
|
|
|
|
<div class="form-group">
|
|
<label>Move File to</label>
|
|
<div class="input-group">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text"><i class="fa fa-fw fa-folder"></i></span>
|
|
</div>
|
|
<select class="form-control select2" name="folder_id">
|
|
<option value="0">/</option>
|
|
<?php
|
|
// Fetch all folders for the client
|
|
$sql_all_folders = mysqli_query($mysqli, "SELECT folder_id, folder_name, parent_folder FROM folders WHERE folder_location = 1 AND folder_client_id = $client_id ORDER BY folder_name ASC");
|
|
$folders = array();
|
|
|
|
// Build an associative array of folders indexed by folder_id
|
|
while ($row = mysqli_fetch_assoc($sql_all_folders)) {
|
|
$folders[$row['folder_id']] = array(
|
|
'folder_id' => intval($row['folder_id']),
|
|
'folder_name' => nullable_htmlentities($row['folder_name']),
|
|
'parent_folder' => intval($row['parent_folder']),
|
|
'children' => array()
|
|
);
|
|
}
|
|
|
|
// Build the folder hierarchy
|
|
foreach ($folders as $id => &$folder) {
|
|
if ($folder['parent_folder'] != 0 && isset($folders[$folder['parent_folder']])) {
|
|
$folders[$folder['parent_folder']]['children'][] = &$folder;
|
|
}
|
|
}
|
|
unset($folder); // Break the reference
|
|
|
|
// Prepare a list of root folders
|
|
$root_folders = array();
|
|
foreach ($folders as $id => $folder) {
|
|
if ($folder['parent_folder'] == 0) {
|
|
$root_folders[] = $folder;
|
|
}
|
|
}
|
|
|
|
// Display the folder options iteratively
|
|
$stack = array();
|
|
foreach (array_reverse($root_folders) as $folder) {
|
|
$stack[] = array('folder' => $folder, 'level' => 0);
|
|
}
|
|
|
|
while (!empty($stack)) {
|
|
$node = array_pop($stack);
|
|
$folder = $node['folder'];
|
|
$level = $node['level'];
|
|
|
|
// Indentation for subfolders
|
|
$indentation = str_repeat(' ', $level * 4);
|
|
|
|
// Check if this folder is selected
|
|
$selected = '';
|
|
if ($folder['folder_id'] == $file_folder_id) {
|
|
$selected = 'selected';
|
|
}
|
|
|
|
echo "<option value=\"{$folder['folder_id']}\" $selected>$indentation{$folder['folder_name']}</option>";
|
|
|
|
// Add children to the stack
|
|
if (!empty($folder['children'])) {
|
|
foreach (array_reverse($folder['children']) as $child_folder) {
|
|
$stack[] = array('folder' => $child_folder, 'level' => $level + 1);
|
|
}
|
|
}
|
|
}
|
|
?>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="submit" name="move_file" class="btn btn-primary text-bold"><i class="fa fa-check mr-2"></i>Move</button>
|
|
<button type="button" class="btn btn-light" data-dismiss="modal"><i class="fa fa-times mr-2"></i>Cancel</button>
|
|
</div>
|
|
</form>
|
|
|
|
<?php
|
|
require_once '../../../includes/modal_footer.php';
|