From ad6d4ac2e69f306c0e99bf640f0abbb17dc8ca0e Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Sun, 16 Sep 2012 22:13:43 +0000
Subject: [PATCH] 1. Uzupełnienie instrukcji aktualizacji w związku z dodaniem pliku upgrade.php 2. Dostosowanie modułu kino do ostatnich zmian na stronie Interii.

---
 UPGRADE                     |   10 +++++++---
 modules/70_kino/handler.php |   49 +++++++++++++++++++++++++------------------------
 2 files changed, 32 insertions(+), 27 deletions(-)

diff --git a/UPGRADE b/UPGRADE
index 73cc99c..bedf2a5 100644
--- a/UPGRADE
+++ b/UPGRADE
@@ -4,9 +4,11 @@
 
 * zastąp plik ./data/lotto/pobierz.php
 * zastąp plik ./modules/70_kino/handler.php
+
 * zastąp plik ./.htaccess
+* wgraj plik ./upgrade.php
 * uruchom plik upgrade.php w przeglądarce
-* usuń plik upgrade.php
+* usuń plik ./upgrade.php
 
 ===========================
  AKTUALIZACJA Z WERSJI 2.3
@@ -19,10 +21,12 @@
 * usuń wszystkie pliki z katalogu ./data/pogoda
 * wgraj nowe pliki do folderu ./data/pogoda
 * zastąp plik ./data/lotto/pobierz.php
-* zastąp plik ./.htaccess
 * usuń wszystkie pliki z katalogu ./cache
+
+* zastąp plik ./.htaccess
+* wgraj plik ./upgrade.php
 * uruchom plik upgrade.php w przeglądarce
-* usuń plik upgrade.php
+* usuń plik ./upgrade.php
 
 ======================================
  AKTUALIZACJA Z WERSJI 2.2/2.1/2.0 RC
diff --git a/modules/70_kino/handler.php b/modules/70_kino/handler.php
index 79b67ef..b22ddf9 100644
--- a/modules/70_kino/handler.php
+++ b/modules/70_kino/handler.php
@@ -1,33 +1,19 @@
 <?php
 class bot_kino_module implements BotModule {
 	function cache($url) {
-		$time = '+2 hour';
-		$dir = './data/kino/cache/';
-		
-		if(file_exists($dir.md5($url))) {
-			$mtime = @filemtime($dir.md5($url));
-		}
-		
-		if($mtime && $mtime > strtotime('today '.$time) && $mtime < strtotime('tomorrow '.$time)) {
-			$dane = file_get_contents($dir.md5($url));
-		}
-		else
-		{
-			$dane = @file_get_contents($url);
-			if(!$dane) {
-				return FALSE;
-			}
-			
-			file_put_contents($dir.md5($url), $dane);
-		}
+		$down = new DownloadHelper($url);
+		$dane = $down->exec();
 		
 		libxml_use_internal_errors(TRUE);
 		
 		$dom = new DOMDocument();
 		if(!$dom->loadHTML($dane)) {
 			libxml_use_internal_errors(FALSE);
+			$down->cacheFor(1800);
 			return FALSE;
 		}
+		
+		$down->cacheUntil(strtotime('tomorrow midnight'));
 		
 		return $dom;
 	}
@@ -59,7 +45,7 @@
 		
 		foreach($dane as $kino) {
 			$name = trim($kino->textContent);
-			$return[$name] = $kino->getAttribute('name');
+			$return[$name] = $kino->getAttribute('href');
 		}
 		
 		return $return;
@@ -70,19 +56,34 @@
 		if(!$xml) return FALSE;
 		
 		$xpath = new DOMXPath($xml);
-		$dane = $xpath->query('//div[@id=\'mainContent\']/table//a[@name=\''.$kino.'\']/../../following-sibling::tr');
+		$dane = $xpath->query('//div[@id=\'mainContent\']/table//a[@href=\''.$kino.'\']/../../following-sibling::tr');
 		$return = array();
 		
 		foreach($dane as $film) {
-			if($film->firstChild && $film->firstChild->nodeName == 'th') break;
+			if(!$film->firstChild) {
+				break;
+			}
+			if($film->firstChild->nodeName == 'th') {
+				break;
+			}
+			if($film->firstChild->nodeName != 'td') {
+				break;
+			}
 			
 			$tds = $xpath->query('td', $film);
 			$name = $xpath->query('a[1]', $tds->item(0));
 			
 			$more = array();
-			$more_xml = $xpath->query('span[@class=\'reper\']/span', $tds->item(0));
+			$more_desc = array(
+				's3d-movie' => '3D',
+				'dubbing-movie' => 'dubbing',
+			);
+			$more_xml = $xpath->query('span[@class=\'reper\']/div', $tds->item(0));
 			foreach($more_xml as $more_x) {
-				$more[] = $more_x->textContent;
+				$more_x = $more_x->getAttribute('class');
+				if(isset($more_desc[$more_x])) {
+					$more[] = $more_desc[$more_x];
+				}
 			}
 			
 			$return[] = array(

--
Gitblit v1.9.1