2007-07-19 12:40:28 +02:00
|
|
|
<?php
|
2016-06-15 06:03:16 +02:00
|
|
|
|
2016-08-19 00:51:35 +02:00
|
|
|
namespace SilverStripe\Forms;
|
|
|
|
|
|
|
|
use SilverStripe\ORM\DataObject;
|
2016-06-15 06:03:16 +02:00
|
|
|
use SilverStripe\ORM\DataObjectInterface;
|
2016-08-19 00:51:35 +02:00
|
|
|
use SilverStripe\Assets\File;
|
|
|
|
use SilverStripe\Core\Object;
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
|
|
|
* Represents a file type which can be added to a form.
|
2008-04-06 10:20:13 +02:00
|
|
|
* Automatically tries to save has_one-relations on the saved
|
|
|
|
* record.
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
2008-04-06 10:20:13 +02:00
|
|
|
* Please set a validator on the form-object to get feedback
|
|
|
|
* about imposed filesize/extension restrictions.
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
|
|
|
* See {@link UploadField} For a more full-featured field
|
2012-02-03 00:59:40 +01:00
|
|
|
* (incl. ajax-friendly uploads, previews and relationship management).
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
2010-10-15 05:55:22 +02:00
|
|
|
* <b>Usage</p>
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
2010-10-15 05:55:22 +02:00
|
|
|
* If you want to implement a FileField into a form element, you need to pass it an array of source data.
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
2010-10-15 05:55:22 +02:00
|
|
|
* <code>
|
2016-12-30 00:17:15 +01:00
|
|
|
* class ExampleFormController extends PageController {
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
2016-11-29 04:18:48 +01:00
|
|
|
* function Form() {
|
|
|
|
* $fields = new FieldList(
|
|
|
|
* new TextField('MyName'),
|
|
|
|
* new FileField('MyFile')
|
|
|
|
* );
|
|
|
|
* $actions = new FieldList(
|
|
|
|
* new FormAction('doUpload', 'Upload file')
|
|
|
|
* );
|
2010-10-15 05:55:22 +02:00
|
|
|
* $validator = new RequiredFields(array('MyName', 'MyFile'));
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
2016-11-29 04:18:48 +01:00
|
|
|
* return new Form($this, 'Form', $fields, $actions, $validator);
|
|
|
|
* }
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
2016-11-29 04:18:48 +01:00
|
|
|
* function doUpload($data, $form) {
|
|
|
|
* $file = $data['MyFile'];
|
|
|
|
* $content = file_get_contents($file['tmp_name']);
|
|
|
|
* // ... process content
|
|
|
|
* }
|
2010-10-15 05:55:22 +02:00
|
|
|
* }
|
|
|
|
* </code>
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
2016-11-29 04:18:48 +01:00
|
|
|
class FileField extends FormField
|
|
|
|
{
|
|
|
|
use UploadReceiver;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Flag to automatically determine and save a has_one-relationship
|
|
|
|
* on the saved record (e.g. a "Player" has_one "PlayerImage" would
|
|
|
|
* trigger saving the ID of newly created file into "PlayerImageID"
|
|
|
|
* on the record).
|
|
|
|
*
|
|
|
|
* @var boolean
|
|
|
|
*/
|
|
|
|
protected $relationAutoSetting = true;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new file field.
|
|
|
|
*
|
|
|
|
* @param string $name The internal field name, passed to forms.
|
|
|
|
* @param string $title The field label.
|
|
|
|
* @param int $value The value of the field.
|
|
|
|
*/
|
|
|
|
public function __construct($name, $title = null, $value = null)
|
|
|
|
{
|
|
|
|
$this->constructUploadReceiver();
|
|
|
|
parent::__construct($name, $title, $value);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array $properties
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function Field($properties = array())
|
|
|
|
{
|
|
|
|
$properties = array_merge($properties, array(
|
|
|
|
'MaxFileSize' => $this->getValidator()->getAllowedMaxFileSize()
|
|
|
|
));
|
|
|
|
|
|
|
|
return parent::Field($properties);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getAttributes()
|
|
|
|
{
|
|
|
|
return array_merge(
|
|
|
|
parent::getAttributes(),
|
|
|
|
array('type' => 'file')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param DataObject|DataObjectInterface $record
|
|
|
|
*/
|
|
|
|
public function saveInto(DataObjectInterface $record)
|
|
|
|
{
|
|
|
|
if (!isset($_FILES[$this->name])) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$fileClass = File::get_class_for_file_extension(
|
|
|
|
File::get_file_extension($_FILES[$this->name]['name'])
|
|
|
|
);
|
|
|
|
|
|
|
|
/** @var File $file */
|
|
|
|
if ($this->relationAutoSetting) {
|
|
|
|
// assume that the file is connected via a has-one
|
|
|
|
$objectClass = DataObject::getSchema()->hasOneComponent(get_class($record), $this->name);
|
|
|
|
if ($objectClass === File::class || empty($objectClass)) {
|
|
|
|
// Create object of the appropriate file class
|
|
|
|
$file = Object::create($fileClass);
|
|
|
|
} else {
|
|
|
|
// try to create a file matching the relation
|
|
|
|
$file = Object::create($objectClass);
|
|
|
|
}
|
|
|
|
} elseif ($record instanceof File) {
|
|
|
|
$file = $record;
|
|
|
|
} else {
|
|
|
|
$file = Object::create($fileClass);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->upload->loadIntoFile($_FILES[$this->name], $file, $this->getFolderName());
|
|
|
|
|
|
|
|
if ($this->upload->isError()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->relationAutoSetting) {
|
|
|
|
if (empty($objectClass)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$file = $this->upload->getFile();
|
|
|
|
|
|
|
|
$record->{$this->name . 'ID'} = $file->ID;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function Value()
|
|
|
|
{
|
|
|
|
return isset($_FILES[$this->getName()]) ? $_FILES[$this->getName()] : null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function validate($validator)
|
|
|
|
{
|
|
|
|
if (!isset($_FILES[$this->name])) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
$tmpFile = $_FILES[$this->name];
|
|
|
|
|
|
|
|
$valid = $this->upload->validate($tmpFile);
|
|
|
|
if (!$valid) {
|
|
|
|
$errors = $this->upload->getErrors();
|
|
|
|
if ($errors) {
|
|
|
|
foreach ($errors as $error) {
|
|
|
|
$validator->validationError($this->name, $error, "validation");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set if relation can be automatically assigned to the underlying dataobject
|
|
|
|
*
|
|
|
|
* @param bool $auto
|
|
|
|
* @return $this
|
|
|
|
*/
|
|
|
|
public function setRelationAutoSetting($auto)
|
|
|
|
{
|
|
|
|
$this->relationAutoSetting = $auto;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if relation can be automatically assigned to the underlying dataobject
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function getRelationAutoSetting()
|
|
|
|
{
|
|
|
|
return $this->relationAutoSetting;
|
|
|
|
}
|
2012-11-14 23:33:10 +01:00
|
|
|
}
|