0, 'filepath' => '', 'filename' => '', 'filemime' => '', 'filesize' => 0); } $files = _field_file_cache(); // Serve file from internal cache if available. if (empty($files[$fid])) { if (is_numeric($fid)) { $file = db_fetch_object(db_query('SELECT f.* FROM {files} f WHERE f.fid = %d', $fid)); } else { $file = db_fetch_object(db_query("SELECT f.* FROM {files} f WHERE f.filepath = '%s'", $fid)); } if (!$file) { $file = array('fid' => 0, 'filepath' => '', 'filename' => '', 'filemime' => '', 'filesize' => 0); } foreach (module_implements('file_load') as $module) { $function = $module .'_file_load'; $function($file); } // Cache the fully loaded file for later reusability. $files = _field_file_cache($file); } // Cast to array for field. hook_file() expects objects as well as // core file functions. return (array)$files[$fid]; } /** * Save a file upload to a new location. The source file is validated as a * proper upload and handled as such. By implementing hook_file($op = 'insert'), * modules are able to act on the file upload and to add their own properties * to the file. * * The file will be added to the files table as a temporary file. Temporary files * are periodically cleaned. To make the file permanent file call * file_set_status() to change its status. * * @param $source * A string specifying the name of the upload field to save. * @param $validators * An optional, associative array of callback functions used to validate the * file. The keys are function names and the values arrays of callback * parameters which will be passed in after the user and file objects. The * functions should return an array of error messages, an empty array * indicates that the file passed validation. The functions will be called in * the order specified. * @param $dest * A string containing the directory $source should be copied to. If this is * not provided or is not writable, the temporary directory will be used. * @param $replace * A boolean indicating whether an existing file of the same name in the * destination directory should overwritten. A false value will generate a * new, unique filename in the destination directory. * @return * An array containing the file information, or 0 in the event of an error. */ function field_file_save_upload($source, $validators = array(), $dest = FALSE, $replace = FILE_EXISTS_RENAME) { if (!$file = file_save_upload($source, $validators, $dest, $replace)) { return 0; } if (!@chmod($file->filepath, 0664)) { watchdog('filefield', 'Could not set permissons on destination file: %file', array('%file' => $file->filepath)); } // Let modules add additional properties to the yet barebone file object. foreach (module_implements('file_insert') as $module) { $function = $module .'_file_insert'; $function($file); } _field_file_cache($file); // cache the file in order to minimize load queries return (array)$file; } /** * Save a file into a file node after running all the associated validators. * * @param $validators * An optional, associative array of callback functions used to validate the * file. The keys are function names and the values arrays of callback * parameters which will be passed in after the user and file objects. The * functions should return an array of error messages, an empty array * indicates that the file passed validation. The functions will be called in * the order specified. * @param $dest * A string containing the directory $source should be copied to. If this is * not provided or is not writable, the temporary directory will be used. * @param $replace * A boolean indicating whether an existing file of the same name in the * destination directory should overwritten. A false value will generate a * new, unique filename in the destination directory. * @return * An array containing the file information, or 0 in the event of an error. * */ function field_file_save_file($filepath, $validators = array(), $dest = FALSE, $replace = FILE_EXISTS_RENAME) { global $user; // Add in our check of the the file name length. $validators['file_validate_name_length'] = array(); // Build the list of non-munged extensions. // @todo: this should not be here. we need to figure out the right place. $extensions = ''; foreach ($user->roles as $rid => $name) { $extensions .= ' '. variable_get("upload_extensions_$rid", variable_get('upload_extensions_default', 'jpg jpeg gif png txt html doc xls pdf ppt pps odt ods odp')); } // Begin building file object. $file = new stdClass(); $file->uid = $user->uid; $file->filename = basename($filepath); $file->filepath = $filepath; $file->filemime = module_exists('mimedetect') ? mimedetect_mime($file) : file_get_mimetype($file->filename); // Rename potentially executable files, to help prevent exploits. if (preg_match('/\.(php|pl|py|cgi|asp|js)$/i', $file->filename) && (substr($file->filename, -4) != '.txt')) { $file->filemime = 'text/plain'; $file->filepath .= '.txt'; $file->filename .= '.txt'; } // If the destination is not provided, or is not writable, then use the // temporary directory. if (empty($dest) || file_check_path($dest) === FALSE) { $dest = file_directory_temp(); } $file->source = 'field_file_save_file'; $file->destination = file_destination(file_create_path($dest .'/'. $file->filename), $replace); $file->filesize = filesize($filepath); // Call the validation functions. $errors = array(); foreach ($validators as $function => $args) { array_unshift($args, $file); $errors = array_merge($errors, call_user_func_array($function, $args)); } // Check for validation errors. if (!empty($errors)) { $message = t('The selected file %name could not be saved.', array('%name' => $file->filename)); if (count($errors) > 1) { $message .= '
!htaccess
", $repl));
watchdog('security', "Security warning: Couldn't write .htaccess file. Please create a .htaccess file in your %directory directory which contains the following lines:!htaccess
", $repl, WATCHDOG_ERROR);
}
}
return TRUE;
}
/**
* Remove a possible leading file directory path from the given path.
*/
function field_file_strip_path($path) {
$dirpath = file_directory_path();
$dirlen = drupal_strlen($dirpath);
if (drupal_substr($path, 0, $dirlen + 1) == $dirpath .'/') {
$path = drupal_substr($path, $dirlen + 1);
}
return $path;
}
/**
* return references to a file by a single field.
*/
function field_file_references($file, $field) {
$db_info = content_database_info($field);
$references += db_result(db_query(
'SELECT count('. $db_info['columns']['fid']['column'] .')
FROM {'. $db_info['table'] .'}
WHERE '. $db_info['columns']['fid']['column'] .' = %d', $file->fid
));
if (isset($file->field_name) && $field['field_name'] == $file->field_name) {
--$references; // doesn't count as it's being deleted
}
return $references;
}