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 = (object) array('fid' => 0, 'filepath' => '', 'filename' => '', 'filemime' => '', 'filesize' => 0); } foreach (module_implements('file_load') as $module) { if ($module != 'field') { $function = $module .'_file_load'; $function($file); } } // Cache the fully loaded file for later use. $files = _field_file_cache($file); } // Cast to an array for the field storage. // Contrary to fields, hook_file() and core file functions expect objects. return isset($files[$fid]) ? (array) $files[$fid] : FALSE; } /** * 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. * @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) { if (!$file = file_save_upload($source, $validators, $dest, FILE_EXISTS_RENAME)) { return 0; } if (!@chmod($file->filepath, 0664)) { watchdog('filefield', 'Could not set permissions 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. * * This function is usually used to move a file from the temporary file * directory to a permanent location. It may be used by import scripts or other * modules that want to save an existing file into the database. * * @param $filepath * The local file path of the file to be saved. * @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 $account * The user account object that should associated with the uploaded file. * @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, $account = NULL) { if (!isset($account)) { $account = $GLOBALS['user']; } // Add in our check of the the file name length. $validators['file_validate_name_length'] = array(); // Begin building file object. $file = new stdClass(); $file->uid = $account->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), FILE_EXISTS_RENAME); $file->filesize = filesize($filepath); // Call the validation functions. $errors = array(); foreach ($validators as $function => $args) { // Add the $file variable to the list of arguments and pass it by // reference (required for PHP 5.3 and higher). array_unshift($args, NULL); $args[0] = &$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;
}
/**
* Encode a file path in a way that is compatible with file_create_url().
*
* This function should be used on the $file->filepath property before any call
* to file_create_url(). This ensures that the file directory path prefix is
* unmodified, but the actual path to the file will be properly URL encoded.
*/
function field_file_urlencode_path($path) {
// Encode the parts of the path to ensure URLs operate within href attributes.
// Private file paths are urlencoded for us inside of file_create_url().
if (variable_get('file_downloads', FILE_DOWNLOADS_PUBLIC) == FILE_DOWNLOADS_PUBLIC) {
$file_directory_path = file_directory_path();
if (strpos($path, $file_directory_path . '/') === 0) {
$path = trim(substr($path, strlen($file_directory_path)), '\\/');
}
$parts = explode('/', $path);
foreach ($parts as $index => $part) {
$parts[$index] = rawurlencode($part);
}
$path = implode('/', $parts);
// Add the file directory path again (not encoded).
$path = $file_directory_path . '/' . $path;
}
return $path;
}
/**
* Return a count of the references to a file by all modules.
*/
function field_file_references($file) {
$references = (array) module_invoke_all('file_references', $file);
$reference_count = 0;
foreach ($references as $module => $count) {
$reference_count += $count;
}
return $reference_count;
}