diff -r 0944c9354e9c -r 7c6e2e97aa08 plugins/gallery/upload.php --- a/plugins/gallery/upload.php Sat Aug 21 23:25:41 2010 -0400 +++ b/plugins/gallery/upload.php Sat Aug 21 23:32:06 2010 -0400 @@ -20,1071 +20,840 @@ function page_Special_GalleryUpload() { - global $db, $session, $paths, $template, $plugins; // Common objects - - if ( $session->user_level < USER_LEVEL_ADMIN ) - { - die_friendly('Access denied', '

You need to have administrative rights to use the gallery\'s upload features.

'); - } - - $zip_support = ( class_exists('ZipArchive') || ( file_exists('/usr/bin/unzip') && is_executable('/usr/bin/unzip') ) ); - - $errors = array(); - $template->add_header(''); - $template->add_header(''); - - $max_size = @ini_get('upload_max_filesize'); - $max_size_field = ''; - if ( $max_size ) - { - if ( preg_match('/M$/i', $max_size) ) - { - $max_size = intval($max_size) * 1048576; - } - else if ( preg_match('/K$/i', $max_size) ) - { - $max_size = intval($max_size) * 1024; - } - else if ( preg_match('/G$/i', $max_size) ) - { - $max_size = intval($max_size) * 1048576 * 1024; - } - $max_size = intval($max_size); - $max_size_field = "\n" . '' . "\n"; - } - - if ( isset($_GET['edit_img']) ) - { - $edit_parms = $_GET['edit_img']; - $regex = '/^((([0-9]+),)*)?([0-9]+?)$/'; - if ( !preg_match($regex, $edit_parms) ) - { - die_friendly('Bad request', '

$_GET[\'edit_img\'] must be a comma-separated list of image IDs.

'); - } - - $idlist = explode(',', $edit_parms); - $num_edit = count($idlist); - $idlist = "SELECT img_id,img_title,img_desc,img_filename,is_folder FROM ".table_prefix."gallery WHERE img_id=" . implode(' OR img_id=', $idlist) . ';'; - - if ( !$e = $db->sql_query($idlist) ) - $db->_die(); - - $template->header(); - - if ( isset($_POST['edit_do_save']) ) - { - @set_time_limit(0); - - $arr_img_data = array(); - while ( $row = $db->fetchrow($e) ) - $arr_img_data[$row['img_id']] = $row; - - // Allow breaking out - switch(true):case true: - - if ( !is_array($_POST['img']) ) - { - $errors[] = 'No images passed to processor.'; - break; - } - - // Main updater loop - foreach ( $_POST['img'] as $img_id => $img_data ) - { - - if ( !preg_match('/^[0-9]+$/', $img_id) ) - { - $errors[] = 'SQL injection attempted!'; - break 2; - } - - // Array of columns to update - $to_update = array(); - - $key = 'reupload_' . $img_data['id']; - if ( isset($_FILES[$key]) ) - { - $file =& $_FILES[ $key ]; - if ( $file['tmp_name'] != '' ) - { - // Reupload - $filename = ENANO_ROOT . '/files/' . $arr_img_data[ $img_data['id'] ]['img_filename']; - if ( !unlink($filename) ) - { - $errors[] = "Could not delete $filename"; - break 2; - } - if ( !@move_uploaded_file($file['tmp_name'], $filename) ) - { - $errors[] = "Could not move uploaded file to $filename"; - break 2; - } - - // - // Create scaled images - // - - // Create thumbnail image - $thumb_filename = ENANO_ROOT . '/cache/' . $arr_img_data[ $img_data['id'] ]['img_filename'] . '-thumb.jpg'; - if ( !unlink($thumb_filename) ) - { - $errors[] = "Could not delete $thumb_filename"; - break 2; - } - - if ( !scale_image($filename, $thumb_filename, 80, 80) ) - { - $errors[] = 'Couldn\'t scale image '.$i.': ImageMagick failed us'; - break 2; - } - - // Create preview image - $preview_filename = ENANO_ROOT . '/cache/' . $arr_img_data[ $img_data['id'] ]['img_filename'] . '-preview.jpg'; - if ( !unlink($preview_filename) ) - { - $errors[] = "Could not delete $preview_filename"; - break 2; - } - - if ( !scale_image($filename, $preview_filename, 640, 480) ) - { - $errors[] = 'Couldn\'t scale image '.$i.': ImageMagick failed us'; - break 2; - } - - $to_update['img_time_mod'] = strval(time()); - } - } - - $vars = array( - 'year' => date('Y'), - 'month' => date('F'), - 'day' => date('d'), - 'time12' => date('g:i A'), - 'time24' => date('G:i') - ); - - // Image name/title - - $title = $template->makeParserText($img_data['title']); - $title->assign_vars($vars); - $executed = $title->run(); - if ( $executed == '_id' ) - { - $errors[] = 'You cannot name an image or folder "_id", this name is reserved for internal functions.'; - break 2; - } - if ( $executed == '' ) - { - $errors[] = 'Please enter a name for the item with unique ID ' . $img_data['id'] . '.
' . print_r($_POST,true) . '
'; - break 2; - } - $to_update['img_title'] = $executed; - - // Image description - - if ( isset($img_data['desc']) ) - { - $desc = $template->makeParserText($img_data['desc']); - $desc->assign_vars($vars); - $executed = $desc->run(); - $executed = RenderMan::preprocess_text($executed, false, false); - $to_update['img_desc'] = $executed; - } - - // Folder - $target_folder = false; - - if ( !empty($_POST['override_folder']) ) - { - if ( $_POST['override_folder'] == 'NULL' || preg_match('/^[0-9]+$/', $_POST['override_folder']) ) - { - $target_folder = $_POST['override_folder']; - } - } - - if ( !empty($img_data['folder']) ) - { - if ( $img_data['folder'] == 'NULL' || preg_match('/^[0-9]+$/', $img_data['folder']) ) - { - $target_folder = $img_data['folder']; - } - } - - if ( $target_folder ) - { - // Make sure we're not trying to move a folder to itself or a subdirectory of itself - - $children = gal_fetch_all_children(intval($img_data['id'])); - if ( $img_data['id'] == $target_folder || in_array($target_folder, $children) ) - { - $errors[] = 'You are trying to move a folder to itself, or to a subdirectory of itself, which is not allowed. If done manually (i.e. via an SQL client) this will result in infinite loops in the folder sorting code.'; - break 2; - } - - $to_update['folder_parent'] = $target_folder; - } - - if ( count($to_update) > 0 ) - { - $up_keys = array_keys($to_update); - $up_vals = array_values($to_update); - - $bin_cols = array('folder_parent'); - - $sql = 'UPDATE ' . table_prefix.'gallery SET '; - - foreach ( $up_keys as $i => $key ) - { - if ( in_array($key, $bin_cols) ) - { - $sql .= $key . '=' . $up_vals[$i] . ','; - } - else - { - $sql .= $key . '=\'' . $db->escape($up_vals[$i]) . '\','; - } - } - - $sql = preg_replace('/,$/i', '', $sql) . ' WHERE img_id=' . $img_data['id'] . ';'; - - if ( !$db->sql_query($sql) ) - { - $db->_die(); - } - - } - - } - - echo '
Your changes have been saved.
'; - - endswitch; - - // Rerun select query to make sure information in PHP memory is up-to-date - if ( !$e = $db->sql_query($idlist) ) - $db->_die(); - - } - - if ( count($errors) > 0 ) - { - echo '
- The following errors were encountered while updating the image data:
- -
'; - } - - ?> - - '; - - echo $max_size_field; - - if ( $row = $db->fetchrow($e) ) - { - - echo '
- '; - echo ' '; - echo ' '; - echo '
Information
- As with the upload form, the following variables can be used. Note that when editing images, the {id} and {autotitle} variables will be ignored.'; - ?> -
    -
  • {year}: The current year ()
  • -
  • {month}: The current month ()
  • -
  • {day}: The day of the month ()
  • -
  • {time12}: 12-hour time ()
  • -
  • {time24}: 24-hour time ()
  • -
-
-
'; - - $i = 0; - do - { - $thumb_url = makeUrlNS('Special', 'GalleryFetcher/thumb/' . $row['img_id'], false, true); - - # Type: folder - if ( $row['is_folder'] == 1 ): - - // Image ID tracker - echo ''; - - // - // Editor table - // - - $folders = gallery_imgid_to_folder(intval($row['img_id'])); - foreach ( $folders as $j => $xxx ) - { - $folder =& $folders[$j]; - $folder = sanitize_page_id($folder); - } - $folders = array_reverse($folders); - $gal_href = implode('/', $folders) . ( count($folders) > 0 ? '/' : '' ) . sanitize_page_id($row['img_title']); - - echo '
- '; - - echo ''; - - // Primary key - echo ' - - - '; - - // Path info - echo ' - - - '; - - // Image name - - echo ' - - - '; - - // Mover widget - ?> - - - - - '; - echo ''; - - # Type: image - else: - - // Image ID tracker - echo ''; - - // - // Editor table - // - - echo '
-
Folder: ' . htmlspecialchars($row['img_title']) . '
Unique ID:' . $row['img_id'] . ' (view folder contents)
Parent folders:' . /* Yeah it's dirty, but hey, it gets the job done ;-) */ ( ( $x = str_replace('&raquo;', '»', htmlspecialchars(str_replace('_', ' ', implode(' » ', $folders)))) ) ? $x : '<in root>' ) . '
Folder name:
Move to folder: -
-
- >> - Select folder -
-
- -
- Unselect field -
-
-
'; - - echo ''; - - // Primary key - echo ' - - - '; - - // Thumbnail - - echo ' - - - '; - - // Image name - - echo ' - - - '; - - // Image description - - echo ' - - - '; - - // ACL editor trigger - - echo ' - - - '; - - // Mover widget - ?> - - - - - - - - '; - - // Finish table - echo '
Image: ' . htmlspecialchars($row['img_title']) . '
Unique ID:' . $row['img_id'] . ' (view image\'s page)
Thumbnail:Thumbnail image
Image title:
Image description:
Permissions:
Only works in Firefox 1.5 or later, Safari 3.x or later, or Opera 9.0 or later.
Move to folder: -
-
- >> - Select folder -
-
- -
- Unselect field -
-
-
Upload new version:
'; - echo '
'; - - endif; - - $i++; - } - while ( $row = $db->fetchrow($e) ); - $db->free_result(); - - echo '
- '; - // Mover widget - if ( $num_edit > 1 ): - ?> - - - - - '; - echo '
Move all to folder:
Other folder fields on this page can override this for individual images.
-
-
- >> - Select folder -
-
- -
- Unselect field -
-
-
-
'; - - } - else - { - echo '

No images that matched the ID list could be found.

'; - } - - echo ''; - - $template->footer(); - return; - } - - if ( isset($_GET['rm']) ) - { - $warnings = array(); - - if ( !preg_match('/^[0-9]+$/', $_GET['rm']) ) - die_friendly('Bad Request', '

$_GET[rm] needs to be an integer.

'); - - $rm_id = intval($_GET['rm']); - - if ( isset($_POST['confirmed']) ) - { - // The user confirmed the request. Start plowing through data to decide what to delete. - - // Array of images and folder rows to delete - $del_imgs = array($rm_id); - // Array of files to delete - $del_files = array(); - // Array of comment entries to delete - $del_comments = array(); - - $all_children = gal_fetch_all_children($rm_id); - $del_imgs = array_merge($del_imgs, $all_children); - - $imglist = 'img_id=' . implode(' OR img_id=', $del_imgs); - $sql = "SELECT img_id, img_filename FROM ".table_prefix."gallery WHERE ( $imglist ) AND is_folder!=1;"; - - if ( !$db->sql_query($sql) ) - { - $db->_die(); - } - - while ( $row = $db->fetchrow() ) - { - $files = array( - ENANO_ROOT . '/files/' . $row['img_filename'], - ENANO_ROOT . '/cache/' . $row['img_filename'] . '-thumb.jpg', - ENANO_ROOT . '/cache/' . $row['img_filename'] . '-preview.jpg' - ); - $del_files = array_merge($del_files, $files); - - $del_comments[] = intval($row['img_id']); - } - - $commentlist = 'page_id=\'' . implode('\' OR page_id=\'', $del_imgs) . '\''; - - // Main deletion cycle - - foreach ( $del_files as $file ) - { - @unlink($file) or $warnings[] = 'Could not delete file ' . $file; - } - - if ( !$db->sql_query('DELETE FROM '.table_prefix.'gallery WHERE ' . $imglist . ';') ) - { - $warnings[] = 'Main delete query failed: ' . $db->get_error(); - } - - if ( !$db->sql_query('DELETE FROM '.table_prefix.'comments WHERE ( ' . $commentlist . ' ) AND namespace=\'Gallery\';') ) - { - $warnings[] = 'Comment delete query failed: ' . $db->get_error(); - } - - if ( count($warnings) > 0 ) - { - $template->header(); - - echo '

Error during deletion process

'; - echo '

The deletion process generated some warnings which are shown below.

'; - echo ''; - - $template->footer(); - } - else - { - redirect(makeUrlNS('Special', 'Gallery'), 'Deletion successful', 'The selected item has been deleted from the gallery. You will now be transferred to the gallery index.', 2); - } - - } - else - { - // Removal form - $template->header(); - - echo '
'; - echo $max_size_field; - - echo '

Are you sure you want to delete this item?

'; - echo '

If you continue, this item will be permanently deleted from the gallery – no rollbacks.

'; - echo '

If this is an image, the image files will be removed from the filesystem, and all comments associated with the image will be deleted, as well as the image\'s title, description, and location.

'; - echo '

If this is a folder, all of its contents will be removed. Any images will be removed from the filesystem and all comments and metadata associated with images in this folder or any folders in it will be permanently deleted.

'; - - echo '

'; - - echo '
'; - - $template->footer(); - } - return; - } - - if ( isset($_POST['do_stage2']) ) - { - // Allow breaking out of the validation in the case of an error - switch(true):case true: - - if ( empty($_POST['img_name']) ) - { - $errors[] = 'Please enter an image name.'; - } - - // Validate files - $n_files = intval($_POST['img_count']); - if ( $n_files < 1 ) - { - $errors[] = 'Cannot get image count'; - break; - } - - $files = array(); - - for ( $i = 0; $i < $n_files; $i++ ) - { - $key = "img_$i"; - if ( isset($_FILES[$key]) && !empty($_FILES[$key]['name']) ) - { - $files[] =& $_FILES[$key]; - } - } - - if ( count($files) < 1 ) - { - $errors[] = 'No files specified.'; - break; - } - - $allowed = array('png', 'jpg', 'jpeg', 'tiff', 'tif', 'bmp', 'gif'); - $is_zip = false; - foreach ( $files as $i => $file ) - { - $ext = substr($file['name'], ( strrpos($file['name'], '.') + 1 )); - $ext = strtolower($ext); - if ( !in_array($ext, $allowed) && ( !$zip_support || ( $ext != 'zip' || $i > 0 ) ) ) - { - $errors[] = htmlspecialchars($file['name']) . ' is an invalid extension (' . htmlspecialchars($ext) . ').'; - } - else if ( $ext == 'zip' && $i == 0 && $zip_support ) - { - $is_zip = true; - } - } - - if ( count($errors) > 0 ) - { - // Send error messages - break; - } - - // Parent folder - $folder = $_POST['folder_id']; - if ( $folder != 'NULL' && !preg_match('/^[0-9]+$/', $folder) ) - { - $folder = 'NULL'; - } - - // Format title and description fields - $title = $template->makeParserText($_POST['img_name']); - $desc = $template->makeParserText($_POST['img_desc']); - - $vars = array( - 'year' => date('Y'), - 'month' => date('F'), - 'day' => date('d'), - 'time12' => date('g:i A'), - 'time24' => date('G:i') - ); - - $title->assign_vars($vars); - $desc->assign_vars($vars); - - $idlist = array(); - - // Try to disable the time limit - @set_time_limit(0); - - // Move uploaded files to the files/ directory - foreach ( $files as $i => $__trash ) - { - $file =& $files[$i]; - $ext = substr($file['name'], ( strrpos($file['name'], '.') + 1 )); - $ext = strtolower($ext); - if ( $ext == 'zip' && $is_zip && $zip_support ) - { - // - // Time for some unzipping fun. - // - - error_reporting(E_ALL); - - mkdir(ENANO_ROOT . '/cache/temp') or $errors[] = 'Could not create temporary directory for extraction.'; - if ( count($errors) > 0 ) - break 2; - $temp_dir = tempnam(ENANO_ROOT . '/cache/temp', 'galunz'); - if ( file_exists($temp_dir) ) - unlink($temp_dir); - @mkdir($temp_dir); - - // Extract the zip file - if ( class_exists('ZipArchive') ) - { - $zip = new ZipArchive(); - $op = $zip->open($file['tmp_name']); - if ( !$op ) - { - $errors[] = 'Could not open the zip file.'; - break 2; - } - $op = $zip->extractTo($temp_dir); - if ( !$op ) - { - $errors[] = 'Could not extract the zip file.'; - break 2; - } - } - else if ( file_exists('/usr/bin/unzip') ) - { - $cmd = "/usr/bin/unzip -qq -d $temp_dir {$file['tmp_name']}"; - system($cmd); - } - - // Any files? - $file_list = gal_dir_recurse($temp_dir, $dirs); - if ( !$file_list ) - { - $errors[] = 'Could not get file list for temp directory.'; - break 2; - } - if ( count($file_list) < 1 ) - { - $errors[] = 'There weren\'t any files in the uploaded zip file.'; - } - - $dirs = array_reverse($dirs); - $img_files = array(); - - // Loop through and add files - foreach ( $file_list as $file ) - { - $ext = get_file_extension($file); - - if ( in_array($ext, $allowed) ) - { - $img_files[] = $file; - } - else - { - unlink($file); - } - } - - // Main storage loop - $j = 0; - foreach ( $img_files as $file ) - { - $ext = get_file_extension($file); - $stored_name = gallery_make_filename() . ".$ext"; - $store = ENANO_ROOT . '/files/' . $stored_name; - if ( !rename($file, $store) ) - { - $errors[] = 'Could not move file ' . $file . ' to permanent storage location ' . $store . '.'; - break 3; - } - - $autotitle = ucwords(basename($file)); - $autotitle = substr($autotitle, 0, ( strrpos($autotitle, '.') )); - $autotitle = str_replace('_', ' ', $autotitle); - - $title->assign_vars(array('id' => ( $j + 1 ), 'autotitle' => $autotitle)); - $desc->assign_vars(array('id' => ( $j + 1 ), 'autotitle' => $autotitle)); - - $local_t = $title->run(); - $local_t = RenderMan::preprocess_text($local_t, true, false); - - $local_d = $desc->run(); - $local_d = RenderMan::preprocess_text($local_d, true, false); - - $subq = '(\'' . $stored_name . '\', \'' . $db->escape($local_t) . '\', \'' . $db->escape($local_d) . '\',\'a:0:{}\', UNIX_TIMESTAMP(), UNIX_TIMESTAMP(), ' . $folder . ', \'[]\')'; - $sql = "INSERT INTO ".table_prefix."gallery(img_filename,img_title,img_desc,print_sizes,img_time_upload,img_time_mod,folder_parent,img_tags) VALUES{$subq};"; - - if ( !$db->sql_query($sql) ) - $db->_die(); - - $idlist[] = $db->insert_id(); - - // - // Create scaled images - // - - // Create thumbnail image - $thumb_filename = ENANO_ROOT . '/cache/' . $stored_name . '-thumb.jpg'; - if ( file_exists($thumb_filename) ) - { - if ( !unlink($thumb_filename) ) - { - $errors[] = "Could not delete $thumb_filename"; - break 2; - } - } - - if ( !scale_image($store, $thumb_filename, 80, 80) ) - { - $errors[] = 'Couldn\'t scale image '.$i.': ImageMagick failed us'; - break 2; - } - - // Create preview image - $preview_filename = ENANO_ROOT . '/cache/' . $stored_name . '-preview.jpg'; - if ( file_exists($preview_filename) ) - { - if ( !unlink($preview_filename) ) - { - $errors[] = "Could not delete $preview_filename"; - break 2; - } - } - - if ( !scale_image($store, $preview_filename, 640, 640) ) - { - $errors[] = 'Couldn\'t scale image '.$i.': ImageMagick failed us'; - break 2; - } - - $j++; - } - - // clean up - foreach ( $dirs as $dir ) - { - rmdir($dir); - } - - rmdir( $temp_dir ) or $errors[] = 'Couldn\'t delete the unzip directory.'; - rmdir( ENANO_ROOT . '/cache/temp' ) or $errors[] = 'Couldn\'t delete the temp directory.'; - if ( count($errors) > 0 ) - break 2; - - $idlist = implode(',', $idlist); - $url = makeUrlNS('Special', 'GalleryUpload', "edit_img=$idlist"); - - redirect($url, 'Upload successful', 'Your images have been uploaded successfully. Please wait while you are transferred...', 2); - - break 2; - } - $file['stored_name'] = gallery_make_filename() . '.' . $ext; - $store = ENANO_ROOT . '/files/' . $file['stored_name']; - if ( !@move_uploaded_file($file['tmp_name'], $store) ) - { - $errors[] = "[Internal] Couldn't move temporary file {$file['tmp_name']} to permanently stored file $store"; - break 2; - } - - $autotitle = ucwords(basename($file['name'])); - $autotitle = substr($autotitle, 0, ( strrpos($autotitle, '.') )); - $autotitle = str_replace('_', ' ', $autotitle); - - $title->assign_vars(array('id' => ( $i + 1 ), 'autotitle' => $autotitle)); - $desc->assign_vars (array('id' => ( $i + 1 ), 'autotitle' => $autotitle)); - - $local_t = $title->run(); - $local_t = RenderMan::preprocess_text($local_t, true, false); - - $local_d = $desc->run(); - $local_d = RenderMan::preprocess_text($local_d, true, false); - - $subq = '(\'' . $file['stored_name'] . '\', \'' . $db->escape($local_t) . '\', \'' . $db->escape($local_d) . '\',\'a:0:{}\', UNIX_TIMESTAMP(), UNIX_TIMESTAMP(), ' . $folder . ', \'[]\')'; - $sql = "INSERT INTO ".table_prefix."gallery(img_filename,img_title,img_desc,print_sizes,img_time_upload,img_time_mod,folder_parent,img_tags) VALUES{$subq};"; - - if ( !$db->sql_query($sql) ) - $db->_die(); - - $idlist[] = $db->insert_id(); - - // Create thumbnail image - $thumb_filename = ENANO_ROOT . '/cache/' . $file['stored_name'] . '-thumb.jpg'; - $magick = getConfig('imagemagick_path'); - $command = "$magick '{$store}' -resize ".'"'."80x80>".'"'." -quality 85 $thumb_filename"; - - @system($command, $stat); - - if ( !file_exists($thumb_filename) ) - { - $errors[] = 'Couldn\'t scale image '.$i.': ImageMagick failed us'; - break 2; - } - - // Create preview image - $preview_filename = ENANO_ROOT . '/cache/' . $file['stored_name'] . '-preview.jpg'; - $magick = getConfig('imagemagick_path'); - $command = "$magick '{$store}' -resize ".'"'."640x640>".'"'." -quality 85 $preview_filename"; - - @system($command, $stat); - - if ( !file_exists($preview_filename) ) - { - $errors[] = 'Couldn\'t scale image '.$i.': ImageMagick failed us'; - break 2; - } - - } - - $idlist = implode(',', $idlist); - $url = makeUrlNS('Special', 'GalleryUpload', "edit_img=$idlist"); - - redirect($url, 'Upload successful', 'Your images have been uploaded successfully. Please wait while you are transferred...', 2); - - return; - - endswitch; - } - - // Smart batch-upload interface - $template->header(); - - ?> - - - '; - echo $max_size_field; - if ( count($errors) > 0 ) - { - echo '
- The following errors were encountered during the upload:
- -
'; - } - ?> -
- - - - - - - - - - - - - - - - - - - - - - - -
Upload images to gallery
Image name template:
Image description template:
-

