mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
d8e9af8af8
Database abstraction broken up into controller, connector, query builder, and schema manager, each independently configurable via YAML / Injector Creation of new DBQueryGenerator for database specific generation of SQL Support for parameterised queries, move of code base to use these over escaped conditions Refactor of SQLQuery into separate query classes for each of INSERT UPDATE DELETE and SELECT Support for PDO Installation process upgraded to use new ORM SS_DatabaseException created to handle database errors, maintaining details of raw sql and parameter details for user code designed interested in that data. Renamed DB static methods to conform correctly to naming conventions (e.g. DB::getConn -> DB::get_conn) 3.2 upgrade docs Performance Optimisation and simplification of code to use more concise API API Ability for database adapters to register extensions to ConfigureFromEnv.php
60 lines
1.7 KiB
PHP
60 lines
1.7 KiB
PHP
<?php
|
|
/**
|
|
* @todo Migrate Permission->Arg and Permission->Type values
|
|
*
|
|
* @package framework
|
|
* @subpackage security
|
|
*/
|
|
class GroupCsvBulkLoader extends CsvBulkLoader {
|
|
|
|
public $duplicateChecks = array(
|
|
'Code' => 'Code',
|
|
);
|
|
|
|
public function __construct($objectClass = null) {
|
|
if(!$objectClass) $objectClass = 'Group';
|
|
|
|
parent::__construct($objectClass);
|
|
}
|
|
|
|
public function processRecord($record, $columnMap, &$results, $preview = false) {
|
|
// We match by 'Code', the ID property is confusing the importer
|
|
if(isset($record['ID'])) unset($record['ID']);
|
|
|
|
$objID = parent::processRecord($record, $columnMap, $results, $preview);
|
|
|
|
$group = DataObject::get_by_id($this->objectClass, $objID);
|
|
// set group hierarchies - we need to do this after all records
|
|
// are imported to avoid missing "early" references to parents
|
|
// which are imported later on in the CSV file.
|
|
if(isset($record['ParentCode']) && $record['ParentCode']) {
|
|
$parentGroup = DataObject::get_one('Group', array(
|
|
'"Group"."Code"' => $record['ParentCode']
|
|
));
|
|
if($parentGroup) {
|
|
$group->ParentID = $parentGroup->ID;
|
|
$group->write();
|
|
}
|
|
}
|
|
|
|
// set permission codes - these are all additive, meaning
|
|
// existing permissions arent cleared.
|
|
if(isset($record['PermissionCodes']) && $record['PermissionCodes']) {
|
|
foreach(explode(',', $record['PermissionCodes']) as $code) {
|
|
$p = DataObject::get_one('Permission', array(
|
|
'"Permission"."Code"' => $code,
|
|
'"Permission"."GroupID"' => $group->ID
|
|
));
|
|
if(!$p) {
|
|
$p = new Permission(array('Code' => $code));
|
|
$p->write();
|
|
}
|
|
$group->Permissions()->add($p);
|
|
}
|
|
}
|
|
|
|
return $objID;
|
|
}
|
|
|
|
}
|