Mercurial > epgrec.yaz
view Keyword.class.php @ 143:42f6eb738567
mod: ÀѤ߻Ĥ·¤ò½¤Àµ
author | epgrec@park.mda.or.jp <yoneda@recorder.localnet.mda.or.jp> |
---|---|
date | Sun, 21 Mar 2010 21:54:03 +0900 |
parents | 9c5e597ef6c6 |
children | a18df712fc7e 2cb414518ccd |
line wrap: on
line source
<?php include_once('config.php'); include_once( INSTALL_PATH . "/DBRecord.class.php" ); include_once( INSTALL_PATH . "/reclib.php" ); include_once( INSTALL_PATH . "/Reservation.class.php" ); include_once( INSTALL_PATH . '/Settings.class.php' ); class Keyword extends DBRecord { public function __construct($property = null, $value = null ) { try { parent::__construct(KEYWORD_TBL, $property, $value ); } catch( Exception $e ) { throw $e; } } static public function search( $keyword = "", $use_regexp = false, $type = "*", $category_id = 0, $channel_id = 0, $weekofday = 7, $prgtime = 24, $limit = 300 ) { $sts = Settings::factory(); $dbh = @mysql_connect($sts->db_host, $sts->db_user, $sts->db_pass ); // ã¡ã‚‡ã£ã¨å…ˆã‚’検索ã™ã‚‹ $options = " WHERE starttime > '".date("Y-m-d H:i:s", time() + $sts->padding_time + 60 )."'"; if( $keyword != "" ) { if( $use_regexp ) { $options .= " AND CONCAT(title,description) REGEXP '".mysql_real_escape_string($keyword)."'"; } else { // 全角åŠè§’ // å ´å½“ãŸã‚Šçš„ã«å¯¾å¿œ $f_zennum = preg_match('/[0-9]/u', $keyword ); $f_zenal = preg_match('/[a-zA-Z]/u', $keyword ); $options .= " AND ( CONCAT(title,' ',description) like '%".mysql_real_escape_string($keyword)."%'"; if( $f_zennum ) { $options .= " OR CONCAT(title,' ',description) like '%".mysql_real_escape_string(mb_convert_kana( $keyword, 'KVN',"UTF-8" ))."%'"; } if( $f_zenal ) { $options .= " OR CONCAT(title,' ',description) like '%".mysql_real_escape_string(mb_convert_kana( $keyword, 'KVR', "UTF-8" ))."%'"; } if( $f_zenal && $f_zennum ) { $options .= " OR CONCAT(title,' ',description) like '%".mysql_real_escape_string(mb_convert_kana( $keyword, 'KVRN', "UTF-8" ))."%'"; } $options .= ") "; } } if( $type != "*" ) { $options .= " AND type = '".$type."'"; } if( $category_id != 0 ) { $options .= " AND category_id = '".$category_id."'"; } if( $channel_id != 0 ) { $options .= " AND channel_id = '".$channel_id."'"; } if( $weekofday != 7 ) { $options .= " AND WEEKDAY(starttime) = '".$weekofday."'"; } if( $prgtime != 24 ) { $options .= " AND time(starttime) BETWEEN cast('".sprintf( "%02d:00:00", $prgtime)."' as time) AND cast('".sprintf("%02d:59:59", $prgtime)."' as time)"; } $options .= " ORDER BY starttime ASC LIMIT ".$limit ; $recs = array(); try { $recs = DBRecord::createRecords( PROGRAM_TBL, $options ); } catch( Exception $e ) { throw $e; } return $recs; } private function getPrograms() { if( $this->id == 0 ) return false; $recs = array(); try { $recs = self::search( trim($this->keyword), $this->use_regexp, $this->type, $this->category_id, $this->channel_id, $this->weekofday, $this->prgtime ); } catch( Exception $e ) { throw $e; } return $recs; } public function reservation() { if( $this->id == 0 ) return; $precs = array(); try { $precs = $this->getPrograms(); } catch( Exception $e ) { throw $e; } // 一気ã«éŒ²ç”»äºˆç´„ foreach( $precs as $rec ) { try { if( $rec->autorec ) { Reservation::simple( $rec->id, $this->id, $this->autorec_mode ); usleep( 100 ); // ã‚ã‚“ã¾ã‚Šæ™‚間を空ã‘ãªã„ã®ã‚‚ã©ã†? } } catch( Exception $e ) { // 無視 } } } public function delete() { if( $this->id == 0 ) return; $precs = array(); try { $precs = $this->getPrograms(); } catch( Exception $e ) { throw $e; } // 一気ã«ã‚ャンセル foreach( $precs as $rec ) { try { $reserve = new DBRecord( RESERVE_TBL, "program_id", $rec->id ); // 自動予約ã•ã‚ŒãŸã‚‚ã®ã®ã¿å‰Šé™¤ if( $reserve->autorec ) { Reservation::cancel( $reserve->id ); usleep( 100 ); // ã‚ã‚“ã¾ã‚Šæ™‚間を空ã‘ãªã„ã®ã‚‚ã©ã†? } } catch( Exception $e ) { // 無視 } } try { parent::delete(); } catch( Exception $e ) { throw $e; } } // staticãªãƒ•ã‚¡ãƒ³ã‚¯ã‚·ãƒ§ãƒ³ã¯ã‚ªãƒ¼ãƒãƒ¼ãƒ©ã‚¤ãƒ‰ã§ããªã„ static function createKeywords( $options = "" ) { $retval = array(); $arr = array(); try{ $tbl = new self(); $sqlstr = "SELECT * FROM ".$tbl->table." " .$options; $result = $tbl->__query( $sqlstr ); } catch( Exception $e ) { throw $e; } if( $result === false ) throw new exception("レコードãŒå˜åœ¨ã—ã¾ã›ã‚“"); while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) { array_push( $retval, new self('id', $row['id']) ); } return $retval; } public function __destruct() { parent::__destruct(); } } ?>