forked from stz2012/epgrec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
recomplete.php
executable file
·52 lines (46 loc) · 1.81 KB
/
recomplete.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
#!/usr/bin/php
<?php
$script_path = dirname( __FILE__ );
chdir( $script_path );
include_once( $script_path . '/config.php');
include_once( INSTALL_PATH . "/DBRecord.class.php" );
include_once( INSTALL_PATH . "/Settings.class.php" );
include_once( INSTALL_PATH . "/recLog.inc.php" );
$settings = Settings::factory();
$reserve_id = $argv[1];
try{
$rrec = new DBRecord( RESERVE_TBL, "id" , $reserve_id );
$rrec->complete = '1';
if( file_exists( INSTALL_PATH .$settings->spool . "/". $rrec->path ) ) {
// 予約完了
reclog( "recomplete:: 予約ID". $rrec->id .":".$rrec->type.$rrec->channel.$rrec->title."の録画が完了" );
if( $settings->mediatomb_update == 1 ) {
// ちょっと待った方が確実っぽい
@exec("sync");
sleep(15);
$dbh = mysql_connect( $settings->db_host, $settings->db_user, $settings->db_pass );
if( $dbh !== false ) {
$sqlstr = "use ".$settings->db_name;
@mysql_query( $sqlstr );
// 別にやらなくてもいいが
$sqlstr = "set NAME utf8";
@mysql_query( $sqlstr );
$sqlstr = "update mt_cds_object set metadata='dc:description=".mysql_real_escape_string($rrec->description)."&epgrec:id=".$reserve_id."' where dc_title='".$rrec->path."'";
@mysql_query( $sqlstr );
$sqlstr = "update mt_cds_object set dc_title='".mysql_real_escape_string($rrec->title)."(".date("Y/m/d").")' where dc_title='".$rrec->path."'";
@mysql_query( $sqlstr );
}
}
}
else {
// 予約失敗
reclog( "recomplete:: 予約ID". $rrec->id .":".$rrec->type.$rrec->channel.$rrec->title."の録画に失敗した模様", EPGREC_ERROR );
$rrec->delete();
}
}
catch( exception $e ) {
reclog( "recomplete:: 予約テーブルのアクセスに失敗した模様", EPGREC_ERROR );
reclog( "recomplete:: ".$e->getMessage()."" , EPGREC_ERROR );
exit( $e->getMessage() );
}
?>