<?php
/*
 Anime recording system foltia
 http://www.dcc-jpl.com/soft/foltia/

delreserve.php

目的
自動録画の予約解除を行います

引数
tid:タイトルID
sid:放送局ID
delflag:確認フラグ

 DCC-JPL Japan/foltia project

*/
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-JP">
<meta http-equiv="Content-Style-Type" content="text/css">
<link rel="stylesheet" type="text/css" href="graytable.css"> 
<title>foltia:delete schedule</title>
</head>

<?php

  include("./foltialib.php");

$tid = getgetnumform(tid);
		if ($tid == "") {
		die_exit("番組がありません<BR>");
		}
$sid = getgetnumform(sid);
		if ($sid == "") {
		die_exit("局がありません<BR>");
		}

$con = m_connect();
$now = date("YmdHi");   
?>
<body BGCOLOR="#ffffff" TEXT="#494949" LINK="#0047ff" VLINK="#000000" ALINK="#c6edff" >

<?php 
	printhtmlpageheader();

//タイトル取得
$query = "
SELECT 
foltia_program.tid,
stationname,
foltia_program .title ,
foltia_tvrecord.bitrate ,
foltia_tvrecord.stationid  
FROM  foltia_tvrecord , foltia_program , foltia_station 
WHERE foltia_tvrecord.tid = foltia_program.tid  AND foltia_tvrecord.stationid = foltia_station .stationid  AND foltia_tvrecord.tid = $tid AND foltia_tvrecord.stationid = $sid  ";

	$rs = m_query($con, $query, "DBクエリに失敗しました");
	$maxrows = pg_num_rows($rs);
			
		if ($maxrows == 0) {
		die_exit("登録番組がありません<BR>");
		}
		$rowdata = pg_fetch_row($rs, 0);

		$tid = htmlspecialchars($rowdata[0]);
		$stationname = htmlspecialchars($rowdata[1]);
		$title = htmlspecialchars($rowdata[2]);
		$bitrate = htmlspecialchars($rowdata[3]);
		$stationid = htmlspecialchars($rowdata[4]);

$delflag = getgetnumform(delflag);

?>

  <p align="left"><font color="#494949" size="6">予約解除</font></p>
  <hr size="4">
<?php
if ($delflag == "1") {
	print "「".$title."」の自動録画予約を解除しました。 <br>\n";

//削除処理
if (($demomode) || ($protectmode) ){
//demomodeやprotectmodeならなにもしない
}else{

//キュー削除プログラムをキック
$oserr = system("$toolpath/perl/addatq.pl $tid $sid DELETE");
//DB削除
$query = "
DELETE  
FROM  foltia_tvrecord  
WHERE foltia_tvrecord.tid = $tid AND foltia_tvrecord.stationid = $sid  ";
	$rs = m_query($con, $query, "DBクエリに失敗しました");
}

}else{
	print "「".$title."」の自動録画予約を解除します。 <br>\n";

print "<form name=\"deletereserve\" method=\"GET\" action=\"delreserve.php\">
<input type=\"submit\" value=\"予約解除\" >\n";

}

?>  
<br>
<table width="100%" border="0">
  <tr>
    <td>タイトル</td>
    <td>放送局</td>
    <td>ビットレート</td>
  </tr>
  <tr>
    <td><?=$title?></td>
    <td><?=$stationname?></td>
    <td><?=$bitrate?></td>

  </tr>
</table>

<?php
if ($delflag == "1") {

}else{
print "
<input type=\"hidden\" name=\"tid\" value=\"$tid\">
<input type=\"hidden\" name=\"sid\" value=\"$sid\">
<input type=\"hidden\" name=\"delflag\" value=\"1\">
</form>\n";

}

?>  

<p>&nbsp; </p>
<p><br>
今後の放映予定 </p>

<?php
	$query = "
SELECT 
stationname,
foltia_subtitle.countno,
foltia_subtitle.subtitle,
foltia_subtitle.startdatetime ,
foltia_subtitle.lengthmin ,
foltia_subtitle.startoffset 
FROM foltia_subtitle , foltia_program ,foltia_station  
WHERE foltia_program.tid = foltia_subtitle.tid AND foltia_station.stationid = foltia_subtitle.stationid 
 AND foltia_subtitle.startdatetime >=  '$now'  AND foltia_program.tid ='$tid' 
ORDER BY foltia_subtitle.startdatetime  ASC
";
	$rs = m_query($con, $query, "DBクエリに失敗しました");
	$maxrows = pg_num_rows($rs);
			
		if ($maxrows == 0) {
		echo("放映予定はありません<BR>");
		}
		else{
		$maxcols = pg_num_fields($rs);		
?>
  <table BORDER="0" CELLPADDING="0" CELLSPACING="2" WIDTH="100%" BGCOLOR="#bcf1be">
	<thead>
		<tr>
			<th align="left">放映局</th>
			<th align="left">話数</th>
			<th align="left">サブタイトル</th>
			<th align="left">開始時刻</th>
			<th align="left">総尺</th>
			<th align="left">時刻ずれ</th>

		</tr>
	</thead>

	<tbody>
		<?php
			/* テーブルのデータを出力 */
			for ($row = 0; $row < $maxrows; $row++) { /* 行に対応 */
				echo("<tr>\n");
				/* pg_fetch_row で一行取り出す */
				$rowdata = pg_fetch_row($rs, $row);

				for ($col = 0; $col < $maxcols; $col++) { /* 列に対応 */
					echo("<td>".htmlspecialchars($rowdata[$col])."<br></td>\n");
				}
				echo("</tr>\n");
			}
		}//end if
		?>
	</tbody>
</table>



</body>
</html>
