292 lines
7.3 KiB
Perl
Executable File
292 lines
7.3 KiB
Perl
Executable File
#! /usr/bin/perl -w
|
|
|
|
use warnings "all";
|
|
use strict;
|
|
use URI::Escape;
|
|
use Encode;
|
|
use Data::Dumper;
|
|
|
|
#use Text::Diff::FormattedHTML;
|
|
use MIME::Lite;
|
|
|
|
use params;
|
|
use config;
|
|
use log;
|
|
use template;
|
|
use db;
|
|
use auth;
|
|
use uac;
|
|
|
|
#use roles;
|
|
use time;
|
|
use markup;
|
|
use studios;
|
|
|
|
#use event_history;
|
|
#use events;
|
|
use series;
|
|
|
|
#use series_dates;
|
|
#use series_events;
|
|
use localization;
|
|
binmode STDOUT, ":utf8";
|
|
|
|
my $r = shift;
|
|
( my $cgi, my $params, my $error ) = params::get($r);
|
|
|
|
my $config = config::get('../config/config.cgi');
|
|
my $debug = $config->{system}->{debug};
|
|
my ( $user, $expires ) = auth::get_user( $cgi, $config );
|
|
return if ( ( !defined $user ) || ( $user eq '' ) );
|
|
|
|
my $user_presets = uac::get_user_presets(
|
|
$config,
|
|
{
|
|
user => $user,
|
|
project_id => $params->{project_id},
|
|
studio_id => $params->{studio_id}
|
|
}
|
|
);
|
|
$params->{default_studio_id} = $user_presets->{studio_id};
|
|
$params->{studio_id} = $params->{default_studio_id}
|
|
if ( ( !( defined $params->{action} ) ) || ( $params->{action} eq '' ) || ( $params->{action} eq 'login' ) );
|
|
$params->{project_id} = $user_presets->{project_id}
|
|
if ( ( !( defined $params->{action} ) ) || ( $params->{action} eq '' ) || ( $params->{action} eq 'login' ) );
|
|
|
|
my $request = {
|
|
url => $ENV{QUERY_STRING} || '',
|
|
params => {
|
|
original => $params,
|
|
checked => check_params($params),
|
|
},
|
|
};
|
|
|
|
#print STDERR Dumper($request)."\n";
|
|
|
|
#set user at params->presets->user
|
|
$request = uac::prepare_request( $request, $user_presets );
|
|
log::init($request);
|
|
|
|
$params = $request->{params}->{checked};
|
|
|
|
#show header
|
|
unless ( params::isJson() || ( $params->{template}=~/\.txt/ ) ) {
|
|
my $headerParams = uac::set_template_permissions( $request->{permissions}, $params );
|
|
$headerParams->{loc} = localization::get( $config, { user => $user, file => 'menu' } );
|
|
template::process( 'print', template::check('default.html'), $headerParams );
|
|
}
|
|
return unless uac::check( $config, $params, $user_presets ) == 1;
|
|
|
|
$config->{access}->{write} = 0;
|
|
if ( $params->{action} eq 'send' ) {
|
|
sendMail( $config, $request );
|
|
return;
|
|
}
|
|
show_events( $config, $request );
|
|
|
|
#show existing event history
|
|
sub show_events {
|
|
my $config = shift;
|
|
my $request = shift;
|
|
|
|
my $params = $request->{params}->{checked};
|
|
my $permissions = $request->{permissions};
|
|
|
|
for my $attr ( 'project_id', 'studio_id', 'duration' ) { # 'series_id','event_id'
|
|
unless ( defined $params->{$attr} ) {
|
|
uac::print_error( "missing " . $attr . " to show changes" );
|
|
return;
|
|
}
|
|
}
|
|
|
|
unless ( $permissions->{read_event} == 1 ) {
|
|
uac::print_error("missing permissions to show changes");
|
|
return;
|
|
}
|
|
|
|
# get events
|
|
my $duration = $params->{duration};
|
|
my $options = {
|
|
project_id => $params->{project_id},
|
|
studio_id => $params->{studio_id},
|
|
from_date => time::time_to_date(),
|
|
till_date => time::time_to_date( time() + $duration * 24 * 60 * 60 ),
|
|
draft => 0,
|
|
published => 1
|
|
};
|
|
|
|
my $events = series::get_events( $config, $options );
|
|
|
|
# get series_users
|
|
for my $event (@$events) {
|
|
my $mail = getMail( $config, $request, $event );
|
|
$event->{mail} = $mail;
|
|
}
|
|
|
|
return unless defined $events;
|
|
my @events = sort { $a->{start} cmp $b->{start} } @$events;
|
|
$params->{events} = \@events;
|
|
|
|
for my $permission ( keys %{$permissions} ) {
|
|
$params->{'allow'}->{$permission} = $request->{permissions}->{$permission};
|
|
}
|
|
|
|
$params->{loc} = localization::get( $config, { user => $params->{presets}->{user}, file => 'notify_events' } );
|
|
template::process( 'print', $params->{template}, $params );
|
|
|
|
}
|
|
|
|
sub sendMail {
|
|
my $config = shift;
|
|
my $request = shift;
|
|
|
|
my $params = $request->{params}->{checked};
|
|
my $permissions = $request->{permissions};
|
|
|
|
for my $attr ( 'project_id', 'studio_id', 'series_id', 'event_id' ) {
|
|
unless ( defined $params->{$attr} ) {
|
|
uac::print_error( "missing " . $attr . " to send notification" );
|
|
return;
|
|
}
|
|
}
|
|
|
|
unless ( $permissions->{read_event} == 1 ) {
|
|
uac::print_error("missing permissions to send notification");
|
|
return;
|
|
}
|
|
|
|
my $options = {
|
|
project_id => $params->{project_id},
|
|
studio_id => $params->{studio_id},
|
|
series_id => $params->{series_id},
|
|
event_id => $params->{event_id},
|
|
draft => 0,
|
|
published => 0,
|
|
};
|
|
my $events = series::get_events( $config, $options );
|
|
|
|
unless ( scalar(@$events) == 1 ) {
|
|
uac::print_error("did not found exactly one event");
|
|
return;
|
|
}
|
|
|
|
my $mail = getMail( $config, $request, $events->[0] );
|
|
$mail->{To} = $params->{to} if defined $params->{to};
|
|
$mail->{Cc} = $params->{cc} if defined $params->{cc};
|
|
$mail->{Subject} = $params->{subject} if defined $params->{subject};
|
|
$mail->{Data} = $params->{content} if defined $params->{content};
|
|
|
|
my $msg = MIME::Lite->new(
|
|
'From' => $mail->{'From'},
|
|
'To' => $mail->{'To'},
|
|
'Cc' => $mail->{'Cc'},
|
|
'Reply-To' => $mail->{'Reply-To'},
|
|
'Subject' => $mail->{'Subject'},
|
|
'Data' => $mail->{'Data'},
|
|
);
|
|
|
|
print '<pre>';
|
|
$msg->print( \*STDOUT );
|
|
print '</pre>';
|
|
$msg->send;
|
|
}
|
|
|
|
sub getMail {
|
|
my $config = shift;
|
|
my $request = shift;
|
|
my $event = shift;
|
|
|
|
my $users = series::get_users(
|
|
$config,
|
|
{
|
|
project_id => $event->{project_id},
|
|
studio_id => $event->{studio_id},
|
|
series_id => $event->{series_id}
|
|
}
|
|
);
|
|
|
|
my $userNames = [];
|
|
my $userMails = [];
|
|
for my $user (@$users) {
|
|
push @$userNames, ( split( /\s+/, $user->{full_name} ) )[0];
|
|
push @$userMails, $user->{email};
|
|
}
|
|
if ( scalar(@$userMails) == 0 ) {
|
|
$event->{noRecipient} = 1;
|
|
return;
|
|
}
|
|
|
|
my $mail = {
|
|
'From' => 'programm@radiopiloten.de',
|
|
'To' => join( ', ', @$userMails ),
|
|
'Cc' => 'programm@radiopiloten.de',
|
|
'Reply-To' => 'programm@radiopiloten.de',
|
|
'Subject' => "$event->{start} - $event->{full_title}",
|
|
'Data' => "Hallo " . join( ' und ', @$userNames ) . ",\n\n"
|
|
};
|
|
|
|
$mail->{Data} .= "nur zur Erinnerung...\n\n";
|
|
$mail->{Data} .= "am $event->{weekday_name} ist die naechste '$event->{series_name}'-Sendung.\n\n";
|
|
$mail->{Data} .= "$event->{source_base_url}$event->{cache_base_url}/$config->{controllers}->{event}/$event->{event_id}.html\n\n";
|
|
$mail->{Data} .= "Gruss, $request->{user}\n";
|
|
return $mail;
|
|
}
|
|
|
|
sub eventToText {
|
|
my $event = shift;
|
|
|
|
my $s = events::get_keys($event)->{full_title} . "\n";
|
|
$s .= $event->{excerpt} . "\n";
|
|
$s .= $event->{user_excerpt} . "\n";
|
|
$s .= $event->{topic} . "\n";
|
|
$s .= $event->{content} . "\n";
|
|
|
|
#print STDERR "DUMP\n$s";
|
|
return $s;
|
|
|
|
}
|
|
|
|
sub check_params {
|
|
my $params = shift;
|
|
|
|
my $checked = {};
|
|
my $template = '';
|
|
$checked->{template} = template::check( $params->{template}, 'notify_events' );
|
|
|
|
my $debug = $params->{debug} || '';
|
|
if ( $debug =~ /([a-z\_\,]+)/ ) {
|
|
$debug = $1;
|
|
}
|
|
$checked->{debug} = $debug;
|
|
|
|
#numeric values
|
|
for my $param ( 'event_id', 'project_id', 'studio_id', 'default_studio_id', 'user_id', 'series_id', 'duration' ) {
|
|
if ( ( defined $params->{$param} ) && ( $params->{$param} =~ /^\d+$/ ) ) {
|
|
$checked->{$param} = $params->{$param};
|
|
}
|
|
}
|
|
|
|
for my $param ( 'subject', 'to', 'cc', 'content' ) {
|
|
if ( ( defined $params->{$param} ) && ( $params->{$param} =~ /\S/ ) ) {
|
|
$checked->{$param} = $params->{$param};
|
|
}
|
|
}
|
|
|
|
if ( defined $checked->{studio_id} ) {
|
|
$checked->{default_studio_id} = $checked->{studio_id};
|
|
} else {
|
|
$checked->{studio_id} = -1;
|
|
}
|
|
|
|
#actions and roles
|
|
$checked->{action} = '';
|
|
if ( defined $params->{action} ) {
|
|
if ( $params->{action} =~ /^(send)$/ ) {
|
|
$checked->{action} = $params->{action};
|
|
}
|
|
}
|
|
|
|
return $checked;
|
|
}
|
|
|