ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ConsumerFactory.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
30 
36 {
40  private Services $http;
41 
46  public function __construct(
47  private StreamAccess $stream_access,
48  protected FileNamePolicy $file_name_policy = new NoneFileNamePolicy()
49  ) {
50  global $DIC;
51  $this->http = $DIC->http();
52  }
53 
54  public function download(StorableResource $resource): DownloadConsumer
55  {
56  return new DownloadConsumer(
57  $this->http,
58  $resource,
59  $this->stream_access,
60  $this->file_name_policy
61  );
62  }
63 
64  public function inline(StorableResource $resource): InlineConsumer
65  {
66  return new InlineConsumer(
67  $this->http,
68  $resource,
69  $this->stream_access,
70  $this->file_name_policy
71  );
72  }
73 
74  public function fileStream(StorableResource $resource): FileStreamConsumer
75  {
76  return new FileStreamConsumer(
77  $resource,
78  $this->stream_access
79  );
80  }
81 
85  public function absolutePath(StorableResource $resource): AbsolutePathConsumer
86  {
87  return new AbsolutePathConsumer(
88  $resource,
89  $this->stream_access,
90  $this->file_name_policy
91  );
92  }
93 
94  public function src(StorableResource $resource, SrcBuilder $src_builder): SrcConsumer
95  {
96  return new SrcConsumer(
97  $src_builder,
98  $resource,
99  $this->stream_access
100  );
101  }
102 
103  public function flavourUrl(Flavour $flavour, SrcBuilder $src_builder): FlavourURLs
104  {
105  return new FlavourURLs(
106  $src_builder,
107  $flavour
108  );
109  }
110 
111  public function downloadMultiple(
112  array $resources,
113  ?string $zip_filename = null
115  return new DownloadMultipleConsumer(
116  $resources,
117  $this->stream_access,
118  $this->file_name_policy,
119  $zip_filename ?? 'Download.zip'
120  );
121  }
122 
123  public function containerZIP(
124  StorableContainerResource $resource,
125  ): ContainerConsumer {
126  return new ContainerZIPAccessConsumer(
127  $resource,
128  $this->stream_access
129  );
130  }
131 
132  public function containerURI(
133  StorableContainerResource $resource,
134  SrcBuilder $src_builder,
135  string $start_file = 'index.html',
136  float $valid_for_at_least_minutes = 120.0
137  ): ContainerConsumer {
138  return new ContainerURIConsumer(
139  $src_builder,
140  $resource,
141  $this->stream_access,
142  $start_file,
143  $valid_for_at_least_minutes
144  );
145  }
146 }
$resources
Definition: ltiservices.php:65
downloadMultiple(array $resources, ?string $zip_filename=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
src(StorableResource $resource, SrcBuilder $src_builder)
static http()
Fetches the global http state from ILIAS.
global $DIC
Definition: shib_login.php:22
containerURI(StorableContainerResource $resource, SrcBuilder $src_builder, string $start_file='index.html', float $valid_for_at_least_minutes=120.0)
__construct(private StreamAccess $stream_access, protected FileNamePolicy $file_name_policy=new NoneFileNamePolicy())
ConsumerFactory constructor.
containerZIP(StorableContainerResource $resource,)
flavourUrl(Flavour $flavour, SrcBuilder $src_builder)