7
7
8
8
namespace Drupal \dropzonejs ;
9
9
10
+ use Drupal \Component \Render \PlainTextOutput ;
10
11
use Drupal \Core \Config \ConfigFactoryInterface ;
11
12
use Drupal \Core \Entity \EntityManagerInterface ;
12
13
use Drupal \Core \Logger \LoggerChannelFactoryInterface ;
13
14
use Drupal \Core \Render \RendererInterface ;
14
15
use Drupal \Core \Session \AccountProxyInterface ;
16
+ use Drupal \Core \Utility \Token ;
15
17
use Drupal \file \FileInterface ;
16
18
use Symfony \Component \HttpFoundation \File \MimeType \MimeTypeGuesserInterface ;
17
19
use Symfony \Component \Validator \Constraints \File ;
@@ -68,6 +70,13 @@ class DropzoneJsUploadSave implements DropzoneJsUploadSaveInterface {
68
70
*/
69
71
protected $ configFactory ;
70
72
73
+ /**
74
+ * The token service.
75
+ *
76
+ * @var \Drupal\Core\Utility\Token
77
+ */
78
+ protected $ token ;
79
+
71
80
/**
72
81
* Construct the DropzoneUploadSave object.
73
82
*
@@ -83,14 +92,17 @@ class DropzoneJsUploadSave implements DropzoneJsUploadSaveInterface {
83
92
* The renderer service.
84
93
* @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
85
94
* Config factory service.
95
+ * @param \Drupal\Core\Utility\Token $token
96
+ * The token service.
86
97
*/
87
- public function __construct (EntityManagerInterface $ entity_manager , MimeTypeGuesserInterface $ mimetype_guesser , FileSystemInterface $ file_system , LoggerChannelFactoryInterface $ logger_factory , RendererInterface $ renderer , ConfigFactoryInterface $ config_factory ) {
98
+ public function __construct (EntityManagerInterface $ entity_manager , MimeTypeGuesserInterface $ mimetype_guesser , FileSystemInterface $ file_system , LoggerChannelFactoryInterface $ logger_factory , RendererInterface $ renderer , ConfigFactoryInterface $ config_factory, Token $ token ) {
88
99
$ this ->entityManager = $ entity_manager ;
89
100
$ this ->mimeTypeGuesser = $ mimetype_guesser ;
90
101
$ this ->fileSystem = $ file_system ;
91
102
$ this ->logger = $ logger_factory ->get ('dropzonejs ' );
92
103
$ this ->renderer = $ renderer ;
93
104
$ this ->configFactory = $ config_factory ;
105
+ $ this ->token = $ token ;
94
106
}
95
107
96
108
/**
@@ -100,6 +112,10 @@ public function saveFile($uri, $destination, $extensions, AccountProxyInterface
100
112
// Create the file entity.
101
113
$ file = $ this ->fileEntityFromUri ($ uri , $ user );
102
114
115
+ // Replace tokens. As the tokens might contain HTML we convert it to plain
116
+ // text.
117
+ $ destination = PlainTextOutput::renderFromHtml ($ this ->token ->replace ($ destination ));
118
+
103
119
// Handle potentialy dangerous extensions.
104
120
$ renamed = $ this ->renameExecutableExtensions ($ file );
105
121
// The .txt extension may not be in the allowed list of extensions. We have
@@ -226,7 +242,7 @@ protected function prepareDestination(FileInterface $file, $destination) {
226
242
227
243
// Prepare the destination dir.
228
244
if (!file_exists ($ destination )) {
229
- $ this ->fileSystem ->mkdir ($ destination );
245
+ $ this ->fileSystem ->mkdir ($ destination, NULL , TRUE );
230
246
}
231
247
232
248
// A file URI may already have a trailing slash or look like "public://".
0 commit comments