-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.php
244 lines (216 loc) · 8.58 KB
/
index.php
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
<?php
include_once("config.php");
include_once( INSTALL_PATH . "/DBRecord.class.php" );
include_once( INSTALL_PATH . "/Smarty/Smarty.class.php" );
include_once( INSTALL_PATH . "/reclib.php" );
include_once( INSTALL_PATH . "/Settings.class.php" );
// 設定ファイルの有無を検査する
if( ! file_exists( INSTALL_PATH."/settings/config.xml") ) {
header( "Content-Type: text/html;charset=utf-8" );
exit( "<script type=\"text/javascript\">\n" .
"<!--\n".
"window.open(\"install/step1.php\",\"_self\");".
"// -->\n</script>" );
}
$settings = Settings::factory();
$DAY_OF_WEEK = array( "(日)","(月)","(火)","(水)","(木)","(金)","(土)" );
// パラメータの処理
// 表示する長さ(時間)
$program_length = $settings->program_length;
if( isset( $_GET['length']) ) $program_length = (int) $_GET['length'];
// 地上=GR/BS=BS
$type = "GR";
if( isset( $_GET['type'] ) ) $type = $_GET['type'];
// 現在の時間
$top_time = mktime( date("H"), 0 , 0 );
if( isset( $_GET['time'] ) ) {
if( sscanf( $_GET['time'] , "%04d%2d%2d%2d", $y, $mon, $day, $h ) == 4 ) {
$tmp_time = mktime( $h, 0, 0, $mon, $day, $y );
if( ($tmp_time < ($top_time + 3600 * 24 * 8)) && ($tmp_time > ($top_time - 3600 * 24 * 8)) )
$top_time = $tmp_time;
}
}
$last_time = $top_time + 3600 * $program_length;
// 時刻欄
for( $i = 0 ; $i < $program_length; $i++ ) {
$tvtimes[$i] = date("H", $top_time + 3600 * $i );
}
// チャンネルマップ
$tmprec = new DBRecord(CHANNEL_TBL);
$recarr = $tmprec->fetch_array( "type", $type, "id > 0 ORDER BY sid+0 ASC" );
foreach( $recarr as $val) {
$channel_map["{$val['channel_disc']}"] = $val['channel'];
}
// 番組表
$programs = array();
$st = 0;
$prec = null;
try {
$prec = new DBRecord(PROGRAM_TBL);
}
catch( Exception $e ) {
exit('プログラムテーブルが存在しないようです。インストールをやり直してください.');
}
$num_ch = 0;
foreach( $channel_map as $channel_disc => $channel ) {
$prev_end = $top_time;
try {
$crec = new DBRecord( CHANNEL_TBL, "channel_disc", $channel_disc );
$programs[$st]["skip"] = $crec->skip;
if( $crec->skip == 0 ) $num_ch++;
$programs[$st]["channel_disc"] = $channel_disc;
$programs[$st]["station_name"] = $crec->name;
$programs[$st]["sid"] = $crec->sid;
$programs[$st]["ch_hash"] = md5($channel_disc);
$reca = $prec->fetch_array( "channel_disc", $channel_disc,
"endtime > '".toDatetime($top_time)."' ".
"AND starttime < '". toDatetime($last_time)."' ".
"ORDER BY starttime ASC "
);
$programs[$st]['list'] = array();
$num = 0;
foreach( $reca as $prg ) {
$prg_starttime = $start = strtotime($prg['starttime']);
$prg_endtime = strtotime($prg['endtime']);
// 前プログラムとの空きを調べる
if( ($prg_starttime - $prev_end) > 0 ) {
$height = ($prg_starttime-$prev_end) * $settings->height_per_hour / 3600;
$programs[$st]['list'][$num]['category_none'] = "none";
$programs[$st]['list'][$num]['height'] = $height;
$programs[$st]['list'][$num]['title'] = "";
$programs[$st]['list'][$num]['starttime'] = "";
$programs[$st]['list'][$num]['description'] = "";
$num++;
}
$prev_end = $prg_endtime;
$height = $prg_endtime - $prg_starttime;
// $top_time より早く始まっている番組
if( $prg_starttime < $top_time ) {
$height = $prg_endtime - $top_time;
}
// $last_time より遅く終わる番組
if( $prg_endtime > $last_time ) {
$height = $height - ($prg_endtime - $last_time);
}
$height = $height * $settings->height_per_hour / 3600;
// プログラムを埋める
$cat = new DBRecord( CATEGORY_TBL, "id", $prg['category_id'] );
$programs[$st]['list'][$num]['category_name'] = $cat->name_en;
$programs[$st]['list'][$num]['height'] = $height;
$programs[$st]['list'][$num]['title'] = $prg['title'];
$programs[$st]['list'][$num]['starttime'] = date("H:i", $start )."" ;
$programs[$st]['list'][$num]['description'] = $prg['description'];
$programs[$st]['list'][$num]['prg_start'] = str_replace( "-", "/", $prg['starttime']);
$programs[$st]['list'][$num]['duration'] = "" . (toTimestamp($prg['endtime']) - toTimestamp($prg['starttime']));
$programs[$st]['list'][$num]['channel'] = ($prg['type'] == "GR" ? "地上D" : "BS" ) . ":". $prg['channel'] . "ch";
$programs[$st]['list'][$num]['id'] = "" . ($prg['id']);
$programs[$st]['list'][$num]['rec'] = DBRecord::countRecords(RESERVE_TBL, "WHERE complete = '0' AND program_id = '".$prg['id']."'" );
$num++;
}
}
catch( exception $e ) {
$num_ch++; // epgの無いチャンネル対応
// exit( $e->getMessage() );
// 何もしない
}
// 空きを埋める
if( ($last_time - $prev_end) > 0 ) {
$height = ($last_time - $prev_end) * $settings->height_per_hour / 3600;
$height = $height;
$programs[$st]['list'][$num]['category_name'] = "none";
$programs[$st]['list'][$num]['height'] = $height;
$programs[$st]['list'][$num]['title'] = "";
$programs[$st]['list'][$num]['starttime'] = "";
$programs[$st]['list'][$num]['description'] = "";
$num++;
}
$st++;
}
$prec = null;
// 局の幅
$ch_set_width = (int)($settings->ch_set_width);
// 全体の幅
$chs_width = $ch_set_width * $num_ch;
// GETパラメタ
$get_param = $_SERVER['SCRIPT_NAME'] . "?type=".$type."&length=".$program_length."";
$smarty = new Smarty();
// カテゴリ一覧
$crec = DBRecord::createRecords( CATEGORY_TBL );
$cats = array();
$num = 0;
foreach( $crec as $val ) {
$cats[$num]['name_en'] = $val->name_en;
$cats[$num]['name_jp'] = $val->name_jp;
$num++;
}
$smarty->assign( "cats", $cats );
// タイプ選択
$types = array();
$i = 0;
if( $settings->bs_tuners != 0 ) {
$types[$i]['selected'] = $type == "BS" ? 'class="selected"' : "";
$types[$i]['link'] = $_SERVER['SCRIPT_NAME'] . "?type=BS&length=".$program_length."&time=".date( "YmdH", $top_time);
$types[$i]['name'] = "BS";
$i++;
// CS
if ($settings->cs_rec_flg != 0) {
$types[$i]['selected'] = $type == "CS" ? 'class="selected"' : "";
$types[$i]['link'] = $_SERVER['SCRIPT_NAME'] . "?type=CS&length=".$program_length."&time=".date( "YmdH", $top_time);
$types[$i]['name'] = "CS";
$i++;
}
}
if( $settings->gr_tuners != 0 ) {
$types[$i]['selected'] = $type == "GR" ? 'class="selected"' : "";
$types[$i]['link'] = $_SERVER['SCRIPT_NAME'] . "?type=GR&length=".$program_length."&time=".date( "YmdH", $top_time);
$types[$i]['name'] = "地上デジタル";
$i++;
}
$smarty->assign( "types", $types );
// 日付選択
$days = array();
$day = array();
$day['d'] = "昨日";
$day['link'] = $get_param . "&time=". date( "YmdH", time() - 3600 *24 );
$day['ofweek'] = "";
$day['selected'] = $top_time < mktime( 0, 0 , 0) ? 'class="selected"' : '';
array_push( $days , $day );
$day['d'] = "現在";
$day['link'] = $get_param;
$day['ofweek'] = "";
$day['selected'] = "";
array_push( $days, $day );
for( $i = 0 ; $i < 8 ; $i++ ) {
$day['d'] = "".date("d", time() + 24 * 3600 * $i ) . "日";
$day['link'] = $get_param . "&time=".date( "Ymd", time() + 24 * 3600 * $i) . date("H" , $top_time );
$day['ofweek'] = $DAY_OF_WEEK[(int)date( "w", time() + 24 * 3600 * $i )];
$day['selected'] = date("d", $top_time) == date("d", time() + 24 * 3600 * $i ) ? 'class="selected"' : '';
array_push( $days, $day );
}
$smarty->assign( "days" , $days );
// 時間選択
$toptimes = array();
for( $i = 0 ; $i < 24; $i+=4 ) {
$tmp = array();
$tmp['hour'] = sprintf( "%02d:00", $i );
$tmp['link'] = $get_param . "&time=".date("Ymd", $top_time ) . sprintf("%02d", $i );
array_push( $toptimes, $tmp );
}
$smarty->assign( "toptimes" , $toptimes );
$smarty->assign( "tvtimes", $tvtimes );
$smarty->assign( "programs", $programs );
$smarty->assign( "ch_set_width", (int)($settings->ch_set_width) );
$smarty->assign( "chs_width", $chs_width );
$smarty->assign( "height_per_hour", $settings->height_per_hour );
$smarty->assign( "height_per_min", $settings->height_per_hour / 60 );
$smarty->assign( "num_ch", $num_ch );
$smarty->assign( "num_all_ch" , count( $channel_map ) );
// date("Y-m-d H:i:s", $timestamp);
$sat_type = array('GR' => '地上デジタル', 'BS' => 'BSデジタル', 'CS' => 'CSデジタル');
$sitetitle = date( "Y", $top_time ) . "年" . date( "m", $top_time ) . "月" . date( "d", $top_time ) . "日". date( "H", $top_time ) .
"時~".$sat_type[$type]."番組表";
$smarty->assign("sitetitle", $sitetitle );
$smarty->assign("top_time", str_replace( "-", "/" ,toDatetime($top_time)) );
$smarty->assign("last_time", str_replace( "-", "/" ,toDatetime($last_time)) );
$smarty->display("index.html");
?>