6 * Common functionality for file handling CCK field modules.
10 * Load a file from the database.
13 * A numeric file id or string containing the file path.
15 * Whether to reset the internal file_load cache.
19 function field_file_load($fid, $reset = NULL
) {
20 // Reset internal cache.
22 _field_file_cache(NULL
, TRUE
);
26 return array('fid' => 0, 'filepath' => '', 'filename' => '', 'filemime' => '', 'filesize' => 0);
29 $files = _field_file_cache();
31 // Serve file from internal cache if available.
32 if (empty($files[$fid])) {
33 if (is_numeric($fid)) {
34 $file = db_fetch_object(db_query('SELECT f.* FROM {files} f WHERE f.fid = %d', $fid));
37 $file = db_fetch_object(db_query("SELECT f.* FROM {files} f WHERE f.filepath = '%s'", $fid));
41 $file = array('fid' => 0, 'filepath' => '', 'filename' => '', 'filemime' => '', 'filesize' => 0);
44 foreach (module_implements('file_load') as
$module) {
45 $function = $module .
'_file_load';
49 // Cache the fully loaded file for later use.
50 $files = _field_file_cache($file);
53 // Cast to an array for the field storage.
54 // Contrary to fields, hook_file() and core file functions expect objects.
55 return isset($files[$fid]) ?
(array) $files[$fid] : FALSE
;
59 * Save a file upload to a new location.
60 * The source file is validated as a proper upload and handled as such. By
61 * implementing hook_file($op = 'insert'), modules are able to act on the file
62 * upload and to add their own properties to the file.
64 * The file will be added to the files table as a temporary file. Temporary
65 * files are periodically cleaned. To make the file permanent file call
66 * file_set_status() to change its status.
69 * A string specifying the name of the upload field to save.
71 * An optional, associative array of callback functions used to validate the
72 * file. The keys are function names and the values arrays of callback
73 * parameters which will be passed in after the user and file objects. The
74 * functions should return an array of error messages, an empty array
75 * indicates that the file passed validation. The functions will be called in
76 * the order specified.
78 * A string containing the directory $source should be copied to. If this is
79 * not provided or is not writable, the temporary directory will be used.
81 * An array containing the file information, or 0 in the event of an error.
83 function field_file_save_upload($source, $validators = array(), $dest = FALSE
) {
84 if (!$file = file_save_upload($source, $validators, $dest, FILE_EXISTS_RENAME
)) {
87 if (!@
chmod($file->filepath
, 0664)) {
88 watchdog('filefield', 'Could not set permissions on destination file: %file', array('%file' => $file->filepath
));
91 // Let modules add additional properties to the yet barebone file object.
92 foreach (module_implements('file_insert') as
$module) {
93 $function = $module .
'_file_insert';
96 _field_file_cache($file); // cache the file in order to minimize load queries
101 * Save a file into a file node after running all the associated validators.
103 * This function is usually used to move a file from the temporary file
104 * directory to a permanent location. It may be used by import scripts or other
105 * modules that want to save an existing file into the database.
108 * The local file path of the file to be saved.
110 * An optional, associative array of callback functions used to validate the
111 * file. The keys are function names and the values arrays of callback
112 * parameters which will be passed in after the user and file objects. The
113 * functions should return an array of error messages, an empty array
114 * indicates that the file passed validation. The functions will be called in
115 * the order specified.
117 * A string containing the directory $source should be copied to. If this is
118 * not provided or is not writable, the temporary directory will be used.
120 * The user account object that should associated with the uploaded file.
122 * An array containing the file information, or 0 in the event of an error.
124 function field_file_save_file($filepath, $validators = array(), $dest = FALSE
, $account = NULL
) {
125 if (!isset($account)) {
126 $account = $GLOBALS['user'];
129 // Add in our check of the the file name length.
130 $validators['file_validate_name_length'] = array();
132 // Begin building file object.
133 $file = new
stdClass();
134 $file->uid
= $account->uid
;
135 $file->filename
= basename($filepath);
136 $file->filepath
= $filepath;
137 $file->filemime
= module_exists('mimedetect') ?
mimedetect_mime($file) : file_get_mimetype($file->filename
);
139 // Rename potentially executable files, to help prevent exploits.
140 if (preg_match('/\.(php|pl|py|cgi|asp|js)$/i', $file->filename
) && (substr($file->filename
, -4) != '.txt')) {
141 $file->filemime
= 'text/plain';
142 $file->filepath .
= '.txt';
143 $file->filename .
= '.txt';
146 // If the destination is not provided, or is not writable, then use the
147 // temporary directory.
148 if (empty($dest) || file_check_path($dest) === FALSE
) {
149 $dest = file_directory_temp();
152 $file->source
= 'field_file_save_file';
153 $file->destination
= file_destination(file_create_path($dest .
'/'.
$file->filename
), FILE_EXISTS_RENAME
);
154 $file->filesize = filesize($filepath);
156 // Call the validation functions.
158 foreach ($validators as
$function => $args) {
159 array_unshift($args, $file);
160 $errors = array_merge($errors, call_user_func_array($function, $args));
163 // Check for validation errors.
164 if (!empty($errors)) {
165 $message = t('The selected file %name could not be saved.', array('%name' => $file->filename
));
166 if (count($errors) > 1) {
167 $message .
= '<ul><li>'.
implode('</li><li>', $errors) .
'</li></ul>';
170 $message .
= ' '.
array_pop($errors);
172 form_set_error($file->source
, $message);
176 if (!file_copy($file, $file->destination
, FILE_EXISTS_RENAME
)) {
177 form_set_error($file->source
, t('File upload error. Could not move uploaded file.'));
178 watchdog('file', 'Upload error. Could not move file %file to destination %destination.', array('%file' => $file->filename
, '%destination' => $file->destination
));
182 // If we made it this far it's safe to record this file in the database.
183 $file->status
= FILE_STATUS_TEMPORARY
;
184 $file->timestamp
= time();
185 // Insert new record to the database.
186 drupal_write_record('files', $file);
188 // Let modules add additional properties to the yet barebone file object.
189 foreach (module_implements('file_insert') as
$module) {
190 $function = $module .
'_file_insert';
193 _field_file_cache($file); // cache the file in order to minimize load queries
198 * Save a node file. Delete items if necessary and set new items as permanent.
201 * Node object this file is be associated with.
203 * File to be inserted, passed by reference since fid should be attached.
206 function field_file_save($node, &$file) {
207 // If this item is marked for deletion.
208 if (!empty($file['delete']) || !empty($file['_remove'])) {
209 // If we're creating a new revision, return an empty array so CCK will
211 if (!empty($node->old_vid
)) {
214 // Otherwise delete the file and return an empty array.
215 if (field_file_delete($file)) {
220 // Cast to object since core functions use objects.
221 $file = (object)$file;
223 // Set permanent status on files if unset.
224 if (empty($file->status
)) {
225 file_set_status($file, FILE_STATUS_PERMANENT
);
228 // Let modules update their additional file properties too.
229 foreach (module_implements('file_update') as
$module) {
230 $function = $module .
'_file_update';
233 _field_file_cache($file); // update the cache, in case the file has changed
235 $file = (array)$file;
240 * Delete a field file and its database record.
245 * Force File Deletion ignoring reference counting.
247 * TRUE for success, Array for reference count block, or FALSE in the event of an error.
249 function field_file_delete($file, $force = FALSE
) {
250 $file = (object)$file;
251 // If any module returns a value from the reference hook, the
252 // file will not be deleted from Drupal, but file_delete will
253 // return a populated array that tests as TRUE.
254 if (!$force && $references = module_invoke_all('file_references', $file)) {
255 $references = array_filter($references); // only keep positive values
256 if (!empty($references)) {
261 // Let other modules clean up on delete.
262 module_invoke_all('file_delete', $file);
264 // Make sure the file is deleted before removing its row from the
265 // database, so UIs can still find the file in the database.
266 if (file_delete($file->filepath
)) {
267 db_query('DELETE FROM {files} WHERE fid = %d', $file->fid
);
268 _field_file_cache(NULL
, $file); // delete the file from the cache
275 * Internal cache, in order to minimize database queries for loading files.
277 function _field_file_cache($file = NULL
, $reset = FALSE
) {
278 static
$files = array();
280 // Reset internal cache.
281 if (is_object($reset)) { // file object, uncache just that one
282 unset($files[$reset->fid
]);
283 unset($files[$reset->filepath
]);
285 else if ($reset) { // TRUE, delete the whole cache
289 // Cache the file by both fid and filepath.
290 // Use non-copying objects to save memory.
291 if (!empty($file->fid
)) {
292 $files[$file->fid
] = $file;
293 $files[$file->filepath
] = $file;
299 * A silent version of file.inc's file_check_directory().
301 * This function differs from file_check_directory in that it checks for
302 * files when doing the directory check and it does not use drupal_set_message()
303 * when creating directories. This function may be removed in Drupal 7.
305 * Check that the directory exists and is writable. Directories need to
306 * have execute permissions to be considered a directory by FTP servers, etc.
308 * @param $directory A string containing the name of a directory path.
309 * @param $mode A Boolean value to indicate if the directory should be created
310 * if it does not exist or made writable if it is read-only.
311 * @param $form_item An optional string containing the name of a form item that
312 * any errors will be attached to. This is useful for settings forms that
313 * require the user to specify a writable directory. If it can't be made to
314 * work, a form error will be set preventing them from saving the settings.
315 * @return FALSE when directory not found, or TRUE when directory exists.
317 function field_file_check_directory(&$directory, $mode = 0, $form_item = NULL
) {
318 $directory = rtrim($directory, '/\\');
320 // Error if the directory is a file.
321 if (is_file($directory)) {
322 watchdog('file system', 'The path %directory was checked as a directory, but it is a file.', array('%directory' => $directory), WATCHDOG_ERROR
);
324 form_set_error($form_item, t('The directory %directory is a file and cannot be overwritten.', array('%directory' => $directory)));
329 // Create the directory if it is missing.
330 if (!is_dir($directory) && $mode & FILE_CREATE_DIRECTORY
&& !@
mkdir($directory, 0775, TRUE
)) {
331 watchdog('file system', 'The directory %directory does not exist.', array('%directory' => $directory), WATCHDOG_ERROR
);
333 form_set_error($form_item, t('The directory %directory does not exist.', array('%directory' => $directory)));
338 // Check to see if the directory is writable.
339 if (!is_writable($directory) && $mode & FILE_MODIFY_PERMISSIONS
&& !@
chmod($directory, 0775)) {
340 watchdog('file system', 'The directory %directory is not writable, because it does not have the correct permissions set.', array('%directory' => $directory), WATCHDOG_ERROR
);
342 form_set_error($form_item, t('The directory %directory is not writable', array('%directory' => $directory)));
347 if ((file_directory_path() == $directory || file_directory_temp() == $directory) && !is_file("$directory/.htaccess")) {
348 $htaccess_lines = "SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006\nOptions None\nOptions +FollowSymLinks";
349 if (($fp = fopen("$directory/.htaccess", 'w')) && fputs($fp, $htaccess_lines)) {
351 chmod($directory .
'/.htaccess', 0664);
354 $repl = array('%directory' => $directory, '!htaccess' => nl2br(check_plain($htaccess_lines)));
355 form_set_error($form_item, t("Security warning: Couldn't write .htaccess file. Please create a .htaccess file in your %directory directory which contains the following lines:<br /><code>!htaccess</code>", $repl));
356 watchdog('security', "Security warning: Couldn't write .htaccess file. Please create a .htaccess file in your %directory directory which contains the following lines:<br /><code>!htaccess</code>", $repl, WATCHDOG_ERROR
);
364 * Remove a possible leading file directory path from the given path.
366 function field_file_strip_path($path) {
367 $dirpath = file_directory_path();
368 $dirlen = drupal_strlen($dirpath);
369 if (drupal_substr($path, 0, $dirlen + 1) == $dirpath .
'/') {
370 $path = drupal_substr($path, $dirlen + 1);
376 * Return a count of the references to a file by all modules.
378 function field_file_references($file) {
379 $references = (array) module_invoke_all('file_references', $file);
380 $reference_count = 0;
381 foreach ($references as
$module => $count) {
382 $reference_count += $count;
384 return $reference_count;