Update Composer, update everything
This commit is contained in:
parent
ea3e94409f
commit
dda5c284b6
19527 changed files with 1135420 additions and 351004 deletions
|
@ -8,6 +8,7 @@
|
|||
use Drupal\Core\Datetime\Entity\DateFormat;
|
||||
use Drupal\Core\Field\FieldDefinitionInterface;
|
||||
use Drupal\Core\Form\FormStateInterface;
|
||||
use Drupal\Core\Messenger\MessengerInterface;
|
||||
use Drupal\Core\Render\BubbleableMetadata;
|
||||
use Drupal\Core\Render\Element;
|
||||
use Drupal\Core\Routing\RouteMatchInterface;
|
||||
|
@ -19,6 +20,11 @@ use Drupal\Component\Utility\Unicode;
|
|||
use Drupal\Core\Entity\EntityStorageInterface;
|
||||
use Drupal\Core\Template\Attribute;
|
||||
|
||||
/**
|
||||
* The regex pattern used when checking for insecure file types.
|
||||
*/
|
||||
define('FILE_INSECURE_EXTENSION_REGEX', '/\.(php|pl|py|cgi|asp|js)(\.|$)/i');
|
||||
|
||||
// Load all Field module hooks for File.
|
||||
require_once __DIR__ . '/file.field.inc';
|
||||
|
||||
|
@ -48,6 +54,16 @@ function file_help($route_name, RouteMatchInterface $route_match) {
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements hook_field_widget_info_alter().
|
||||
*/
|
||||
function file_field_widget_info_alter(array &$info) {
|
||||
// Allows using the 'uri' widget for the 'file_uri' field type, which uses it
|
||||
// as the default widget.
|
||||
// @see \Drupal\file\Plugin\Field\FieldType\FileUriItem
|
||||
$info['uri']['field_types'][] = 'file_uri';
|
||||
}
|
||||
|
||||
/**
|
||||
* Loads file entities from the database.
|
||||
*
|
||||
|
@ -140,13 +156,13 @@ function file_load($fid, $reset = FALSE) {
|
|||
*/
|
||||
function file_copy(FileInterface $source, $destination = NULL, $replace = FILE_EXISTS_RENAME) {
|
||||
if (!file_valid_uri($destination)) {
|
||||
if (($realpath = drupal_realpath($source->getFileUri())) !== FALSE) {
|
||||
if (($realpath = \Drupal::service('file_system')->realpath($source->getFileUri())) !== FALSE) {
|
||||
\Drupal::logger('file')->notice('File %file (%realpath) could not be copied because the destination %destination is invalid. This is often caused by improper use of file_copy() or a missing stream wrapper.', ['%file' => $source->getFileUri(), '%realpath' => $realpath, '%destination' => $destination]);
|
||||
}
|
||||
else {
|
||||
\Drupal::logger('file')->notice('File %file could not be copied because the destination %destination is invalid. This is often caused by improper use of file_copy() or a missing stream wrapper.', ['%file' => $source->getFileUri(), '%destination' => $destination]);
|
||||
}
|
||||
drupal_set_message(t('The specified file %file could not be copied because the destination is invalid. More information is available in the system log.', ['%file' => $source->getFileUri()]), 'error');
|
||||
\Drupal::messenger()->addError(t('The specified file %file could not be copied because the destination is invalid. More information is available in the system log.', ['%file' => $source->getFileUri()]));
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
@ -215,13 +231,13 @@ function file_copy(FileInterface $source, $destination = NULL, $replace = FILE_E
|
|||
*/
|
||||
function file_move(FileInterface $source, $destination = NULL, $replace = FILE_EXISTS_RENAME) {
|
||||
if (!file_valid_uri($destination)) {
|
||||
if (($realpath = drupal_realpath($source->getFileUri())) !== FALSE) {
|
||||
if (($realpath = \Drupal::service('file_system')->realpath($source->getFileUri())) !== FALSE) {
|
||||
\Drupal::logger('file')->notice('File %file (%realpath) could not be moved because the destination %destination is invalid. This may be caused by improper use of file_move() or a missing stream wrapper.', ['%file' => $source->getFileUri(), '%realpath' => $realpath, '%destination' => $destination]);
|
||||
}
|
||||
else {
|
||||
\Drupal::logger('file')->notice('File %file could not be moved because the destination %destination is invalid. This may be caused by improper use of file_move() or a missing stream wrapper.', ['%file' => $source->getFileUri(), '%destination' => $destination]);
|
||||
}
|
||||
drupal_set_message(t('The specified file %file could not be moved because the destination is invalid. More information is available in the system log.', ['%file' => $source->getFileUri()]), 'error');
|
||||
\Drupal::messenger()->addError(t('The specified file %file could not be moved because the destination is invalid. More information is available in the system log.', ['%file' => $source->getFileUri()]));
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
@ -396,7 +412,7 @@ function file_validate_is_image(FileInterface $file) {
|
|||
$image = $image_factory->get($file->getFileUri());
|
||||
if (!$image->isValid()) {
|
||||
$supported_extensions = $image_factory->getSupportedExtensions();
|
||||
$errors[] = t('Image type not supported. Allowed types: %types', ['%types' => implode(' ', $supported_extensions)]);
|
||||
$errors[] = t('The image file is invalid or the image type is not allowed. Allowed types: %types', ['%types' => implode(', ', $supported_extensions)]);
|
||||
}
|
||||
|
||||
return $errors;
|
||||
|
@ -434,24 +450,42 @@ function file_validate_image_resolution(FileInterface $file, $maximum_dimensions
|
|||
// Check first that the file is an image.
|
||||
$image_factory = \Drupal::service('image.factory');
|
||||
$image = $image_factory->get($file->getFileUri());
|
||||
|
||||
if ($image->isValid()) {
|
||||
$scaling = FALSE;
|
||||
if ($maximum_dimensions) {
|
||||
// Check that it is smaller than the given dimensions.
|
||||
list($width, $height) = explode('x', $maximum_dimensions);
|
||||
if ($image->getWidth() > $width || $image->getHeight() > $height) {
|
||||
// Try to resize the image to fit the dimensions.
|
||||
if ($image->scale($width, $height)) {
|
||||
$scaling = TRUE;
|
||||
$image->save();
|
||||
if (!empty($width) && !empty($height)) {
|
||||
$message = t('The image was resized to fit within the maximum allowed dimensions of %dimensions pixels.', ['%dimensions' => $maximum_dimensions]);
|
||||
$message = t('The image was resized to fit within the maximum allowed dimensions of %dimensions pixels. The new dimensions of the resized image are %new_widthx%new_height pixels.',
|
||||
[
|
||||
'%dimensions' => $maximum_dimensions,
|
||||
'%new_width' => $image->getWidth(),
|
||||
'%new_height' => $image->getHeight(),
|
||||
]);
|
||||
}
|
||||
elseif (empty($width)) {
|
||||
$message = t('The image was resized to fit within the maximum allowed height of %height pixels.', ['%height' => $height]);
|
||||
$message = t('The image was resized to fit within the maximum allowed height of %height pixels. The new dimensions of the resized image are %new_widthx%new_height pixels.',
|
||||
[
|
||||
'%height' => $height,
|
||||
'%new_width' => $image->getWidth(),
|
||||
'%new_height' => $image->getHeight(),
|
||||
]);
|
||||
}
|
||||
elseif (empty($height)) {
|
||||
$message = t('The image was resized to fit within the maximum allowed width of %width pixels.', ['%width' => $width]);
|
||||
$message = t('The image was resized to fit within the maximum allowed width of %width pixels. The new dimensions of the resized image are %new_widthx%new_height pixels.',
|
||||
[
|
||||
'%width' => $width,
|
||||
'%new_width' => $image->getWidth(),
|
||||
'%new_height' => $image->getHeight(),
|
||||
]);
|
||||
}
|
||||
drupal_set_message($message);
|
||||
\Drupal::messenger()->addStatus($message);
|
||||
}
|
||||
else {
|
||||
$errors[] = t('The image exceeds the maximum allowed dimensions and an attempt to resize it failed.');
|
||||
|
@ -463,7 +497,22 @@ function file_validate_image_resolution(FileInterface $file, $maximum_dimensions
|
|||
// Check that it is larger than the given dimensions.
|
||||
list($width, $height) = explode('x', $minimum_dimensions);
|
||||
if ($image->getWidth() < $width || $image->getHeight() < $height) {
|
||||
$errors[] = t('The image is too small; the minimum dimensions are %dimensions pixels.', ['%dimensions' => $minimum_dimensions]);
|
||||
if ($scaling) {
|
||||
$errors[] = t('The resized image is too small. The minimum dimensions are %dimensions pixels and after resizing, the image size will be %widthx%height pixels.',
|
||||
[
|
||||
'%dimensions' => $minimum_dimensions,
|
||||
'%width' => $image->getWidth(),
|
||||
'%height' => $image->getHeight(),
|
||||
]);
|
||||
}
|
||||
else {
|
||||
$errors[] = t('The image is too small. The minimum dimensions are %dimensions pixels and the image size is %widthx%height pixels.',
|
||||
[
|
||||
'%dimensions' => $minimum_dimensions,
|
||||
'%width' => $image->getWidth(),
|
||||
'%height' => $image->getHeight(),
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -504,7 +553,7 @@ function file_save_data($data, $destination = NULL, $replace = FILE_EXISTS_RENAM
|
|||
}
|
||||
if (!file_valid_uri($destination)) {
|
||||
\Drupal::logger('file')->notice('The data could not be saved because the destination %destination is invalid. This may be caused by improper use of file_save_data() or a missing stream wrapper.', ['%destination' => $destination]);
|
||||
drupal_set_message(t('The data could not be saved because the destination is invalid. More information is available in the system log.'), 'error');
|
||||
\Drupal::messenger()->addError(t('The data could not be saved because the destination is invalid. More information is available in the system log.'));
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
@ -571,6 +620,12 @@ function file_theme() {
|
|||
'file_managed_file' => [
|
||||
'render element' => 'element',
|
||||
],
|
||||
'file_audio' => [
|
||||
'variables' => ['files' => [], 'attributes' => NULL],
|
||||
],
|
||||
'file_video' => [
|
||||
'variables' => ['files' => [], 'attributes' => NULL],
|
||||
],
|
||||
|
||||
// From file.field.inc.
|
||||
'file_widget_multiple' => [
|
||||
|
@ -673,6 +728,90 @@ function file_cron() {
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Saves form file uploads.
|
||||
*
|
||||
* The files will be added to the {file_managed} table as temporary files.
|
||||
* Temporary files are periodically cleaned. Use the 'file.usage' service to
|
||||
* register the usage of the file which will automatically mark it as permanent.
|
||||
*
|
||||
* @param array $element
|
||||
* The FAPI element whose values are being saved.
|
||||
* @param \Drupal\Core\Form\FormStateInterface $form_state
|
||||
* The current state of the form.
|
||||
* @param null|int $delta
|
||||
* (optional) The delta of the file to return the file entity.
|
||||
* Defaults to NULL.
|
||||
* @param int $replace
|
||||
* (optional) The replace behavior when the destination file already exists.
|
||||
* Possible values include:
|
||||
* - FILE_EXISTS_REPLACE: Replace the existing file.
|
||||
* - FILE_EXISTS_RENAME: (default) Append _{incrementing number} until the
|
||||
* filename is unique.
|
||||
* - FILE_EXISTS_ERROR: Do nothing and return FALSE.
|
||||
*
|
||||
* @return array|\Drupal\file\FileInterface|null|false
|
||||
* An array of file entities or a single file entity if $delta != NULL. Each
|
||||
* array element contains the file entity if the upload succeeded or FALSE if
|
||||
* there was an error. Function returns NULL if no file was uploaded.
|
||||
*
|
||||
* @deprecated in Drupal 8.4.x, will be removed before Drupal 9.0.0.
|
||||
* For backwards compatibility use core file upload widgets in forms.
|
||||
*
|
||||
* @internal
|
||||
* This function wraps file_save_upload() to allow correct error handling in
|
||||
* forms.
|
||||
*
|
||||
* @todo Revisit after https://www.drupal.org/node/2244513.
|
||||
*/
|
||||
function _file_save_upload_from_form(array $element, FormStateInterface $form_state, $delta = NULL, $replace = FILE_EXISTS_RENAME) {
|
||||
// Get all errors set before calling this method. This will also clear them
|
||||
// from $_SESSION.
|
||||
$errors_before = \Drupal::messenger()->deleteByType(MessengerInterface::TYPE_ERROR);
|
||||
|
||||
$upload_location = isset($element['#upload_location']) ? $element['#upload_location'] : FALSE;
|
||||
$upload_name = implode('_', $element['#parents']);
|
||||
$upload_validators = isset($element['#upload_validators']) ? $element['#upload_validators'] : [];
|
||||
|
||||
$result = file_save_upload($upload_name, $upload_validators, $upload_location, $delta, $replace);
|
||||
|
||||
// Get new errors that are generated while trying to save the upload. This
|
||||
// will also clear them from $_SESSION.
|
||||
$errors_new = \Drupal::messenger()->deleteByType(MessengerInterface::TYPE_ERROR);
|
||||
if (!empty($errors_new)) {
|
||||
|
||||
if (count($errors_new) > 1) {
|
||||
// Render multiple errors into a single message.
|
||||
// This is needed because only one error per element is supported.
|
||||
$render_array = [
|
||||
'error' => [
|
||||
'#markup' => t('One or more files could not be uploaded.'),
|
||||
],
|
||||
'item_list' => [
|
||||
'#theme' => 'item_list',
|
||||
'#items' => $errors_new,
|
||||
],
|
||||
];
|
||||
$error_message = \Drupal::service('renderer')->renderPlain($render_array);
|
||||
}
|
||||
else {
|
||||
$error_message = reset($errors_new);
|
||||
}
|
||||
|
||||
$form_state->setError($element, $error_message);
|
||||
}
|
||||
|
||||
// Ensure that errors set prior to calling this method are still shown to the
|
||||
// user.
|
||||
if (!empty($errors_before)) {
|
||||
foreach ($errors_before as $error) {
|
||||
\Drupal::messenger()->addError($error);
|
||||
}
|
||||
}
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
* Saves file uploads to a new location.
|
||||
*
|
||||
|
@ -680,6 +819,10 @@ function file_cron() {
|
|||
* Temporary files are periodically cleaned. Use the 'file.usage' service to
|
||||
* register the usage of the file which will automatically mark it as permanent.
|
||||
*
|
||||
* Note that this function does not support correct form error handling. The
|
||||
* file upload widgets in core do support this. It is advised to use these in
|
||||
* any custom form, instead of calling this function.
|
||||
*
|
||||
* @param string $form_field_name
|
||||
* A string that is the associative array key of the upload form element in
|
||||
* the form array.
|
||||
|
@ -710,6 +853,10 @@ function file_cron() {
|
|||
* An array of file entities or a single file entity if $delta != NULL. Each
|
||||
* array element contains the file entity if the upload succeeded or FALSE if
|
||||
* there was an error. Function returns NULL if no file was uploaded.
|
||||
*
|
||||
* @see _file_save_upload_from_form()
|
||||
*
|
||||
* @todo: move this logic to a service in https://www.drupal.org/node/2244513.
|
||||
*/
|
||||
function file_save_upload($form_field_name, $validators = [], $destination = FALSE, $delta = NULL, $replace = FILE_EXISTS_RENAME) {
|
||||
$user = \Drupal::currentUser();
|
||||
|
@ -746,13 +893,13 @@ function file_save_upload($form_field_name, $validators = [], $destination = FAL
|
|||
switch ($file_info->getError()) {
|
||||
case UPLOAD_ERR_INI_SIZE:
|
||||
case UPLOAD_ERR_FORM_SIZE:
|
||||
drupal_set_message(t('The file %file could not be saved because it exceeds %maxsize, the maximum allowed size for uploads.', ['%file' => $file_info->getFilename(), '%maxsize' => format_size(file_upload_max_size())]), 'error');
|
||||
\Drupal::messenger()->addError(t('The file %file could not be saved because it exceeds %maxsize, the maximum allowed size for uploads.', ['%file' => $file_info->getFilename(), '%maxsize' => format_size(file_upload_max_size())]));
|
||||
$files[$i] = FALSE;
|
||||
continue;
|
||||
|
||||
case UPLOAD_ERR_PARTIAL:
|
||||
case UPLOAD_ERR_NO_FILE:
|
||||
drupal_set_message(t('The file %file could not be saved because the upload did not complete.', ['%file' => $file_info->getFilename()]), 'error');
|
||||
\Drupal::messenger()->addError(t('The file %file could not be saved because the upload did not complete.', ['%file' => $file_info->getFilename()]));
|
||||
$files[$i] = FALSE;
|
||||
continue;
|
||||
|
||||
|
@ -765,7 +912,7 @@ function file_save_upload($form_field_name, $validators = [], $destination = FAL
|
|||
|
||||
// Unknown error
|
||||
default:
|
||||
drupal_set_message(t('The file %file could not be saved. An unknown error has occurred.', ['%file' => $file_info->getFilename()]), 'error');
|
||||
\Drupal::messenger()->addError(t('The file %file could not be saved. An unknown error has occurred.', ['%file' => $file_info->getFilename()]));
|
||||
$files[$i] = FALSE;
|
||||
continue;
|
||||
|
||||
|
@ -812,7 +959,7 @@ function file_save_upload($form_field_name, $validators = [], $destination = FAL
|
|||
// rename filename.php.foo and filename.php to filename.php.foo.txt and
|
||||
// filename.php.txt, respectively). Don't rename if 'allow_insecure_uploads'
|
||||
// evaluates to TRUE.
|
||||
if (!\Drupal::config('system.file')->get('allow_insecure_uploads') && preg_match('/\.(php|pl|py|cgi|asp|js)(\.|$)/i', $file->getFilename()) && (substr($file->getFilename(), -4) != '.txt')) {
|
||||
if (!\Drupal::config('system.file')->get('allow_insecure_uploads') && preg_match(FILE_INSECURE_EXTENSION_REGEX, $file->getFilename()) && (substr($file->getFilename(), -4) != '.txt')) {
|
||||
$file->setMimeType('text/plain');
|
||||
// The destination filename will also later be used to create the URI.
|
||||
$file->setFilename($file->getFilename() . '.txt');
|
||||
|
@ -820,7 +967,7 @@ function file_save_upload($form_field_name, $validators = [], $destination = FAL
|
|||
// to add it here or else the file upload will fail.
|
||||
if (!empty($extensions)) {
|
||||
$validators['file_validate_extensions'][0] .= ' txt';
|
||||
drupal_set_message(t('For security reasons, your upload has been renamed to %filename.', ['%filename' => $file->getFilename()]));
|
||||
\Drupal::messenger()->addStatus(t('For security reasons, your upload has been renamed to %filename.', ['%filename' => $file->getFilename()]));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -832,7 +979,7 @@ function file_save_upload($form_field_name, $validators = [], $destination = FAL
|
|||
// Assert that the destination contains a valid stream.
|
||||
$destination_scheme = file_uri_scheme($destination);
|
||||
if (!file_stream_wrapper_valid_scheme($destination_scheme)) {
|
||||
drupal_set_message(t('The file could not be uploaded because the destination %destination is invalid.', ['%destination' => $destination]), 'error');
|
||||
\Drupal::messenger()->addError(t('The file could not be uploaded because the destination %destination is invalid.', ['%destination' => $destination]));
|
||||
$files[$i] = FALSE;
|
||||
continue;
|
||||
}
|
||||
|
@ -846,7 +993,7 @@ function file_save_upload($form_field_name, $validators = [], $destination = FAL
|
|||
// If file_destination() returns FALSE then $replace === FILE_EXISTS_ERROR and
|
||||
// there's an existing file so we need to bail.
|
||||
if ($file->destination === FALSE) {
|
||||
drupal_set_message(t('The file %source could not be uploaded because a file by that name already exists in the destination %directory.', ['%source' => $form_field_name, '%directory' => $destination]), 'error');
|
||||
\Drupal::messenger()->addError(t('The file %source could not be uploaded because a file by that name already exists in the destination %directory.', ['%source' => $form_field_name, '%directory' => $destination]));
|
||||
$files[$i] = FALSE;
|
||||
continue;
|
||||
}
|
||||
|
@ -868,19 +1015,17 @@ function file_save_upload($form_field_name, $validators = [], $destination = FAL
|
|||
'#items' => $errors,
|
||||
],
|
||||
];
|
||||
// @todo Add support for render arrays in drupal_set_message()? See
|
||||
// https://www.drupal.org/node/2505497.
|
||||
drupal_set_message(\Drupal::service('renderer')->renderPlain($message), 'error');
|
||||
// @todo Add support for render arrays in
|
||||
// \Drupal\Core\Messenger\MessengerInterface::addMessage()?
|
||||
// @see https://www.drupal.org/node/2505497.
|
||||
\Drupal::messenger()->addError(\Drupal::service('renderer')->renderPlain($message));
|
||||
$files[$i] = FALSE;
|
||||
continue;
|
||||
}
|
||||
|
||||
// Move uploaded files from PHP's upload_tmp_dir to Drupal's temporary
|
||||
// directory. This overcomes open_basedir restrictions for future file
|
||||
// operations.
|
||||
$file->setFileUri($file->destination);
|
||||
if (!drupal_move_uploaded_file($file_info->getRealPath(), $file->getFileUri())) {
|
||||
drupal_set_message(t('File upload error. Could not move uploaded file.'), 'error');
|
||||
\Drupal::messenger()->addError(t('File upload error. Could not move uploaded file.'));
|
||||
\Drupal::logger('file')->notice('Upload error. Could not move uploaded file %file to destination %destination.', ['%file' => $file->getFilename(), '%destination' => $file->getFileUri()]);
|
||||
$files[$i] = FALSE;
|
||||
continue;
|
||||
|
@ -1200,15 +1345,16 @@ function file_managed_file_save_upload($element, FormStateInterface $form_state)
|
|||
$files_uploaded = $element['#multiple'] && count(array_filter($file_upload)) > 0;
|
||||
$files_uploaded |= !$element['#multiple'] && !empty($file_upload);
|
||||
if ($files_uploaded) {
|
||||
if (!$files = file_save_upload($upload_name, $element['#upload_validators'], $destination)) {
|
||||
if (!$files = _file_save_upload_from_form($element, $form_state)) {
|
||||
\Drupal::logger('file')->notice('The file upload failed. %upload', ['%upload' => $upload_name]);
|
||||
$form_state->setError($element, t('Files in the @name field were unable to be uploaded.', ['@name' => $element['#title']]));
|
||||
return [];
|
||||
}
|
||||
|
||||
// Value callback expects FIDs to be keys.
|
||||
$files = array_filter($files);
|
||||
$fids = array_map(function($file) { return $file->id(); }, $files);
|
||||
$fids = array_map(function ($file) {
|
||||
return $file->id();
|
||||
}, $files);
|
||||
|
||||
return empty($files) ? [] : array_combine($fids, $files);
|
||||
}
|
||||
|
|
Reference in a new issue