diff --git a/admin/hooks/admin-init.php b/admin/hooks/admin-init.php index 5f39597e..20be156a 100644 --- a/admin/hooks/admin-init.php +++ b/admin/hooks/admin-init.php @@ -1,4 +1,21 @@ dispatch(); +} + function sportspress_admin_init() { $post_types = array( 'sp_event', @@ -35,5 +52,7 @@ function sportspress_admin_init() { $administrator->add_cap( $cap . '_' . $post_type . 's' ); endforeach; endforeach; + + register_importer( 'sportspress_player_csv', __( 'SportsPress Players (CSV)', 'sportspress' ), __( 'Import players from a csv file.', 'sportspress'), 'sportspress_player_importer' ); } add_action( 'admin_init', 'sportspress_admin_init' ); diff --git a/admin/importers/player-importer.php b/admin/importers/player-importer.php new file mode 100644 index 00000000..82c8eb38 --- /dev/null +++ b/admin/importers/player-importer.php @@ -0,0 +1,317 @@ +import_page = 'sportspress_player_csv'; + } + + /** + * Registered callback function for the WordPress Importer + * + * Manages the three separate stages of the CSV import process + */ + function dispatch() { + $this->header(); + + if ( ! empty( $_POST['delimiter'] ) ) + $this->delimiter = stripslashes( trim( $_POST['delimiter'] ) ); + + if ( ! $this->delimiter ) + $this->delimiter = ','; + + $step = empty( $_GET['step'] ) ? 0 : (int) $_GET['step']; + switch ( $step ): + case 0: + $this->greet(); + break; + case 1: + check_admin_referer( 'import-upload' ); + if ( $this->handle_upload() ): + + if ( $this->id ) + $file = get_attached_file( $this->id ); + else + $file = ABSPATH . $this->file_url; + + add_filter( 'http_request_timeout', array( $this, 'bump_request_timeout' ) ); + + if ( function_exists( 'gc_enable' ) ) + gc_enable(); + + @set_time_limit(0); + @ob_flush(); + @flush(); + + $this->import( $file ); + endif; + break; + endswitch; + $this->footer(); + } + + /** + * format_data_from_csv function. + * + * @access public + * @param mixed $data + * @param string $enc + * @return string + */ + function format_data_from_csv( $data, $enc ) { + return ( $enc == 'UTF-8' ) ? $data : utf8_encode( $data ); + } + + /** + * import function. + * + * @access public + * @param mixed $file + * @return void + */ + function import( $file ) { + global $wpdb; + + $this->imported = $this->skipped = 0; + + if ( ! is_file($file) ): + $this->footer(); + die(); + endif; + + $new_rates = array(); + + ini_set( 'auto_detect_line_endings', '1' ); + + if ( ( $handle = fopen( $file, "r" ) ) !== FALSE ): + + $header = fgetcsv( $handle, 0, $this->delimiter ); + + if ( sizeof( $header ) == 4 ): + + $loop = 0; + + while ( ( $row = fgetcsv( $handle, 0, $this->delimiter ) ) !== FALSE ): + + list( $name, $number, $team, $nationality ) = $row; + + $nationality = trim( strtoupper( $nationality ) ); + + if ( $nationality == '*' ) + $nationality = ''; + + $args = array( 'post_type' => 'sp_player', 'post_status' => 'publish', 'post_title' => $name ); + + $id = wp_insert_post( $args ); + + // Flag as import + update_post_meta( $id, 'sp_import', 1 ); + + // Update number + update_post_meta( $id, 'sp_number', $number ); + + // Get or insert team + $team_object = get_page_by_path( $team, OBJECT, 'sp_team' ); + if ( $team_object ): + if ( $team_object->post_status != 'publish' ): + wp_update_post( array( 'ID' => $team_object->ID, 'post_status' => 'publish' ) ); + endif; + $team_id = $team_object->ID; + else: + $team_id = wp_insert_post( array( 'post_type' => 'sp_team', 'post_status' => 'publish', 'post_title' => $team ) ); + endif; + + // Update team + update_post_meta( $id, 'sp_team', $team_id ); + update_post_meta( $id, 'sp_current_team', $team_id ); + + // Update nationality + update_post_meta( $id, 'sp_nationality', $nationality ); + + $loop ++; + $this->imported++; + endwhile; + + else: + + echo '
' . __( 'Sorry, there has been an error.', 'sportspress' ) . '
';
+ echo __( 'The CSV is invalid.', 'sportspress' ) . '
+ '.sprintf( __( 'Import complete - imported %s players and skipped %s.', 'sportspress' ), $this->imported, $this->skipped ).' +
' . __( 'All done!', 'sportspress' ) . ' ' . sprintf( __( 'View %s', 'sportspress' ), __( 'Players', 'sportspress' ) ) . '' . '
'; + + do_action( 'import_end' ); + } + + /** + * Handles the CSV upload and initial parsing of the file to prepare for + * displaying author import options + * + * @return bool False if error uploading or invalid file, true otherwise + */ + function handle_upload() { + + if ( empty( $_POST['file_url'] ) ) { + + $file = wp_import_handle_upload(); + + if ( isset( $file['error'] ) ) { + echo '' . __( 'Sorry, there has been an error.', 'sportspress' ) . '
';
+ echo esc_html( $file['error'] ) . '
' . __( 'Sorry, there has been an error.', 'sportspress' ) . '
'; + return false; + + } + + } + + return true; + } + + /** + * header function. + * + * @access public + * @return void + */ + function header() { + echo '' . __( 'Hi there! Choose a .csv file to upload, then click "Upload file and import".', 'sportspress' ).'
'; + + echo '' . sprintf( __( 'Players need to be defined with columns in a specific order (4 columns). Click here to download a sample.', 'sportspress' ), SPORTSPRESS_PLUGIN_URL . 'dummy-data/sample_players.csv' ) . '
'; + + $action = 'admin.php?import=sportspress_player_csv&step=1'; + + $bytes = apply_filters( 'import_upload_size_limit', wp_max_upload_size() ); + $size = size_format( $bytes ); + $upload_dir = wp_upload_dir(); + if ( ! empty( $upload_dir['error'] ) ) : + ?>