silverstripe-userforms/code/Model/Submission/SubmittedFileField.php

120 lines
3.1 KiB
PHP
Raw Normal View History

<?php
namespace SilverStripe\UserForms\Model\Submission;
use SilverStripe\Assets\File;
use SilverStripe\ORM\FieldType\DBField;
use SilverStripe\Versioned\Versioned;
/**
2015-09-11 00:20:06 +02:00
* A file uploaded on a {@link UserDefinedForm} and attached to a single
* {@link SubmittedForm}.
*
* @package userforms
* @property int $UploadedFileID
* @method File UploadedFile()
*/
2016-07-21 07:53:59 +02:00
class SubmittedFileField extends SubmittedFormField
{
private static $has_one = [
'UploadedFile' => File::class
];
2015-09-11 00:20:06 +02:00
private static $table_name = 'SubmittedFileField';
2015-09-11 00:20:06 +02:00
private static $owns = [
'UploadedFile'
];
private static $cascade_deletes = [
'UploadedFile'
];
2016-07-21 07:53:59 +02:00
/**
* Return the value of this field for inclusion into things such as
* reports.
*
* @return string
*/
public function getFormattedValue()
{
$name = $this->getFileName();
$link = $this->getLink(false);
$title = _t(__CLASS__ . '.DOWNLOADFILE', 'Download File');
$message = _t(__CLASS__ . '.INSUFFICIENTRIGHTS', 'You don\'t have the right permissions to download this file');
$file = $this->getUploadedFileFromDraft();
2015-09-11 00:20:06 +02:00
2016-07-21 07:53:59 +02:00
if ($link) {
if ($file->canView()) {
return DBField::create_field('HTMLText', sprintf(
'%s - <a href="%s" target="_blank">%s</a>',
htmlspecialchars($name, ENT_QUOTES),
htmlspecialchars($link, ENT_QUOTES),
htmlspecialchars($title, ENT_QUOTES)
));
} else {
return DBField::create_field('HTMLText', sprintf(
'<i class="icon font-icon-lock"></i> %s - <em>%s</em>',
htmlspecialchars($name, ENT_QUOTES),
htmlspecialchars($message, ENT_QUOTES)
));
}
2016-07-21 07:53:59 +02:00
}
2015-09-11 00:20:06 +02:00
2016-07-21 07:53:59 +02:00
return false;
}
2015-09-11 00:20:06 +02:00
2016-07-21 07:53:59 +02:00
/**
* Return the value for this field in the CSV export.
*
* @return string
*/
public function getExportValue()
{
return ($link = $this->getLink()) ? $link : '';
2016-07-21 07:53:59 +02:00
}
2016-07-21 07:53:59 +02:00
/**
* Return the link for the file attached to this submitted form field.
*
* @return string
*/
public function getLink($grant = true)
2016-07-21 07:53:59 +02:00
{
if ($file = $this->getUploadedFileFromDraft()) {
if ($file->exists()) {
return $file->getURL($grant);
2016-07-21 07:53:59 +02:00
}
}
}
2015-09-11 00:20:06 +02:00
/**
* As uploaded files are stored in draft by default, this retrieves the
* uploaded file from draft mode rather than using the current stage.
*
* @return File
*/
public function getUploadedFileFromDraft()
{
$fileId = $this->UploadedFileID;
return Versioned::withVersionedMode(function () use ($fileId) {
Versioned::set_stage(Versioned::DRAFT);
return File::get()->byID($fileId);
});
}
2016-07-21 07:53:59 +02:00
/**
* Return the name of the file, if present
*
* @return string
*/
public function getFileName()
{
if ($file = $this->getUploadedFileFromDraft()) {
return $file->Name;
2016-07-21 07:53:59 +02:00
}
}
2015-07-24 04:37:48 +02:00
}