LICENSE: AGPLv2 # # # CHANGES: # 90524-1503 - First Build # 110708-1723 - Added HF precision option # 111222-2124 - Added max stats bar chart function # 120125-1235 - Small changes to max stats function to allow for total system stats # 120213-1417 - Changes to allow for ra stats # 120713-2137 - Added download function for max stats # 130615-2111 - Added user authentication function and login lockout for 15 minutes after 10 failed login # 130705-1957 - Added password encryption compatibility # 130831-0919 - Changed to mysqli PHP functions # 140319-1924 - Added MathZDC function # 140918-1609 - Added admin QXZ print/echo function with length padding # 141118-0109 - Added options for up to 9 ordered variables within QXZ function output # 141229-1535 - Added code to QXZ allowing for on-the-fly mysql phrase lookups # 150210-1358 - Added precision S default to 0 in sec_convert # 150216-1528 - Fixed non-latin problem, issue #828 # 150514-1522 - Added lookup_gmt function, copied from agc/functions.php # ##### BEGIN validate user login credentials, check for failed lock out ##### function user_authorization($user,$pass,$user_option,$user_update) { global $link; # require("dbconnect_mysqli.php"); ############################################# ##### START SYSTEM_SETTINGS LOOKUP ##### $stmt = "SELECT use_non_latin,webroot_writable,pass_hash_enabled,pass_key,pass_cost FROM system_settings;"; $rslt=mysql_to_mysqli($stmt, $link); if ($DB) {echo "$stmt\n";} $qm_conf_ct = mysqli_num_rows($rslt); if ($qm_conf_ct > 0) { $row=mysqli_fetch_row($rslt); $non_latin = $row[0]; $SSwebroot_writable = $row[1]; $SSpass_hash_enabled = $row[2]; $SSpass_key = $row[3]; $SSpass_cost = $row[4]; } ##### END SETTINGS LOOKUP ##### ########################################### $STARTtime = date("U"); $TODAY = date("Y-m-d"); $NOW_TIME = date("Y-m-d H:i:s"); $ip = getenv("REMOTE_ADDR"); $browser = getenv("HTTP_USER_AGENT"); $LOCK_over = ($STARTtime - 900); # failed login lockout time is 15 minutes(900 seconds) $LOCK_trigger_attempts = 10; $user = preg_replace("/\'|\"|\\\\|;/","",$user); $pass = preg_replace("/\'|\"|\\\\|;/","",$pass); $passSQL = "pass='$pass'"; if ($SSpass_hash_enabled > 0) { if (file_exists("../agc/bp.pl")) {$pass_hash = exec("../agc/bp.pl --pass=$pass");} else {$pass_hash = exec("../../agc/bp.pl --pass=$pass");} $pass_hash = preg_replace("/PHASH: |\n|\r|\t| /",'',$pass_hash); $passSQL = "pass_hash='$pass_hash'"; } $stmt="SELECT count(*) from vicidial_users where user='$user' and $passSQL and user_level > 7 and active='Y' and ( (failed_login_count < $LOCK_trigger_attempts) or (UNIX_TIMESTAMP(last_login_date) < $LOCK_over) );"; if ($user_option == 'REPORTS') {$stmt="SELECT count(*) from vicidial_users where user='$user' and $passSQL and user_level > 6 and active='Y' and ( (failed_login_count < $LOCK_trigger_attempts) or (UNIX_TIMESTAMP(last_login_date) < $LOCK_over) );";} if ($user_option == 'REMOTE') {$stmt="SELECT count(*) from vicidial_users where user='$user' and $passSQL and user_level > 3 and active='Y' and ( (failed_login_count < $LOCK_trigger_attempts) or (UNIX_TIMESTAMP(last_login_date) < $LOCK_over) );";} if ($user_option == 'QC') {$stmt="SELECT count(*) from vicidial_users where user='$user' and $passSQL and user_level > 1 and active='Y' and ( (failed_login_count < $LOCK_trigger_attempts) or (UNIX_TIMESTAMP(last_login_date) < $LOCK_over) );";} if ($DB) {echo "|$stmt|\n";} if ($non_latin > 0) {$rslt=mysql_to_mysqli("SET NAMES 'UTF8'", $link);} $rslt=mysql_to_mysqli($stmt, $link); $row=mysqli_fetch_row($rslt); $auth=$row[0]; if ($auth < 1) { $auth_key='BAD'; $stmt="SELECT failed_login_count,UNIX_TIMESTAMP(last_login_date) from vicidial_users where user='$user';"; if ($non_latin > 0) {$rslt=mysql_to_mysqli("SET NAMES 'UTF8'", $link);} $rslt=mysql_to_mysqli($stmt, $link); $cl_user_ct = mysqli_num_rows($rslt); if ($cl_user_ct > 0) { $row=mysqli_fetch_row($rslt); $failed_login_count = $row[0]; $last_login_date = $row[1]; if ($failed_login_count < $LOCK_trigger_attempts) { $stmt="UPDATE vicidial_users set failed_login_count=(failed_login_count+1),last_ip='$ip' where user='$user';"; $rslt=mysql_to_mysqli($stmt, $link); } else { if ($LOCK_over > $last_login_date) { $stmt="UPDATE vicidial_users set last_login_date=NOW(),failed_login_count=1,last_ip='$ip' where user='$user';"; $rslt=mysql_to_mysqli($stmt, $link); } else {$auth_key='LOCK';} } } if ($SSwebroot_writable > 0) { $fp = fopen ("./project_auth_entries.txt", "a"); fwrite ($fp, "ADMIN|FAIL|$NOW_TIME|$user|$auth_key|$ip|$browser|\n"); fclose($fp); } } else { if ($user_update > 0) { $stmt="UPDATE vicidial_users set last_login_date=NOW(),last_ip='$ip',failed_login_count=0 where user='$user';"; $rslt=mysql_to_mysqli($stmt, $link); } $auth_key='GOOD'; } return $auth_key; } ##### END validate user login credentials, check for failed lock out ##### ##### BEGIN reformat seconds into HH:MM:SS or MM:SS ##### function sec_convert($sec,$precision) { $sec = round($sec,0); if ($sec < 1) { if ($precision == 'HF') {return "0:00:00";} else { if ($precision == 'S') {return "0";} else {return "0:00";} } } else { if ($precision == 'HF') {$precision='H';} else { if ( ($sec < 3600) and ($precision != 'S') ) {$precision='M';} } if ($precision == 'H') { $Fhours_H = MathZDC($sec, 3600); $Fhours_H_int = floor($Fhours_H); $Fhours_H_int = intval("$Fhours_H_int"); $Fhours_M = ($Fhours_H - $Fhours_H_int); $Fhours_M = ($Fhours_M * 60); $Fhours_M_int = floor($Fhours_M); $Fhours_M_int = intval("$Fhours_M_int"); $Fhours_S = ($Fhours_M - $Fhours_M_int); $Fhours_S = ($Fhours_S * 60); $Fhours_S = round($Fhours_S, 0); if ($Fhours_S < 10) {$Fhours_S = "0$Fhours_S";} if ($Fhours_M_int < 10) {$Fhours_M_int = "0$Fhours_M_int";} $Ftime = "$Fhours_H_int:$Fhours_M_int:$Fhours_S"; } if ($precision == 'M') { $Fminutes_M = MathZDC($sec, 60); $Fminutes_M_int = floor($Fminutes_M); $Fminutes_M_int = intval("$Fminutes_M_int"); $Fminutes_S = ($Fminutes_M - $Fminutes_M_int); $Fminutes_S = ($Fminutes_S * 60); $Fminutes_S = round($Fminutes_S, 0); if ($Fminutes_S < 10) {$Fminutes_S = "0$Fminutes_S";} $Ftime = "$Fminutes_M_int:$Fminutes_S"; } if ($precision == 'S') { $Ftime = $sec; } return "$Ftime"; } } ##### END reformat seconds into HH:MM:SS or MM:SS ##### ##### BEGIN counts like elements in an array, optional sort asc desc ##### function array_group_count($array, $sort = false) { $tally_array = array(); $i=0; foreach (array_unique($array) as $value) { $count = 0; foreach ($array as $element) { if ($element == "$value") {$count++;} } $count = sprintf("%010s", $count); $tally_array[$i] = "$count $value"; $i++; } if ( $sort == 'desc' ) {rsort($tally_array);} elseif ( $sort == 'asc' ) {sort($tally_array);} return $tally_array; } ##### END counts like elements in an array, optional sort asc desc ##### ##### BEGIN bar chart using max stats data ##### function horizontal_bar_chart($campaign_id,$days_graph,$title,$link,$metric,$metric_name,$more_link,$END_DATE,$download_link) { $stats_start_time = time(); if ($END_DATE) { $Bstats_date[0]=$END_DATE; } else { $Bstats_date[0]=date("Y-m-d"); } $Btotal_calls[0]=0; $link_text=''; $max_count=0; $i=0; $NWB = "$download_link   \"HELP\""; ### get stats for last X days $stmt="SELECT stats_date,$metric from vicidial_daily_max_stats where campaign_id='$campaign_id' and stats_flag='OPEN' and stats_date<='$Bstats_date[0]';"; if ($metric=='total_calls_inbound_all') {$stmt="SELECT stats_date,sum(total_calls) from vicidial_daily_max_stats where stats_type='INGROUP' and stats_flag='OPEN' and stats_date<='$Bstats_date[0]' group by stats_date;";} if ($metric=='total_calls_outbound_all') {$stmt="SELECT stats_date,sum(total_calls) from vicidial_daily_max_stats where stats_type='CAMPAIGN' and stats_flag='OPEN' and stats_date<='$Bstats_date[0]' group by stats_date;";} if ($metric=='ra_total_calls') {$stmt="SELECT stats_date,total_calls from vicidial_daily_ra_stats where stats_flag='OPEN' and stats_date<='$Bstats_date[0]' and user='$campaign_id';";} if ($metric=='ra_concurrent_calls') {$stmt="SELECT stats_date,max_calls from vicidial_daily_ra_stats where stats_flag='OPEN' and stats_date<='$Bstats_date[0]' and user='$campaign_id';";} $rslt=mysql_to_mysqli($stmt, $link); $Xstats_to_print = mysqli_num_rows($rslt); if ($Xstats_to_print > 0) { $rowx=mysqli_fetch_row($rslt); $Bstats_date[0] = $rowx[0]; $Btotal_calls[0] = $rowx[1]; if ($max_count < $Btotal_calls[0]) {$max_count = $Btotal_calls[0];} } $stats_date_ARRAY = explode("-",$Bstats_date[0]); $stats_start_time = mktime(10, 10, 10, $stats_date_ARRAY[1], $stats_date_ARRAY[2], $stats_date_ARRAY[0]); while($i <= $days_graph) { $Bstats_date[$i] = date("Y-m-d", $stats_start_time); $Btotal_calls[$i]=0; $stmt="SELECT stats_date,$metric from vicidial_daily_max_stats where campaign_id='$campaign_id' and stats_date='$Bstats_date[$i]';"; if ($metric=='total_calls_inbound_all') {$stmt="SELECT stats_date,sum(total_calls) from vicidial_daily_max_stats where stats_date='$Bstats_date[$i]' and stats_type='INGROUP' group by stats_date;";} if ($metric=='total_calls_outbound_all') {$stmt="SELECT stats_date,sum(total_calls) from vicidial_daily_max_stats where stats_date='$Bstats_date[$i]' and stats_type='CAMPAIGN' group by stats_date;";} if ($metric=='ra_total_calls') {$stmt="SELECT stats_date,total_calls from vicidial_daily_ra_stats where stats_date='$Bstats_date[$i]' and user='$campaign_id';";} if ($metric=='ra_concurrent_calls') {$stmt="SELECT stats_date,max_calls from vicidial_daily_ra_stats where stats_date='$Bstats_date[$i]' and user='$campaign_id';";} echo "\n"; $rslt=mysql_to_mysqli($stmt, $link); $Ystats_to_print = mysqli_num_rows($rslt); if ($Ystats_to_print > 0) { $rowx=mysqli_fetch_row($rslt); $Btotal_calls[$i] = $rowx[1]; if ($max_count < $Btotal_calls[$i]) {$max_count = $Btotal_calls[$i];} } $i++; $stats_start_time = ($stats_start_time - 86400); } if ($max_count < 1) {echo "";} else { if ($title=='campaign') {$out_in_type=' outbound';} if ($title=='in-group') {$out_in_type=' inbound';} if ($more_link > 0) {$link_text = "more summary stats...";} echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; $max_multi = MathZDC(400, $max_count); $i=0; while($i < $days_graph) { $bar_width = intval($max_multi * $Btotal_calls[$i]); if ($Btotal_calls[$i] < 1) {$Btotal_calls[$i] = "-none-";} echo "\n"; echo "\n"; echo "\n"; echo "\n"; $i++; } echo "
$days_graph Day $out_in_type $metric_name for this $title   $link_text   $NWB#max_stats$NWE
date $metric_name
$Bstats_date[$i] \"\" $Btotal_calls[$i]
\n"; } } ##### END bar chart using max stats data ##### ##### BEGIN download max stats data ##### function download_max_system_stats($campaign_id,$days_graph,$title,$metric,$metric_name,$END_DATE) { global $CSV_text, $link; $stats_start_time = time(); if ($END_DATE) { $Bstats_date[0]=$END_DATE; } else { $Bstats_date[0]=date("Y-m-d"); } $Btotal_calls[0]=0; $link_text=''; $i=0; ### get stats for last X days $stmt="SELECT stats_date,$metric from vicidial_daily_max_stats where campaign_id='$campaign_id' and stats_flag='OPEN' and stats_date<='$Bstats_date[0]';"; if ($metric=='total_calls_inbound_all') {$stmt="SELECT stats_date,sum(total_calls) from vicidial_daily_max_stats where stats_type='INGROUP' and stats_flag='OPEN' and stats_date<='$Bstats_date[0]' group by stats_date;";} if ($metric=='total_calls_outbound_all') {$stmt="SELECT stats_date,sum(total_calls) from vicidial_daily_max_stats where stats_type='CAMPAIGN' and stats_flag='OPEN' and stats_date<='$Bstats_date[0]' group by stats_date;";} if ($metric=='ra_total_calls') {$stmt="SELECT stats_date,total_calls from vicidial_daily_ra_stats where stats_flag='OPEN' and stats_date<='$Bstats_date[0]' and user='$campaign_id';";} if ($metric=='ra_concurrent_calls') {$stmt="SELECT stats_date,max_calls from vicidial_daily_ra_stats where stats_flag='OPEN' and stats_date<='$Bstats_date[0]' and user='$campaign_id';";} $rslt=mysql_to_mysqli($stmt, $link); $Xstats_to_print = mysqli_num_rows($rslt); if ($Xstats_to_print > 0) { $rowx=mysqli_fetch_row($rslt); $Bstats_date[0] = $rowx[0]; $Btotal_calls[0] = $rowx[1]; if ($max_count < $Btotal_calls[0]) {$max_count = $Btotal_calls[0];} } $stats_date_ARRAY = explode("-",$Bstats_date[0]); $stats_start_time = mktime(10, 10, 10, $stats_date_ARRAY[1], $stats_date_ARRAY[2], $stats_date_ARRAY[0]); while($i <= $days_graph) { $Bstats_date[$i] = date("Y-m-d", $stats_start_time); $Btotal_calls[$i]=0; $stmt="SELECT stats_date,$metric from vicidial_daily_max_stats where campaign_id='$campaign_id' and stats_date='$Bstats_date[$i]';"; if ($metric=='total_calls_inbound_all') {$stmt="SELECT stats_date,sum(total_calls) from vicidial_daily_max_stats where stats_date='$Bstats_date[$i]' and stats_type='INGROUP' group by stats_date;";} if ($metric=='total_calls_outbound_all') {$stmt="SELECT stats_date,sum(total_calls) from vicidial_daily_max_stats where stats_date='$Bstats_date[$i]' and stats_type='CAMPAIGN' group by stats_date;";} if ($metric=='ra_total_calls') {$stmt="SELECT stats_date,total_calls from vicidial_daily_ra_stats where stats_date='$Bstats_date[$i]' and user='$campaign_id';";} if ($metric=='ra_concurrent_calls') {$stmt="SELECT stats_date,max_calls from vicidial_daily_ra_stats where stats_date='$Bstats_date[$i]' and user='$campaign_id';";} $rslt=mysql_to_mysqli($stmt, $link); $Ystats_to_print = mysqli_num_rows($rslt); if ($Ystats_to_print > 0) { $rowx=mysqli_fetch_row($rslt); $Btotal_calls[$i] = $rowx[1]; if ($max_count < $Btotal_calls[$i]) {$max_count = $Btotal_calls[$i];} } $i++; $stats_start_time = ($stats_start_time - 86400); } if ($title=='campaign') {$out_in_type=' outbound';} if ($title=='in-group') {$out_in_type=' inbound';} $CSV_text.="\"$days_graph Day $out_in_type $metric_name for this $title\"\n"; if ($max_count < 1) {$CSV_text.="\"no max stats cache summary information available\"\n";} else { $CSV_text.="\"DATE\",\"$metric_name\"\n"; $i=0; while($i < $days_graph) { $bar_width = intval($max_multi * $Btotal_calls[$i]); if ($Btotal_calls[$i] < 1) {$Btotal_calls[$i] = "-none-";} $CSV_text.="\"$Bstats_date[$i]\",\"$Btotal_calls[$i]\"\n"; $i++; } $CSV_text.="\n\n"; } } ##### END download max stats data ##### ##### LOOKUP GMT, FINDS THE CURRENT GMT OFFSET FOR A PHONE NUMBER ##### function lookup_gmt($phone_code,$USarea,$state,$LOCAL_GMT_OFF_STD,$Shour,$Smin,$Ssec,$Smon,$Smday,$Syear,$postalgmt,$postal_code) { global $link; $postalgmt_found=0; if ( (preg_match("/POSTAL/i",$postalgmt)) && (strlen($postal_code)>4) ) { if (preg_match('/^1$/', $phone_code)) { $stmt="select postal_code,state,GMT_offset,DST,DST_range,country,country_code from vicidial_postal_codes where country_code='$phone_code' and postal_code LIKE \"$postal_code%\";"; $rslt=mysql_to_mysqli($stmt, $link); $pc_recs = mysqli_num_rows($rslt); if ($pc_recs > 0) { $row=mysqli_fetch_row($rslt); $gmt_offset = $row[2]; $gmt_offset = preg_replace("/\+/i","",$gmt_offset); $dst = $row[3]; $dst_range = $row[4]; $PC_processed++; $postalgmt_found++; $post++; } } } if ($postalgmt_found < 1) { $PC_processed=0; ### UNITED STATES ### if ($phone_code =='1') { $stmt="select country_code,country,areacode,state,GMT_offset,DST,DST_range,geographic_description from vicidial_phone_codes where country_code='$phone_code' and areacode='$USarea';"; $rslt=mysql_to_mysqli($stmt, $link); $pc_recs = mysqli_num_rows($rslt); if ($pc_recs > 0) { $row=mysqli_fetch_row($rslt); $gmt_offset = $row[4]; $gmt_offset = preg_replace("/\+/i","",$gmt_offset); $dst = $row[5]; $dst_range = $row[6]; $PC_processed++; } } ### MEXICO ### if ($phone_code =='52') { $stmt="select country_code,country,areacode,state,GMT_offset,DST,DST_range,geographic_description from vicidial_phone_codes where country_code='$phone_code' and areacode='$USarea';"; $rslt=mysql_to_mysqli($stmt, $link); $pc_recs = mysqli_num_rows($rslt); if ($pc_recs > 0) { $row=mysqli_fetch_row($rslt); $gmt_offset = $row[4]; $gmt_offset = preg_replace("/\+/i","",$gmt_offset); $dst = $row[5]; $dst_range = $row[6]; $PC_processed++; } } ### AUSTRALIA ### if ($phone_code =='61') { $stmt="select country_code,country,areacode,state,GMT_offset,DST,DST_range,geographic_description from vicidial_phone_codes where country_code='$phone_code' and state='$state';"; $rslt=mysql_to_mysqli($stmt, $link); $pc_recs = mysqli_num_rows($rslt); if ($pc_recs > 0) { $row=mysqli_fetch_row($rslt); $gmt_offset = $row[4]; $gmt_offset = preg_replace("/\+/i","",$gmt_offset); $dst = $row[5]; $dst_range = $row[6]; $PC_processed++; } } ### ALL OTHER COUNTRY CODES ### if (!$PC_processed) { $PC_processed++; $stmt="select country_code,country,areacode,state,GMT_offset,DST,DST_range,geographic_description from vicidial_phone_codes where country_code='$phone_code';"; $rslt=mysql_to_mysqli($stmt, $link); $pc_recs = mysqli_num_rows($rslt); if ($pc_recs > 0) { $row=mysqli_fetch_row($rslt); $gmt_offset = $row[4]; $gmt_offset = preg_replace("/\+/i","",$gmt_offset); $dst = $row[5]; $dst_range = $row[6]; $PC_processed++; } } } ### Find out if DST to raise the gmt offset ### $AC_GMT_diff = ($gmt_offset - $LOCAL_GMT_OFF_STD); $AC_localtime = mktime(($Shour + $AC_GMT_diff), $Smin, $Ssec, $Smon, $Smday, $Syear); $hour = date("H",$AC_localtime); $min = date("i",$AC_localtime); $sec = date("s",$AC_localtime); $mon = date("m",$AC_localtime); $mday = date("d",$AC_localtime); $wday = date("w",$AC_localtime); $year = date("Y",$AC_localtime); $dsec = ( ( ($hour * 3600) + ($min * 60) ) + $sec ); $AC_processed=0; if ( (!$AC_processed) and ($dst_range == 'SSM-FSN') ) { if ($DBX) {print " "._QXZ("Second Sunday March to First Sunday November")."\n";} #********************************************************************** # SSM-FSN # This is returns 1 if Daylight Savings Time is in effect and 0 if # Standard time is in effect. # Based on Second Sunday March to First Sunday November at 2 am. # INPUTS: # mm INTEGER Month. # dd INTEGER Day of the month. # ns INTEGER Seconds into the day. # dow INTEGER Day of week (0=Sunday, to 6=Saturday) # OPTIONAL INPUT: # timezone INTEGER hour difference UTC - local standard time # (DEFAULT is blank) # make calculations based on UTC time, # which means shift at 10:00 UTC in April # and 9:00 UTC in October # OUTPUT: # INTEGER 1 = DST, 0 = not DST # # S M T W T F S # 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 # # S M T W T F S # 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 # #********************************************************************** $USACAN_DST=0; $mm = $mon; $dd = $mday; $ns = $dsec; $dow= $wday; if ($mm < 3 || $mm > 11) { $USACAN_DST=0; } elseif ($mm >= 4 and $mm <= 10) { $USACAN_DST=1; } elseif ($mm == 3) { if ($dd > 13) { $USACAN_DST=1; } elseif ($dd >= ($dow+8)) { if ($timezone) { if ($dow == 0 and $ns < (7200+$timezone*3600)) { $USACAN_DST=0; } else { $USACAN_DST=1; } } else { if ($dow == 0 and $ns < 7200) { $USACAN_DST=0; } else { $USACAN_DST=1; } } } else { $USACAN_DST=0; } } elseif ($mm == 11) { if ($dd > 7) { $USACAN_DST=0; } elseif ($dd < ($dow+1)) { $USACAN_DST=1; } elseif ($dow == 0) { if ($timezone) { # UTC calculations if ($ns < (7200+($timezone-1)*3600)) { $USACAN_DST=1; } else { $USACAN_DST=0; } } else { # local time calculations if ($ns < 7200) { $USACAN_DST=1; } else { $USACAN_DST=0; } } } else { $USACAN_DST=0; } } # end of month checks if ($DBX) {print " DST: $USACAN_DST\n";} if ($USACAN_DST) {$gmt_offset++;} $AC_processed++; } if ( (!$AC_processed) and ($dst_range == 'FSA-LSO') ) { if ($DBX) {print " "._QXZ("First Sunday April to Last Sunday October")."\n";} #********************************************************************** # FSA-LSO # This is returns 1 if Daylight Savings Time is in effect and 0 if # Standard time is in effect. # Based on first Sunday in April and last Sunday in October at 2 am. #********************************************************************** $USA_DST=0; $mm = $mon; $dd = $mday; $ns = $dsec; $dow= $wday; if ($mm < 4 || $mm > 10) { $USA_DST=0; } elseif ($mm >= 5 and $mm <= 9) { $USA_DST=1; } elseif ($mm == 4) { if ($dd > 7) { $USA_DST=1; } elseif ($dd >= ($dow+1)) { if ($timezone) { if ($dow == 0 and $ns < (7200+$timezone*3600)) { $USA_DST=0; } else { $USA_DST=1; } } else { if ($dow == 0 and $ns < 7200) { $USA_DST=0; } else { $USA_DST=1; } } } else { $USA_DST=0; } } elseif ($mm == 10) { if ($dd < 25) { $USA_DST=1; } elseif ($dd < ($dow+25)) { $USA_DST=1; } elseif ($dow == 0) { if ($timezone) { # UTC calculations if ($ns < (7200+($timezone-1)*3600)) { $USA_DST=1; } else { $USA_DST=0; } } else { # local time calculations if ($ns < 7200) { $USA_DST=1; } else { $USA_DST=0; } } } else { $USA_DST=0; } } # end of month checks if ($DBX) {print " DST: $USA_DST\n";} if ($USA_DST) {$gmt_offset++;} $AC_processed++; } if ( (!$AC_processed) and ($dst_range == 'LSM-LSO') ) { if ($DBX) {print " "._QXZ("Last Sunday March to Last Sunday October")."\n";} #********************************************************************** # This is s 1 if Daylight Savings Time is in effect and 0 if # Standard time is in effect. # Based on last Sunday in March and last Sunday in October at 1 am. #********************************************************************** $GBR_DST=0; $mm = $mon; $dd = $mday; $ns = $dsec; $dow= $wday; if ($mm < 3 || $mm > 10) { $GBR_DST=0; } elseif ($mm >= 4 and $mm <= 9) { $GBR_DST=1; } elseif ($mm == 3) { if ($dd < 25) { $GBR_DST=0; } elseif ($dd < ($dow+25)) { $GBR_DST=0; } elseif ($dow == 0) { if ($timezone) { # UTC calculations if ($ns < (3600+($timezone-1)*3600)) { $GBR_DST=0; } else { $GBR_DST=1; } } else { # local time calculations if ($ns < 3600) { $GBR_DST=0; } else { $GBR_DST=1; } } } else { $GBR_DST=1; } } elseif ($mm == 10) { if ($dd < 25) { $GBR_DST=1; } elseif ($dd < ($dow+25)) { $GBR_DST=1; } elseif ($dow == 0) { if ($timezone) { # UTC calculations if ($ns < (3600+($timezone-1)*3600)) { $GBR_DST=1; } else { $GBR_DST=0; } } else { # local time calculations if ($ns < 3600) { $GBR_DST=1; } else { $GBR_DST=0; } } } else { $GBR_DST=0; } } # end of month checks if ($DBX) {print " DST: $GBR_DST\n";} if ($GBR_DST) {$gmt_offset++;} $AC_processed++; } if ( (!$AC_processed) and ($dst_range == 'LSO-LSM') ) { if ($DBX) {print " "._QXZ("Last Sunday October to Last Sunday March")."\n";} #********************************************************************** # This is s 1 if Daylight Savings Time is in effect and 0 if # Standard time is in effect. # Based on last Sunday in October and last Sunday in March at 1 am. #********************************************************************** $AUS_DST=0; $mm = $mon; $dd = $mday; $ns = $dsec; $dow= $wday; if ($mm < 3 || $mm > 10) { $AUS_DST=1; } elseif ($mm >= 4 and $mm <= 9) { $AUS_DST=0; } elseif ($mm == 3) { if ($dd < 25) { $AUS_DST=1; } elseif ($dd < ($dow+25)) { $AUS_DST=1; } elseif ($dow == 0) { if ($timezone) { # UTC calculations if ($ns < (3600+($timezone-1)*3600)) { $AUS_DST=1; } else { $AUS_DST=0; } } else { # local time calculations if ($ns < 3600) { $AUS_DST=1; } else { $AUS_DST=0; } } } else { $AUS_DST=0; } } elseif ($mm == 10) { if ($dd < 25) { $AUS_DST=0; } elseif ($dd < ($dow+25)) { $AUS_DST=0; } elseif ($dow == 0) { if ($timezone) { # UTC calculations if ($ns < (3600+($timezone-1)*3600)) { $AUS_DST=0; } else { $AUS_DST=1; } } else { # local time calculations if ($ns < 3600) { $AUS_DST=0; } else { $AUS_DST=1; } } } else { $AUS_DST=1; } } # end of month checks if ($DBX) {print " DST: $AUS_DST\n";} if ($AUS_DST) {$gmt_offset++;} $AC_processed++; } if ( (!$AC_processed) and ($dst_range == 'FSO-LSM') ) { if ($DBX) {print " "._QXZ("First Sunday October to Last Sunday March")."\n";} #********************************************************************** # TASMANIA ONLY # This is s 1 if Daylight Savings Time is in effect and 0 if # Standard time is in effect. # Based on first Sunday in October and last Sunday in March at 1 am. #********************************************************************** $AUST_DST=0; $mm = $mon; $dd = $mday; $ns = $dsec; $dow= $wday; if ($mm < 3 || $mm > 10) { $AUST_DST=1; } elseif ($mm >= 4 and $mm <= 9) { $AUST_DST=0; } elseif ($mm == 3) { if ($dd < 25) { $AUST_DST=1; } elseif ($dd < ($dow+25)) { $AUST_DST=1; } elseif ($dow == 0) { if ($timezone) { # UTC calculations if ($ns < (3600+($timezone-1)*3600)) { $AUST_DST=1; } else { $AUST_DST=0; } } else { # local time calculations if ($ns < 3600) { $AUST_DST=1; } else { $AUST_DST=0; } } } else { $AUST_DST=0; } } elseif ($mm == 10) { if ($dd > 7) { $AUST_DST=1; } elseif ($dd >= ($dow+1)) { if ($timezone) { if ($dow == 0 and $ns < (7200+$timezone*3600)) { $AUST_DST=0; } else { $AUST_DST=1; } } else { if ($dow == 0 and $ns < 3600) { $AUST_DST=0; } else { $AUST_DST=1; } } } else { $AUST_DST=0; } } # end of month checks if ($DBX) {print " DST: $AUST_DST\n";} if ($AUST_DST) {$gmt_offset++;} $AC_processed++; } if ( (!$AC_processed) and ($dst_range == 'FSO-FSA') ) { if ($DBX) {print " "._QXZ("Sunday in October to First Sunday in April")."\n";} #********************************************************************** # FSO-FSA # 2008+ AUSTRALIA ONLY (country code 61) # This is returns 1 if Daylight Savings Time is in effect and 0 if # Standard time is in effect. # Based on first Sunday in October and first Sunday in April at 1 am. #********************************************************************** $AUSE_DST=0; $mm = $mon; $dd = $mday; $ns = $dsec; $dow= $wday; if ($mm < 4 or $mm > 10) { $AUSE_DST=1; } elseif ($mm >= 5 and $mm <= 9) { $AUSE_DST=0; } elseif ($mm == 4) { if ($dd > 7) { $AUSE_DST=0; } elseif ($dd >= ($dow+1)) { if ($timezone) { if ($dow == 0 and $ns < (3600+$timezone*3600)) { $AUSE_DST=1; } else { $AUSE_DST=0; } } else { if ($dow == 0 and $ns < 7200) { $AUSE_DST=1; } else { $AUSE_DST=0; } } } else { $AUSE_DST=1; } } elseif ($mm == 10) { if ($dd >= 8) { $AUSE_DST=1; } elseif ($dd >= ($dow+1)) { if ($timezone) { if ($dow == 0 and $ns < (7200+$timezone*3600)) { $AUSE_DST=0; } else { $AUSE_DST=1; } } else { if ($dow == 0 and $ns < 3600) { $AUSE_DST=0; } else { $AUSE_DST=1; } } } else { $AUSE_DST=0; } } # end of month checks if ($DBX) {print " DST: $AUSE_DST\n";} if ($AUSE_DST) {$gmt_offset++;} $AC_processed++; } if ( (!$AC_processed) and ($dst_range == 'FSO-TSM') ) { if ($DBX) {print " "._QXZ("First Sunday October to Third Sunday March")."\n";} #********************************************************************** # This is s 1 if Daylight Savings Time is in effect and 0 if # Standard time is in effect. # Based on first Sunday in October and third Sunday in March at 1 am. #********************************************************************** $NZL_DST=0; $mm = $mon; $dd = $mday; $ns = $dsec; $dow= $wday; if ($mm < 3 || $mm > 10) { $NZL_DST=1; } elseif ($mm >= 4 and $mm <= 9) { $NZL_DST=0; } elseif ($mm == 3) { if ($dd < 14) { $NZL_DST=1; } elseif ($dd < ($dow+14)) { $NZL_DST=1; } elseif ($dow == 0) { if ($timezone) { # UTC calculations if ($ns < (3600+($timezone-1)*3600)) { $NZL_DST=1; } else { $NZL_DST=0; } } else { # local time calculations if ($ns < 3600) { $NZL_DST=1; } else { $NZL_DST=0; } } } else { $NZL_DST=0; } } elseif ($mm == 10) { if ($dd > 7) { $NZL_DST=1; } elseif ($dd >= ($dow+1)) { if ($timezone) { if ($dow == 0 and $ns < (7200+$timezone*3600)) { $NZL_DST=0; } else { $NZL_DST=1; } } else { if ($dow == 0 and $ns < 3600) { $NZL_DST=0; } else { $NZL_DST=1; } } } else { $NZL_DST=0; } } # end of month checks if ($DBX) {print " DST: $NZL_DST\n";} if ($NZL_DST) {$gmt_offset++;} $AC_processed++; } if ( (!$AC_processed) and ($dst_range == 'LSS-FSA') ) { if ($DBX) {print " "._QXZ("Last Sunday in September to First Sunday in April")."\n";} #********************************************************************** # LSS-FSA # 2007+ NEW ZEALAND (country code 64) # This is returns 1 if Daylight Savings Time is in effect and 0 if # Standard time is in effect. # Based on last Sunday in September and first Sunday in April at 1 am. #********************************************************************** $NZLN_DST=0; $mm = $mon; $dd = $mday; $ns = $dsec; $dow= $wday; if ($mm < 4 || $mm > 9) { $NZLN_DST=1; } elseif ($mm >= 5 && $mm <= 9) { $NZLN_DST=0; } elseif ($mm == 4) { if ($dd > 7) { $NZLN_DST=0; } elseif ($dd >= ($dow+1)) { if ($timezone) { if ($dow == 0 && $ns < (3600+$timezone*3600)) { $NZLN_DST=1; } else { $NZLN_DST=0; } } else { if ($dow == 0 && $ns < 7200) { $NZLN_DST=1; } else { $NZLN_DST=0; } } } else { $NZLN_DST=1; } } elseif ($mm == 9) { if ($dd < 25) { $NZLN_DST=0; } elseif ($dd < ($dow+25)) { $NZLN_DST=0; } elseif ($dow == 0) { if ($timezone) { # UTC calculations if ($ns < (3600+($timezone-1)*3600)) { $NZLN_DST=0; } else { $NZLN_DST=1; } } else { # local time calculations if ($ns < 3600) { $NZLN_DST=0; } else { $NZLN_DST=1; } } } else { $NZLN_DST=1; } } # end of month checks if ($DBX) {print " DST: $NZLN_DST\n";} if ($NZLN_DST) {$gmt_offset++;} $AC_processed++; } if ( (!$AC_processed) and ($dst_range == 'TSO-LSF') ) { if ($DBX) {print " "._QXZ("Third Sunday October to Last Sunday February")."\n";} #********************************************************************** # TSO-LSF # This is returns 1 if Daylight Savings Time is in effect and 0 if # Standard time is in effect. Brazil # Based on Third Sunday October to Last Sunday February at 1 am. #********************************************************************** $BZL_DST=0; $mm = $mon; $dd = $mday; $ns = $dsec; $dow= $wday; if ($mm < 2 || $mm > 10) { $BZL_DST=1; } elseif ($mm >= 3 and $mm <= 9) { $BZL_DST=0; } elseif ($mm == 2) { if ($dd < 22) { $BZL_DST=1; } elseif ($dd < ($dow+22)) { $BZL_DST=1; } elseif ($dow == 0) { if ($timezone) { # UTC calculations if ($ns < (3600+($timezone-1)*3600)) { $BZL_DST=1; } else { $BZL_DST=0; } } else { # local time calculations if ($ns < 3600) { $BZL_DST=1; } else { $BZL_DST=0; } } } else { $BZL_DST=0; } } elseif ($mm == 10) { if ($dd < 22) { $BZL_DST=0; } elseif ($dd < ($dow+22)) { $BZL_DST=0; } elseif ($dow == 0) { if ($timezone) { # UTC calculations if ($ns < (3600+($timezone-1)*3600)) { $BZL_DST=0; } else { $BZL_DST=1; } } else { # local time calculations if ($ns < 3600) { $BZL_DST=0; } else { $BZL_DST=1; } } } else { $BZL_DST=1; } } # end of month checks if ($DBX) {print " DST: $BZL_DST\n";} if ($BZL_DST) {$gmt_offset++;} $AC_processed++; } if (!$AC_processed) { if ($DBX) {print " "._QXZ("No DST Method Found")."\n";} if ($DBX) {print " DST: 0\n";} $AC_processed++; } return $gmt_offset; } function mysql_to_mysqli($stmt, $link) { $rslt=mysqli_query($link, $stmt); return $rslt; } function MathZDC($dividend, $divisor, $quotient=0) { if ($divisor==0) { return $quotient; } else if ($dividend==0) { return 0; } else { return ($dividend/$divisor); } } # function to print/echo content, options for length, alignment and ordered internal variables are included function _QXZ($English_text, $sprintf=0, $align="l", $v_one='', $v_two='', $v_three='', $v_four='', $v_five='', $v_six='', $v_seven='', $v_eight='', $v_nine='') { global $SSenable_languages, $SSlanguage_method, $VUselected_language, $link; if ($SSenable_languages == '1') { if ($SSlanguage_method != 'DISABLED') { if ( (strlen($VUselected_language) > 0) and ($VUselected_language != 'default English') ) { if ($SSlanguage_method == 'MYSQL') { $stmt="SELECT translated_text from vicidial_language_phrases where english_text='$English_text' and language_id='$VUselected_language';"; $rslt=mysql_to_mysqli($stmt, $link); $sl_ct = mysqli_num_rows($rslt); if ($sl_ct > 0) { $row=mysqli_fetch_row($rslt); $English_text = $row[0]; } } } } } if (preg_match("/%\ds/",$English_text)) { $English_text = preg_replace("/%1s/", $v_one, $English_text); $English_text = preg_replace("/%2s/", $v_two, $English_text); $English_text = preg_replace("/%3s/", $v_three, $English_text); $English_text = preg_replace("/%4s/", $v_four, $English_text); $English_text = preg_replace("/%5s/", $v_five, $English_text); $English_text = preg_replace("/%6s/", $v_six, $English_text); $English_text = preg_replace("/%7s/", $v_seven, $English_text); $English_text = preg_replace("/%8s/", $v_eight, $English_text); $English_text = preg_replace("/%9s/", $v_nine, $English_text); } ### uncomment to test output # $English_text = str_repeat('*', strlen($English_text)); if ($sprintf>0) { if ($align=="r") { $fmt="%".$sprintf."s"; } else { $fmt="%-".$sprintf."s"; } $English_text=sprintf($fmt, $English_text); } return $English_text; } ?>