我有一个表单,其中有一个file
字段可以上传图像。我需要将此图像上传到 Amazon S3。一步一步地构建这个我开始将图像上传到本地磁盘上,它现在可以工作了。
上传发生在我的实体内部Page
,因为建议在保存实体之前测试上传是否成功。我最终得到了这段代码
/**
* @ORM\Column(name="objectThumbnail", type="string", length=255, nullable=true)
*/
protected $objectThumbnail;
/**
* This is not a column in the database but it's mapping a field from the form
*
* @Assert\File(maxSize="600000000")
*/
public $file;
...
/**
* @ORM\PrePersist()
* @ORM\PreUpdate()
*/
public function preUpload()
{
if (null !== $this->file) {
// generate a unique filename
$this->objectThumbnail = $this->getGuid().'.'.$this->file->guessExtension();
}
}
/**
* @ORM\PostPersist()
* @ORM\PostUpdate()
*/
public function upload()
{
if (null === $this->file) {
return;
}
// if there is an error when moving the file, an exception will
// be automatically thrown by move(). This will properly prevent
// the entity from being persisted to the database on error
$this->file->move($this->getUploadRootDir(), $this->objectThumbnail);
unset($this->file);
}
/**
* @ORM\PostRemove()
*/
public function removeUpload()
{
if ($file = $this->getAbsolutePath()) {
unlink($file);
}
}
这是完美的,它就像一个魅力。只是 Symfony(2.1.7)因为属性的公共范围而尖叫file
,没什么大不了的。
现在我需要集成 S3 层。为此,我想我会使用Gaufrette
and StreamWrapper
。
现在我正在努力寻找最好的方法。如何访问Filesystem
实体中的服务?这样做真的很干净吗?在 Entity 中处理 S3 上图像的上传对我来说感觉有点尴尬。
你会建议怎么做?
干杯,
马克西姆