-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathReports.php
58 lines (51 loc) · 1.86 KB
/
Reports.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
/**
* Zencoder API client interface.
*
* @category Services
* @package Services_Zencoder
* @author Cyril Tata <[email protected]>
* @version Release: 2.1.2
* @license http://creativecommons.org/licenses/MIT/MIT
* @link http://github.com/zencoder/zencoder-php
*/
class Services_Zencoder_Reports extends Services_Zencoder_Base
{
/**
* A list of valid 'methods' to be trapped in __call()
*
* @link https://app.zencoder.com/docs/api/reports/
* @var array
*/
protected $methods = array('vod', 'live', 'minutes', 'all');
/**
* Return all reports for VOD
*
* @link https://app.zencoder.com/docs/api/reports
*
* @param string $method The method name indicates the type of report we want to get
* @param array $args A list of arguments for the overriden methods. Each methods takes 2 arguements.
* The first being an associative array of query string parameters and the second
* an associative array of option overrides
*
* @throws Services_Zencoder_Exception
*
* @return Services_Zencoder_Report The object representation of the resource
*/
public function __call($method, $args) {
if (!in_array($method, $this->methods)) {
throw new Services_Zencoder_Exception("Unsupported method call '$method' for Services_Zencoder_Reports");
}
// initialize query string parameters and optional overrides
$params = $opts = array();
// set query string parameters
if (isset($args[0]) && is_array($args[0])) {
$params = $args[0];
}
// set optional overrides
if (isset($args[1]) && is_array($args[1])) {
$opts = $args[1];
}
return new Services_Zencoder_Report($this->proxy->retrieveData("reports/$method", $params, $opts), $method);
}
}