silverstripe-framework/admin/code/MemberImportForm.php

126 lines
3.7 KiB
PHP
Raw Normal View History

<?php
2013-10-15 00:26:23 +02:00
2016-08-11 01:14:02 +02:00
namespace SilverStripe\Admin;
use SilverStripe\Security\Group;
2016-06-23 01:37:22 +02:00
use SilverStripe\Security\MemberCsvBulkLoader;
use SilverStripe\Forms\LiteralField;
use SilverStripe\Forms\FileField;
use SilverStripe\Forms\FieldList;
use SilverStripe\Forms\FormAction;
use SilverStripe\Forms\RequiredFields;
use SilverStripe\Forms\Form;
use SilverStripe\View\Requirements;
2016-06-23 01:37:22 +02:00
/**
* Imports {@link Member} records by CSV upload, as defined in
* {@link MemberCsvBulkLoader}.
*/
class MemberImportForm extends Form {
2014-08-15 08:53:05 +02:00
/**
* @var Group Optional group relation
*/
protected $group;
2014-08-15 08:53:05 +02:00
public function __construct($controller, $name, $fields = null, $actions = null, $validator = null) {
if(!$fields) {
$helpHtml = _t(
2014-08-15 08:53:05 +02:00
'MemberImportForm.Help1',
'<p>Import users in <em>CSV format</em> (comma-separated values).'
. ' <small><a href="#" class="toggle-advanced">Show advanced usage</a></small></p>'
);
$helpHtml .= _t(
2014-08-15 08:53:05 +02:00
'MemberImportForm.Help2',
2015-08-24 06:29:40 +02:00
'<div class="advanced">'
. '<h4>Advanced usage</h4>'
. '<ul>'
. '<li>Allowed columns: <em>%s</em></li>'
. '<li>Existing users are matched by their unique <em>Code</em> property, and updated with any new values from '
. 'the imported file.</li>'
. '<li>Groups can be assigned by the <em>Groups</em> column. Groups are identified by their <em>Code</em> property, '
. 'multiple groups can be separated by comma. Existing group memberships are not cleared.</li>'
. '</ul>'
. '</div>'
);
2014-08-15 08:53:05 +02:00
$importer = new MemberCsvBulkLoader();
$importSpec = $importer->getImportSpec();
$helpHtml = sprintf($helpHtml, implode(', ', array_keys($importSpec['fields'])));
2014-08-15 08:53:05 +02:00
$fields = new FieldList(
new LiteralField('Help', $helpHtml),
$fileField = new FileField(
2014-08-15 08:53:05 +02:00
'CsvFile',
_t(
2014-08-15 08:53:05 +02:00
'SecurityAdmin_MemberImportForm.FileFieldLabel',
'CSV File <small>(Allowed extensions: *.csv)</small>'
)
)
);
$fileField->getValidator()->setAllowedExtensions(array('csv'));
}
2014-08-15 08:53:05 +02:00
if(!$actions) {
$action = new FormAction('doImport', _t('SecurityAdmin_MemberImportForm.BtnImport', 'Import from CSV'));
2016-07-01 03:37:29 +02:00
$action->addExtraClass('btn btn-secondary-outline ss-ui-button');
$actions = new FieldList($action);
}
if(!$validator) $validator = new RequiredFields('CsvFile');
2014-08-15 08:53:05 +02:00
parent::__construct($controller, $name, $fields, $actions, $validator);
API Use Webpack The bundle is generated by running “webpack” directly - gulp is no longer needed as an intermediary. The resulting config is a lot shorter, although more configuration is pushed into lib.js. Modules are shared between javascript files as global variables. Although this global state pollution is a bit messy, I don’t think it’s practically any worse than the previous state, and it highlights the heavy coupling between the different packages we have in place. Reducing the width of the coupling between the core javascript and add-on modules would probably be a better way of dealing with this than replacing global variables with some other kind of global state. The web pack execution seems roughly twice as fast - if I clear out my framework/client/dist/js folder, it takes 13.3s to rebuild. However, it’s not rebuilding other files inside dist, only the bundle files. CSS files are now included from javascript and incorporated into bundle.css by the webpack. Although the style-loader is helpful in some dev workflows (it allows live reload), it introduces a flash of unstyled content which makes it inappropriate for production. Instead ExtractTextPlugin is used to write all the aggregated CSS into a single bundle.css file. A style-loader-based configuration could be introduced for dev environments, if we make use of the webpack live reloader in the future. Note that the following features have been removed as they don't appear to be necessary when using Webpack: - UMD module generation - thirdparty dist file copying LeftAndMain.js deps: Without it, ssui.core.js gets loaded too late, which leads e.g. to buttons being initialised without this added behaviour.
2016-08-21 03:17:50 +02:00
Requirements::javascript(FRAMEWORK_ADMIN_DIR . '/client/dist/js/bundle-lib.js');
Requirements::javascript(FRAMEWORK_ADMIN_DIR . '/client/dist/js/MemberImportForm.js');
2016-08-26 05:37:43 +02:00
Requirements::css(FRAMEWORK_ADMIN_DIR . '/client/dist/styles/bundle.css');
$this->addExtraClass('cms');
$this->addExtraClass('import-form');
}
2014-08-15 08:53:05 +02:00
public function doImport($data, $form) {
$loader = new MemberCsvBulkLoader();
2014-08-15 08:53:05 +02:00
// optionally set group relation
if($this->group) $loader->setGroups(array($this->group));
2014-08-15 08:53:05 +02:00
// load file
$result = $loader->load($data['CsvFile']['tmp_name']);
2014-08-15 08:53:05 +02:00
// result message
$msgArr = array();
if($result->CreatedCount()) $msgArr[] = _t(
'MemberImportForm.ResultCreated', 'Created {count} members',
array('count' => $result->CreatedCount())
);
if($result->UpdatedCount()) $msgArr[] = _t(
'MemberImportForm.ResultUpdated', 'Updated {count} members',
array('count' => $result->UpdatedCount())
);
if($result->DeletedCount()) $msgArr[] = _t(
'MemberImportForm.ResultDeleted', 'Deleted %d members',
array('count' => $result->DeletedCount())
);
$msg = ($msgArr) ? implode(',', $msgArr) : _t('MemberImportForm.ResultNone', 'No changes');
2014-08-15 08:53:05 +02:00
$this->sessionMessage($msg, 'good');
2014-08-15 08:53:05 +02:00
$this->controller->redirectBack();
}
2014-08-15 08:53:05 +02:00
/**
* @param $group Group
*/
public function setGroup($group) {
$this->group = $group;
}
2014-08-15 08:53:05 +02:00
/**
* @return Group
*/
public function getGroup($group) {
return $this->group;
}
}