Updating Media dependent modules to versions compatible with core Media.
[yaffs-website] / web / modules / contrib / media_entity_twitter / media_entity_twitter.install
1 <?php
2
3 /**
4  * @file
5  * Install, uninstall and update hooks for Media entity Twitter module.
6  */
7
8 /**
9  * Implements hook_install().
10  */
11 function media_entity_twitter_install() {
12   $source = drupal_get_path('module', 'media_entity_twitter') . '/images/icons';
13   $destination = \Drupal::config('media.settings')->get('icon_base_uri');
14   file_prepare_directory($destination, FILE_CREATE_DIRECTORY | FILE_MODIFY_PERMISSIONS);
15
16   $files = file_scan_directory($source, '/.*\.(svg|png|jpg|jpeg|gif)$/');
17   foreach ($files as $file) {
18     // When reinstalling the media module we don't want to copy the icons when
19     // they already exist. The icons could be replaced (by a contrib module or
20     // manually), so we don't want to replace the existing files. Removing the
21     // files when we uninstall could also be a problem if the files are
22     // referenced somewhere else. Since showing an error that it was not
23     // possible to copy the files is also confusing, we silently do nothing.
24     if (!file_exists($destination . DIRECTORY_SEPARATOR . $file->filename)) {
25       file_unmanaged_copy($file->uri, $destination, FILE_EXISTS_ERROR);
26     }
27   }
28 }
29
30 /**
31  * Implements hook_requirements().
32  */
33 function media_entity_twitter_requirements($phase) {
34   $requirements = [];
35   if ($phase == 'install') {
36     $destination = \Drupal::config('media.settings')->get('icon_base_uri');
37     file_prepare_directory($destination, FILE_CREATE_DIRECTORY | FILE_MODIFY_PERMISSIONS);
38     $is_writable = is_writable($destination);
39     $is_directory = is_dir($destination);
40     if (!$is_writable || !$is_directory) {
41       if (!$is_directory) {
42         $error = t('The directory %directory does not exist.', ['%directory' => $destination]);
43       }
44       else {
45         $error = t('The directory %directory is not writable.', ['%directory' => $destination]);
46       }
47       $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 <a href=":handbook_url">online handbook</a>.', [':handbook_url' => 'https://www.drupal.org/server-permissions']);
48       if (!empty($error)) {
49         $description = $error . ' ' . $description;
50         $requirements['media_entity_twitter']['description'] = $description;
51         $requirements['media_entity_twitter']['severity'] = REQUIREMENT_ERROR;
52       }
53     }
54   }
55   return $requirements;
56 }