2011-02-07 07:48:44 +01:00
# Import CSV data
## Introduction
CSV import can be easily achieved through PHP's built-in `fgetcsv()` method,
but this method doesn't know anything about your datamodel. In SilverStripe,
this can be handled through the a specialized CSV importer class that can
be customized to fit your data.
## The CsvBulkLoader class
The [api:CsvBulkLoader] class facilitate complex CSV-imports by defining column-mappings and custom converters.
It uses PHP's built-in `fgetcsv()` function to process CSV input, and accepts a file handle as an input.
Feature overview:
* Custom column mapping
* Auto-detection of CSV-header rows
* Duplicate detection based on custom criteria
* Automatic generation of relations based on one or more columns in the CSV-Data
* Definition of custom import methods (e.g. for date conversion or combining multiple columns)
* Optional deletion of existing records if they're not present in the CSV-file
* Results grouped by "imported", "updated" and "deleted"
## Usage
You can use the CsvBulkLoader without subclassing or other customizations, if the column names
in your CSV file match `$db` properties in your dataobject. E.g. a simple import for the
`[api:Member]` class could have this data in a file:
FirstName,LastName,Email
Donald,Duck,donald@disney.com
Daisy,Duck,daisy@disney.com
The loader would be triggered through the `load()` method:
:::php
$loader = new CsvBulkLoader('Member');
$result = $loader->load('< my-file-path > ');
By the way, you can import `[api:Member]` and `[api:Group]` data through `http://localhost/admin/security`
interface out of the box.
## Import through ModelAdmin
The simplest way to use [api:CsvBulkLoader] is through a [api:ModelAdmin] interface - you get an upload form out of the box.
:::php
< ?php
class PlayerAdmin extends ModelAdmin {
2013-03-21 19:48:54 +01:00
private static $managed_models = array(
2011-02-07 07:48:44 +01:00
'Player'
);
2013-03-21 19:48:54 +01:00
private static $model_importers = array(
2011-02-07 07:48:44 +01:00
'Player' => 'PlayerCsvBulkLoader',
);
2013-03-21 19:48:54 +01:00
private static $url_segment = 'players';
2011-02-07 07:48:44 +01:00
}
?>
The new admin interface will be available under `http://localhost/admin/players` , the import form is located
below the search form on the left.
## Import through a custom controller
You can have more customized logic and interface feedback through a custom controller. Let's create a simple upload form (which is used for `MyDataObject` instances). You can access it through `http://localhost/MyController/?flush=all` .
:::php
< ?php
class MyController extends Controller {
2013-01-28 22:35:32 +01:00
2013-03-21 19:48:54 +01:00
private static $allowed_actions = array('Form');
2013-01-28 22:35:32 +01:00
2011-02-07 07:48:44 +01:00
protected $template = "BlankPage";
2012-01-30 23:13:42 +01:00
public function Link($action = null) {
2011-02-07 07:48:44 +01:00
return Controller::join_links('MyController', $action);
}
2012-01-30 23:13:42 +01:00
public function Form() {
2011-02-07 07:48:44 +01:00
$form = new Form(
$this,
'Form',
2011-10-28 03:37:27 +02:00
new FieldList(
2011-02-07 07:48:44 +01:00
new FileField('CsvFile', false)
),
2011-10-28 03:37:27 +02:00
new FieldList(
2011-02-07 07:48:44 +01:00
new FormAction('doUpload', 'Upload')
),
new RequiredFields()
);
return $form;
}
2012-01-30 23:13:42 +01:00
public function doUpload($data, $form) {
2011-02-07 07:48:44 +01:00
$loader = new CsvBulkLoader('MyDataObject');
$results = $loader->load($_FILES['CsvFile']['tmp_name']);
$messages = array();
if($results->CreatedCount()) $messages[] = sprintf('Imported %d items', $results->CreatedCount());
if($results->UpdatedCount()) $messages[] = sprintf('Updated %d items', $results->UpdatedCount());
if($results->DeletedCount()) $messages[] = sprintf('Deleted %d items', $results->DeletedCount());
if(!$messages) $messages[] = 'No changes';
$form->sessionMessage(implode(', ', $messages), 'good');
return $this->redirectBack();
}
}
Note: This interface is not secured, consider using [api:Permission::check()] to limit the controller to users
with certain access rights.
## Column mapping and relation import
We're going to use our knowledge from the previous example to import a more sophisticated CSV file.
Sample CSV Content
"SpielerNummer","Name","Geburtsdatum","Gruppe"
11,"John Doe",1982-05-12,"FC Bayern"
12,"Jane Johnson", 1982-05-12,"FC Bayern"
13,"Jimmy Dole",,"Schalke 04"
Datamodel for Player
:::php
< ?php
class Player extends DataObject {
2013-03-21 19:48:54 +01:00
private static $db = array(
2011-02-07 07:48:44 +01:00
'PlayerNumber' => 'Int',
'FirstName' => 'Text',
'LastName' => 'Text',
'Birthday' => 'Date',
);
2013-03-21 19:48:54 +01:00
private static $has_one = array(
2011-02-07 07:48:44 +01:00
'Team' => 'FootballTeam'
);
}
?>
Datamodel for FootballTeam:
:::php
< ?php
class FootballTeam extends DataObject {
2013-03-21 19:48:54 +01:00
private static $db = array(
2011-02-07 07:48:44 +01:00
'Title' => 'Text',
);
2013-03-21 19:48:54 +01:00
private static $has_many = array(
2011-02-07 07:48:44 +01:00
'Players' => 'Player'
);
}
?>
Sample implementation of a custom loader. Assumes a CSV-file in a certain format (see below).
* Converts property names
* Splits a combined "Name" fields from the CSV-data into `FirstName` and `Lastname` by a custom importer method
* Avoids duplicate imports by a custom `$duplicateChecks` definition
2011-02-21 22:23:22 +01:00
* Creates `Team` relations automatically based on the `Gruppe` column in the CSV data
2011-02-07 07:48:44 +01:00
:::php
< ?php
class PlayerCsvBulkLoader extends CsvBulkLoader {
public $columnMap = array(
'Number' => 'PlayerNumber',
'Name' => '->importFirstAndLastName',
'Geburtsdatum' => 'Birthday',
'Gruppe' => 'Team.Title',
);
public $duplicateChecks = array(
'SpielerNummer' => 'PlayerNumber'
);
public $relationCallbacks = array(
'Team.Title' => array(
'relationname' => 'Team',
'callback' => 'getTeamByTitle'
)
);
2012-01-30 23:13:42 +01:00
public static function importFirstAndLastName(& $obj, $val, $record) {
2011-02-07 07:48:44 +01:00
$parts = explode(' ', $val);
if(count($parts) != 2) return false;
$obj->FirstName = $parts[0];
$obj->LastName = $parts[1];
}
2012-01-30 23:13:42 +01:00
public static function getTeamByTitle(& $obj, $val, $record) {
2012-06-23 00:32:43 +02:00
return FootballTeam::get()->filter('Title', $val)->First();
2011-02-07 07:48:44 +01:00
);
}
}
?>
## Related
* [api:CsvParser]
* [api:ModelAdmin]