2005-12-16 18:05:29 +08:00
|
|
|
#!/usr/bin/perl -wT
|
|
|
|
#
|
|
|
|
# ==========================================================================
|
|
|
|
#
|
|
|
|
# ZoneMinder Event Filter Script, $Date$, $Revision$
|
2008-07-25 17:48:16 +08:00
|
|
|
# Copyright (C) 2001-2008 Philip Coombes
|
2005-12-16 18:05:29 +08:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
#
|
|
|
|
# ==========================================================================
|
2015-04-11 09:14:29 +08:00
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
|
|
|
zmfilter.pl - ZoneMinder tool to filter events
|
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
|
|
|
zmfilter.pl [-f <filter name>,--filter=<filter name>] | -v, --version
|
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
|
|
|
This script continuously monitors the recorded events for the given
|
|
|
|
monitor and applies any filters which would delete and/or upload
|
|
|
|
matching events.
|
|
|
|
|
|
|
|
=head1 OPTIONS
|
|
|
|
|
|
|
|
-f{filter name}, --filter={filter name} - The name of a specific filter to run
|
|
|
|
-v, --version - Print ZoneMinder version
|
|
|
|
|
|
|
|
=cut
|
2005-12-16 18:05:29 +08:00
|
|
|
use strict;
|
|
|
|
use bytes;
|
|
|
|
|
|
|
|
# ==========================================================================
|
|
|
|
#
|
|
|
|
# These are the elements you can edit to suit your installation
|
|
|
|
#
|
|
|
|
# ==========================================================================
|
|
|
|
|
2005-12-16 21:16:37 +08:00
|
|
|
use constant START_DELAY => 5; # How long to wait before starting
|
|
|
|
|
2005-12-16 18:36:22 +08:00
|
|
|
# ==========================================================================
|
|
|
|
#
|
|
|
|
# You shouldn't need to change anything from here downwards
|
|
|
|
#
|
|
|
|
# ==========================================================================
|
|
|
|
|
2009-06-08 17:11:56 +08:00
|
|
|
@EXTRA_PERL_LIB@
|
2005-12-16 18:36:22 +08:00
|
|
|
use ZoneMinder;
|
2015-12-18 01:57:14 +08:00
|
|
|
require ZoneMinder::Filter;
|
2005-12-16 18:36:22 +08:00
|
|
|
use DBI;
|
|
|
|
use POSIX;
|
|
|
|
use Time::HiRes qw/gettimeofday/;
|
2015-12-18 01:57:14 +08:00
|
|
|
#use Date::Manip;
|
2005-12-16 18:36:22 +08:00
|
|
|
use Getopt::Long;
|
2015-04-11 09:14:29 +08:00
|
|
|
use autouse 'Pod::Usage'=>qw(pod2usage);
|
|
|
|
use autouse 'Data::Dumper'=>qw(Dumper);
|
2005-12-16 18:36:22 +08:00
|
|
|
|
2015-04-11 09:14:29 +08:00
|
|
|
use constant EVENT_PATH => ($Config{ZM_DIR_EVENTS}=~m|/|)
|
|
|
|
? $Config{ZM_DIR_EVENTS}
|
|
|
|
: ($Config{ZM_PATH_WEB}.'/'.$Config{ZM_DIR_EVENTS})
|
|
|
|
;
|
2005-12-16 18:36:22 +08:00
|
|
|
|
2011-06-21 17:19:10 +08:00
|
|
|
logInit();
|
|
|
|
logSetSignal();
|
2005-12-21 01:03:33 +08:00
|
|
|
|
2013-12-17 05:32:02 +08:00
|
|
|
if ( $Config{ZM_OPT_UPLOAD} )
|
2005-12-16 18:05:29 +08:00
|
|
|
{
|
2007-09-04 22:52:26 +08:00
|
|
|
# Comment these out if you don't have them and don't want to upload
|
|
|
|
# or don't want to use that format
|
2013-12-17 05:32:02 +08:00
|
|
|
if ( $Config{ZM_UPLOAD_ARCH_FORMAT} eq "zip" )
|
2007-09-04 22:52:26 +08:00
|
|
|
{
|
|
|
|
require Archive::Zip;
|
|
|
|
import Archive::Zip qw( :ERROR_CODES :CONSTANTS );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
require Archive::Tar;
|
|
|
|
}
|
2013-12-17 05:32:02 +08:00
|
|
|
if ( $Config{ZM_UPLOAD_PROTOCOL} eq "ftp" )
|
2011-08-23 22:10:20 +08:00
|
|
|
{
|
|
|
|
require Net::FTP;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
require Net::SFTP::Foreign;
|
|
|
|
}
|
2005-12-16 18:05:29 +08:00
|
|
|
}
|
|
|
|
|
2013-12-17 05:32:02 +08:00
|
|
|
if ( $Config{ZM_OPT_EMAIL} )
|
2005-12-16 18:05:29 +08:00
|
|
|
{
|
2013-12-17 05:32:02 +08:00
|
|
|
if ( $Config{ZM_NEW_MAIL_MODULES} )
|
2007-09-04 22:52:26 +08:00
|
|
|
{
|
|
|
|
require MIME::Lite;
|
|
|
|
require Net::SMTP;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
require MIME::Entity;
|
|
|
|
}
|
2005-12-16 18:05:29 +08:00
|
|
|
}
|
|
|
|
|
2013-12-17 05:32:02 +08:00
|
|
|
if ( $Config{ZM_OPT_MESSAGE} )
|
2005-12-16 18:05:29 +08:00
|
|
|
{
|
2013-12-17 05:32:02 +08:00
|
|
|
if ( $Config{ZM_NEW_MAIL_MODULES} )
|
2007-09-04 22:52:26 +08:00
|
|
|
{
|
|
|
|
require MIME::Lite;
|
|
|
|
require Net::SMTP;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
require MIME::Entity;
|
|
|
|
}
|
2005-12-16 18:05:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
$| = 1;
|
|
|
|
|
|
|
|
$ENV{PATH} = '/bin:/usr/bin';
|
|
|
|
$ENV{SHELL} = '/bin/sh' if exists $ENV{SHELL};
|
|
|
|
delete @ENV{qw(IFS CDPATH ENV BASH_ENV)};
|
|
|
|
|
2013-12-17 05:32:02 +08:00
|
|
|
my $delay = $Config{ZM_FILTER_EXECUTE_INTERVAL};
|
2005-12-16 18:05:29 +08:00
|
|
|
my $event_id = 0;
|
2006-10-23 23:32:22 +08:00
|
|
|
my $filter_parm = "";
|
2015-01-07 22:00:46 +08:00
|
|
|
my $version = 0;
|
2005-12-16 18:05:29 +08:00
|
|
|
|
|
|
|
#
|
|
|
|
|
2015-04-11 09:14:29 +08:00
|
|
|
GetOptions(
|
|
|
|
'filter=s' =>\$filter_parm,
|
|
|
|
'version' =>\$version
|
|
|
|
) or pod2usage(-exitstatus => -1);
|
|
|
|
|
2015-01-07 22:00:46 +08:00
|
|
|
if ( $version ) {
|
2015-04-11 09:14:29 +08:00
|
|
|
print ZoneMinder::Base::ZM_VERSION . "\n";
|
|
|
|
exit(0);
|
2015-01-07 22:00:46 +08:00
|
|
|
}
|
2005-12-16 18:05:29 +08:00
|
|
|
|
2013-12-20 02:41:55 +08:00
|
|
|
if ( ! EVENT_PATH ) {
|
|
|
|
Error( "No event path defined. Config was $Config{ZM_DIR_EVENTS}\n" );
|
|
|
|
die;
|
|
|
|
}
|
|
|
|
|
|
|
|
chdir( EVENT_PATH );
|
2005-12-16 18:05:29 +08:00
|
|
|
|
2007-09-07 23:39:44 +08:00
|
|
|
my $dbh = zmDbConnect();
|
2005-12-16 18:05:29 +08:00
|
|
|
|
2014-01-03 01:15:06 +08:00
|
|
|
if ( $filter_parm )
|
2006-10-23 23:32:22 +08:00
|
|
|
{
|
|
|
|
Info( "Scanning for events using filter '$filter_parm'\n" );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Info( "Scanning for events\n" );
|
|
|
|
}
|
2005-12-16 18:05:29 +08:00
|
|
|
|
2006-10-23 23:32:22 +08:00
|
|
|
if ( !$filter_parm )
|
|
|
|
{
|
2013-12-20 02:41:55 +08:00
|
|
|
sleep( START_DELAY );
|
2006-10-23 23:32:22 +08:00
|
|
|
}
|
2005-12-16 18:05:29 +08:00
|
|
|
|
2006-10-23 23:32:22 +08:00
|
|
|
my $filters;
|
2005-12-16 18:05:29 +08:00
|
|
|
my $last_action = 0;
|
|
|
|
|
|
|
|
while( 1 )
|
|
|
|
{
|
2015-04-11 09:14:29 +08:00
|
|
|
my $now = time;
|
2015-02-06 22:30:48 +08:00
|
|
|
if ( ($now - $last_action) > $Config{ZM_FILTER_RELOAD_DELAY} )
|
2007-09-04 22:52:26 +08:00
|
|
|
{
|
|
|
|
Debug( "Reloading filters\n" );
|
2015-02-06 22:30:48 +08:00
|
|
|
$last_action = $now;
|
2007-09-04 22:52:26 +08:00
|
|
|
$filters = getFilters( $filter_parm );
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach my $filter ( @$filters )
|
|
|
|
{
|
|
|
|
checkFilter( $filter );
|
|
|
|
}
|
2005-12-16 18:05:29 +08:00
|
|
|
|
2006-10-23 23:32:22 +08:00
|
|
|
last if ( $filter_parm );
|
|
|
|
|
2007-09-04 22:52:26 +08:00
|
|
|
Debug( "Sleeping for $delay seconds\n" );
|
|
|
|
sleep( $delay );
|
2005-12-16 18:05:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
sub getFilters
|
|
|
|
{
|
2006-10-23 23:32:22 +08:00
|
|
|
my $filter_name = shift;
|
|
|
|
|
2007-09-04 22:52:26 +08:00
|
|
|
my @filters;
|
2015-04-11 09:14:29 +08:00
|
|
|
my $sql = "SELECT * FROM Filters WHERE";
|
2006-10-23 23:32:22 +08:00
|
|
|
if ( $filter_name )
|
|
|
|
{
|
|
|
|
$sql .= " Name = ? and";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$sql .= " Background = 1 and";
|
|
|
|
}
|
2015-04-11 09:14:29 +08:00
|
|
|
$sql .= "( AutoArchive = 1
|
|
|
|
or AutoVideo = 1
|
|
|
|
or AutoUpload = 1
|
|
|
|
or AutoEmail = 1
|
|
|
|
or AutoMessage = 1
|
|
|
|
or AutoExecute = 1
|
|
|
|
or AutoDelete = 1
|
|
|
|
) ORDER BY Name";
|
|
|
|
my $sth = $dbh->prepare_cached( $sql )
|
|
|
|
or Fatal( "Can't prepare '$sql': ".$dbh->errstr() );
|
2007-09-04 22:52:26 +08:00
|
|
|
my $res;
|
2006-10-23 23:32:22 +08:00
|
|
|
if ( $filter_name )
|
|
|
|
{
|
2015-04-11 09:14:29 +08:00
|
|
|
$res = $sth->execute( $filter_name )
|
|
|
|
or Fatal( "Can't execute '$sql': ".$sth->errstr() );
|
2006-10-23 23:32:22 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-04-11 09:14:29 +08:00
|
|
|
$res = $sth->execute()
|
|
|
|
or Fatal( "Can't execute '$sql': ".$sth->errstr() );
|
2006-10-23 23:32:22 +08:00
|
|
|
}
|
2007-09-04 22:52:26 +08:00
|
|
|
FILTER: while( my $db_filter = $sth->fetchrow_hashref() )
|
|
|
|
{
|
2015-12-18 01:57:14 +08:00
|
|
|
my $filter = new ZoneMinder::Filter( $$db_filter{Id}, $db_filter );
|
2007-09-04 22:52:26 +08:00
|
|
|
Debug( "Found filter '$db_filter->{Name}'\n" );
|
2015-12-18 01:57:14 +08:00
|
|
|
my $sql = $filter->Sql();
|
2007-09-04 22:52:26 +08:00
|
|
|
|
2015-12-18 01:57:14 +08:00
|
|
|
if ( ! $sql ) {
|
|
|
|
Error( "Error parsing Sql. skipping filter '$db_filter->{Name}'\n" );
|
|
|
|
next FILTER;
|
|
|
|
}
|
|
|
|
push( @filters, $filter );
|
2007-09-04 22:52:26 +08:00
|
|
|
}
|
|
|
|
$sth->finish();
|
2015-12-18 01:57:14 +08:00
|
|
|
Debug( "Got " . @filters . " filters" );
|
2007-09-04 22:52:26 +08:00
|
|
|
return( \@filters );
|
2005-12-16 18:05:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
sub checkFilter
|
|
|
|
{
|
2007-09-04 22:52:26 +08:00
|
|
|
my $filter = shift;
|
|
|
|
|
|
|
|
Debug( "Checking filter '$filter->{Name}'".
|
|
|
|
($filter->{AutoDelete}?", delete":"").
|
|
|
|
($filter->{AutoArchive}?", archive":"").
|
|
|
|
($filter->{AutoVideo}?", video":"").
|
|
|
|
($filter->{AutoUpload}?", upload":"").
|
|
|
|
($filter->{AutoEmail}?", email":"").
|
|
|
|
($filter->{AutoMessage}?", message":"").
|
|
|
|
($filter->{AutoExecute}?", execute":"").
|
|
|
|
"\n"
|
|
|
|
);
|
2015-04-11 09:14:29 +08:00
|
|
|
|
2015-12-18 01:57:14 +08:00
|
|
|
foreach my $event ( $filter->Execute() ) {
|
2007-09-04 22:52:26 +08:00
|
|
|
Debug( "Checking event $event->{Id}\n" );
|
|
|
|
my $delete_ok = !undef;
|
2015-12-18 01:57:14 +08:00
|
|
|
$dbh->ping();
|
2007-09-04 22:52:26 +08:00
|
|
|
if ( $filter->{AutoArchive} )
|
|
|
|
{
|
|
|
|
Info( "Archiving event $event->{Id}\n" );
|
|
|
|
# Do it individually to avoid locking up the table for new events
|
|
|
|
my $sql = "update Events set Archived = 1 where Id = ?";
|
2015-04-11 09:14:29 +08:00
|
|
|
my $sth = $dbh->prepare_cached( $sql )
|
|
|
|
or Fatal( "Can't prepare '$sql': ".$dbh->errstr() );
|
|
|
|
my $res = $sth->execute( $event->{Id} )
|
2015-12-18 01:57:14 +08:00
|
|
|
or Error( "Can't execute '$sql': ".$sth->errstr() );
|
2007-09-04 22:52:26 +08:00
|
|
|
}
|
2013-12-17 05:32:02 +08:00
|
|
|
if ( $Config{ZM_OPT_FFMPEG} && $filter->{AutoVideo} )
|
2007-09-04 22:52:26 +08:00
|
|
|
{
|
|
|
|
if ( !$event->{Videoed} )
|
|
|
|
{
|
|
|
|
$delete_ok = undef if ( !generateVideo( $filter, $event ) );
|
|
|
|
}
|
|
|
|
}
|
2013-12-17 05:32:02 +08:00
|
|
|
if ( $Config{ZM_OPT_EMAIL} && $filter->{AutoEmail} )
|
2007-09-04 22:52:26 +08:00
|
|
|
{
|
|
|
|
if ( !$event->{Emailed} )
|
|
|
|
{
|
|
|
|
$delete_ok = undef if ( !sendEmail( $filter, $event ) );
|
|
|
|
}
|
|
|
|
}
|
2013-12-17 05:32:02 +08:00
|
|
|
if ( $Config{ZM_OPT_MESSAGE} && $filter->{AutoMessage} )
|
2007-09-04 22:52:26 +08:00
|
|
|
{
|
|
|
|
if ( !$event->{Messaged} )
|
|
|
|
{
|
|
|
|
$delete_ok = undef if ( !sendMessage( $filter, $event ) );
|
|
|
|
}
|
|
|
|
}
|
2013-12-17 05:32:02 +08:00
|
|
|
if ( $Config{ZM_OPT_UPLOAD} && $filter->{AutoUpload} )
|
2007-09-04 22:52:26 +08:00
|
|
|
{
|
|
|
|
if ( !$event->{Uploaded} )
|
|
|
|
{
|
|
|
|
$delete_ok = undef if ( !uploadArchFile( $filter, $event ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( $filter->{AutoExecute} )
|
|
|
|
{
|
|
|
|
if ( !$event->{Execute} )
|
|
|
|
{
|
|
|
|
$delete_ok = undef if ( !executeCommand( $filter, $event ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( $filter->{AutoDelete} )
|
|
|
|
{
|
|
|
|
if ( $delete_ok )
|
|
|
|
{
|
2015-02-06 22:30:48 +08:00
|
|
|
Info( "Deleting event $event->{Id} from Monitor $event->{MonitorId}\n" );
|
2007-09-04 22:52:26 +08:00
|
|
|
# Do it individually to avoid locking up the table for new events
|
|
|
|
my $sql = "delete from Events where Id = ?";
|
2015-04-11 09:14:29 +08:00
|
|
|
my $sth = $dbh->prepare_cached( $sql )
|
|
|
|
or Fatal( "Can't prepare '$sql': ".$dbh->errstr() );
|
|
|
|
my $res = $sth->execute( $event->{Id} )
|
|
|
|
or Fatal( "Can't execute '$sql': ".$sth->errstr() );
|
2007-09-04 22:52:26 +08:00
|
|
|
|
2013-12-17 05:32:02 +08:00
|
|
|
if ( ! $Config{ZM_OPT_FAST_DELETE} )
|
2007-09-04 22:52:26 +08:00
|
|
|
{
|
|
|
|
my $sql = "delete from Frames where EventId = ?";
|
2015-04-11 09:14:29 +08:00
|
|
|
my $sth = $dbh->prepare_cached( $sql )
|
|
|
|
or Fatal( "Can't prepare '$sql': ".$dbh->errstr() );
|
|
|
|
my $res = $sth->execute( $event->{Id} )
|
|
|
|
or Fatal( "Can't execute '$sql': ".$sth->errstr() );
|
2007-09-04 22:52:26 +08:00
|
|
|
|
|
|
|
$sql = "delete from Stats where EventId = ?";
|
2015-04-11 09:14:29 +08:00
|
|
|
$sth = $dbh->prepare_cached( $sql )
|
|
|
|
or Fatal( "Can't prepare '$sql': ".$dbh->errstr() );
|
|
|
|
$res = $sth->execute( $event->{Id} )
|
|
|
|
or Fatal( "Can't execute '$sql': ".$sth->errstr() );
|
2007-09-04 22:52:26 +08:00
|
|
|
|
2007-09-05 00:08:55 +08:00
|
|
|
deleteEventFiles( $event->{Id}, $event->{MonitorId} );
|
2007-09-04 22:52:26 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Error( "Unable to delete event $event->{Id} as previous operations failed\n" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-12-16 18:05:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
sub generateVideo
|
|
|
|
{
|
2007-09-04 22:52:26 +08:00
|
|
|
my $filter = shift;
|
|
|
|
my $event = shift;
|
|
|
|
my $phone = shift;
|
|
|
|
|
|
|
|
my $rate = $event->{DefaultRate}/100;
|
|
|
|
my $scale = $event->{DefaultScale}/100;
|
|
|
|
my $format;
|
|
|
|
|
2013-12-17 05:32:02 +08:00
|
|
|
my @ffmpeg_formats = split( /\s+/, $Config{ZM_FFMPEG_FORMATS} );
|
2007-09-04 22:52:26 +08:00
|
|
|
my $default_video_format;
|
|
|
|
my $default_phone_format;
|
|
|
|
foreach my $ffmpeg_format( @ffmpeg_formats )
|
|
|
|
{
|
|
|
|
if ( $ffmpeg_format =~ /^(.+)\*\*$/ )
|
|
|
|
{
|
|
|
|
$default_phone_format = $1;
|
|
|
|
}
|
|
|
|
elsif ( $ffmpeg_format =~ /^(.+)\*$/ )
|
|
|
|
{
|
|
|
|
$default_video_format = $1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( $phone && $default_phone_format )
|
|
|
|
{
|
|
|
|
$format = $default_phone_format;
|
|
|
|
}
|
|
|
|
elsif ( $default_video_format )
|
|
|
|
{
|
|
|
|
$format = $default_video_format;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$format = $ffmpeg_formats[0];
|
|
|
|
}
|
|
|
|
|
2015-04-11 09:14:29 +08:00
|
|
|
my $command = $Config{ZM_PATH_BIN}."/zmvideo.pl -e "
|
|
|
|
.$event->{Id}." -r ".$rate." -s ".$scale." -f ".$format;
|
2007-09-04 22:52:26 +08:00
|
|
|
my $output = qx($command);
|
|
|
|
chomp( $output );
|
|
|
|
my $status = $? >> 8;
|
2011-06-21 17:19:10 +08:00
|
|
|
if ( $status || logDebugging() )
|
2007-09-04 22:52:26 +08:00
|
|
|
{
|
|
|
|
Debug( "Output: $output\n" );
|
|
|
|
}
|
|
|
|
if ( $status )
|
|
|
|
{
|
|
|
|
Error( "Video generation '$command' failed with status: $status\n" );
|
|
|
|
if ( wantarray() )
|
|
|
|
{
|
|
|
|
return( undef, undef );
|
|
|
|
}
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
my $sql = "update Events set Videoed = 1 where Id = ?";
|
2015-04-11 09:14:29 +08:00
|
|
|
my $sth = $dbh->prepare_cached( $sql )
|
|
|
|
or Fatal( "Can't prepare '$sql': ".$dbh->errstr() );
|
|
|
|
my $res = $sth->execute( $event->{Id} )
|
|
|
|
or Fatal( "Can't execute '$sql': ".$sth->errstr() );
|
2007-09-04 22:52:26 +08:00
|
|
|
if ( wantarray() )
|
|
|
|
{
|
2015-04-11 09:14:29 +08:00
|
|
|
return( $format, sprintf( "%s/%s", getEventPath( $event ), $output ) );
|
2007-09-04 22:52:26 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return( 1 );
|
2005-12-16 18:05:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
sub uploadArchFile
|
|
|
|
{
|
2007-09-04 22:52:26 +08:00
|
|
|
my $filter = shift;
|
|
|
|
my $event = shift;
|
|
|
|
|
2013-12-17 05:32:02 +08:00
|
|
|
if ( ! $Config{ZM_UPLOAD_HOST} )
|
2009-03-04 01:51:27 +08:00
|
|
|
{
|
2011-08-23 22:10:20 +08:00
|
|
|
Error( "Cannot upload archive as no upload host defined" );
|
2009-03-04 01:51:27 +08:00
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2011-08-23 22:10:20 +08:00
|
|
|
my $archFile = $event->{MonitorName}.'-'.$event->{Id};
|
2015-04-11 09:14:29 +08:00
|
|
|
my $archImagePath = getEventPath( $event )
|
|
|
|
."/"
|
|
|
|
.(
|
|
|
|
( $Config{ZM_UPLOAD_ARCH_ANALYSE} )
|
|
|
|
? '{*analyse,*capture}'
|
|
|
|
: '*capture'
|
|
|
|
)
|
|
|
|
.".jpg"
|
|
|
|
;
|
2011-08-23 22:10:20 +08:00
|
|
|
my @archImageFiles = glob($archImagePath);
|
|
|
|
my $archLocPath;
|
2007-09-04 22:52:26 +08:00
|
|
|
|
2011-08-23 22:10:20 +08:00
|
|
|
my $archError = 0;
|
2013-12-17 05:32:02 +08:00
|
|
|
if ( $Config{ZM_UPLOAD_ARCH_FORMAT} eq "zip" )
|
2007-09-04 22:52:26 +08:00
|
|
|
{
|
2011-08-23 22:10:20 +08:00
|
|
|
$archFile .= '.zip';
|
2013-12-17 05:32:02 +08:00
|
|
|
$archLocPath = $Config{ZM_UPLOAD_LOC_DIR}.'/'.$archFile;
|
2007-09-04 22:52:26 +08:00
|
|
|
my $zip = Archive::Zip->new();
|
2011-08-23 22:10:20 +08:00
|
|
|
Info( "Creating upload file '$archLocPath', ".int(@archImageFiles)." files\n" );
|
2007-09-04 22:52:26 +08:00
|
|
|
|
|
|
|
my $status = &AZ_OK;
|
2011-08-23 22:10:20 +08:00
|
|
|
foreach my $imageFile ( @archImageFiles )
|
2007-09-04 22:52:26 +08:00
|
|
|
{
|
2011-08-23 22:10:20 +08:00
|
|
|
Debug( "Adding $imageFile\n" );
|
|
|
|
my $member = $zip->addFile( $imageFile );
|
2010-03-01 03:16:40 +08:00
|
|
|
if ( !$member )
|
|
|
|
{
|
2011-08-23 22:10:20 +08:00
|
|
|
Error( "Unable to add image file $imageFile to zip archive $archLocPath" );
|
|
|
|
$archError = 1;
|
2010-03-01 03:16:40 +08:00
|
|
|
last;
|
|
|
|
}
|
2015-04-11 09:14:29 +08:00
|
|
|
$member->desiredCompressionMethod( $Config{ZM_UPLOAD_ARCH_COMPRESS}
|
|
|
|
? &COMPRESSION_DEFLATED
|
|
|
|
: &COMPRESSION_STORED
|
|
|
|
);
|
2007-09-04 22:52:26 +08:00
|
|
|
}
|
2011-08-23 22:10:20 +08:00
|
|
|
if ( !$archError )
|
2010-03-01 03:16:40 +08:00
|
|
|
{
|
2011-08-23 22:10:20 +08:00
|
|
|
$status = $zip->writeToFileNamed( $archLocPath );
|
2007-09-04 22:52:26 +08:00
|
|
|
|
2011-08-23 22:10:20 +08:00
|
|
|
if ( $archError = ($status != &AZ_OK) )
|
2010-03-01 03:16:40 +08:00
|
|
|
{
|
|
|
|
Error( "Zip error: $status\n " );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2007-09-04 22:52:26 +08:00
|
|
|
{
|
2011-08-23 22:10:20 +08:00
|
|
|
Error( "Error adding images to zip archive $archLocPath, not writing" );
|
2007-09-04 22:52:26 +08:00
|
|
|
}
|
|
|
|
}
|
2013-12-17 05:32:02 +08:00
|
|
|
elsif ( $Config{ZM_UPLOAD_ARCH_FORMAT} eq "tar" )
|
2007-09-04 22:52:26 +08:00
|
|
|
{
|
2013-12-17 05:32:02 +08:00
|
|
|
if ( $Config{ZM_UPLOAD_ARCH_COMPRESS} )
|
2007-09-04 22:52:26 +08:00
|
|
|
{
|
2011-08-23 22:10:20 +08:00
|
|
|
$archFile .= '.tar.gz';
|
2007-09-04 22:52:26 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-08-23 22:10:20 +08:00
|
|
|
$archFile .= '.tar';
|
2007-09-04 22:52:26 +08:00
|
|
|
}
|
2013-12-17 05:32:02 +08:00
|
|
|
$archLocPath = $Config{ZM_UPLOAD_LOC_DIR}.'/'.$archFile;
|
2011-08-23 22:10:20 +08:00
|
|
|
Info( "Creating upload file '$archLocPath', ".int(@archImageFiles)." files\n" );
|
2007-09-04 22:52:26 +08:00
|
|
|
|
2015-04-11 09:14:29 +08:00
|
|
|
if ( $archError = !Archive::Tar->create_archive(
|
|
|
|
$archLocPath,
|
|
|
|
$Config{ZM_UPLOAD_ARCH_COMPRESS},
|
|
|
|
@archImageFiles
|
|
|
|
)
|
|
|
|
)
|
2007-09-04 22:52:26 +08:00
|
|
|
{
|
|
|
|
Error( "Tar error: ".Archive::Tar->error()."\n " );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-23 22:10:20 +08:00
|
|
|
if ( $archError )
|
2007-09-04 22:52:26 +08:00
|
|
|
{
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-12-17 05:32:02 +08:00
|
|
|
if ( $Config{ZM_UPLOAD_PROTOCOL} eq "ftp" )
|
2007-09-04 22:52:26 +08:00
|
|
|
{
|
2013-12-17 05:32:02 +08:00
|
|
|
Info( "Uploading to ".$Config{ZM_UPLOAD_HOST}." using FTP\n" );
|
2015-04-11 09:14:29 +08:00
|
|
|
my $ftp = Net::FTP->new(
|
|
|
|
$Config{ZM_UPLOAD_HOST},
|
|
|
|
Timeout=>$Config{ZM_UPLOAD_TIMEOUT},
|
|
|
|
Passive=>$Config{ZM_UPLOAD_FTP_PASSIVE},
|
|
|
|
Debug=>$Config{ZM_UPLOAD_DEBUG}
|
|
|
|
);
|
2011-08-23 22:10:20 +08:00
|
|
|
if ( !$ftp )
|
|
|
|
{
|
|
|
|
Error( "Can't create FTP connection: $@" );
|
|
|
|
return( 0 );
|
|
|
|
}
|
2015-04-11 09:14:29 +08:00
|
|
|
$ftp->login( $Config{ZM_UPLOAD_USER}, $Config{ZM_UPLOAD_PASS} )
|
|
|
|
or Error( "FTP - Can't login" );
|
|
|
|
$ftp->binary()
|
|
|
|
or Error( "FTP - Can't go binary" );
|
|
|
|
$ftp->cwd( $Config{ZM_UPLOAD_REM_DIR} )
|
|
|
|
or Error( "FTP - Can't cwd" )
|
|
|
|
if ( $Config{ZM_UPLOAD_REM_DIR} );
|
|
|
|
$ftp->put( $archLocPath )
|
|
|
|
or Error( "FTP - Can't upload '$archLocPath'" );
|
|
|
|
$ftp->quit()
|
|
|
|
or Error( "FTP - Can't quit" );
|
2007-09-04 22:52:26 +08:00
|
|
|
}
|
2011-08-23 22:10:20 +08:00
|
|
|
else
|
|
|
|
{
|
2013-12-17 05:32:02 +08:00
|
|
|
my $host = $Config{ZM_UPLOAD_HOST};
|
2015-04-11 09:14:29 +08:00
|
|
|
$host .= ":".$Config{ZM_UPLOAD_PORT}
|
|
|
|
if $Config{ZM_UPLOAD_PORT};
|
2011-08-23 22:10:20 +08:00
|
|
|
Info( "Uploading to ".$host." using SFTP\n" );
|
2013-12-17 05:32:02 +08:00
|
|
|
my %sftpOptions = ( host=>$Config{ZM_UPLOAD_HOST}, user=>$Config{ZM_UPLOAD_USER} );
|
2015-04-11 09:14:29 +08:00
|
|
|
$sftpOptions{password} = $Config{ZM_UPLOAD_PASS}
|
|
|
|
if $Config{ZM_UPLOAD_PASS};
|
|
|
|
$sftpOptions{port} = $Config{ZM_UPLOAD_PORT}
|
|
|
|
if $Config{ZM_UPLOAD_PORT};
|
|
|
|
$sftpOptions{timeout} = $Config{ZM_UPLOAD_TIMEOUT}
|
|
|
|
if $Config{ZM_UPLOAD_TIMEOUT};
|
2011-08-23 22:10:20 +08:00
|
|
|
$sftpOptions{more} = [ '-o'=>'StrictHostKeyChecking=no' ];
|
2015-04-11 09:14:29 +08:00
|
|
|
$Net::SFTP::Foreign::debug = -1
|
|
|
|
if $Config{ZM_UPLOAD_DEBUG};
|
2013-12-17 05:32:02 +08:00
|
|
|
my $sftp = Net::SFTP::Foreign->new( $Config{ZM_UPLOAD_HOST}, %sftpOptions );
|
2011-08-23 22:10:20 +08:00
|
|
|
if ( $sftp->error )
|
|
|
|
{
|
|
|
|
Error( "Can't create SFTP connection: ".$sftp->error );
|
|
|
|
return( 0 );
|
|
|
|
}
|
2015-04-11 09:14:29 +08:00
|
|
|
$sftp->setcwd( $Config{ZM_UPLOAD_REM_DIR} )
|
|
|
|
or Error( "SFTP - Can't setcwd: ".$sftp->error )
|
|
|
|
if $Config{ZM_UPLOAD_REM_DIR};
|
|
|
|
$sftp->put( $archLocPath, $archFile )
|
|
|
|
or Error( "SFTP - Can't upload '$archLocPath': ".$sftp->error );
|
2011-08-23 22:10:20 +08:00
|
|
|
}
|
|
|
|
unlink( $archLocPath );
|
2007-09-04 22:52:26 +08:00
|
|
|
my $sql = "update Events set Uploaded = 1 where Id = ?";
|
2015-04-11 09:14:29 +08:00
|
|
|
my $sth = $dbh->prepare_cached( $sql )
|
|
|
|
or Fatal( "Can't prepare '$sql': ".$dbh->errstr() );
|
|
|
|
my $res = $sth->execute( $event->{Id} )
|
|
|
|
or Fatal( "Can't execute '$sql': ".$sth->errstr() );
|
2007-09-04 22:52:26 +08:00
|
|
|
}
|
|
|
|
return( 1 );
|
2005-12-16 18:05:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
sub substituteTags
|
|
|
|
{
|
2007-09-04 22:52:26 +08:00
|
|
|
my $text = shift;
|
|
|
|
my $filter = shift;
|
|
|
|
my $event = shift;
|
|
|
|
my $attachments_ref = shift;
|
|
|
|
|
|
|
|
# First we'd better check what we need to get
|
|
|
|
# We have a filter and an event, do we need any more
|
|
|
|
# monitor information?
|
|
|
|
my $need_monitor = $text =~ /%(?:MET|MEH|MED|MEW|MEN|MEA)%/;
|
|
|
|
|
|
|
|
my $monitor = {};
|
|
|
|
if ( $need_monitor )
|
|
|
|
{
|
|
|
|
my $db_now = strftime( "%Y-%m-%d %H:%M:%S", localtime() );
|
2015-04-11 09:14:29 +08:00
|
|
|
my $sql = "SELECT
|
|
|
|
M.Id,
|
|
|
|
count(E.Id) as EventCount,
|
|
|
|
count(if(E.Archived,1,NULL))
|
|
|
|
as ArchEventCount,
|
|
|
|
count(if(E.StartTime>'$db_now' - INTERVAL 1 HOUR && E.Archived = 0,1,NULL))
|
|
|
|
as HourEventCount,
|
|
|
|
count(if(E.StartTime>'$db_now' - INTERVAL 1 DAY && E.Archived = 0,1,NULL))
|
|
|
|
as DayEventCount,
|
|
|
|
count(if(E.StartTime>'$db_now' - INTERVAL 7 DAY && E.Archived = 0,1,NULL))
|
|
|
|
as WeekEventCount,
|
|
|
|
count(if(E.StartTime>'$db_now' - INTERVAL 1 MONTH && E.Archived = 0,1,NULL))
|
|
|
|
as MonthEventCount
|
|
|
|
FROM Monitors as M LEFT JOIN Events as E on E.MonitorId = M.Id
|
|
|
|
WHERE MonitorId = ?
|
|
|
|
GROUP BY E.MonitorId
|
|
|
|
ORDER BY Id"
|
|
|
|
;
|
|
|
|
my $sth = $dbh->prepare_cached( $sql )
|
|
|
|
or Fatal( "Can't prepare '$sql': ".$dbh->errstr() );
|
|
|
|
my $res = $sth->execute( $event->{MonitorId} )
|
|
|
|
or Fatal( "Can't execute '$sql': ".$sth->errstr() );
|
2007-09-04 22:52:26 +08:00
|
|
|
$monitor = $sth->fetchrow_hashref();
|
|
|
|
$sth->finish();
|
|
|
|
return() if ( !$monitor );
|
|
|
|
}
|
|
|
|
|
|
|
|
# Do we need the image information too?
|
|
|
|
my $need_images = $text =~ /%(?:EPI1|EPIM|EI1|EIM)%/;
|
|
|
|
my $first_alarm_frame;
|
|
|
|
my $max_alarm_frame;
|
|
|
|
my $max_alarm_score = 0;
|
|
|
|
if ( $need_images )
|
|
|
|
{
|
2015-04-11 09:14:29 +08:00
|
|
|
my $sql = "SELECT * FROM Frames
|
|
|
|
WHERE EventId = ? AND Type = 'Alarm'
|
|
|
|
ORDER BY FrameId"
|
|
|
|
;
|
|
|
|
my $sth = $dbh->prepare_cached( $sql )
|
|
|
|
or Fatal( "Can't prepare '$sql': ".$dbh->errstr() );
|
|
|
|
my $res = $sth->execute( $event->{Id} )
|
|
|
|
or Fatal( "Can't execute '$sql': ".$sth->errstr() );
|
2007-09-04 22:52:26 +08:00
|
|
|
while( my $frame = $sth->fetchrow_hashref() )
|
|
|
|
{
|
|
|
|
if ( !$first_alarm_frame )
|
|
|
|
{
|
|
|
|
$first_alarm_frame = $frame;
|
|
|
|
}
|
|
|
|
if ( $frame->{Score} > $max_alarm_score )
|
|
|
|
{
|
|
|
|
$max_alarm_frame = $frame;
|
|
|
|
$max_alarm_score = $frame->{Score};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$sth->finish();
|
|
|
|
}
|
|
|
|
|
2013-12-20 02:01:52 +08:00
|
|
|
my $url = $Config{ZM_URL};
|
2007-09-04 22:52:26 +08:00
|
|
|
$text =~ s/%ZP%/$url/g;
|
|
|
|
$text =~ s/%MN%/$event->{MonitorName}/g;
|
|
|
|
$text =~ s/%MET%/$monitor->{EventCount}/g;
|
|
|
|
$text =~ s/%MEH%/$monitor->{HourEventCount}/g;
|
|
|
|
$text =~ s/%MED%/$monitor->{DayEventCount}/g;
|
|
|
|
$text =~ s/%MEW%/$monitor->{WeekEventCount}/g;
|
|
|
|
$text =~ s/%MEM%/$monitor->{MonthEventCount}/g;
|
|
|
|
$text =~ s/%MEA%/$monitor->{ArchEventCount}/g;
|
|
|
|
$text =~ s/%MP%/$url?view=watch&mid=$event->{MonitorId}/g;
|
|
|
|
$text =~ s/%MPS%/$url?view=watchfeed&mid=$event->{MonitorId}&mode=stream/g;
|
|
|
|
$text =~ s/%MPI%/$url?view=watchfeed&mid=$event->{MonitorId}&mode=still/g;
|
|
|
|
$text =~ s/%EP%/$url?view=event&mid=$event->{MonitorId}&eid=$event->{Id}/g;
|
|
|
|
$text =~ s/%EPS%/$url?view=event&mode=stream&mid=$event->{MonitorId}&eid=$event->{Id}/g;
|
|
|
|
$text =~ s/%EPI%/$url?view=event&mode=still&mid=$event->{MonitorId}&eid=$event->{Id}/g;
|
|
|
|
$text =~ s/%EI%/$event->{Id}/g;
|
|
|
|
$text =~ s/%EN%/$event->{Name}/g;
|
|
|
|
$text =~ s/%EC%/$event->{Cause}/g;
|
|
|
|
$text =~ s/%ED%/$event->{Notes}/g;
|
|
|
|
$text =~ s/%ET%/$event->{StartTime}/g;
|
|
|
|
$text =~ s/%EL%/$event->{Length}/g;
|
|
|
|
$text =~ s/%EF%/$event->{Frames}/g;
|
|
|
|
$text =~ s/%EFA%/$event->{AlarmFrames}/g;
|
|
|
|
$text =~ s/%EST%/$event->{TotScore}/g;
|
|
|
|
$text =~ s/%ESA%/$event->{AvgScore}/g;
|
|
|
|
$text =~ s/%ESM%/$event->{MaxScore}/g;
|
|
|
|
if ( $first_alarm_frame )
|
|
|
|
{
|
|
|
|
$text =~ s/%EPI1%/$url?view=frame&mid=$event->{MonitorId}&eid=$event->{Id}&fid=$first_alarm_frame->{FrameId}/g;
|
|
|
|
$text =~ s/%EPIM%/$url?view=frame&mid=$event->{MonitorId}&eid=$event->{Id}&fid=$max_alarm_frame->{FrameId}/g;
|
|
|
|
if ( $attachments_ref && $text =~ s/%EI1%//g )
|
|
|
|
{
|
2015-04-11 09:14:29 +08:00
|
|
|
push( @$attachments_ref,
|
|
|
|
{
|
|
|
|
type=>"image/jpeg",
|
|
|
|
path=>sprintf(
|
|
|
|
"%s/%0".$Config{ZM_EVENT_IMAGE_DIGITS}."d-capture.jpg",
|
|
|
|
getEventPath( $event ),
|
|
|
|
$first_alarm_frame->{FrameId}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
);
|
2007-09-04 22:52:26 +08:00
|
|
|
}
|
|
|
|
if ( $attachments_ref && $text =~ s/%EIM%//g )
|
|
|
|
{
|
|
|
|
# Don't attach the same image twice
|
2015-04-11 09:14:29 +08:00
|
|
|
if ( !@$attachments_ref
|
|
|
|
|| ($first_alarm_frame->{FrameId} != $max_alarm_frame->{FrameId} )
|
|
|
|
)
|
2007-09-04 22:52:26 +08:00
|
|
|
{
|
2015-04-11 09:14:29 +08:00
|
|
|
push( @$attachments_ref,
|
|
|
|
{
|
|
|
|
type=>"image/jpeg",
|
|
|
|
path=>sprintf(
|
|
|
|
"%s/%0".$Config{ZM_EVENT_IMAGE_DIGITS}."d-capture.jpg",
|
|
|
|
getEventPath( $event ),
|
|
|
|
$max_alarm_frame->{FrameId}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
);
|
2007-09-04 22:52:26 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-12-17 05:32:02 +08:00
|
|
|
if ( $attachments_ref && $Config{ZM_OPT_FFMPEG} )
|
2007-09-04 22:52:26 +08:00
|
|
|
{
|
|
|
|
if ( $text =~ s/%EV%//g )
|
|
|
|
{
|
|
|
|
my ( $format, $path ) = generateVideo( $filter, $event );
|
|
|
|
if ( !$format )
|
|
|
|
{
|
|
|
|
return( undef );
|
|
|
|
}
|
|
|
|
push( @$attachments_ref, { type=>"video/$format", path=>$path } );
|
|
|
|
}
|
|
|
|
if ( $text =~ s/%EVM%//g )
|
|
|
|
{
|
|
|
|
my ( $format, $path ) = generateVideo( $filter, $event, 1 );
|
|
|
|
if ( !$format )
|
|
|
|
{
|
|
|
|
return( undef );
|
|
|
|
}
|
|
|
|
push( @$attachments_ref, { type=>"video/$format", path=>$path } );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$text =~ s/%FN%/$filter->{Name}/g;
|
|
|
|
( my $filter_name = $filter->{Name} ) =~ s/ /+/g;
|
|
|
|
$text =~ s/%FP%/$url?view=filter&mid=$event->{MonitorId}&filter_name=$filter_name/g;
|
2015-04-11 09:14:29 +08:00
|
|
|
|
2007-09-04 22:52:26 +08:00
|
|
|
return( $text );
|
2005-12-16 18:05:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
sub sendEmail
|
|
|
|
{
|
2007-09-04 22:52:26 +08:00
|
|
|
my $filter = shift;
|
|
|
|
my $event = shift;
|
|
|
|
|
2013-12-17 05:32:02 +08:00
|
|
|
if ( ! $Config{ZM_FROM_EMAIL} )
|
2007-09-04 22:52:26 +08:00
|
|
|
{
|
2011-08-23 22:10:20 +08:00
|
|
|
Error( "No 'from' email address defined, not sending email" );
|
2007-09-04 22:52:26 +08:00
|
|
|
return( 0 );
|
|
|
|
}
|
2013-12-17 05:32:02 +08:00
|
|
|
if ( ! $Config{ZM_EMAIL_ADDRESS} )
|
2007-09-04 22:52:26 +08:00
|
|
|
{
|
2011-08-23 22:10:20 +08:00
|
|
|
Error( "No email address defined, not sending email" );
|
2007-09-04 22:52:26 +08:00
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
Info( "Creating notification email\n" );
|
|
|
|
|
2013-12-17 05:32:02 +08:00
|
|
|
my $subject = substituteTags( $Config{ZM_EMAIL_SUBJECT}, $filter, $event );
|
2007-09-04 22:52:26 +08:00
|
|
|
return( 0 ) if ( !$subject );
|
|
|
|
my @attachments;
|
2013-12-17 05:32:02 +08:00
|
|
|
my $body = substituteTags( $Config{ZM_EMAIL_BODY}, $filter, $event, \@attachments );
|
2007-09-04 22:52:26 +08:00
|
|
|
return( 0 ) if ( !$body );
|
|
|
|
|
|
|
|
Info( "Sending notification email '$subject'\n" );
|
|
|
|
|
|
|
|
eval
|
|
|
|
{
|
2013-12-17 05:32:02 +08:00
|
|
|
if ( $Config{ZM_NEW_MAIL_MODULES} )
|
2007-09-04 22:52:26 +08:00
|
|
|
{
|
|
|
|
### Create the multipart container
|
|
|
|
my $mail = MIME::Lite->new (
|
2013-12-17 05:32:02 +08:00
|
|
|
From => $Config{ZM_FROM_EMAIL},
|
|
|
|
To => $Config{ZM_EMAIL_ADDRESS},
|
2007-09-04 22:52:26 +08:00
|
|
|
Subject => $subject,
|
|
|
|
Type => "multipart/mixed"
|
|
|
|
);
|
|
|
|
### Add the text message part
|
|
|
|
$mail->attach (
|
|
|
|
Type => "TEXT",
|
|
|
|
Data => $body
|
|
|
|
);
|
|
|
|
### Add the attachments
|
|
|
|
foreach my $attachment ( @attachments )
|
|
|
|
{
|
|
|
|
Info( "Attaching '$attachment->{path}\n" );
|
|
|
|
$mail->attach(
|
|
|
|
Path => $attachment->{path},
|
|
|
|
Type => $attachment->{type},
|
|
|
|
Disposition => "attachment"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
### Send the Message
|
2013-12-17 05:32:02 +08:00
|
|
|
MIME::Lite->send( "smtp", $Config{ZM_EMAIL_HOST}, Timeout=>60 );
|
2007-09-04 22:52:26 +08:00
|
|
|
$mail->send();
|
2015-04-11 09:14:29 +08:00
|
|
|
}
|
2007-09-04 22:52:26 +08:00
|
|
|
else
|
|
|
|
{
|
|
|
|
my $mail = MIME::Entity->build(
|
2013-12-17 05:32:02 +08:00
|
|
|
From => $Config{ZM_FROM_EMAIL},
|
|
|
|
To => $Config{ZM_EMAIL_ADDRESS},
|
2007-09-04 22:52:26 +08:00
|
|
|
Subject => $subject,
|
|
|
|
Type => (($body=~/<html>/)?'text/html':'text/plain'),
|
|
|
|
Data => $body
|
|
|
|
);
|
|
|
|
|
|
|
|
foreach my $attachment ( @attachments )
|
|
|
|
{
|
|
|
|
Info( "Attaching '$attachment->{path}\n" );
|
|
|
|
$mail->attach(
|
|
|
|
Path => $attachment->{path},
|
|
|
|
Type => $attachment->{type},
|
|
|
|
Encoding => "base64"
|
|
|
|
);
|
|
|
|
}
|
2013-12-17 05:32:02 +08:00
|
|
|
$mail->smtpsend( Host => $Config{ZM_EMAIL_HOST}, MailFrom => $Config{ZM_FROM_EMAIL} );
|
2007-09-04 22:52:26 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
if ( $@ )
|
|
|
|
{
|
2011-08-23 22:10:20 +08:00
|
|
|
Error( "Can't send email: $@" );
|
2007-09-04 22:52:26 +08:00
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Info( "Notification email sent\n" );
|
|
|
|
}
|
|
|
|
my $sql = "update Events set Emailed = 1 where Id = ?";
|
2015-04-11 09:14:29 +08:00
|
|
|
my $sth = $dbh->prepare_cached( $sql )
|
|
|
|
or Fatal( "Can't prepare '$sql': ".$dbh->errstr() );
|
|
|
|
my $res = $sth->execute( $event->{Id} )
|
|
|
|
or Fatal( "Can't execute '$sql': ".$sth->errstr() );
|
2007-09-04 22:52:26 +08:00
|
|
|
|
|
|
|
return( 1 );
|
2005-12-16 18:05:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
sub sendMessage
|
|
|
|
{
|
2007-09-04 22:52:26 +08:00
|
|
|
my $filter = shift;
|
|
|
|
my $event = shift;
|
|
|
|
|
2013-12-17 05:32:02 +08:00
|
|
|
if ( ! $Config{ZM_FROM_EMAIL} )
|
2007-09-04 22:52:26 +08:00
|
|
|
{
|
2011-08-23 22:10:20 +08:00
|
|
|
Error( "No 'from' email address defined, not sending message" );
|
2007-09-04 22:52:26 +08:00
|
|
|
return( 0 );
|
|
|
|
}
|
2013-12-17 05:32:02 +08:00
|
|
|
if ( ! $Config{ZM_MESSAGE_ADDRESS} )
|
2007-09-04 22:52:26 +08:00
|
|
|
{
|
2011-08-23 22:10:20 +08:00
|
|
|
Error( "No message address defined, not sending message" );
|
2007-09-04 22:52:26 +08:00
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
Info( "Creating notification message\n" );
|
|
|
|
|
2013-12-17 05:32:02 +08:00
|
|
|
my $subject = substituteTags( $Config{ZM_MESSAGE_SUBJECT}, $filter, $event );
|
2007-09-04 22:52:26 +08:00
|
|
|
return( 0 ) if ( !$subject );
|
|
|
|
my @attachments;
|
2013-12-17 05:32:02 +08:00
|
|
|
my $body = substituteTags( $Config{ZM_MESSAGE_BODY}, $filter, $event, \@attachments );
|
2007-09-04 22:52:26 +08:00
|
|
|
return( 0 ) if ( !$body );
|
|
|
|
|
|
|
|
Info( "Sending notification message '$subject'\n" );
|
|
|
|
|
|
|
|
eval
|
|
|
|
{
|
2013-12-17 05:32:02 +08:00
|
|
|
if ( $Config{ZM_NEW_MAIL_MODULES} )
|
2007-09-04 22:52:26 +08:00
|
|
|
{
|
|
|
|
### Create the multipart container
|
|
|
|
my $mail = MIME::Lite->new (
|
2013-12-17 05:32:02 +08:00
|
|
|
From => $Config{ZM_FROM_EMAIL},
|
|
|
|
To => $Config{ZM_MESSAGE_ADDRESS},
|
2007-09-04 22:52:26 +08:00
|
|
|
Subject => $subject,
|
|
|
|
Type => "multipart/mixed"
|
|
|
|
);
|
|
|
|
### Add the text message part
|
|
|
|
$mail->attach (
|
|
|
|
Type => "TEXT",
|
|
|
|
Data => $body
|
|
|
|
);
|
|
|
|
### Add the attachments
|
|
|
|
foreach my $attachment ( @attachments )
|
|
|
|
{
|
|
|
|
Info( "Attaching '$attachment->{path}\n" );
|
|
|
|
$mail->attach(
|
|
|
|
Path => $attachment->{path},
|
|
|
|
Type => $attachment->{type},
|
|
|
|
Disposition => "attachment"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
### Send the Message
|
2013-12-17 05:32:02 +08:00
|
|
|
MIME::Lite->send( "smtp", $Config{ZM_EMAIL_HOST}, Timeout=>60 );
|
2007-09-04 22:52:26 +08:00
|
|
|
$mail->send();
|
2015-04-11 09:14:29 +08:00
|
|
|
}
|
2007-09-04 22:52:26 +08:00
|
|
|
else
|
|
|
|
{
|
|
|
|
my $mail = MIME::Entity->build(
|
2013-12-17 05:32:02 +08:00
|
|
|
From => $Config{ZM_FROM_EMAIL},
|
|
|
|
To => $Config{ZM_MESSAGE_ADDRESS},
|
2007-09-04 22:52:26 +08:00
|
|
|
Subject => $subject,
|
|
|
|
Type => (($body=~/<html>/)?'text/html':'text/plain'),
|
|
|
|
Data => $body
|
|
|
|
);
|
|
|
|
|
|
|
|
foreach my $attachment ( @attachments )
|
|
|
|
{
|
|
|
|
Info( "Attaching '$attachment->{path}\n" );
|
|
|
|
$mail->attach(
|
|
|
|
Path => $attachment->{path},
|
|
|
|
Type => $attachment->{type},
|
|
|
|
Encoding => "base64"
|
|
|
|
);
|
|
|
|
}
|
2015-04-11 09:14:29 +08:00
|
|
|
$mail->smtpsend( Host => $Config{ZM_EMAIL_HOST},
|
|
|
|
MailFrom => $Config{ZM_FROM_EMAIL}
|
|
|
|
);
|
2007-09-04 22:52:26 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
if ( $@ )
|
|
|
|
{
|
2011-08-23 22:10:20 +08:00
|
|
|
Error( "Can't send email: $@" );
|
2007-09-04 22:52:26 +08:00
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Info( "Notification message sent\n" );
|
|
|
|
}
|
|
|
|
my $sql = "update Events set Messaged = 1 where Id = ?";
|
2015-04-11 09:14:29 +08:00
|
|
|
my $sth = $dbh->prepare_cached( $sql )
|
|
|
|
or Fatal( "Can't prepare '$sql': ".$dbh->errstr() );
|
|
|
|
my $res = $sth->execute( $event->{Id} )
|
|
|
|
or Fatal( "Can't execute '$sql': ".$sth->errstr() );
|
2007-09-04 22:52:26 +08:00
|
|
|
|
|
|
|
return( 1 );
|
2005-12-16 18:05:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
sub executeCommand
|
|
|
|
{
|
2007-09-04 22:52:26 +08:00
|
|
|
my $filter = shift;
|
|
|
|
my $event = shift;
|
|
|
|
|
2008-02-14 06:41:17 +08:00
|
|
|
my $event_path = getEventPath( $event );
|
2007-09-04 22:52:26 +08:00
|
|
|
|
|
|
|
my $command = $filter->{AutoExecuteCmd};
|
|
|
|
$command .= " $event_path";
|
|
|
|
|
|
|
|
Info( "Executing '$command'\n" );
|
|
|
|
my $output = qx($command);
|
|
|
|
my $status = $? >> 8;
|
2011-06-21 17:19:10 +08:00
|
|
|
if ( $status || logDebugging() )
|
2007-09-04 22:52:26 +08:00
|
|
|
{
|
|
|
|
chomp( $output );
|
|
|
|
Debug( "Output: $output\n" );
|
|
|
|
}
|
|
|
|
if ( $status )
|
|
|
|
{
|
|
|
|
Error( "Command '$command' exited with status: $status\n" );
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
my $sql = "update Events set Executed = 1 where Id = ?";
|
2015-04-11 09:14:29 +08:00
|
|
|
my $sth = $dbh->prepare_cached( $sql )
|
|
|
|
or Fatal( "Can't prepare '$sql': ".$dbh->errstr() );
|
|
|
|
my $res = $sth->execute( $event->{Id} )
|
|
|
|
or Fatal( "Can't execute '$sql': ".$sth->errstr() );
|
2007-09-04 22:52:26 +08:00
|
|
|
}
|
|
|
|
return( 1 );
|
2005-12-16 18:05:29 +08:00
|
|
|
}
|
|
|
|
|