X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=web%2Fmodules%2Fcontrib%2Fmedia_entity_twitter%2Fmedia_entity_twitter.install;fp=web%2Fmodules%2Fcontrib%2Fmedia_entity_twitter%2Fmedia_entity_twitter.install;h=50be0d8d931e1c4fbf01c94cacfb2d2115bdc288;hp=6e887253ed018acda237c652fb78bdfa67a024f0;hb=9e65bae52407293a5182f19dc57b5628b09e92f4;hpb=af6d1fb995500ae68849458ee10d66abbdcfb252 diff --git a/web/modules/contrib/media_entity_twitter/media_entity_twitter.install b/web/modules/contrib/media_entity_twitter/media_entity_twitter.install index 6e887253e..50be0d8d9 100644 --- a/web/modules/contrib/media_entity_twitter/media_entity_twitter.install +++ b/web/modules/contrib/media_entity_twitter/media_entity_twitter.install @@ -10,6 +10,47 @@ */ function media_entity_twitter_install() { $source = drupal_get_path('module', 'media_entity_twitter') . '/images/icons'; - $destination = \Drupal::config('media_entity.settings')->get('icon_base'); - media_entity_copy_icons($source, $destination); + $destination = \Drupal::config('media.settings')->get('icon_base_uri'); + file_prepare_directory($destination, FILE_CREATE_DIRECTORY | FILE_MODIFY_PERMISSIONS); + + $files = file_scan_directory($source, '/.*\.(svg|png|jpg|jpeg|gif)$/'); + foreach ($files as $file) { + // When reinstalling the media module we don't want to copy the icons when + // they already exist. The icons could be replaced (by a contrib module or + // manually), so we don't want to replace the existing files. Removing the + // files when we uninstall could also be a problem if the files are + // referenced somewhere else. Since showing an error that it was not + // possible to copy the files is also confusing, we silently do nothing. + if (!file_exists($destination . DIRECTORY_SEPARATOR . $file->filename)) { + file_unmanaged_copy($file->uri, $destination, FILE_EXISTS_ERROR); + } + } +} + +/** + * Implements hook_requirements(). + */ +function media_entity_twitter_requirements($phase) { + $requirements = []; + if ($phase == 'install') { + $destination = \Drupal::config('media.settings')->get('icon_base_uri'); + file_prepare_directory($destination, FILE_CREATE_DIRECTORY | FILE_MODIFY_PERMISSIONS); + $is_writable = is_writable($destination); + $is_directory = is_dir($destination); + if (!$is_writable || !$is_directory) { + if (!$is_directory) { + $error = t('The directory %directory does not exist.', ['%directory' => $destination]); + } + else { + $error = t('The directory %directory is not writable.', ['%directory' => $destination]); + } + $description = t('An automated attempt to create this directory failed, possibly due to a permissions problem. To proceed with the installation, either create the directory and modify its permissions manually or ensure that the installer has the permissions to create it automatically. For more information, see INSTALL.txt or the online handbook.', [':handbook_url' => 'https://www.drupal.org/server-permissions']); + if (!empty($error)) { + $description = $error . ' ' . $description; + $requirements['media_entity_twitter']['description'] = $description; + $requirements['media_entity_twitter']['severity'] = REQUIREMENT_ERROR; + } + } + } + return $requirements; }