43c3a7771a6148cc38800303d93f0e651c12230c
[playVideoOnDreamboxProxy.git] / www / functions.php
1 <?php
2 function getPageUrl()
3 {
4     global $argv, $argc;
5     if (php_sapi_name() == 'cli') {
6         if ($argc < 2) {
7             errorInput('No URL given as command line parameter');
8         }
9         $pageUrl = $argv[1];
10     } else {
11         if (!isset($_SERVER['CONTENT_TYPE'])) {
12             errorInput('Content type header missing');
13         } else if ($_SERVER['CONTENT_TYPE'] != 'text/plain') {
14             errorInput('Content type is not text/plain but ' . $_SERVER['CONTENT_TYPE']);
15         }
16         $pageUrl = file_get_contents('php://input');
17     }
18     $parts = parse_url($pageUrl);
19     if ($parts === false) {
20         errorInput('Invalid URL in POST data');
21     } else if (!isset($parts['scheme'])) {
22         errorInput('Invalid URL in POST data: No scheme');
23     } else if ($parts['scheme'] !== 'http' && $parts['scheme'] !== 'https') {
24         errorInput('Invalid URL in POST data: Non-HTTP scheme');
25     }
26     return $pageUrl;
27 }
28
29 function getYoutubeDlJson($pageUrl, $youtubedlPath)
30 {
31     $cmd = $youtubedlPath
32         . ' --no-playlist'//would otherwise cause multiple json blocks
33         . ' --quiet'
34         . ' --dump-json'
35         . ' ' . escapeshellarg($pageUrl)
36         . ' 2> /dev/null';
37
38     $lastLine = exec($cmd, $output, $exitCode);
39     if ($exitCode !== 0) {
40         if ($exitCode === 127) {
41             errorOut(
42                 'youtube-dl not found at ' . $youtubedlPath,
43                 '500 youtube-dl not found'
44             );
45         } else if (strpos($lastLine, 'Unsupported URL') !== false) {
46             errorOut(
47                 'Unsupported URL  at ' . $pageUrl,
48                 '406 Unsupported URL (No video found)'
49             );
50         } else {
51             errorOut('youtube-dl error: ' . $lastLine);
52         }
53     }
54
55     $json = implode("\n", $output);
56     return $json;
57 }
58
59 function extractVideoUrlFromJson($json)
60 {
61     $data = json_decode($json);
62     if ($data === null) {
63         errorOut('Cannot decode JSON: ' . json_last_error_msg());
64     }
65
66     $url = null;
67     foreach ($data->formats as $format) {
68         if (strpos($format->format, 'hls') !== false) {
69             //dreambox 7080hd does not play hls files
70             continue;
71         }
72         if ($format->protocol == 'http_dash_segments') {
73             //split up into multiple small files
74             continue;
75         }
76         $url = $format->url;
77     }
78
79     if ($url === null) {
80         //use URL chosen by youtube-dl
81         $url = $data->url;
82     }
83
84     if ($url == '') {
85         errorOut(
86             'No video URL found',
87             '406 No video URL found'
88         );
89     }
90     return $url;
91 }
92
93 function playVideoOnDreambox($videoUrl, $dreamboxHost)
94 {
95     ini_set('track_errors', 1);
96     $xml = @file_get_contents('http://' . $dreamboxHost . '/web/session');
97     if ($xml === false) {
98         errorOut('Failed to fetch dreambox session token: ' . $php_errormsg);
99     }
100     $sx = simplexml_load_string($xml);
101     $token = (string) $sx;
102
103     $playUrl = 'http://' . $dreamboxHost
104         . '/web/mediaplayerplay'
105         . '?file=4097:0:1:0:0:0:0:0:0:0:'
106         . str_replace('%3A', '%253A', rawurlencode($videoUrl));
107
108     $ctx = stream_context_create(
109         array(
110             'http' => array(
111                 'method'  => 'POST',
112                 'header'  => 'Content-type: application/x-www-form-urlencoded',
113                 'content' => 'sessionid=' . $token,
114                 //'ignore_errors' => true
115             )
116         )
117     );
118     $ret = file_get_contents($playUrl, false, $ctx);
119     if ($ret !== false) {
120         if (php_sapi_name() != 'cli') {
121             header('HTTP/1.0 200 OK');
122         }
123         echo "Video play request sent to dreambox\n";
124         exit(0);
125     } else {
126         errorOut(
127             'Failed to send video play request to dreambox: ' . $php_errormsg
128         );
129     }
130 }
131 ?>