The name and description templates can contain the following variables:

-
    -
  • {id}: The number of the image (different for each image)
  • -
  • {autotitle}: Let the uploader automatically generate a title, based on the filename (david_in_the_barn.jpg will become "David in the barn"). Sometimes this process can be very dumb (mtrooper2k5.jpg will become "Mtrooper2k5").
  • -
  • {year}: The current year ()
  • -
  • {month}: The current month ()
  • -
  • {day}: The day of the month ()
  • -
  • {time12}: 12-hour time ()
  • -
  • {time24}: 24-hour time ()
  • -
-

Example:

-
- Image files: - -
- Your server has support for zip files. - Instead of uploading many image files, you can upload a single zip file here. Note that if you send a zip file through, - it must be the first and only file or it will be ignored. Any files in the zip archive that are not supported image - files will be ignored. - The maximum file size is {$sz}B."; - } - ?> - - -
-
-
-
-
-
- - -
Upload to folder: -
-
- >> - Select folder -
-
- -
-
-
- - - - - -
- Please press the Upload button only once! Depending on the size of your image files and the speed of your connection, the upload may take several minutes. - -
-
-
- '; - - $template->footer(); - + global $db, $session, $paths, $template, $plugins; // Common objects + + if ( $session->user_level < USER_LEVEL_ADMIN ) + { + die_friendly('Access denied', '

