Skip to content
This repository was archived by the owner on Jan 5, 2018. It is now read-only.

Commit 292ea5e

Browse files
committed
Merge remote-tracking branch 'upstream/8.x-1.x' into 2671914_conf_ui
2 parents 32dc164 + 36483f1 commit 292ea5e

File tree

4 files changed

+25
-9
lines changed

4 files changed

+25
-9
lines changed

dropzonejs.services.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
22
dropzonejs.upload_save:
33
class: Drupal\dropzonejs\DropzoneJsUploadSave
4-
arguments: ['@entity.manager', '@file.mime_type.guesser', '@file_system', '@logger.factory', '@renderer', '@config.factory']
4+
arguments: ['@entity.manager', '@file.mime_type.guesser', '@file_system', '@logger.factory', '@renderer', '@config.factory', '@token']
55
dropzonejs.upload_handler:
66
class: Drupal\dropzonejs\UploadHandler
77
arguments: ['@request_stack', '@config.factory', '@transliteration']

js/dropzone.integration.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
Drupal.dropzonejsInstances = [];
1313

1414
Drupal.behaviors.dropzonejsIntegraion = {
15-
attach: function(context) {
15+
attach: function (context) {
1616
Dropzone.autoDiscover = false;
1717
var selector = $(".dropzone-enable");
1818
selector.addClass("dropzone");
@@ -30,9 +30,9 @@
3030
drupalSettings["dropzonejs"]["instances"][selector.attr("id")]["instance"] = dropzoneInstance;
3131

3232
// React on add file. Add only accepted files.
33-
dropzoneInstance.on("success", function(file, response) {
33+
dropzoneInstance.on("success", function (file, response) {
3434
var uploadedFilesElement = selector.siblings(':hidden');
35-
var currentValue = uploadedFilesElement.attr('value');
35+
var currentValue = uploadedFilesElement.attr('value') || '';
3636

3737
// The file is transliterated on upload. The element has to reflect
3838
// the real filename.
@@ -42,15 +42,15 @@
4242
});
4343

4444
// React on file removing.
45-
dropzoneInstance.on("removedfile", function(file) {
45+
dropzoneInstance.on("removedfile", function (file) {
4646
var uploadedFilesElement = selector.siblings(':hidden');
4747
var currentValue = uploadedFilesElement.attr('value');
4848

4949
// Remove the file from the element.
5050
if (currentValue.length) {
5151
var fileNames = currentValue.split(";");
5252
for (var i in fileNames) {
53-
if (fileNames[i] == file.processedName) {
53+
if (fileNames[i] === file.processedName) {
5454
fileNames.splice(i,1);
5555
break;
5656
}

modules/eb_widget/src/Plugin/EntityBrowser/Widget/DropzoneJsEbWidget.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public static function create(ContainerInterface $container, array $configuratio
8383
*/
8484
public function defaultConfiguration() {
8585
return [
86-
'upload_location' => 'public://',
86+
'upload_location' => 'public://[date:custom:Y]-[date:custom:m]',
8787
'dropzone_description' => t('Drop files here to upload them'),
8888
'max_filesize' => file_upload_max_size() / pow(Bytes::KILOBYTE, 2) . 'M',
8989
'extensions' => 'jpg jpeg gif png txt doc xls pdf ppt pps odt ods odp',

src/DropzoneJsUploadSave.php

+18-2
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,13 @@
77

88
namespace Drupal\dropzonejs;
99

10+
use Drupal\Component\Render\PlainTextOutput;
1011
use Drupal\Core\Config\ConfigFactoryInterface;
1112
use Drupal\Core\Entity\EntityManagerInterface;
1213
use Drupal\Core\Logger\LoggerChannelFactoryInterface;
1314
use Drupal\Core\Render\RendererInterface;
1415
use Drupal\Core\Session\AccountProxyInterface;
16+
use Drupal\Core\Utility\Token;
1517
use Drupal\file\FileInterface;
1618
use Symfony\Component\HttpFoundation\File\MimeType\MimeTypeGuesserInterface;
1719
use Symfony\Component\Validator\Constraints\File;
@@ -68,6 +70,13 @@ class DropzoneJsUploadSave implements DropzoneJsUploadSaveInterface {
6870
*/
6971
protected $configFactory;
7072

73+
/**
74+
* The token service.
75+
*
76+
* @var \Drupal\Core\Utility\Token
77+
*/
78+
protected $token;
79+
7180
/**
7281
* Construct the DropzoneUploadSave object.
7382
*
@@ -83,14 +92,17 @@ class DropzoneJsUploadSave implements DropzoneJsUploadSaveInterface {
8392
* The renderer service.
8493
* @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
8594
* Config factory service.
95+
* @param \Drupal\Core\Utility\Token $token
96+
* The token service.
8697
*/
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) {
8899
$this->entityManager = $entity_manager;
89100
$this->mimeTypeGuesser = $mimetype_guesser;
90101
$this->fileSystem = $file_system;
91102
$this->logger = $logger_factory->get('dropzonejs');
92103
$this->renderer = $renderer;
93104
$this->configFactory = $config_factory;
105+
$this->token = $token;
94106
}
95107

96108
/**
@@ -100,6 +112,10 @@ public function saveFile($uri, $destination, $extensions, AccountProxyInterface
100112
// Create the file entity.
101113
$file = $this->fileEntityFromUri($uri, $user);
102114

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+
103119
// Handle potentialy dangerous extensions.
104120
$renamed = $this->renameExecutableExtensions($file);
105121
// The .txt extension may not be in the allowed list of extensions. We have
@@ -226,7 +242,7 @@ protected function prepareDestination(FileInterface $file, $destination) {
226242

227243
// Prepare the destination dir.
228244
if (!file_exists($destination)) {
229-
$this->fileSystem->mkdir($destination);
245+
$this->fileSystem->mkdir($destination, NULL, TRUE);
230246
}
231247

232248
// A file URI may already have a trailing slash or look like "public://".

0 commit comments

Comments
 (0)