usebb2drupal-8.x-1.0-rc1/src/Form/MigrateForm.php
src/Form/MigrateForm.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 | <?php namespace Drupal\usebb2drupal\Form; use Drupal\Core\Form\FormBase; use Drupal\Core\Form\FormStateInterface; use Drupal\Component\Utility\Unicode; use Drupal\Component\Utility\UrlHelper; use Drupal\usebb2drupal\Exception\InvalidSourcePathException; use Drupal\usebb2drupal\Exception\InvalidConfigFileException; use Drupal\usebb2drupal\Exception\MissingDatabaseTablesException; use Drupal\usebb2drupal\Exception\MissingLanguagesException; use \PDOException; /** * UseBB migrate form. */ class MigrateForm extends FormBase { /** * {@inheritdoc} */ public function getFormId() { return 'usebb2drupal_migrate' ; } /** * {@inheritdoc} */ public function buildForm( array $form , FormStateInterface $form_state ) { if (Unicode::getStatus() !== Unicode::STATUS_MULTIBYTE) { drupal_set_message( $this ->t( 'This version of PHP does not support multibyte encodings.' ), 'error' ); return $form ; } $form [ 'intro' ] = [ '#markup' => $this ->t( "Specify the contents to migrate and the path to the UseBB installation and click 'Start migration'. Existing Drupal content and users will not be modified or removed. Additionally, provide the public URLs to the UseBB forum so that internal links can be translated." ), '#prefix' => '<p>' , '#suffix' => '</p>' , ]; if (!\Drupal::moduleHandler()->moduleExists( 'signature' )) { $form [ 'signatures' ] = [ '#markup' => $this ->t( 'To migrate user signatures, download and enable the <a href=":url">signature module</a> <em>before</em> starting the migration.' , [ ':url' => 'https://www.drupal.org/project/signature' ]), '#prefix' => '<p>' , '#suffix' => '</p>' , ]; } $form [ 'migrate_type' ] = [ '#type' => 'radios' , '#title' => $this ->t( 'Migrate' ), '#options' => [ 'all' => $this ->t( 'Structure, content and users.' ), 'structure_content' => $this ->t( 'Structure and content <strong>without</strong> users.' ), 'users' => $this ->t( 'Users only.' ), ], '#default_value' => 'all' , ]; $form [ 'structure_content_info' ] = [ '#type' => 'container' , 'text' => [ '#markup' => $this ->t( '<strong>Notice:</strong> all topics and posts will be authored by Anonymous. Actual author info cannot be imported afterwards.' ), ], '#states' => [ 'visible' => [ ':input[name="migrate_type"]' => [ 'value' => 'structure_content' ], ], ], ]; $form [ 'source_path' ] = [ '#type' => 'textfield' , '#title' => $this ->t( 'UseBB installation directory' ), '#required' => TRUE, '#description' => $this ->t( 'The absolute directory on the server where UseBB is installed.' ), '#default_value' => \Drupal::state()->get( 'usebb2drupal.source_path' ), ]; $public_urls = \Drupal::state()->get( 'usebb2drupal.public_urls' , []); $form [ 'public_urls' ] = [ '#type' => 'textarea' , '#title' => $this ->t( 'Public UseBB forum URLs' ), '#description' => $this ->t( 'Public URLs on which the UseBB forum can or could be accessed. Only fill in the URL(s) to the forum index. This will correct internal URLs in forum descriptions, topics, posts and user signatures to the new Drupal URLs. Leaving this empty disables the URL correction.' ), '#default_value' => implode( "\n" , $public_urls ), '#rows' => ! empty ( $public_urls ) ? count ( $public_urls ) + 1 : 3, ]; $form [ 'actions' ] = [ '#type' => 'actions' , ]; $form [ 'actions' ][ 'submit' ] = [ '#type' => 'submit' , '#value' => $this ->t( 'Start migration' ), '#button_type' => 'primary' , ]; return $form ; } /** * {@inheritdoc} */ public function validateForm( array & $form , FormStateInterface $form_state ) { $source_path = $form_state ->getValue( 'source_path' ); \Drupal::state()->set( 'usebb2drupal.source_path' , $source_path ); try { $info = \Drupal::service( 'usebb2drupal.info' ); $info ->getDatabase(); $info ->getLanguages(); } catch (InvalidSourcePathException $e ) { $form_state ->setError( $form [ 'source_path' ], $this ->t( 'The source path %source_path does not exist or has no readable config.php.' , [ '%source_path' => $source_path ])); } catch (InvalidConfigFileException $e ) { $form_state ->setError( $form [ 'source_path' ], $this ->t( 'The config.php file contains no UseBB configuration.' )); } catch (PDOException $e ) { $form_state ->setError( $form [ 'source_path' ], $this ->t( 'Unable to access the database with the credentials specified in config.php.' )); } catch (MissingDatabaseTablesException $e ) { $form_state ->setError( $form [ 'source_path' ], $this ->t( 'No UseBB database tables were found, or the defined table prefix is wrong.' )); } catch (MissingLanguagesException $e ) { $form_state ->setError( $form [ 'source_path' ], $this ->t( 'The language files are not present in the UseBB directory.' )); } if ( $public_urls = $form_state ->getValue( 'public_urls' )) { foreach (preg_split( '#[\r\n]+#' , $public_urls ) as $public_url ) { if (!UrlHelper::isValid( $public_url , TRUE)) { $form_state ->setError( $form [ 'public_urls' ], $this ->t( 'The public URL %url is not a valid URL.' , [ '%url' => $public_url ])); } } } } /** * {@inheritdoc} */ public function submitForm( array & $form , FormStateInterface $form_state ) { if ( $public_urls = $form_state ->getValue( 'public_urls' )) { $public_urls = array_unique ( array_map ( function ( $url ) { $url = preg_replace( '#index\.(html|php)$#' , '' , $url ); if ( substr ( $url , -1) === '/' ) { $url = substr ( $url , 0, -1); } return $url ; }, preg_split( '#[\r\n]+#' , $public_urls ))); } else { $public_urls = []; } \Drupal::state()->set( 'usebb2drupal.public_urls' , $public_urls ); $migrate_type = $form_state ->getValue( 'migrate_type' ); $migration_list = []; $url_translation_migrations = []; switch ( $migrate_type ) { // Start off with user data. case 'all' : case 'users' : $migration_list [] = 'usebb_user' ; $migration_list [] = 'usebb_user_contact' ; if (\Drupal::moduleHandler()->moduleExists( 'signature' )) { $url_translation_migrations [] = 'usebb_user' ; } if ( $migrate_type === 'users' ) { // Stop here when only users are migrated. $form_state ->setRedirect( 'entity.user.collection' ); break ; } case 'structure_content' : // Add structure and content. $migration_list [] = 'usebb_category' ; $migration_list [] = 'usebb_forum' ; $migration_list [] = 'usebb_topic' ; $migration_list [] = 'usebb_post' ; $url_translation_migrations [] = 'usebb_forum' ; $url_translation_migrations [] = 'usebb_topic' ; $url_translation_migrations [] = 'usebb_post' ; $form_state ->setRedirect( 'forum.overview' ); } if (\Drupal::service( 'usebb2drupal.info' )->getConfig( 'enable_ip_bans' )) { $migration_list [] = 'usebb_ban' ; } else { drupal_set_message( $this ->t( 'Since IP address banning is disabled in the UseBB configuration, no IP address bans have been migrated.' )); } \Drupal::state()->set( 'usebb2drupal.migration_list' , $migration_list ); $batch = [ 'title' => $this ->t( 'Migrating UseBB' ), 'operations' => array_map ( function ( $migration_id ) { return [ [ 'Drupal\usebb2drupal\MigrateBatch' , 'run' ], [ $migration_id ], ]; }, $migration_list ), 'finished' => [ 'Drupal\usebb2drupal\MigrateBatch' , 'finished' ], ]; if (! empty ( $public_urls )) { foreach ( $url_translation_migrations as $migration_id ) { $batch [ 'operations' ][] = [ [ 'Drupal\usebb2drupal\MigrateBatch' , 'translateUrls' ], [ $migration_id ], ]; } } batch_set( $batch ); } } |