2020-10-05 03:41:01 +08:00
< ? php
if ( ! defined ( 'BASEPATH' )) exit ( 'No direct script access allowed' );
class Accumulate_model extends CI_Model
{
2020-10-08 17:45:41 +08:00
function get_accumulated_data ( $band , $award , $mode , $period ) {
2021-09-11 04:59:10 +08:00
$CI =& get_instance ();
$CI -> load -> model ( 'logbooks_model' );
$logbooks_locations_array = $CI -> logbooks_model -> list_logbook_relationships ( $this -> session -> userdata ( 'active_station_logbook' ));
2021-11-15 00:33:24 +08:00
if ( ! $logbooks_locations_array ) {
return array ();
}
2021-09-11 04:59:10 +08:00
$location_list = " ' " . implode ( " ',' " , $logbooks_locations_array ) . " ' " ;
2020-10-05 03:41:01 +08:00
2020-10-07 03:12:14 +08:00
switch ( $award ) {
2021-09-11 04:59:10 +08:00
case 'dxcc' : $result = $this -> get_accumulated_dxcc ( $band , $mode , $period , $location_list ); break ;
case 'was' : $result = $this -> get_accumulated_was ( $band , $mode , $period , $location_list ); break ;
case 'iota' : $result = $this -> get_accumulated_iota ( $band , $mode , $period , $location_list ); break ;
case 'waz' : $result = $this -> get_accumulated_waz ( $band , $mode , $period , $location_list ); break ;
2020-10-07 03:12:14 +08:00
}
return $result ;
}
2021-09-11 04:59:10 +08:00
function get_accumulated_dxcc ( $band , $mode , $period , $location_list ) {
2022-09-04 00:01:36 +08:00
2020-10-08 17:45:41 +08:00
if ( $period == " year " ) {
2022-09-04 00:01:36 +08:00
$sql = " select year(thcv.col_time_on) year " ;
2020-10-08 17:45:41 +08:00
}
else if ( $period == " month " ) {
2022-09-04 00:01:36 +08:00
$sql = " select date_format(col_time_on, '%Y%m') year " ;
2020-10-08 17:45:41 +08:00
}
2020-10-05 03:41:01 +08:00
2022-09-04 00:01:36 +08:00
$sql .= " , coalesce(y.tot, 0) tot
from " . $this->config ->item('table_name') . " thcv
left outer join (
select count ( col_dxcc ) as tot , year
from ( select distinct " ;
if ( $period == " year " ) {
$sql .= " year(col_time_on) " ;
}
else if ( $period == " month " ) {
$sql .= " date_format(col_time_on, '%Y%m') " ;
}
$sql .= " year, col_dxcc
from " . $this->config ->item('table_name') .
" where col_dxcc > 0 and station_id in ( " . $location_list . " ) " ;
2020-10-05 03:41:01 +08:00
if ( $band != 'All' ) {
if ( $band == 'SAT' ) {
$sql .= " and col_prop_mode =' " . $band . " ' " ;
} else {
$sql .= " and col_prop_mode !='SAT' " ;
$sql .= " and col_band =' " . $band . " ' " ;
}
}
2020-10-08 17:45:41 +08:00
if ( $mode != 'All' ) {
2021-09-11 04:59:10 +08:00
$sql .= " and (col_mode =' " . $mode . " ' or col_submode =' " . $mode . " ') " ;
2020-10-08 17:45:41 +08:00
}
2022-09-04 00:01:36 +08:00
$sql .= " order by year
) x
where not exists ( select 1 from " . $this->config ->item('table_name') . " where " ;
if ( $period == " year " ) {
$sql .= " year(col_time_on) < year " ;;
}
else if ( $period == " month " ) {
$sql .= " date_format(col_time_on, '%Y%m') < year " ;;
}
$sql .= " and col_dxcc = x.col_dxcc " ;
2020-10-07 03:12:14 +08:00
if ( $band != 'All' ) {
if ( $band == 'SAT' ) {
$sql .= " and col_prop_mode =' " . $band . " ' " ;
} else {
$sql .= " and col_prop_mode !='SAT' " ;
$sql .= " and col_band =' " . $band . " ' " ;
}
}
2020-10-08 17:45:41 +08:00
if ( $mode != 'All' ) {
2021-09-11 04:59:10 +08:00
$sql .= " and (col_mode =' " . $mode . " ' or col_submode =' " . $mode . " ') " ;
2020-10-08 17:45:41 +08:00
}
2022-09-04 00:01:36 +08:00
$sql .= " and station_id in ( " . $location_list . " ))
group by year
order by year " ;
2021-09-11 04:59:10 +08:00
2020-10-08 17:45:41 +08:00
if ( $period == " year " ) {
2022-09-04 00:01:36 +08:00
$sql .= " ) y on year(thcv.col_time_on) = y.year " ;
2020-10-08 17:45:41 +08:00
}
else if ( $period == " month " ) {
2022-09-04 00:01:36 +08:00
$sql .= " ) y on date_format(col_time_on, '%Y%m') = y.year " ;
}
$sql .= " where thcv.col_dxcc > 0 " ;
if ( $band != 'All' ) {
if ( $band == 'SAT' ) {
$sql .= " and col_prop_mode =' " . $band . " ' " ;
} else {
$sql .= " and col_prop_mode !='SAT' " ;
$sql .= " and col_band =' " . $band . " ' " ;
}
}
if ( $mode != 'All' ) {
$sql .= " and (col_mode =' " . $mode . " ' or col_submode =' " . $mode . " ') " ;
}
$sql .= " and station_id in ( " . $location_list . " ) " ;
if ( $period == " year " ) {
$sql .= " group by year(thcv.col_time_on), y.tot
order by year ( thcv . col_time_on ) " ;
}
else if ( $period == " month " ) {
$sql .= " group by date_format(col_time_on, '%Y%m'), y.tot
order by date_format ( col_time_on , '%Y%m' ) " ;
2020-10-08 17:45:41 +08:00
}
2020-10-07 03:12:14 +08:00
$query = $this -> db -> query ( $sql );
2022-09-04 00:01:36 +08:00
return $this -> count_and_add_accumulated_total ( $query -> result ());
}
function count_and_add_accumulated_total ( $array ) {
$counter = 0 ;
for ( $i = 0 ; $i < count ( $array ); $i ++ ) {
$array [ $i ] -> total = $array [ $i ] -> tot + $counter ;
$counter = $array [ $i ] -> total ;
}
return $array ;
2020-10-07 03:12:14 +08:00
}
2021-09-11 04:59:10 +08:00
function get_accumulated_was ( $band , $mode , $period , $location_list ) {
2020-10-08 17:45:41 +08:00
if ( $period == " year " ) {
$sql = " SELECT year(col_time_on) as year,
( select count ( distinct b . col_state ) from " .
$this -> config -> item ( 'table_name' ) .
2021-09-11 04:59:10 +08:00
" as b where year(col_time_on) <= year and b.station_id in ( " . $location_list . " ) " ;
2020-10-08 17:45:41 +08:00
}
else if ( $period == " month " ) {
$sql = " SELECT date_format(col_time_on, '%Y%m') as year,
( select count ( distinct b . col_state ) from " .
$this -> config -> item ( 'table_name' ) .
2021-09-11 04:59:10 +08:00
" as b where date_format(col_time_on, '%Y%m') <= year and b.station_id in ( " . $location_list . " ) " ;
2020-10-08 17:45:41 +08:00
}
2020-10-07 03:12:14 +08:00
if ( $band != 'All' ) {
if ( $band == 'SAT' ) {
$sql .= " and col_prop_mode =' " . $band . " ' " ;
} else {
$sql .= " and col_prop_mode !='SAT' " ;
$sql .= " and col_band =' " . $band . " ' " ;
}
}
2020-10-08 17:45:41 +08:00
if ( $mode != 'All' ) {
2021-09-11 04:59:10 +08:00
$sql .= " and (col_mode =' " . $mode . " ' or col_submode =' " . $mode . " ') " ;
2020-10-08 17:45:41 +08:00
}
2020-10-07 03:12:14 +08:00
$sql .= " and COL_DXCC in ('291', '6', '110') " ;
$sql .= " and COL_STATE in ('AK','AL','AR','AZ','CA','CO','CT','DE','FL','GA','HI','IA','ID','IL','IN','KS','KY','LA','MA','MD','ME','MI','MN','MO','MS','MT','NC','ND','NE','NH','NJ','NM','NV','NY','OH','OK','OR','PA','RI','SC','SD','TN','TX','UT','VA','VT','WA','WI','WV','WY') " ;
$sql .= " ) total from " . $this -> config -> item ( 'table_name' ) . " as a
2021-09-11 04:59:10 +08:00
where a . station_id in ( " . $location_list . " ) " ;
2020-10-07 03:12:14 +08:00
if ( $band != 'All' ) {
if ( $band == 'SAT' ) {
$sql .= " and col_prop_mode =' " . $band . " ' " ;
} else {
$sql .= " and col_prop_mode !='SAT' " ;
$sql .= " and col_band =' " . $band . " ' " ;
}
}
2020-10-08 17:45:41 +08:00
if ( $mode != 'All' ) {
2021-09-11 04:59:10 +08:00
$sql .= " and (col_mode =' " . $mode . " ' or col_submode =' " . $mode . " ') " ;
2020-10-08 17:45:41 +08:00
}
2020-10-07 03:12:14 +08:00
$sql .= " and COL_DXCC in ('291', '6', '110') " ;
$sql .= " and COL_STATE in ('AK','AL','AR','AZ','CA','CO','CT','DE','FL','GA','HI','IA','ID','IL','IN','KS','KY','LA','MA','MD','ME','MI','MN','MO','MS','MT','NC','ND','NE','NH','NJ','NM','NV','NY','OH','OK','OR','PA','RI','SC','SD','TN','TX','UT','VA','VT','WA','WI','WV','WY') " ;
2020-10-08 17:45:41 +08:00
if ( $period == " year " ) {
2021-09-11 04:59:10 +08:00
$sql .= " group by year(a.col_time_on)
2020-10-07 03:12:14 +08:00
order by year ( a . col_time_on ) " ;
2020-10-08 17:45:41 +08:00
}
else if ( $period == " month " ) {
2021-09-11 04:59:10 +08:00
$sql .= " group by date_format(a.col_time_on, '%Y%m')
2020-10-08 17:45:41 +08:00
order by date_format ( a . col_time_on , '%Y%m' ) " ;
}
2020-10-07 03:12:14 +08:00
$query = $this -> db -> query ( $sql );
return $query -> result ();
}
2021-09-11 04:59:10 +08:00
function get_accumulated_iota ( $band , $mode , $period , $location_list ) {
2020-10-08 17:45:41 +08:00
if ( $period == " year " ) {
$sql = " SELECT year(col_time_on) as year,
( select count ( distinct b . col_iota ) from " .
$this -> config -> item ( 'table_name' ) .
2021-09-11 04:59:10 +08:00
" as b where year(col_time_on) <= year and b.station_id in ( " . $location_list . " ) " ;
2020-10-08 17:45:41 +08:00
}
else if ( $period == " month " ) {
$sql = " SELECT date_format(col_time_on, '%Y%m') as year,
( select count ( distinct b . col_iota ) from " .
$this -> config -> item ( 'table_name' ) .
2021-09-11 04:59:10 +08:00
" as b where date_format(col_time_on, '%Y%m') <= year and b.station_id in ( " . $location_list . " ) " ;
2020-10-08 17:45:41 +08:00
}
2020-10-07 03:12:14 +08:00
if ( $band != 'All' ) {
if ( $band == 'SAT' ) {
$sql .= " and col_prop_mode =' " . $band . " ' " ;
} else {
$sql .= " and col_prop_mode !='SAT' " ;
$sql .= " and col_band =' " . $band . " ' " ;
}
}
2020-10-08 17:45:41 +08:00
if ( $mode != 'All' ) {
2021-09-11 04:59:10 +08:00
$sql .= " and (col_mode =' " . $mode . " ' or col_submode =' " . $mode . " ') " ;
2020-10-08 17:45:41 +08:00
}
2020-10-07 03:12:14 +08:00
$sql .= " ) total from " . $this -> config -> item ( 'table_name' ) . " as a
2021-09-11 04:59:10 +08:00
where a . station_id in ( " . $location_list . " ) " ;
2020-10-07 03:12:14 +08:00
if ( $band != 'All' ) {
if ( $band == 'SAT' ) {
$sql .= " and col_prop_mode =' " . $band . " ' " ;
} else {
$sql .= " and col_prop_mode !='SAT' " ;
$sql .= " and col_band =' " . $band . " ' " ;
}
}
2020-10-08 17:45:41 +08:00
if ( $mode != 'All' ) {
2021-09-11 04:59:10 +08:00
$sql .= " and (col_mode =' " . $mode . " ' or col_submode =' " . $mode . " ') " ;
2020-10-08 17:45:41 +08:00
}
if ( $period == " year " ) {
2021-09-11 04:59:10 +08:00
$sql .= " group by year(a.col_time_on)
2020-10-07 03:12:14 +08:00
order by year ( a . col_time_on ) " ;
2020-10-08 17:45:41 +08:00
}
else if ( $period == " month " ) {
2021-09-11 04:59:10 +08:00
$sql .= " group by date_format(a.col_time_on, '%Y%m')
2020-10-08 17:45:41 +08:00
order by date_format ( a . col_time_on , '%Y%m' ) " ;
}
2020-10-07 03:12:14 +08:00
$query = $this -> db -> query ( $sql );
return $query -> result ();
}
2021-09-11 04:59:10 +08:00
function get_accumulated_waz ( $band , $mode , $period , $location_list ) {
2020-10-08 17:45:41 +08:00
if ( $period == " year " ) {
$sql = " SELECT year(col_time_on) as year,
( select count ( distinct b . col_cqz ) from " .
$this -> config -> item ( 'table_name' ) .
2021-09-11 04:59:10 +08:00
" as b where year(col_time_on) <= year and b.station_id in ( " . $location_list . " ) " ;
2020-10-08 17:45:41 +08:00
}
else if ( $period == " month " ) {
$sql = " SELECT date_format(col_time_on, '%Y%m') as year,
( select count ( distinct b . col_cqz ) from " .
$this -> config -> item ( 'table_name' ) .
2021-09-11 04:59:10 +08:00
" as b where date_format(col_time_on, '%Y%m') <= year and b.station_id in ( " . $location_list . " ) " ;
2020-10-08 17:45:41 +08:00
}
2020-10-07 03:12:14 +08:00
if ( $band != 'All' ) {
if ( $band == 'SAT' ) {
$sql .= " and col_prop_mode =' " . $band . " ' " ;
} else {
$sql .= " and col_prop_mode !='SAT' " ;
$sql .= " and col_band =' " . $band . " ' " ;
}
}
2020-10-08 17:45:41 +08:00
if ( $mode != 'All' ) {
2021-09-11 04:59:10 +08:00
$sql .= " and (col_mode =' " . $mode . " ' or col_submode =' " . $mode . " ') " ;
2020-10-08 17:45:41 +08:00
}
2020-10-07 03:12:14 +08:00
$sql .= " ) total from " . $this -> config -> item ( 'table_name' ) . " as a
2021-09-11 04:59:10 +08:00
where a . station_id in ( " . $location_list . " ) " ;
2020-10-07 03:12:14 +08:00
if ( $band != 'All' ) {
if ( $band == 'SAT' ) {
$sql .= " and col_prop_mode =' " . $band . " ' " ;
} else {
$sql .= " and col_prop_mode !='SAT' " ;
$sql .= " and col_band =' " . $band . " ' " ;
}
}
2020-10-08 17:45:41 +08:00
if ( $mode != 'All' ) {
2021-09-11 04:59:10 +08:00
$sql .= " and (col_mode =' " . $mode . " ' or col_submode =' " . $mode . " ') " ;
2020-10-08 17:45:41 +08:00
}
if ( $period == " year " ) {
2021-09-11 04:59:10 +08:00
$sql .= " group by year(a.col_time_on)
2020-10-05 03:41:01 +08:00
order by year ( a . col_time_on ) " ;
2020-10-08 17:45:41 +08:00
}
else if ( $period == " month " ) {
2021-09-11 04:59:10 +08:00
$sql .= " group by date_format(a.col_time_on, '%Y%m')
2020-10-08 17:45:41 +08:00
order by date_format ( a . col_time_on , '%Y%m' ) " ;
}
2020-10-05 03:41:01 +08:00
$query = $this -> db -> query ( $sql );
return $query -> result ();
}
2021-11-13 22:55:17 +08:00
}