0

ファイル名を次のようにします:Username-OriginalFileName。私の最初の解決策は、ここのSymfonyクックブックで説明されているように、ファイルエンティティでpreUploadコールバックを使用することでした。

  /**
  * @Assert\File(maxSize="6000000")
   */
 public $FILE_file;

 public $path;

    public function getPath()
    {
        return $this->path;
    }
    public function setPath($path)
    {
        return $this->path=$path;
    }

    public function getAbsolutePath()
    {
        return null === $this->path ? null : $this->getUploadRootDir().'/'.$this->path;
    }

    public function getWebPath()
    {
        return null === $this->path ? null : $this->getUploadDir().'/'.$this->path;
    }

    protected function getUploadRootDir()
    {
        return __DIR__.'/../../../../web/'.$this->getUploadDir();
    }

    protected function getUploadDir()
    {

        return 'uploads/files';
    }


    /**
     * @ORM\PrePersist()
     * @ORM\PreUpdate()
     */

    public function preUpload()
    {
        if (null !== $this->FILE_file) {
                      $username=$this->get('security.context')->getToken()->getUser()->getUsername();
            $this->path = $username.'-'.$this->path;
        }
    }

     /**
     * @ORM\PostPersist()
     * @ORM\PostUpdate()
     */

        public function upload()
    {
        // the file property can be empty if the field is not required
        if (null === $this->FILE_file) {
            return;
        }

        $this->FILE_file->move($this->getUploadRootDir(),  $this->FILE_file->getClientOriginalName());

        $this->path = $this->FILE_file->getClientOriginalName();

        $this->FILE_file = null;
    }

しかし、エンティティからコンテナを取得できないようです。だから私は私のファイルコントローラーでこれをやろうとしました:

                          $filename=$username.'-'.$file->path;

                            $file->setPath($filename);      
                            $file->setFILEFormat($ext);
                           ...

                            $em1->persist($file); 
                            $em1->flush();
                            $file->upload();
                            $content=$file->getContent();

getContentは、ファイルを開き、そのコンテンツを文字列の配列に格納する関数です。何らかの理由で、ファイルは永続化され、$filenameではなくアップロードフォームからOriginalNameでアップロードされます。私は何が間違っているのですか?

4

1 に答える 1

2

ファイルとユーザーの間に関係はありませんか?そうでなければ、次のようなことができます:

ファイル エンティティ:

/**
 *
 * @ORM/ManyToOne(targetEntity="User" …)
 */
private $user;

public function preUpload()
{
    if (null !== $this->FILE_file) {
        $this->path = $this->user->getUsername().'-'.$this->path;
    }
}
于 2012-04-18T13:16:48.620 に答える