Jacek Kowalski
2012-11-27 4c7016fb3e2dd55de4389872ba5c6c65bbf5a582
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<?php
class wp_parse {
    var $document, $xpath, $context;
    var $name = '';
    var $program = array();
    var $months = array(
            'stycznia' => 1,
            'lutego' => 2,
            'marca' => 3,
            'kwietnia' => 4,
            'maja' => 5,
            'czerwca' => 6,
            'lipca' => 7,
            'sierpnia' => 8,
            'września' => 9,
            'października' => 10,
            'listopada' => 11,
            'grudnia' => 12,
        );
    var $weekdays = array(
            'poniedziałek' => 'next Monday',
            'wtorek' => 'next Tuesday',
            'środa' => 'next Wednesday',
            'czwartek' => 'next Thursday',
            'piątek' => 'next Friday',
            'sobota' => 'next Saturday',
            'niedziela' => 'next Sunday',
        );
    
    function __construct(DOMDocument $document) {
        $this->document = $document;
        $this->xpath = new DOMXPath($this->document);
        
        $context = $this->xpath->query('//div[@class="ramowka"]');
        if($context->length != 1) {
            throw new Exception('Nie znaleziono ramówki!');
        }
        $this->context = $context->item(0);
        
        $name = $this->xpath->query('.//*[@class="sh2"]//span//text()', $this->context);
        if($name->length != 1) {
            throw new Exception('Nie znaleziono nazwy stacji, błędny HTML.');
        }
        $this->name = $name->item(0)->nodeValue;
    }
    
    function parse_date($date) {
        if($date == 'dzisiaj') {
            // 'dzisiaj'
            return mktime(0, 0, 0);
        }
        elseif(isset($this->weekdays[$date])) {
            // data przyszła: 'poniedziałek'
            return strtotime($this->weekdays[$date]);
        }
        else
        {
            // data przeszła: 'pon. 18 czerwca'
            $date = explode(' ', $date);
            if(!isset($this->months[$date[2]])) {
                throw new Exception('Nie udało się przetworzyć daty ('.$date[2].')');
            }
            $timestamp = mktime(0, 0, 0, $this->months[$date[2]], $date[1]);
            
            // Należy przesunąć się o rok
            if($timestamp > time()) {
                $timestamp = strtotime('-1 year', $timestamp);
            }
            
            return $timestamp;
        }
    }
    
    function xmltv($id, $fp) {
        $program = array();
        
        $days_dom = $this->xpath->query('.//ul[@class="lsDay"]//li', $this->context);
        $days = array();
        foreach($days_dom as $day) {
            $days[] = $this->parse_date($day->nodeValue);
            $program[] = array();
        }
        unset($days_dom, $day);
        
        $hours_dom = $this->xpath->query('.//div[@class="hrsOut"]//div[@class="hour"]', $this->context);
        // Kolejne wiersze (pełne godziny)
        foreach($hours_dom as $in => $hour) {
            $days_dom = $this->xpath->query('.//div[@class="col"]', $hour);
            // Zbiory programów w tych godzinach dla kolejnych dni
            foreach($days_dom as $num => $day) {
                $programs_dom = $this->xpath->query('.//div[@class="prog"]', $day);
                // Kolejne programy w danej godzinie i dniu
                foreach($programs_dom as $n => $programs) {
                    $godzina = $this->xpath->query('.//div[@class="tm"]', $programs)->item(0)->textContent;
                    $nazwa = $this->xpath->query('.//h3', $programs)->item(0)->textContent;
                    $opis = $this->xpath->query('.//p', $programs)->item(0)->textContent;
                    
                    $program[$num][] = array($godzina, $nazwa, $opis);
                }
                unset($programs_dom, $programs);
            }
            unset($days_dom, $day);
        }
        unset($hours_dom, $hour, $godzina, $nazwa, $opis);
        
        fwrite($fp, "\t".'<channel id="'.$id.'">'."\n"
            ."\t\t".'<display-name>'.htmlspecialchars($this->name).'</display-name>'."\n"
            ."\t".'</channel>'."\n");
        
        $last_timestamp = $timestamp = $days[0];
        $last_prog = NULL;
        foreach($program as $day => $dayprog) {
            foreach($dayprog as $prog) {
                $timestamp = strtotime($prog[0], $last_timestamp);
                if($timestamp < $last_timestamp) {
                    $timestamp = strtotime('+1 day', $timestamp);
                }
                while($timestamp < $days[$day]) {
                    $timestamp = strtotime('+1 day', $timestamp);
                }
 
                if($program !== NULL) 
                    fwrite($fp, "\t".'<programme channel="'.$id.'" start="'.date('YmdHis O', $last_timestamp).'"'
                        .' stop="'.date('YmdHis O', $timestamp).'">'."\n"
                        ."\t\t".'<title>'.htmlspecialchars($last_prog[1]).'</title>'."\n"
                        ."\t\t".'<desc>'.htmlspecialchars($last_prog[2]).'</desc>'."\n"
                        ."\t".'</programme>'."\n");
                
                $last_prog = $prog;
                $last_timestamp = $timestamp;
            }
        }
    }
}
?>