ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilFileServicesPreProcessor.php
Go to the documentation of this file.
1 <?php
2 
23 
30 {
31  public function __construct(
32  private ilFileServicesSettings $settings,
33  string $reason = 'Extension is blacklisted.'
34  ) {
35  parent::__construct($this->settings->getBlackListedSuffixes(), $reason);
36  }
37 
38  #[\Override]
39  public function process(FileStream $stream, Metadata $metadata): ProcessingStatus
40  {
41  if ($this->settings->isByPassAllowedForCurrentUser()) {
42  return new ProcessingStatus(ProcessingStatus::OK, 'Blacklist override by RBAC');
43  }
44  return parent::process($stream, $metadata);
45  }
46 }
process(FileStream $stream, Metadata $metadata)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
__construct(private ilFileServicesSettings $settings, string $reason='Extension is blacklisted.')
The base interface for all filesystem streams.
Definition: FileStream.php:31