You need to have administrative rights to use the gallery\'s upload features.

'); + } + + $zip_support = ( class_exists('ZipArchive') || ( file_exists('/usr/bin/unzip') && is_executable('/usr/bin/unzip') ) ); + + $errors = array(); + $template->add_header(''); + $template->add_header(''); + + $max_size_field = get_max_size_field(); + + // + // EDIT IMAGES + // + if ( isset($_GET['edit_img']) ) + { + $edit_parms = $_GET['edit_img']; + $regex = '/^((([0-9]+),)*)?([0-9]+?)$/'; + if ( !preg_match($regex, $edit_parms) ) + { + die_friendly('Bad request', '

$_GET[\'edit_img\'] must be a comma-separated list of image IDs.

'); + } + + // process any uploaded images + // FIXME is this a bad place for this? + $limit = isset($_GET['ajax']) ? '' : "LIMIT 5"; + $q = $db->sql_query('SELECT img_id FROM ' . table_prefix . "gallery WHERE is_folder = 0 AND processed = 0 $limit;"); + if ( !$q ) + $db->_die(); + if ( $db->numrows() > 0 ) + { + while ( $row = $db->fetchrow($q) ) + { + snapr_process_image($row['img_id']); + } + $q = $db->sql_query('SELECT COUNT(img_id) FROM ' . table_prefix . "gallery WHERE is_folder = 0 AND processed = 0;"); + if ( !$q ) + $db->_die(); + list($count) = $db->fetchrow_num(); + $db->free_result(); + if ( intval($count) > 0 ) + redirect(makeUrlNS('Special', 'GalleryUpload', "edit_img={$_GET['edit_img']}"), "Processing images", "Processing images... $count remaining", 1); + } + + if ( !isset($_GET['ajax']) ) + $template->header(); + + snapr_editform($edit_parms); + + if ( !isset($_GET['ajax']) ) + $template->footer(); + + return; + } + // + // REMOVE IMAGES + // + else if ( isset($_GET['rm']) ) + { + $warnings = array(); + + if ( !preg_match('/^[0-9]+$/', $_GET['rm']) ) + die_friendly('Bad Request', '

$_GET[rm] needs to be an integer.

'); + + $rm_id = intval($_GET['rm']); + + if ( isset($_POST['confirmed']) ) + { + // The user confirmed the request. Start plowing through data to decide what to delete. + + // Array of images and folder rows to delete + $del_imgs = array($rm_id); + // Array of files to delete + $del_files = array(); + // Array of comment entries to delete + $del_comments = array(); + + $all_children = gal_fetch_all_children($rm_id); + $del_imgs = array_merge($del_imgs, $all_children); + + $imglist = 'img_id=' . implode(' OR img_id=', $del_imgs); + $sql = "SELECT img_id, img_filename FROM ".table_prefix."gallery WHERE ( $imglist ) AND is_folder!=1;"; + + if ( !$db->sql_query($sql) ) + { + $db->_die(); + } + + while ( $row = $db->fetchrow() ) + { + $files = array( + ENANO_ROOT . '/files/' . $row['img_filename'], + ENANO_ROOT . '/cache/' . $row['img_filename'] . '-thumb.jpg', + ENANO_ROOT . '/cache/' . $row['img_filename'] . '-preview.jpg' + ); + $del_files = array_merge($del_files, $files); + + $del_comments[] = intval($row['img_id']); + } + + $commentlist = 'page_id=\'' . implode('\' OR page_id=\'', $del_imgs) . '\''; + + // Main deletion cycle + + foreach ( $del_files as $file ) + { + @unlink($file) or $warnings[] = 'Could not delete file ' . $file; + } + + if ( !$db->sql_query('DELETE FROM '.table_prefix.'gallery WHERE ' . $imglist . ';') ) + { + $warnings[] = 'Main delete query failed: ' . $db->get_error(); + } + + if ( !$db->sql_query('DELETE FROM '.table_prefix.'comments WHERE ( ' . $commentlist . ' ) AND namespace=\'Gallery\';') ) + { + $warnings[] = 'Comment delete query failed: ' . $db->get_error(); + } + + if ( count($warnings) > 0 ) + { + $template->header(); + + echo '

Error during deletion process

'; + echo '

The deletion process generated some warnings which are shown below.

'; + echo ''; + + $template->footer(); + } + else + { + redirect(makeUrlNS('Special', 'Gallery'), 'Deletion successful', 'The selected item has been deleted from the gallery. You will now be transferred to the gallery index.', 2); + } + + } + else + { + // Removal form + $template->header(); + + echo '
'; + echo $max_size_field; + + echo '

Are you sure you want to delete this item?

'; + echo '

If you continue, this item will be permanently deleted from the gallery – no rollbacks.

'; + echo '

If this is an image, the image files will be removed from the filesystem, and all comments associated with the image will be deleted, as well as the image\'s title, description, and location.

'; + echo '

If this is a folder, all of its contents will be removed. Any images will be removed from the filesystem and all comments and metadata associated with images in this folder or any folders in it will be permanently deleted.

'; + + echo '

'; + + echo '
'; + + $template->footer(); + } + return; + } + else if ( isset($_GET['ajax_proc_status']) ) + { + $q = $db->sql_query("SELECT COUNT(img_id) FROM " . table_prefix . "gallery WHERE processed = 0;"); + if ( !$q ) + $db->_die(); + list($count) = $db->fetchrow_num(); + echo $count; + return; + } + else + { + if ( isset($_POST['do_upload']) ) + { + $files =& $_FILES['files']; + $numfiles = count($files['name']); + $idlist = array(); + $destfolder = intval($_POST['targetfolder']); + if ( $destfolder < 1 ) + $destfolder = NULL; + for ( $i = 0; $i < $numfiles; $i++ ) + { + $ext = get_file_extension($files['name'][$i]); + if ( snapr_extension_allowed($ext) ) + { + // normal image + $result = snapr_insert_image($files['tmp_name'][$i], $destfolder); + if ( $result !== false ) + $idlist[] = $result; + } + else if ( strtolower($ext) == 'zip' ) + { + // zip file + $zipidlist = snapr_process_zip($files['tmp_name'][$i], $destfolder); + if ( $zipidlist ) + $idlist = array_merge($idlist, $zipidlist); + } + else + { + // FIXME handle unsupported files... maybe? + } + } + $idlist = implode(',', $idlist); + echo '
[' . $idlist . ']
'; + //snapr_editform($idlist); + return; + } + + // Oh yes, the image uploader! + $template->preload_js(array('jquery', 'jquery-ui', 'upload')); + $template->header(); + + ?> +
+ + + + +
+ + + + + + + + + + + + + + + + + + +
Upload files to the gallery
+ Select files: + + + + +
+ Upload into folder: + + +
+ Supported formats: +
+ + Checkmark JPEG images         + Checkmark PNG images         + Checkmark GIF images         + + Checkmark Zip archives + + X mark Zip archives +
+ Maximum file size: + +
+ +
+
+
+ + footer(); + +} + +function snapr_editform($edit_parms) +{ + global $db, $session, $paths, $template, $plugins; // Common objects + + $max_size_field = get_max_size_field(); + $errors = array(); + $idlist = explode(',', $edit_parms); + $num_edit = count($idlist); + $idlist = "SELECT img_id,img_title,img_desc,img_filename,is_folder FROM ".table_prefix."gallery WHERE img_id=" . implode(' OR img_id=', $idlist) . ';'; + + if ( !$e = $db->sql_query($idlist) ) + $db->_die(); + + if ( isset($_POST['edit_do_save']) ) + { + @set_time_limit(0); + + $arr_img_data = array(); + while ( $row = $db->fetchrow($e) ) + $arr_img_data[$row['img_id']] = $row; + + // Allow breaking out + switch(true):case true: + + if ( !is_array($_POST['img']) ) + { + $errors[] = 'No images passed to processor.'; + break; + } + + // Main updater loop + foreach ( $_POST['img'] as $img_id => $img_data ) + { + + if ( !preg_match('/^[0-9]+$/', $img_id) ) + { + $errors[] = 'SQL injection attempted!'; + break 2; + } + + // Array of columns to update + $to_update = array(); + + $key = 'reupload_' . $img_data['id']; + if ( isset($_FILES[$key]) ) + { + $file =& $_FILES[ $key ]; + if ( $file['tmp_name'] != '' ) + { + // Reupload + $filename = ENANO_ROOT . '/files/' . $arr_img_data[ $img_data['id'] ]['img_filename']; + if ( !unlink($filename) ) + { + $errors[] = "Could not delete $filename"; + break 2; + } + if ( !@move_uploaded_file($file['tmp_name'], $filename) ) + { + $errors[] = "Could not move uploaded file to $filename"; + break 2; + } + + // + // Create scaled images + // + + // Create thumbnail image + $thumb_filename = ENANO_ROOT . '/cache/' . $arr_img_data[ $img_data['id'] ]['img_filename'] . '-thumb.jpg'; + if ( !unlink($thumb_filename) ) + { + $errors[] = "Could not delete $thumb_filename"; + break 2; + } + + if ( !scale_image($filename, $thumb_filename, 80, 80) ) + { + $errors[] = 'Couldn\'t scale image '.$i.': ImageMagick failed us'; + break 2; + } + + // Create preview image + $preview_filename = ENANO_ROOT . '/cache/' . $arr_img_data[ $img_data['id'] ]['img_filename'] . '-preview.jpg'; + if ( !unlink($preview_filename) ) + { + $errors[] = "Could not delete $preview_filename"; + break 2; + } + + if ( !scale_image($filename, $preview_filename, 640, 480) ) + { + $errors[] = 'Couldn\'t scale image '.$i.': ImageMagick failed us'; + break 2; + } + + $to_update['img_time_mod'] = strval(time()); + } + } + + $vars = array( + 'year' => date('Y'), + 'month' => date('F'), + 'day' => date('d'), + 'time12' => date('g:i A'), + 'time24' => date('G:i') + ); + + // Image name/title + + $title = $template->makeParserText($img_data['title']); + $title->assign_vars($vars); + $executed = $title->run(); + if ( $executed == '_id' ) + { + $errors[] = 'You cannot name an image or folder "_id", this name is reserved for internal functions.'; + break 2; + } + if ( $executed == '' ) + { + $errors[] = 'Please enter a name for the item with unique ID ' . $img_data['id'] . '.
' . print_r($_POST,true) . '
'; + break 2; + } + $to_update['img_title'] = $executed; + + // Image description + + if ( isset($img_data['desc']) ) + { + $desc = $template->makeParserText($img_data['desc']); + $desc->assign_vars($vars); + $executed = $desc->run(); + $executed = RenderMan::preprocess_text($executed, false, false); + $to_update['img_desc'] = $executed; + } + + // Folder + $target_folder = false; + + if ( !empty($_POST['override_folder']) ) + { + if ( $_POST['override_folder'] == 'NULL' || preg_match('/^[0-9]+$/', $_POST['override_folder']) ) + { + $target_folder = $_POST['override_folder']; + } + } + + if ( !empty($img_data['folder']) ) + { + if ( $img_data['folder'] == 'NULL' || preg_match('/^[0-9]+$/', $img_data['folder']) ) + { + $target_folder = $img_data['folder']; + } + } + + if ( $target_folder ) + { + // Make sure we're not trying to move a folder to itself or a subdirectory of itself + + $children = gal_fetch_all_children(intval($img_data['id'])); + if ( $img_data['id'] == $target_folder || in_array($target_folder, $children) ) + { + $errors[] = 'You are trying to move a folder to itself, or to a subdirectory of itself, which is not allowed. If done manually (i.e. via an SQL client) this will result in infinite loops in the folder sorting code.'; + break 2; + } + + $to_update['folder_parent'] = $target_folder; + } + + if ( count($to_update) > 0 ) + { + $up_keys = array_keys($to_update); + $up_vals = array_values($to_update); + + $bin_cols = array('folder_parent'); + + $sql = 'UPDATE ' . table_prefix.'gallery SET '; + + foreach ( $up_keys as $i => $key ) + { + if ( in_array($key, $bin_cols) ) + { + $sql .= $key . '=' . $up_vals[$i] . ','; + } + else + { + $sql .= $key . '=\'' . $db->escape($up_vals[$i]) . '\','; + } + } + + $sql = preg_replace('/,$/i', '', $sql) . ' WHERE img_id=' . $img_data['id'] . ';'; + + if ( !$db->sql_query($sql) ) + { + $db->_die(); + } + + } + + } + + echo '
Your changes have been saved.
'; + + endswitch; + + // Rerun select query to make sure information in PHP memory is up-to-date + if ( !$e = $db->sql_query($idlist) ) + $db->_die(); + + } + + if ( count($errors) > 0 ) + { + echo '
+ The following errors were encountered while updating the image data:
+ +
'; + } + + echo '
'; + + echo $max_size_field; + + if ( $row = $db->fetchrow($e) ) + { + + echo '
+ '; + echo ' '; + echo ' '; + echo '
Information
+ As with the upload form, the following variables can be used. Note that when editing images, the {id} and {autotitle} variables will be ignored.'; + ?> +
    +
  • {year}: The current year ()
  • +
  • {month}: The current month ()
  • +
  • {day}: The day of the month ()
  • +
  • {time12}: 12-hour time ()
  • +
  • {time24}: 24-hour time ()
  • +
