recipe_file_uploads.rst 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  1. Uploading and saving documents (including images) using DoctrineORM and SonataAdmin
  2. ===================================================================================
  3. This is a full working example of a file upload management method using
  4. SonataAdmin with the DoctrineORM persistence layer.
  5. Pre-requisites
  6. --------------
  7. - you already have SonataAdmin and DoctrineORM up and running
  8. - you already have an Entity class that you wish to be able to connect uploaded
  9. documents to, in this example that class will be called ``Image``.
  10. - you already have an Admin set up, in this example it's called ``ImageAdmin``
  11. - you understand file permissions on your web server and can manage the permissions
  12. needed to allow your web server to upload and update files in the relevant
  13. folder(s)
  14. The recipe
  15. ----------
  16. First we will cover the basics of what your Entity needs to contain to enable document
  17. management with Doctrine. There is a good cookbook entry about
  18. `uploading files with Doctrine and Symfony`_ on the Symfony website, so I will show
  19. code examples here without going into the details. It is strongly recommended that
  20. you read that cookbook first.
  21. To get file uploads working with SonataAdmin we need to:
  22. - add a file upload field to our ImageAdmin
  23. - 'touch' the Entity when a new file is uploaded so its lifecycle events are triggered
  24. Basic configuration - the Entity
  25. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  26. Following the guidelines from the Symfony cookbook, we have an Entity definition
  27. that looks something like the YAML below (of course, you can achieve something
  28. similar with XML or Annotation based definitions too). In this example we are using
  29. the ``updated`` field to trigger the lifecycle callbacks by setting it based on the
  30. upload timestamp.
  31. .. configuration-block::
  32. .. code-block:: yaml
  33. # YourNS/YourBundle/Resources/config/Doctrine/Image.orm.yml
  34. YourNS\YourBundle\Entity\Image:
  35. type: entity
  36. repositoryClass: YourNS\YourBundle\Entity\Repositories\ImageRepository
  37. table: images
  38. id:
  39. id:
  40. type: integer
  41. generator: { strategy: AUTO }
  42. fields:
  43. filename:
  44. type: string
  45. length: 100
  46. updated: # changed when files are uploaded, to force preUpdate and postUpdate to fire
  47. type: datetime
  48. nullable: true
  49. # ... other fields ...
  50. lifecycleCallbacks:
  51. prePersist: [ lifecycleFileUpload ]
  52. preUpdate: [ lifecycleFileUpload ]
  53. We then have the following methods in our ``Image`` class to manage file uploads:
  54. .. code-block:: php
  55. // YourNS/YourBundle/Entity/Image.php
  56. const SERVER_PATH_TO_IMAGE_FOLDER = '/server/path/to/images';
  57. /**
  58. * Unmapped property to handle file uploads
  59. */
  60. private $file;
  61. /**
  62. * Sets file.
  63. *
  64. * @param UploadedFile $file
  65. */
  66. public function setFile(UploadedFile $file = null)
  67. {
  68. $this->file = $file;
  69. }
  70. /**
  71. * Get file.
  72. *
  73. * @return UploadedFile
  74. */
  75. public function getFile()
  76. {
  77. return $this->file;
  78. }
  79. /**
  80. * Manages the copying of the file to the relevant place on the server
  81. */
  82. public function upload()
  83. {
  84. // the file property can be empty if the field is not required
  85. if (null === $this->getFile()) {
  86. return;
  87. }
  88. // we use the original file name here but you should
  89. // sanitize it at least to avoid any security issues
  90. // move takes the target directory and target filename as params
  91. $this->getFile()->move(
  92. Image::SERVER_PATH_TO_IMAGE_FOLDER,
  93. $this->getFile()->getClientOriginalName()
  94. );
  95. // set the path property to the filename where you've saved the file
  96. $this->filename = $this->getFile()->getClientOriginalName();
  97. // clean up the file property as you won't need it anymore
  98. $this->setFile(null);
  99. }
  100. /**
  101. * Lifecycle callback to upload the file to the server
  102. */
  103. public function lifecycleFileUpload() {
  104. $this->upload();
  105. }
  106. /**
  107. * Updates the hash value to force the preUpdate and postUpdate events to fire
  108. */
  109. public function refreshUpdated() {
  110. $this->setUpdated(new \DateTime("now"));
  111. }
  112. // ... the rest of your class lives under here, including the generated fields
  113. // such as filename and updated
  114. When we upload a file to our Image, the file itself is transient and not persisted
  115. to our database (it is not part of our mapping). However, the lifecycle callbacks
  116. trigger a call to ``Image::upload()`` which manages the actual copying of the
  117. uploaded file to the filesystem and updates the ``filename`` property of our Image,
  118. this filename field *is* persisted to the database.
  119. Most of the above is simply from the `uploading files with Doctrine and Symfony`_ cookbook
  120. entry. It is highly recommended reading!
  121. Basic configuration - the Admin class
  122. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  123. We need to do two things in Sonata to enable file uploads:
  124. 1. Add a file upload widget
  125. 2. Ensure that the Image class' lifecycle events fire when we upload a file
  126. Both of these are straightforward when you know what to do:
  127. .. code-block:: php
  128. // YourNS/YourBundle/Admin/ImageAdmin.php
  129. ...
  130. class ImageAdmin extends Admin
  131. {
  132. protected function configureFormFields(FormMapper $formMapper)
  133. {
  134. $formMapper
  135. ->add('file', 'file', array('required' => false))
  136. // ... other fields can go here ...
  137. ;
  138. }
  139. public function prePersist($image) {
  140. $this->manageFileUpload($image);
  141. }
  142. public function preUpdate($image) {
  143. $this->manageFileUpload($image);
  144. }
  145. private function manageFileUpload($image) {
  146. if ($image->getFile()) {
  147. $image->refreshUpdated();
  148. }
  149. }
  150. // ...
  151. }
  152. We mark the ``file`` field as not required since we do not need the user to upload a
  153. new image every time the Image is updated. When a file is uploaded (and nothing else
  154. is changed on the form) there is no change to the data which Doctrine needs to persist
  155. so no ``preUpdate`` event would fire. To deal with this we hook into SonataAdmin's
  156. ``preUpdate`` event (which triggers every time the edit form is submitted) and use
  157. that to update an Image field which is persisted. This then ensures that Doctrine's
  158. lifecycle events are triggered and our Image manages the file upload as expected.
  159. And that is all there is to it!
  160. However, this method does not work when the ``ImageAdmin`` is embedded in other
  161. Admins using the ``sonata_type_admin`` field type. For that we need something more...
  162. Advanced example - works with embedded Admins
  163. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  164. When one Admin is embedded in another Admin, the child Admin's ``preUpdate()`` method is
  165. not triggered when the parent is submitted. To deal with this we need to use the parent
  166. Admin's lifecycle events to trigger the file management when needed.
  167. In this example we have a Page class which has three one-to-one Image relationships
  168. defined, linkedImage1 to linkedImage3. The PageAdmin class' form field configuration
  169. looks like this:
  170. .. code-block:: php
  171. class PageAdmin extends Admin
  172. {
  173. protected function configureFormFields(FormMapper $formMapper)
  174. {
  175. $formMapper
  176. ->add('linkedImage1', 'sonata_type_admin', array('delete' => false))
  177. ->add('linkedImage2', 'sonata_type_admin', array('delete' => false))
  178. ->add('linkedImage3', 'sonata_type_admin', array('delete' => false))
  179. // ... other fields go here ...
  180. ;
  181. }
  182. // ...
  183. }
  184. This is easy enough - we have embedded three fields, which will then use our ``ImageAdmin``
  185. class to determine which fields to show.
  186. In PageAdmin we then have the following code to manage the relationships' lifecycles:
  187. .. code-block:: php
  188. class PageAdmin extends Admin
  189. {
  190. // ...
  191. public function prePersist($page) {
  192. $this->manageEmbeddedImageAdmins($page);
  193. }
  194. public function preUpdate($page) {
  195. $this->manageEmbeddedImageAdmins($page);
  196. }
  197. private function manageEmbeddedImageAdmins($page) {
  198. // Cycle through each field
  199. foreach ($this->getFormFieldDescriptions() as $fieldName => $fieldDescription) {
  200. // detect embedded Admins that manage Images
  201. if ($fieldDescription->getType() === 'sonata_type_admin' &&
  202. ($associationMapping = $fieldDescription->getAssociationMapping()) &&
  203. $associationMapping['targetEntity'] === 'YourNS\YourBundle\Entity\Image'
  204. ) {
  205. $getter = 'get' . $fieldName;
  206. $setter = 'set' . $fieldName;
  207. /** @var Image $image */
  208. $image = $page->$getter();
  209. if ($image) {
  210. if ($image->getFile()) {
  211. // update the Image to trigger file management
  212. $image->refreshUpdated();
  213. } elseif (!$image->getFile() && !$image->getFilename()) {
  214. // prevent Sf/Sonata trying to create and persist an empty Image
  215. $page->$setter(null);
  216. }
  217. }
  218. }
  219. }
  220. }
  221. // ...
  222. }
  223. Here we loop through the fields of our PageAdmin and look for ones which are ``sonata_type_admin``
  224. fields which have embedded an Admin which manages an Image.
  225. Once we have those fields we use the ``$fieldName`` to build strings which refer to our accessor
  226. and mutator methods. For example we might end up with ``getlinkedImage1`` in ``$getter``. Using
  227. this accessor we can get the actual Image object from the Page object under management by the
  228. PageAdmin. Inspecting this object reveals whether it has a pending file upload - if it does we
  229. trigger the same ``refreshUpdated()`` method as before.
  230. The final check is to prevent a glitch where Symfony tries to create blank Images when nothing
  231. has been entered in the form. We detect this case and null the relationship to stop this from
  232. happening.
  233. Notes
  234. -----
  235. If you are looking for richer media management functionality there is a complete SonataMediaBundle
  236. which caters to this need. It is documented online and is created and maintained by the same team
  237. as SonataAdmin.
  238. To learn how to add an image preview to your ImageAdmin take a look at the related cookbook entry.
  239. .. _`uploading files with Doctrine and Symfony`: http://symfony.com/doc/current/cookbook/doctrine/file_uploads.html