Completed
Pull Request — master (#694)
by Georg
19:18
created

StreamResponse   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 0

Importance

Changes 2
Bugs 1 Features 1
Metric Value
c 2
b 1
f 1
dl 0
loc 24
rs 10
wmc 2
lcom 1
cbo 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
A callback() 0 4 1
1
<?php
2
/**
3
 * ownCloud - Calendar App
4
 *
5
 * @author Georg Ehrke
6
 * @copyright 2016 Georg Ehrke <[email protected]>
7
 *
8
 * This code is free software: you can redistribute it and/or modify
9
 * it under the terms of the GNU Affero General Public License, version 3,
10
 * as published by the Free Software Foundation.
11
 *
12
 * This program is distributed in the hope that it will be useful,
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
 * GNU Affero General Public License for more details.
16
 *
17
 * You should have received a copy of the GNU Affero General Public License, version 3,
18
 * along with this program.  If not, see <http://www.gnu.org/licenses/>
19
 *
20
 */
21
22
namespace OCA\Calendar\Http;
23
24
use OCP\AppFramework\Http\ICallbackResponse;
25
use OCP\AppFramework\Http\IOutput;
26
use OCP\AppFramework\Http\Response;
27
28
class StreamResponse extends Response implements ICallbackResponse {
29
30
	/**
31
	 * @var resource
32
	 */
33
	protected $stream;
34
35
	/**
36
	 * @param resource $stream
37
	 */
38
	public function __construct ($stream) {
39
		$this->stream = $stream;
40
	}
41
42
43
	/**
44
	 * @param IOutput $output a small wrapper that handles output
45
	 */
46
	public function callback (IOutput $output) {
47
		rewind($this->stream);
48
		fpassthru($this->stream);
49
	}
50
51
}
52