+
+
'; + + $i = 0; + do + { + $thumb_url = makeUrlNS('Special', 'GalleryFetcher/thumb/' . $row['img_id'], false, true); + + # Type: folder + if ( $row['is_folder'] == 1 ): + + // Image ID tracker + echo ''; + + // + // Editor table + // + + $folders = gallery_imgid_to_folder(intval($row['img_id'])); + foreach ( $folders as $j => $xxx ) + { + $folder =& $folders[$j]; + $folder = sanitize_page_id($folder); + } + $folders = array_reverse($folders); + $gal_href = implode('/', $folders) . ( count($folders) > 0 ? '/' : '' ) . sanitize_page_id($row['img_title']); + + echo '
+ '; + + echo ''; + + // Primary key + echo ' + + + '; + + // Path info + echo ' + + + '; + + // Image name + + echo ' + + + '; + + // Mover widget + ?> + + + + + '; + echo ''; + + # Type: image + else: + + // Image ID tracker + echo ''; + + // + // Editor table + // + + echo '
+
Folder: ' . htmlspecialchars($row['img_title']) . '
Unique ID:' . $row['img_id'] . ' (view folder contents)
Parent folders:' . /* Yeah it's dirty, but hey, it gets the job done ;-) */ ( ( $x = str_replace('&raquo;', '»', htmlspecialchars(str_replace('_', ' ', implode(' » ', $folders)))) ) ? $x : '<in root>' ) . '
Folder name:
Move to folder: +
+
+ >> + Select folder +
+
+ +
+ Unselect field +
+
+
'; + + echo ''; + + // Primary key + echo ' + + + '; + + // Thumbnail + + echo ' + + + '; + + // Image name + + echo ' + + + '; + + // Image description + + echo ' + + + '; + + // ACL editor trigger + + echo ' + + + '; + + // Mover widget + ?> + + + + + + + + '; + + // Finish table + echo '
Image: ' . htmlspecialchars($row['img_title']) . '
Unique ID:' . $row['img_id'] . ' (view image\'s page)
Thumbnail:Thumbnail image
Image title:
Image description:
Permissions:
Only works in Firefox 1.5 or later, Safari 3.x or later, or Opera 9.0 or later.
Move to folder: +
+
+ >> + Select folder +
+
+ +
+ Unselect field +
+
+
Upload new version:
'; + echo '
'; + + endif; + + $i++; + } + while ( $row = $db->fetchrow($e) ); + $db->free_result(); + + echo '
+ '; + // Mover widget + if ( $num_edit > 1 ): + ?> + + + + + '; + echo '
Move all to folder:
Other folder fields on this page can override this for individual images.
+
+
+ >> + Select folder +
+
+ +
+ Unselect field +
+
+
+
'; + + } + else + { + echo '

No images that matched the ID list could be found.

'; + } + + echo '
'; +} + +function get_max_size_field() +{ + $max_size = @ini_get('upload_max_filesize'); + $max_size_field = ''; + if ( $max_size ) + { + if ( preg_match('/M$/i', $max_size) ) + { + $max_size = intval($max_size) * 1048576; + } + else if ( preg_match('/K$/i', $max_size) ) + { + $max_size = intval($max_size) * 1024; + } + else if ( preg_match('/G$/i', $max_size) ) + { + $max_size = intval($max_size) * 1048576 * 1024; + } + $max_size = intval($max_size); + $max_size_field = "\n" . '' . "\n"; + } + return $max_size_field; } ?>