blob: 0f677e8074d153599c90e4670a68a7989e932095 (
plain)
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
59
60
61
62
63
64
65
66
67
68
69
70
71
|
<?php
class Async {
private $_method = 'error';
public function __construct($method,$password){
$realPassword = Settings::$DeveloperPassword;
if($password == $realPassword){
$this->_method = $method;
}
}
public function Run(){
$method = $this->_method;
$this->$method();
}
private function error(){
}
private function cacheVideo(){
$url = (isset($_POST['url'])) ? $_POST['url'] : null;
$cache = new Cache();
$cache->CacheHttpVideo($url);
}
public static function createAsyncRequest($uri, $params){
$type='POST';
foreach ($params as $key => &$val) {
if (is_array($val)) $val = implode(',', $val);
$post_params[] = $key.'='.urlencode($val);
}
$post_string = implode('&', $post_params);
$domain = Settings::$Domain;
$parts=parse_url($domain . $uri);
$fp = fsockopen($parts['host'],
isset($parts['port'])?$parts['port']:80,
$errno, $errstr, 2);
// Data goes in the path for a GET request
if('GET' == $type) $parts['path'] .= '?'.$post_string;
$out = "$type ".$parts['path']." HTTP/1.1\r\n";
$out.= "Host: ".$parts['host']."\r\n";
$out.= "Content-Type: application/x-www-form-urlencoded\r\n";
$out.= "Content-Length: ".strlen($post_string)."\r\n";
$out.= "Connection: Close\r\n\r\n";
// Data goes in the request body for a POST request
if ('POST' == $type && isset($post_string)) $out.= $post_string;
fwrite($fp, $out);
fclose($fp);
}
}
|