序章
とを試してSyfony 4.1
います。OneUpUploaderBundle
OneUpFlysystemBundle
問題
私の構成はSymfony 3.4
まだSymfony 4.1
正常に機能していましたが、コントローラーのコードに OnUpUploaderBundle を挿入する方法がわかりません。
構成
OneUpUploader.yaml
oneup_uploader:
mappings:
gallery:
storage:
type: flysystem
filesystem: oneup_flysystem.gallery_filesystem
frontend: blueimp
enable_progress: true
namer: app.upload_unique_namer
max_size: 104857600
OneUpFlysystem.yaml
oneup_flysystem:
adapters:
my_adapter:
local:
directory: '%kernel.root_dir%/../data'
filesystems:
default_filesystem:
adapter: my_adapter
alias: League\Flysystem\Filesystem
services.yaml の一部
app.upload_listener:
class: App\EventListener\UploadListener
arguments: ['@doctrine.orm.entity_manager', '@session', '@service_container']
tags:
- { name: kernel.event_listener, event: oneup_uploader.pre_upload.gallery, method: onUpload }
- { name: kernel.event_listener, event: oneup_uploader.post_upload.gallery, method: onPostUpload }
app.allowed_mime_type_listener:
class: App\EventListener\AllowedMimeTypeValidationListener
arguments: ['@service_container']
tags:
- { name: kernel.event_listener, event: oneup_uploader.validation.gallery, method: onValidate }
app.upload_unique_namer:
class: App\Uploader\Naming\UploadUniqueNamer
arguments: ['@service_container']
public: true
// SEE sections ERROR 1 and ERROR 2
// FOR relevant config details
oneup_flysystem.gallery_filesystem:
class: [...]
public: true
コード
// previously, to reference upoad root path node
// i could just write following in controller and it worked
$filesystem = $this->get('oneup_flysystem.gallery_filesystem');
$complete_file_path = $ultraHelpers->getDownloadableFilePath($file_id);
$exists = $filesystem->has($complete_file_path);
// Now i am stumped how to get the same effect in symfony 4.1
エラー 1
私のサービスをそのように変更した場合
oneup_flysystem.gallery_filesystem:
class: League\Flysystem\FilesystemInterface
public: true
現在のエラー
インターフェース League\Flysystem\FilesystemInterface をインスタンス化できません
エラー 2
私のサービスをそのように変更した場合
oneup_flysystem.gallery_filesystem:
class: League\Flysystem\Filesystem
public: true
現在のエラー
(1/1) RuntimeException サービス "oneup_flysystem.gallery_filesystem" を自動配線できません: メソッド "League\Flysystem\Filesystem::__construct()" の引数 "$adapter" はインターフェイス "League\Flysystem\AdapterInterface" を参照していますが、そのようなサービスは存在しません。このインターフェイスを既存の「oneup_flysystem.my_adapter_adapter」サービスにエイリアスする必要があります。