435 lines
13 KiB
Perl
435 lines
13 KiB
Perl
package studio_timeslot_dates;
|
|
use warnings "all";
|
|
use strict;
|
|
use Data::Dumper;
|
|
use Date::Calc;
|
|
use time;
|
|
|
|
# schedule dates for calcms_studio_schedule
|
|
# table: calcms_studio_timeslot_dates
|
|
# columns: id, studio_id, start(datetime), end(datetime)
|
|
# TODO: delete column schedule_id
|
|
require Exporter;
|
|
our @ISA = qw(Exporter);
|
|
our @EXPORT_OK = qw(get_columns get insert update delete get_dates);
|
|
our %EXPORT_TAGS = ( 'all' => [ @EXPORT_OK ] );
|
|
|
|
sub debug;
|
|
|
|
sub get_columns{
|
|
my $config=shift;
|
|
|
|
my $dbh=db::connect($config);
|
|
my $cols=db::get_columns($dbh, 'calcms_studio_timeslot_dates');
|
|
my $columns={};
|
|
for my $col (@$cols){
|
|
$columns->{$col}=1;
|
|
}
|
|
return $columns;
|
|
}
|
|
|
|
# get all studio_timeslot_dates for studio_id within given time range
|
|
# calculate start_date, end_date, weeday, day from start and end(datetime)
|
|
sub get{
|
|
my $config=shift;
|
|
my $condition=shift;
|
|
|
|
my $date_range_include=0;
|
|
$date_range_include=1 if $condition->{date_range_include}==1;
|
|
|
|
my $dbh=db::connect($config);
|
|
|
|
my @conditions=();
|
|
my @bind_values=();
|
|
|
|
if ((defined $condition->{project_id}) && ($condition->{project_id} ne '')){
|
|
push @conditions, 'project_id=?';
|
|
push @bind_values, $condition->{project_id};
|
|
}
|
|
|
|
if ((defined $condition->{studio_id}) && ($condition->{studio_id} ne '')){
|
|
push @conditions, 'studio_id=?';
|
|
push @bind_values, $condition->{studio_id};
|
|
}
|
|
|
|
if ((defined $condition->{schedule_id}) && ($condition->{schedule_id} ne '')){
|
|
push @conditions, 'schedule_id=?';
|
|
push @bind_values, $condition->{schedule_id};
|
|
}
|
|
|
|
# from and till range from an event should beween start and end of the studio's permission
|
|
if ((defined $condition->{start}) && ($condition->{start} ne '')){
|
|
push @conditions, 'start<=?';
|
|
push @bind_values, $condition->{start};
|
|
}
|
|
|
|
if ((defined $condition->{end}) && ($condition->{end} ne '')){
|
|
push @conditions, 'end>=?';
|
|
push @bind_values, $condition->{end};
|
|
}
|
|
|
|
# check only a given date date range (without time)
|
|
if ((defined $condition->{from}) && ($condition->{from} ne '')){
|
|
if ($date_range_include==1){
|
|
push @conditions, 'end_date>=?';
|
|
push @bind_values, $condition->{from};
|
|
}else{
|
|
push @conditions, 'start_date>=?';
|
|
push @bind_values, $condition->{from};
|
|
}
|
|
}
|
|
|
|
if ((defined $condition->{till}) && ($condition->{till} ne '')){
|
|
if ($date_range_include==1){
|
|
push @conditions, 'start_date<=?';
|
|
push @bind_values, $condition->{till};
|
|
}else{
|
|
push @conditions, 'end_date<=?';
|
|
push @bind_values, $condition->{till};
|
|
}
|
|
}
|
|
|
|
my $conditions='';
|
|
$conditions=" where ".join(" and ",@conditions) if (@conditions>0);
|
|
|
|
my $query=qq{
|
|
select date(start) start_date
|
|
,date(end) end_date
|
|
,dayname(start) start_weekday
|
|
,dayname(end) end_weekday
|
|
,start_date day
|
|
,start
|
|
,end
|
|
,schedule_id
|
|
,studio_id
|
|
|
|
from calcms_studio_timeslot_dates
|
|
$conditions
|
|
order by start
|
|
};
|
|
#print STDERR $query."\n";
|
|
#print STDERR Dumper(\@bind_values);
|
|
|
|
my $entries=db::get($dbh, $query, \@bind_values);
|
|
for my $entry (@$entries){
|
|
$entry->{start_weekday}=substr($entry->{start_weekday},0,2);
|
|
$entry->{end_weekday}=substr($entry->{end_weekday},0,2);
|
|
}
|
|
#print STDERR Dumper($entries);
|
|
return $entries;
|
|
}
|
|
|
|
|
|
|
|
#get all studio_timeslot_schedules for studio_id and update studio_timeslot_dates
|
|
sub update{
|
|
my $config=shift;
|
|
my $entry=shift;
|
|
|
|
return undef unless(defined $entry->{schedule_id});
|
|
|
|
my $dbh=db::connect($config);
|
|
|
|
#delete all dates for schedule id
|
|
studio_timeslot_dates::delete($config, $entry);
|
|
|
|
my $day_start=$config->{date}->{day_starting_hour};
|
|
|
|
#get the schedule with schedule id ordered by date
|
|
my $schedules=studio_timeslot_schedule::get($config, {
|
|
schedule_id => $entry->{schedule_id}
|
|
});
|
|
#add scheduled dates
|
|
my $i=0;
|
|
my $dates={};
|
|
for my $schedule (@$schedules){
|
|
#calculate dates from start to end_date
|
|
my $dateList=get_dates($schedule->{start}, $schedule->{end}, $schedule->{end_date}, $schedule->{frequency});
|
|
#print STDERR Dumper($dateList);
|
|
for my $date (@$dateList){
|
|
#set studio i from
|
|
$date->{project_id} = $schedule->{project_id};
|
|
$date->{studio_id} = $schedule->{studio_id};
|
|
$date->{schedule_id} = $schedule->{schedule_id};
|
|
$dates->{$date->{start}.$date->{studio_id}}=$date;
|
|
}
|
|
}
|
|
|
|
for my $date (keys %$dates){
|
|
my $timeslot_date=$dates->{$date};
|
|
#insert date
|
|
my $entry={
|
|
project_id => $timeslot_date->{project_id},
|
|
studio_id => $timeslot_date->{studio_id},
|
|
schedule_id => $timeslot_date->{schedule_id},
|
|
start => $timeslot_date->{start},
|
|
end => $timeslot_date->{end},
|
|
};
|
|
$entry->{start_date}= time::add_hours_to_datetime($entry->{start}, -$day_start);
|
|
$entry->{end_date}= time::add_hours_to_datetime($entry->{end}, -$day_start);
|
|
db::insert($dbh, 'calcms_studio_timeslot_dates', $entry);
|
|
#print STDERR "$entry->{start_date}\n";
|
|
$i++;
|
|
}
|
|
#print STDERR "$i studio_timeslot_dates updates\n";
|
|
return $i;
|
|
}
|
|
|
|
# calculate all start/end datetimes between start_date and stop_date with a frequency(days)
|
|
# returns list of hashs with start and end
|
|
sub get_dates{
|
|
my $start_datetime = shift; # start
|
|
my $end_datetime = shift; # start
|
|
my $stop_date = shift; # limit recurring events
|
|
my $frequency = shift; # in days
|
|
|
|
my @start = @{time::datetime_to_array($start_datetime)};
|
|
return unless @start>=6;
|
|
my @start_date = ($start[0], $start[1], $start[2]);
|
|
my $start_date = sprintf("%04d-%02d-%02d",@start_date);
|
|
my $start_time = sprintf('%02d:%02d:%02d', $start[3], $start[4], $start[5]);
|
|
|
|
my @end = @{time::datetime_to_array($end_datetime)};
|
|
return unless @end>=6;
|
|
my @end_date = ($end[0], $end[1], $end[2]);
|
|
my $end_date = sprintf("%04d-%02d-%02d",@end_date);
|
|
my $end_time = sprintf('%02d:%02d:%02d', $end[3], $end[4], $end[5]);
|
|
|
|
my @stop = @{time::date_to_array($stop_date)};
|
|
return unless @end>=3;
|
|
my @stop_date = ($stop[0], $stop[1], $stop[2]);
|
|
$stop_date = sprintf("%04d-%02d-%02d",@stop_date);
|
|
|
|
my $date={};
|
|
$date->{start}= $start_date.' '.$start_time;
|
|
$date->{end} = $end_date.' '.$end_time;
|
|
|
|
my $dates=[];
|
|
return $dates if ($date->{end} le $date->{start});
|
|
|
|
return $dates if ($stop_date lt $end_date);
|
|
|
|
my $j = Date::Calc::Delta_Days(@start_date, @stop_date);
|
|
return $dates if $j<0;
|
|
|
|
# split full time events into single days
|
|
if($frequency<1){
|
|
#start day
|
|
my @next_date = Date::Calc::Add_Delta_Days($start[0], $start[1], $start[2], 1);
|
|
my $next_date = sprintf("%04d-%02d-%02d",@next_date);
|
|
push @$dates,{
|
|
start => $start_date.' '.$start_time,
|
|
end => $next_date .' 00:00:00',
|
|
};
|
|
my $c=0;
|
|
for (my $i = 1; $i < $j; $i++){
|
|
my @start_date = Date::Calc::Add_Delta_Days($start[0], $start[1], $start[2], $i);
|
|
my $start_date = sprintf("%04d-%02d-%02d",@start_date);
|
|
my @next_date = Date::Calc::Add_Delta_Days($start[0], $start[1], $start[2], $i+1);
|
|
my $next_date = sprintf("%04d-%02d-%02d",@next_date);
|
|
push @$dates,{
|
|
start => $start_date.' 00:00:00',
|
|
end => $next_date.' 00:00:00',
|
|
};
|
|
last if ($c>1000);
|
|
$c++;
|
|
}
|
|
#end day
|
|
push @$dates,{
|
|
start => $end_date.' 00:00:00',
|
|
end => $end_date.' '.$end_time,
|
|
} if($end_time ne '00:00:00');
|
|
return $dates;
|
|
}
|
|
|
|
# multiple time events
|
|
my $c=0;
|
|
for (my $i = 0; $i <= $j; $i+=$frequency ){
|
|
#add frequency to start and end date
|
|
my @start_date = Date::Calc::Add_Delta_Days($start[0], $start[1], $start[2], $i);
|
|
my @end_date = Date::Calc::Add_Delta_Days($end[0], $end[1], $end[2], $i);
|
|
#print STDERR Dumper(\@start_date);
|
|
#print STDERR Dumper(\@end_date);
|
|
my $start_date=sprintf("%04d-%02d-%02d",@start_date);
|
|
my $end_date =sprintf("%04d-%02d-%02d",@end_date);
|
|
push @$dates,{
|
|
start => $start_date.' '.$start_time,
|
|
end => $end_date.' '.$end_time,
|
|
};
|
|
last if ($c>1000);
|
|
$c++;
|
|
}
|
|
return $dates;
|
|
}
|
|
|
|
#remove all studio_timeslot_dates for studio_id and schedule_id
|
|
sub delete{
|
|
my $config=shift;
|
|
my $entry=shift;
|
|
|
|
#print STDERR "delete:".Dumper($entry);
|
|
return unless(defined $entry->{project_id});
|
|
return unless(defined $entry->{studio_id});
|
|
return unless(defined $entry->{schedule_id});
|
|
|
|
my $dbh=db::connect($config);
|
|
|
|
my $query=qq{
|
|
delete
|
|
from calcms_studio_timeslot_dates
|
|
where schedule_id=?
|
|
};
|
|
my $bind_values=[$entry->{schedule_id}];
|
|
#print '<pre>$query'.$query.Dumper($bind_values).'</pre>';
|
|
db::put($dbh, $query, $bind_values);
|
|
}
|
|
|
|
# time based filter to check if studio is assigned to an studio at a given time range
|
|
# return 1 if there is a schedule date starting before start and ending after end
|
|
sub can_studio_edit_events{
|
|
my $config=shift;
|
|
my $condition=shift;
|
|
|
|
my @conditions=();
|
|
my @bind_values=();
|
|
#print Dumper($condition);
|
|
|
|
#return 0 unless defined $condition->{project_id};
|
|
return 0 unless defined $condition->{studio_id};
|
|
return 0 unless defined $condition->{start};
|
|
return 0 unless defined $condition->{end};
|
|
|
|
if ((defined $condition->{project_id}) && ($condition->{project_id} ne '')){
|
|
push @conditions, 'project_id=?';
|
|
push @bind_values, $condition->{project_id};
|
|
}
|
|
|
|
if ((defined $condition->{studio_id}) && ($condition->{studio_id} ne '')){
|
|
push @conditions, 'studio_id=?';
|
|
push @bind_values, $condition->{studio_id};
|
|
}
|
|
|
|
if ((defined $condition->{start}) && ($condition->{start} ne '')){
|
|
push @conditions, 'start<=?';
|
|
push @bind_values, $condition->{start};
|
|
}
|
|
|
|
if ((defined $condition->{end}) && ($condition->{end} ne '')){
|
|
push @conditions, 'end>=?';
|
|
push @bind_values, $condition->{end};
|
|
}
|
|
|
|
my $conditions='';
|
|
$conditions=" where ".join(" and ",@conditions) if (@conditions>0);
|
|
|
|
my $dbh=db::connect($config);
|
|
my $query=qq{
|
|
select count(*) permission
|
|
from calcms_studio_timeslot_dates
|
|
$conditions
|
|
};
|
|
#print STDERR Dumper($query).Dumper(\@bind_values);
|
|
|
|
my $entries=db::get($dbh, $query, \@bind_values);
|
|
#print STDERR Dumper($entries);
|
|
return 0 if scalar(@$entries) == 0;
|
|
return 1 if $entries->[0]->{permission}>0;
|
|
|
|
if ($entries->[0]->{permission}==0){
|
|
my $timeslot=getMergedDays($config, $condition);
|
|
return 0 unless defined $timeslot;
|
|
if (
|
|
($condition->{start} ge $timeslot->{start})
|
|
&& ($condition->{end} le $timeslot->{end})
|
|
){
|
|
#print STDERR "($condition->{start} ge $timeslot->{start}) ".($condition->{start} ge $timeslot->{start});
|
|
#print STDERR "($condition->{end} le $timeslot->{end}) ".($condition->{end} le $timeslot->{end});
|
|
return 1;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
# merge two subsequent days if first day ends at same time as next day starts
|
|
# returns hashref with start and end of merged slot
|
|
# returns undef if not slot could be found
|
|
sub getMergedDays{
|
|
my $config=shift;
|
|
my $condition=shift;
|
|
|
|
my @conditions=();
|
|
my @bind_values=();
|
|
#print Dumper($condition);
|
|
|
|
#return 0 unless defined $condition->{project_id};
|
|
return 0 unless defined $condition->{studio_id};
|
|
return 0 unless defined $condition->{start};
|
|
return 0 unless defined $condition->{end};
|
|
|
|
if ((defined $condition->{project_id}) && ($condition->{project_id} ne '')){
|
|
push @conditions, 'project_id=?';
|
|
push @bind_values, $condition->{project_id};
|
|
}
|
|
|
|
if ((defined $condition->{studio_id}) && ($condition->{studio_id} ne '')){
|
|
push @conditions, 'studio_id=?';
|
|
push @bind_values, $condition->{studio_id};
|
|
}
|
|
|
|
# set start to next day at 00:00
|
|
my $start=undef;
|
|
if ($condition->{start}=~/(\d\d\d\d\-\d\d\-\d\d)/){
|
|
$start=$1.' 00:00';
|
|
$start=time::add_days_to_datetime($start, 1);
|
|
push @bind_values, $start;
|
|
}
|
|
|
|
# set end to end days at 00:00
|
|
my $end=undef;
|
|
if ($condition->{end}=~/(\d\d\d\d\-\d\d\-\d\d)/){
|
|
$end=$1.' 00:00';
|
|
push @bind_values, $end;
|
|
}
|
|
return undef unless defined $start;
|
|
return undef unless defined $end;
|
|
|
|
push @conditions, '(start=? or end=?)';
|
|
|
|
my $conditions='';
|
|
$conditions='where '.join(" and ",@conditions) if (@conditions>0);
|
|
|
|
# get all days starting on first day or ending at next day
|
|
my $dbh=db::connect($config);
|
|
my $query=qq{
|
|
select start, end
|
|
from calcms_studio_timeslot_dates
|
|
$conditions
|
|
order by start
|
|
};
|
|
# print STDERR Dumper($query).Dumper(\@bind_values);
|
|
|
|
my $entries=db::get($dbh, $query, \@bind_values);
|
|
# print STDERR Dumper($entries);
|
|
|
|
if (scalar(@$entries)==2){
|
|
if ($entries->[0]->{end} eq $entries->[1]->{start}){
|
|
$entries={
|
|
start => $entries->[0]->{start},
|
|
end => $entries->[1]->{end}
|
|
};
|
|
# print STDERR "found".Dumper($entries)."\n";
|
|
return $entries;
|
|
}
|
|
}
|
|
|
|
return undef;
|
|
}
|
|
|
|
sub error{
|
|
my $msg=shift;
|
|
print "ERROR: $msg<br/>\n";
|
|
}
|
|
|
|
#do not delete last line!
|
|
1;
|