load->library('Genfunctions'); } public $stateString = 'DR,FL,FR,GD,GR,LB,NB,NH,OV,UT,ZH,ZL'; function get_wap_array($bands, $postdata) { $CI =& get_instance(); $CI->load->model('logbooks_model'); $logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); if (!$logbooks_locations_array) { return null; } $location_list = "'".implode("','",$logbooks_locations_array)."'"; $stateArray = explode(',', $this->stateString); $states = array(); // Used for keeping track of which states that are not worked $qsl = $this->genfunctions->gen_qsl_from_postdata($postdata); foreach ($stateArray as $state) { // Generating array for use in the table $states[$state]['count'] = 0; // Inits each state's count } foreach ($bands as $band) { foreach ($stateArray as $state) { // Generating array for use in the table $bandwap[$state][$band] = '-'; // Sets all to dash to indicate no result } if ($postdata['worked'] != NULL) { $wapBand = $this->getwapWorked($location_list, $band, $postdata); foreach ($wapBand as $line) { $bandwap[$line->col_state][$band] = '
'; $states[$line->col_state]['count']++; } } if ($postdata['confirmed'] != NULL) { $wapBand = $this->getwapConfirmed($location_list, $band, $postdata); foreach ($wapBand as $line) { $bandwap[$line->col_state][$band] = ''; $states[$line->col_state]['count']++; } } } // We want to remove the worked states in the list, since we do not want to display them if ($postdata['worked'] == NULL) { $wapBand = $this->getwapWorked($location_list, $postdata['band'], $postdata); foreach ($wapBand as $line) { unset($bandwap[$line->col_state]); } } // We want to remove the confirmed states in the list, since we do not want to display them if ($postdata['confirmed'] == NULL) { $wapBand = $this->getwapConfirmed($location_list, $postdata['band'], $postdata); foreach ($wapBand as $line) { unset($bandwap[$line->col_state]); } } if ($postdata['notworked'] == NULL) { foreach ($stateArray as $state) { if ($states[$state]['count'] == 0) { unset($bandwap[$state]); }; } } if (isset($bandwap)) { return $bandwap; } else { return 0; } } /* * Function gets worked and confirmed summary on each band on the active stationprofile */ function get_wap_summary($bands, $postdata) { $this->load->model('logbooks_model'); $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); if (!$logbooks_locations_array) { return null; } $location_list = "'".implode("','",$logbooks_locations_array)."'"; foreach ($bands as $band) { $worked = $this->getSummaryByBand($band, $postdata, $location_list); $confirmed = $this->getSummaryByBandConfirmed($band, $postdata, $location_list); $wapSummary['worked'][$band] = $worked[0]->count; $wapSummary['confirmed'][$band] = $confirmed[0]->count; } $workedTotal = $this->getSummaryByBand($postdata['band'], $postdata, $location_list); $confirmedTotal = $this->getSummaryByBandConfirmed($postdata['band'], $postdata, $location_list); $wapSummary['worked']['Total'] = $workedTotal[0]->count; $wapSummary['confirmed']['Total'] = $confirmedTotal[0]->count; return $wapSummary; } function getSummaryByBand($band, $postdata, $location_list) { $bindings=[]; $sql = "SELECT count(distinct thcv.col_state) as count FROM " . $this->config->item('table_name') . " thcv"; $sql .= " where station_id in (" . $location_list . ")"; if ($band == 'SAT') { $sql .= " and thcv.col_prop_mode = ?"; $bindings[]=$band; } else if ($band == 'All') { $this->load->model('bands'); $bandslots = $this->bands->get_worked_bands('wap'); $bandslots_list = "'".implode("','",$bandslots)."'"; $sql .= " and thcv.col_band in (" . $bandslots_list . ")" . " and thcv.col_prop_mode !='SAT'"; } else { $sql .= " and thcv.col_prop_mode !='SAT'"; $sql .= " and thcv.col_band = ?"; $bindings[]=$band; } if ($postdata['mode'] != 'All') { $sql .= " and (col_mode = ? or col_submode = ?)"; $bindings[]=$postdata['mode']; $bindings[]=$postdata['mode']; } $sql .= $this->addStateToQuery(); $query = $this->db->query($sql,$bindings); return $query->result(); } function getSummaryByBandConfirmed($band, $postdata, $location_list) { $bindings=[]; $sql = "SELECT count(distinct thcv.col_state) as count FROM " . $this->config->item('table_name') . " thcv"; $sql .= " where station_id in (" . $location_list . ")"; if ($band == 'SAT') { $sql .= " and thcv.col_prop_mode = ?"; $bindings[]=$band; } else if ($band == 'All') { $this->load->model('bands'); $bandslots = $this->bands->get_worked_bands('wap'); $bandslots_list = "'".implode("','",$bandslots)."'"; $sql .= " and thcv.col_band in (" . $bandslots_list . ")" . " and thcv.col_prop_mode !='SAT'"; } else { $sql .= " and thcv.col_prop_mode !='SAT'"; $sql .= " and thcv.col_band = ?"; $bindings[]=$band; } if ($postdata['mode'] != 'All') { $sql .= " and (col_mode = ? or col_submode = ?)"; $bindings[]=$postdata['mode']; $bindings[]=$postdata['mode']; } $sql .= $this->genfunctions->addQslToQuery($postdata); $sql .= $this->addStateToQuery(); $query = $this->db->query($sql,$bindings); return $query->result(); } /* * Function returns all worked, but not confirmed states * $postdata contains data from the form, in this case Lotw or QSL are used */ function getwapWorked($location_list, $band, $postdata) { $bindings=[]; $sql = "SELECT distinct col_state FROM " . $this->config->item('table_name') . " thcv where station_id in (" . $location_list . ")"; if ($postdata['mode'] != 'All') { $sql .= " and (col_mode = ? or col_submode = ?)"; $bindings[]=$postdata['mode']; $bindings[]=$postdata['mode']; } $sql .= $this->addStateToQuery(); $sql .= $this->genfunctions->addBandToQuery($band,$bindings); $sql .= " and not exists (select 1 from ". $this->config->item('table_name') . " where station_id in (". $location_list . ")" . " and col_state = thcv.col_state"; if ($postdata['mode'] != 'All') { $sql .= " and (col_mode = ? or col_submode = ?)"; $bindings[]=$postdata['mode']; $bindings[]=$postdata['mode']; } $sql .= $this->genfunctions->addBandToQuery($band,$bindings); $sql .= $this->genfunctions->addQslToQuery($postdata); $sql .= $this->addStateToQuery(); $sql .= ")"; $query = $this->db->query($sql,$bindings); return $query->result(); } /* * Function returns all confirmed states on given band and on LoTW or QSL * $postdata contains data from the form, in this case Lotw or QSL are used */ function getwapConfirmed($location_list, $band, $postdata) { $bindings=[]; $sql = "SELECT distinct col_state FROM " . $this->config->item('table_name') . " thcv where station_id in (" . $location_list . ")"; if ($postdata['mode'] != 'All') { $sql .= " and (col_mode = ? or col_submode = ?)"; $bindings[]=$postdata['mode']; $bindings[]=$postdata['mode']; } $sql .= $this->addStateToQuery(); $sql .= $this->genfunctions->addBandToQuery($band,$bindings); $sql .= $this->genfunctions->addQslToQuery($postdata); $query = $this->db->query($sql,$bindings); return $query->result(); } function addStateToQuery() { $sql = ''; $sql .= " and COL_DXCC in ('263')"; $sql .= " and COL_STATE in ('DR','FL','FR','GD','GR','LB','NB','NH','OV','UT','ZH','ZL')"; return $sql; } } ?>