2016-05-06 03:33:28 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class Event {
|
2017-10-24 01:53:58 +08:00
|
|
|
|
|
|
|
private $fields = array(
|
|
|
|
'Id',
|
|
|
|
'Name',
|
|
|
|
'MonitorId',
|
|
|
|
'StorageId',
|
|
|
|
'Name',
|
|
|
|
'DiskSpace',
|
2017-11-22 12:57:44 +08:00
|
|
|
'SaveJPEGs',
|
2017-12-19 02:04:57 +08:00
|
|
|
'Scheme',
|
2017-10-24 01:53:58 +08:00
|
|
|
);
|
2017-10-11 01:39:17 +08:00
|
|
|
public function __construct( $IdOrRow = null ) {
|
2016-05-06 03:33:28 +08:00
|
|
|
$row = NULL;
|
|
|
|
if ( $IdOrRow ) {
|
|
|
|
if ( is_integer( $IdOrRow ) or is_numeric( $IdOrRow ) ) {
|
|
|
|
$row = dbFetchOne( 'SELECT *,unix_timestamp(StartTime) as Time FROM Events WHERE Id=?', NULL, array( $IdOrRow ) );
|
|
|
|
if ( ! $row ) {
|
2017-01-02 23:34:15 +08:00
|
|
|
Error('Unable to load Event record for Id=' . $IdOrRow );
|
2016-05-06 03:33:28 +08:00
|
|
|
}
|
|
|
|
} elseif ( is_array( $IdOrRow ) ) {
|
|
|
|
$row = $IdOrRow;
|
|
|
|
} else {
|
2017-01-02 23:34:15 +08:00
|
|
|
$backTrace = debug_backtrace();
|
|
|
|
$file = $backTrace[1]['file'];
|
|
|
|
$line = $backTrace[1]['line'];
|
|
|
|
Error("Unknown argument passed to Event Constructor from $file:$line)");
|
2016-05-06 03:33:28 +08:00
|
|
|
Error("Unknown argument passed to Event Constructor ($IdOrRow)");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( $row ) {
|
|
|
|
foreach ($row as $k => $v) {
|
|
|
|
$this->{$k} = $v;
|
|
|
|
}
|
|
|
|
} else {
|
2017-10-11 01:39:17 +08:00
|
|
|
$backTrace = debug_backtrace();
|
|
|
|
$file = $backTrace[1]['file'];
|
|
|
|
$line = $backTrace[1]['line'];
|
|
|
|
Error('No row for Event ' . $IdOrRow . " from $file:$line");
|
2016-05-06 03:33:28 +08:00
|
|
|
}
|
2017-10-11 01:39:17 +08:00
|
|
|
} # end if isset($IdOrRow)
|
2016-05-06 03:33:28 +08:00
|
|
|
} // end function __construct
|
2017-06-01 08:54:34 +08:00
|
|
|
|
2017-10-11 03:39:14 +08:00
|
|
|
public function Storage( $new = null ) {
|
|
|
|
if ( $new ) {
|
|
|
|
$this->{'Storage'} = $new;
|
|
|
|
}
|
2017-10-12 22:32:48 +08:00
|
|
|
if ( ! ( array_key_exists( 'Storage', $this ) and $this->{'Storage'} ) ) {
|
2017-10-11 03:39:14 +08:00
|
|
|
$this->{'Storage'} = new Storage( isset($this->{'StorageId'}) ? $this->{'StorageId'} : NULL );
|
|
|
|
}
|
|
|
|
return $this->{'Storage'};
|
2016-05-06 03:33:28 +08:00
|
|
|
}
|
2017-06-01 08:54:34 +08:00
|
|
|
|
2017-01-02 23:34:15 +08:00
|
|
|
public function Monitor() {
|
|
|
|
return new Monitor( isset($this->{'MonitorId'}) ? $this->{'MonitorId'} : NULL );
|
|
|
|
}
|
2017-06-01 08:54:34 +08:00
|
|
|
|
2016-05-06 03:33:28 +08:00
|
|
|
public function __call( $fn, array $args){
|
2017-10-18 01:09:14 +08:00
|
|
|
if ( count( $args ) ) {
|
|
|
|
$this->{$fn} = $args[0];
|
|
|
|
}
|
2017-01-02 23:34:15 +08:00
|
|
|
if ( array_key_exists( $fn, $this ) ) {
|
2016-05-06 03:33:28 +08:00
|
|
|
return $this->{$fn};
|
2017-10-18 01:09:14 +08:00
|
|
|
|
|
|
|
$backTrace = debug_backtrace();
|
|
|
|
$file = $backTrace[1]['file'];
|
|
|
|
$line = $backTrace[1]['line'];
|
|
|
|
Warning( "Unknown function call Event->$fn from $file:$line" );
|
2016-05-06 03:33:28 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function Time() {
|
|
|
|
if ( ! isset( $this->{'Time'} ) ) {
|
|
|
|
$this->{'Time'} = strtotime($this->{'StartTime'});
|
|
|
|
}
|
|
|
|
return $this->{'Time'};
|
|
|
|
}
|
|
|
|
|
|
|
|
public function Path() {
|
|
|
|
$Storage = $this->Storage();
|
|
|
|
return $Storage->Path().'/'.$this->Relative_Path();
|
|
|
|
}
|
2017-06-01 08:54:34 +08:00
|
|
|
|
2016-05-06 03:33:28 +08:00
|
|
|
public function Relative_Path() {
|
2017-01-02 23:34:15 +08:00
|
|
|
$event_path = '';
|
|
|
|
|
2017-12-19 01:52:26 +08:00
|
|
|
if ( $this->{'Scheme'} == 'Deep' ) {
|
2017-01-02 23:34:15 +08:00
|
|
|
$event_path = $this->{'MonitorId'} .'/'.strftime( '%y/%m/%d/%H/%M/%S', $this->Time()) ;
|
2017-12-19 02:16:54 +08:00
|
|
|
} else if ( $this->{'Scheme'} == 'Medium' ) {
|
2017-12-20 00:01:03 +08:00
|
|
|
$event_path = $this->{'MonitorId'} .'/'.strftime( '%Y-%m-%d', $this->Time() ) . '/'.$this->{'Id'};
|
2017-01-02 23:34:15 +08:00
|
|
|
} else {
|
|
|
|
$event_path = $this->{'MonitorId'} .'/'.$this->{'Id'};
|
2016-05-06 03:33:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return( $event_path );
|
2017-01-02 23:34:15 +08:00
|
|
|
} // end function Relative_Path()
|
2016-05-06 03:33:28 +08:00
|
|
|
|
2017-01-02 23:34:15 +08:00
|
|
|
public function Link_Path() {
|
2017-12-19 01:52:26 +08:00
|
|
|
if ( $this->{'Scheme'} == 'Deep' ) {
|
2017-01-02 23:34:15 +08:00
|
|
|
return $this->{'MonitorId'} .'/'.strftime( '%y/%m/%d/.', $this->Time()).$this->{'Id'};
|
2016-05-06 03:33:28 +08:00
|
|
|
}
|
2017-01-02 23:34:15 +08:00
|
|
|
Error('Calling Link_Path when not using deep storage');
|
2016-05-06 03:33:28 +08:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function delete() {
|
2017-01-02 23:34:15 +08:00
|
|
|
# This wouldn't work with foreign keys
|
2016-05-06 03:33:28 +08:00
|
|
|
dbQuery( 'DELETE FROM Events WHERE Id = ?', array($this->{'Id'}) );
|
|
|
|
if ( !ZM_OPT_FAST_DELETE ) {
|
|
|
|
dbQuery( 'DELETE FROM Stats WHERE EventId = ?', array($this->{'Id'}) );
|
|
|
|
dbQuery( 'DELETE FROM Frames WHERE EventId = ?', array($this->{'Id'}) );
|
2017-12-19 01:52:26 +08:00
|
|
|
if ( $this->{'Scheme'} == 'Deep' ) {
|
2016-05-06 03:33:28 +08:00
|
|
|
|
2017-01-02 23:34:15 +08:00
|
|
|
# Assumption: All events have a start time
|
2016-05-06 03:33:28 +08:00
|
|
|
$start_date = date_parse( $this->{'StartTime'} );
|
2017-01-02 23:34:15 +08:00
|
|
|
if ( ! $start_date ) {
|
|
|
|
Error('Unable to parse start time for event ' . $this->{'Id'} . ' not deleting files.' );
|
|
|
|
return;
|
|
|
|
}
|
2016-05-06 03:33:28 +08:00
|
|
|
$start_date['year'] = $start_date['year'] % 100;
|
|
|
|
|
2017-01-02 23:34:15 +08:00
|
|
|
# So this is because ZM creates a link under the day pointing to the time that the event happened.
|
|
|
|
$link_path = $this->Link_Path();
|
|
|
|
if ( ! $link_path ) {
|
|
|
|
Error('Unable to determine link path for event ' . $this->{'Id'} . ' not deleting files.' );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-05-06 03:33:28 +08:00
|
|
|
$Storage = $this->Storage();
|
2017-01-02 23:34:15 +08:00
|
|
|
$eventlink_path = $Storage->Path().'/'.$link_path;
|
2016-05-06 03:33:28 +08:00
|
|
|
|
|
|
|
if ( $id_files = glob( $eventlink_path ) ) {
|
2017-01-02 23:34:15 +08:00
|
|
|
if ( ! $eventPath = readlink($id_files[0]) ) {
|
|
|
|
Error("Unable to read link at $id_files[0]");
|
|
|
|
return;
|
|
|
|
}
|
2016-05-06 03:33:28 +08:00
|
|
|
# I know we are using arrays here, but really there can only ever be 1 in the array
|
2017-01-02 23:34:15 +08:00
|
|
|
$eventPath = preg_replace( '/\.'.$this->{'Id'}.'$/', $eventPath, $id_files[0] );
|
2016-05-06 03:33:28 +08:00
|
|
|
deletePath( $eventPath );
|
|
|
|
deletePath( $id_files[0] );
|
|
|
|
$pathParts = explode( '/', $eventPath );
|
|
|
|
for ( $i = count($pathParts)-1; $i >= 2; $i-- ) {
|
|
|
|
$deletePath = join( '/', array_slice( $pathParts, 0, $i ) );
|
|
|
|
if ( !glob( $deletePath."/*" ) ) {
|
|
|
|
deletePath( $deletePath );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Warning( "Found no event files under $eventlink_path" );
|
|
|
|
} # end if found files
|
|
|
|
} else {
|
|
|
|
$eventPath = $this->Path();
|
|
|
|
deletePath( $eventPath );
|
|
|
|
} # USE_DEEP_STORAGE OR NOT
|
|
|
|
} # ! ZM_OPT_FAST_DELETE
|
|
|
|
} # end Event->delete
|
|
|
|
|
2017-05-17 02:16:32 +08:00
|
|
|
public function getStreamSrc( $args=array(), $querySep='&' ) {
|
2017-08-24 03:05:44 +08:00
|
|
|
if ( $this->{'DefaultVideo'} and $args['mode'] != 'jpeg' ) {
|
2017-12-22 08:53:46 +08:00
|
|
|
$streamSrc = ZM_BASE_PROTOCOL.'://';
|
|
|
|
$Monitor = $this->Monitor();
|
|
|
|
if ( $Monitor->ServerId() ) {
|
|
|
|
$Server = $Monitor->Server();
|
|
|
|
$streamSrc .= $Server->Hostname();
|
|
|
|
} else {
|
|
|
|
$streamSrc .= $_SERVER['HTTP_HOST'];
|
|
|
|
}
|
|
|
|
$streamSrc .= ( ZM_BASE_PATH != '/' ? ZM_BASE_PATH : '' ).'/index.php?view=view_video&eid='.$this->{'Id'};
|
|
|
|
return $streamSrc;
|
2017-05-17 02:16:32 +08:00
|
|
|
}
|
2016-05-06 03:33:28 +08:00
|
|
|
|
|
|
|
$streamSrc = ZM_BASE_URL.ZM_PATH_ZMS;
|
|
|
|
|
2017-06-09 02:01:22 +08:00
|
|
|
$args['source'] = 'event';
|
|
|
|
$args['event'] = $this->{'Id'};
|
2016-05-06 03:33:28 +08:00
|
|
|
|
|
|
|
if ( ZM_OPT_USE_AUTH ) {
|
2017-01-02 23:34:15 +08:00
|
|
|
if ( ZM_AUTH_RELAY == 'hashed' ) {
|
2017-06-09 02:01:22 +08:00
|
|
|
$args['auth'] = generateAuthHash( ZM_AUTH_HASH_IPS );
|
2017-01-02 23:34:15 +08:00
|
|
|
} elseif ( ZM_AUTH_RELAY == 'plain' ) {
|
2017-06-09 02:01:22 +08:00
|
|
|
$args['user'] = $_SESSION['username'];
|
|
|
|
$args['pass'] = $_SESSION['password'];
|
2016-05-06 03:33:28 +08:00
|
|
|
} elseif ( ZM_AUTH_RELAY == "none" ) {
|
2017-06-09 02:01:22 +08:00
|
|
|
$args['user'] = $_SESSION['username'];
|
2016-05-06 03:33:28 +08:00
|
|
|
}
|
|
|
|
}
|
2017-06-09 02:01:22 +08:00
|
|
|
if ( ( (!isset($args['mode'])) or ( $args['mode'] != 'single' ) ) && !empty($GLOBALS['connkey']) ) {
|
|
|
|
$args['connkey'] = $GLOBALS['connkey'];
|
2016-05-06 03:33:28 +08:00
|
|
|
}
|
|
|
|
if ( ZM_RAND_STREAM ) {
|
2017-06-09 02:01:22 +08:00
|
|
|
$args['rand'] = time();
|
2016-05-06 03:33:28 +08:00
|
|
|
}
|
|
|
|
|
2017-06-09 02:01:22 +08:00
|
|
|
$streamSrc .= '?'.http_build_query( $args,'', $querySep );
|
2016-05-06 03:33:28 +08:00
|
|
|
|
|
|
|
return( $streamSrc );
|
|
|
|
} // end function getStreamSrc
|
2017-01-02 23:34:15 +08:00
|
|
|
|
2017-10-24 08:02:04 +08:00
|
|
|
function DiskSpace( $new='' ) {
|
|
|
|
if ( $new != '' ) {
|
|
|
|
$this->{'DiskSpace'} = $new;
|
|
|
|
}
|
2017-10-11 03:39:14 +08:00
|
|
|
if ( null === $this->{'DiskSpace'} ) {
|
2017-10-11 01:39:17 +08:00
|
|
|
$this->{'DiskSpace'} = folder_size( $this->Path() );
|
2017-10-11 01:02:26 +08:00
|
|
|
dbQuery( 'UPDATE Events SET DiskSpace=? WHERE Id=?', array( $this->{'DiskSpace'}, $this->{'Id'} ) );
|
2017-10-10 21:36:56 +08:00
|
|
|
}
|
2017-10-11 01:39:17 +08:00
|
|
|
return $this->{'DiskSpace'};
|
2016-07-20 05:34:01 +08:00
|
|
|
}
|
2017-01-02 23:34:15 +08:00
|
|
|
|
|
|
|
function createListThumbnail( $overwrite=false ) {
|
2018-01-22 10:27:01 +08:00
|
|
|
if ( (!$this->SaveJPEGs()) and file_exists($this->Path().'/snapshot.jpg') ) {
|
|
|
|
$frame = null;
|
|
|
|
} else {
|
2017-01-02 23:34:15 +08:00
|
|
|
# Load the frame with the highest score to use as a thumbnail
|
|
|
|
if ( !($frame = dbFetchOne( 'SELECT * FROM Frames WHERE EventId=? AND Score=? ORDER BY FrameId LIMIT 1', NULL, array( $this->{'Id'}, $this->{'MaxScore'} ) )) ) {
|
|
|
|
Error("Unable to find a Frame matching max score " . $this->{'MaxScore'} . ' for event ' . $this->{'Id'} );
|
|
|
|
// FIXME: What if somehow the db frame was lost or score was changed? Should probably try another search for any frame.
|
|
|
|
return( false );
|
|
|
|
}
|
2018-01-22 10:27:01 +08:00
|
|
|
}
|
2017-01-02 23:34:15 +08:00
|
|
|
|
|
|
|
if ( ZM_WEB_LIST_THUMB_WIDTH ) {
|
|
|
|
$thumbWidth = ZM_WEB_LIST_THUMB_WIDTH;
|
|
|
|
$scale = (SCALE_BASE*ZM_WEB_LIST_THUMB_WIDTH)/$this->{'Width'};
|
|
|
|
$thumbHeight = reScale( $this->{'Height'}, $scale );
|
|
|
|
} elseif ( ZM_WEB_LIST_THUMB_HEIGHT ) {
|
|
|
|
$thumbHeight = ZM_WEB_LIST_THUMB_HEIGHT;
|
|
|
|
$scale = (SCALE_BASE*ZM_WEB_LIST_THUMB_HEIGHT)/$this->{'Height'};
|
|
|
|
$thumbWidth = reScale( $this->{'Width'}, $scale );
|
|
|
|
} else {
|
|
|
|
Fatal( "No thumbnail width or height specified, please check in Options->Web" );
|
|
|
|
}
|
|
|
|
|
|
|
|
$imageData = $this->getImageSrc( $frame, $scale, false, $overwrite );
|
|
|
|
if ( ! $imageData ) {
|
|
|
|
return ( false );
|
|
|
|
}
|
|
|
|
$thumbData = $frame;
|
|
|
|
$thumbData['Path'] = $imageData['thumbPath'];
|
|
|
|
$thumbData['Width'] = (int)$thumbWidth;
|
|
|
|
$thumbData['Height'] = (int)$thumbHeight;
|
|
|
|
|
|
|
|
return( $thumbData );
|
|
|
|
} // end function createListThumbnail
|
|
|
|
|
2017-06-01 08:54:34 +08:00
|
|
|
// frame is an array representing the db row for a frame.
|
2017-01-02 23:34:15 +08:00
|
|
|
function getImageSrc( $frame, $scale=SCALE_BASE, $captureOnly=false, $overwrite=false ) {
|
2017-08-15 06:22:52 +08:00
|
|
|
$Storage = new Storage( isset($this->{'StorageId'}) ? $this->{'StorageId'} : NULL );
|
2017-01-02 23:34:15 +08:00
|
|
|
$Event = $this;
|
|
|
|
$eventPath = $Event->Path();
|
|
|
|
|
2017-06-01 08:54:34 +08:00
|
|
|
if ( $frame and ! is_array($frame) ) {
|
|
|
|
# Must be an Id
|
|
|
|
Debug("Assuming that $frame is an Id");
|
2017-01-02 23:34:15 +08:00
|
|
|
$frame = array( 'FrameId'=>$frame, 'Type'=>'' );
|
2017-06-01 08:54:34 +08:00
|
|
|
}
|
2017-01-02 23:34:15 +08:00
|
|
|
|
2017-06-01 08:54:34 +08:00
|
|
|
if ( ( ! $frame ) and file_exists( $eventPath.'/snapshot.jpg' ) ) {
|
|
|
|
# No frame specified, so look for a snapshot to use
|
|
|
|
$captImage = 'snapshot.jpg';
|
2018-01-22 10:27:01 +08:00
|
|
|
Logger::Debug("Frame not specified, using snapshot");
|
2017-01-02 23:34:15 +08:00
|
|
|
} else {
|
2017-07-28 21:54:33 +08:00
|
|
|
$captImage = sprintf( '%0'.ZM_EVENT_IMAGE_DIGITS.'d-analyze.jpg', $frame['FrameId'] );
|
2017-01-02 23:34:15 +08:00
|
|
|
if ( ! file_exists( $eventPath.'/'.$captImage ) ) {
|
2017-07-28 21:54:33 +08:00
|
|
|
$captImage = sprintf( '%0'.ZM_EVENT_IMAGE_DIGITS.'d-capture.jpg', $frame['FrameId'] );
|
|
|
|
if ( ! file_exists( $eventPath.'/'.$captImage ) ) {
|
|
|
|
# Generate the frame JPG
|
|
|
|
if ( $Event->DefaultVideo() ) {
|
|
|
|
$videoPath = $eventPath.'/'.$Event->DefaultVideo();
|
|
|
|
|
|
|
|
if ( ! file_exists( $videoPath ) ) {
|
|
|
|
Error("Event claims to have a video file, but it does not seem to exist at $videoPath" );
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
#$command ='ffmpeg -v 0 -i '.$videoPath.' -vf "select=gte(n\\,'.$frame['FrameId'].'),setpts=PTS-STARTPTS" '.$eventPath.'/'.$captImage;
|
|
|
|
$command ='ffmpeg -ss '. $frame['Delta'] .' -i '.$videoPath.' -frames:v 1 '.$eventPath.'/'.$captImage;
|
|
|
|
Logger::Debug( "Running $command" );
|
|
|
|
$output = array();
|
|
|
|
$retval = 0;
|
|
|
|
exec( $command, $output, $retval );
|
|
|
|
Logger::Debug("Retval: $retval, output: " . implode("\n", $output));
|
|
|
|
} else {
|
2018-01-22 10:27:01 +08:00
|
|
|
Error("Can't create frame images from video because there is no video file for event ".$Event->Id().' at ' .$Event->Path() );
|
2017-07-28 21:54:33 +08:00
|
|
|
}
|
|
|
|
} // end if capture file exists
|
|
|
|
} // end if analyze file exists
|
2017-01-02 23:34:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
$captPath = $eventPath.'/'.$captImage;
|
|
|
|
if ( ! file_exists( $captPath ) ) {
|
|
|
|
Error( "Capture file does not exist at $captPath" );
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
$thumbCaptPath = ZM_DIR_IMAGES.'/'.$this->{'Id'}.'-'.$captImage;
|
|
|
|
|
|
|
|
//echo "CI:$captImage, CP:$captPath, TCP:$thumbCaptPath<br>";
|
|
|
|
|
|
|
|
$analImage = sprintf( '%0'.ZM_EVENT_IMAGE_DIGITS.'d-analyse.jpg', $frame['FrameId'] );
|
|
|
|
$analPath = $eventPath.'/'.$analImage;
|
|
|
|
|
|
|
|
$thumbAnalPath = ZM_DIR_IMAGES.'/'.$this->{'Id'}.'-'.$analImage;
|
|
|
|
//echo "AI:$analImage, AP:$analPath, TAP:$thumbAnalPath<br>";
|
|
|
|
|
|
|
|
$alarmFrame = $frame['Type']=='Alarm';
|
|
|
|
|
|
|
|
$hasAnalImage = $alarmFrame && file_exists( $analPath ) && filesize( $analPath );
|
|
|
|
$isAnalImage = $hasAnalImage && !$captureOnly;
|
|
|
|
|
|
|
|
if ( !ZM_WEB_SCALE_THUMBS || $scale >= SCALE_BASE || !function_exists( 'imagecreatefromjpeg' ) ) {
|
|
|
|
$imagePath = $thumbPath = $isAnalImage?$analPath:$captPath;
|
|
|
|
$imageFile = $imagePath;
|
|
|
|
$thumbFile = $thumbPath;
|
|
|
|
} else {
|
|
|
|
if ( version_compare( phpversion(), '4.3.10', '>=') )
|
|
|
|
$fraction = sprintf( '%.3F', $scale/SCALE_BASE );
|
|
|
|
else
|
|
|
|
$fraction = sprintf( '%.3f', $scale/SCALE_BASE );
|
|
|
|
$scale = (int)round( $scale );
|
|
|
|
|
|
|
|
$thumbCaptPath = preg_replace( '/\.jpg$/', "-$scale.jpg", $thumbCaptPath );
|
|
|
|
$thumbAnalPath = preg_replace( '/\.jpg$/', "-$scale.jpg", $thumbAnalPath );
|
|
|
|
|
|
|
|
if ( $isAnalImage ) {
|
|
|
|
$imagePath = $analPath;
|
|
|
|
$thumbPath = $thumbAnalPath;
|
|
|
|
} else {
|
|
|
|
$imagePath = $captPath;
|
|
|
|
$thumbPath = $thumbCaptPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
$thumbFile = $thumbPath;
|
2017-06-01 08:54:34 +08:00
|
|
|
if ( $overwrite || ! file_exists( $thumbFile ) || ! filesize( $thumbFile ) ) {
|
2017-01-02 23:34:15 +08:00
|
|
|
// Get new dimensions
|
|
|
|
list( $imageWidth, $imageHeight ) = getimagesize( $imagePath );
|
|
|
|
$thumbWidth = $imageWidth * $fraction;
|
|
|
|
$thumbHeight = $imageHeight * $fraction;
|
|
|
|
|
|
|
|
// Resample
|
|
|
|
$thumbImage = imagecreatetruecolor( $thumbWidth, $thumbHeight );
|
|
|
|
$image = imagecreatefromjpeg( $imagePath );
|
|
|
|
imagecopyresampled( $thumbImage, $image, 0, 0, 0, 0, $thumbWidth, $thumbHeight, $imageWidth, $imageHeight );
|
|
|
|
|
|
|
|
if ( !imagejpeg( $thumbImage, $thumbPath ) )
|
|
|
|
Error( "Can't create thumbnail '$thumbPath'" );
|
|
|
|
}
|
2017-06-01 08:54:34 +08:00
|
|
|
} # Create thumbnails
|
2017-01-02 23:34:15 +08:00
|
|
|
|
|
|
|
$imageData = array(
|
|
|
|
'eventPath' => $eventPath,
|
|
|
|
'imagePath' => $imagePath,
|
|
|
|
'thumbPath' => $thumbPath,
|
|
|
|
'imageFile' => $imagePath,
|
|
|
|
'thumbFile' => $thumbFile,
|
2017-06-01 08:54:34 +08:00
|
|
|
'imageClass' => $alarmFrame?'alarm':'normal',
|
2017-01-02 23:34:15 +08:00
|
|
|
'isAnalImage' => $isAnalImage,
|
|
|
|
'hasAnalImage' => $hasAnalImage,
|
|
|
|
);
|
|
|
|
|
|
|
|
return( $imageData );
|
|
|
|
}
|
|
|
|
|
2017-10-10 22:38:13 +08:00
|
|
|
public static function find_all( $parameters = null, $options = null ) {
|
|
|
|
$filters = array();
|
|
|
|
$sql = 'SELECT * FROM Events ';
|
|
|
|
$values = array();
|
|
|
|
|
|
|
|
if ( $parameters ) {
|
|
|
|
$fields = array();
|
|
|
|
$sql .= 'WHERE ';
|
|
|
|
foreach ( $parameters as $field => $value ) {
|
|
|
|
if ( $value == null ) {
|
|
|
|
$fields[] = $field.' IS NULL';
|
|
|
|
} else if ( is_array( $value ) ) {
|
|
|
|
$func = function(){return '?';};
|
|
|
|
$fields[] = $field.' IN ('.implode(',', array_map( $func, $value ) ). ')';
|
|
|
|
$values += $value;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
$fields[] = $field.'=?';
|
|
|
|
$values[] = $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$sql .= implode(' AND ', $fields );
|
|
|
|
}
|
|
|
|
if ( $options and isset($options['order']) ) {
|
|
|
|
$sql .= ' ORDER BY ' . $options['order'];
|
|
|
|
}
|
|
|
|
$result = dbQuery($sql, $values);
|
|
|
|
$results = $result->fetchALL(PDO::FETCH_CLASS | PDO::FETCH_PROPS_LATE, 'Event');
|
|
|
|
foreach ( $results as $row => $obj ) {
|
|
|
|
$filters[] = $obj;
|
|
|
|
}
|
|
|
|
return $filters;
|
|
|
|
}
|
|
|
|
|
2017-10-24 01:53:58 +08:00
|
|
|
public function save( ) {
|
2017-10-24 08:02:04 +08:00
|
|
|
|
|
|
|
$sql = 'UPDATE Events SET '.implode(', ', array_map( function($field) {return $field.'=?';}, $this->fields ) ) . ' WHERE Id=?';
|
|
|
|
$values = array_map( function($field){return $this->{$field};}, $this->fields );
|
2017-10-24 01:53:58 +08:00
|
|
|
$values[] = $this->{'Id'};
|
2017-10-24 08:02:04 +08:00
|
|
|
dbQuery( $sql, $values );
|
2017-10-24 01:53:58 +08:00
|
|
|
}
|
2017-10-10 22:38:13 +08:00
|
|
|
|
2016-05-06 03:33:28 +08:00
|
|
|
} # end class
|
2017-01-02 23:34:15 +08:00
|
|
|
|
2016-05-06 03:33:28 +08:00
|
|
|
?>
|