Changed Itu to binding

This commit is contained in:
int2001
2024-09-06 11:19:32 +00:00
parent 15cf8dd4ba
commit 5c47fb4702

View File

@@ -6,202 +6,220 @@ class Itu extends CI_Model{
$this->load->library('Genfunctions');
}
function get_itu_array($bands, $postdata, $location_list) {
$ituZ = array(); // Used for keeping track of which states that are not worked
function get_itu_array($bands, $postdata, $location_list) {
$ituZ = array(); // Used for keeping track of which states that are not worked
for ($i = 1; $i <= 90; $i++) {
$ituZ[$i]['count'] = 0; // Inits each itu zone's count
}
$qsl = $this->genfunctions->gen_qsl_from_postdata($postdata);
foreach ($bands as $band) {
for ($i = 1; $i <= 90; $i++) {
$banditu[$i][$band] = '-'; // Sets all to dash to indicate no result
}
if ($postdata['worked'] != NULL) {
$ituBand = $this->getituWorked($location_list, $band, $postdata);
foreach ($ituBand as $line) {
$banditu[$line->col_ituz][$band] = '<div class="bg-danger awardsBgDanger"><a href=\'javascript:displayContacts("' . str_replace("&", "%26", $line->col_ituz) . '","' . $band . '","All", "All","'. $postdata['mode'] . '","ITU","")\'>W</a></div>';
$ituZ[$line->col_ituz]['count']++;
}
}
if ($postdata['confirmed'] != NULL) {
$ituBand = $this->getituConfirmed($location_list, $band, $postdata);
foreach ($ituBand as $line) {
$banditu[$line->col_ituz][$band] = '<div class="bg-success awardsBgSuccess"><a href=\'javascript:displayContacts("' . str_replace("&", "%26", $line->col_ituz) . '","' . $band . '","All", "All","'. $postdata['mode'] . '","ITU","'.$qsl.'")\'>C</a></div>';
$ituZ[$line->col_ituz]['count']++;
}
}
}
// We want to remove the worked zones in the list, since we do not want to display them
if ($postdata['worked'] == NULL) {
$ituBand = $this->getituWorked($location_list, $postdata['band'], $postdata);
foreach ($ituBand as $line) {
unset($banditu[$line->col_ituz]);
}
}
// We want to remove the confirmed zones in the list, since we do not want to display them
if ($postdata['confirmed'] == NULL) {
$ituBand = $this->getituConfirmed($location_list, $postdata['band'], $postdata);
foreach ($ituBand as $line) {
unset($banditu[$line->col_ituz]);
}
}
if ($postdata['notworked'] == NULL) {
for ($i = 1; $i <= 90; $i++) {
if ($ituZ[$i]['count'] == 0) {
unset($banditu[$i]);
};
}
}
if (isset($banditu)) {
return $banditu;
} else {
return 0;
}
}
/*
* Function returns all worked, but not confirmed states
* $postdata contains data from the form, in this case Lotw or QSL are used
*/
function getituWorked($location_list, $band, $postdata) {
$sql = "SELECT distinct col_ituz FROM " . $this->config->item('table_name') . " thcv
where station_id in (" . $location_list . ") and col_ituz <= 90 and col_ituz <> ''";
if ($postdata['mode'] != 'All') {
$sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')";
for ($i = 1; $i <= 90; $i++) {
$ituZ[$i]['count'] = 0; // Inits each itu zone's count
}
$sql .= $this->genfunctions->addBandToQuery($band);
$qsl = $this->genfunctions->gen_qsl_from_postdata($postdata);
$sql .= " and not exists (select 1 from " . $this->config->item('table_name') .
" where station_id in (" . $location_list .
") and col_ituz = thcv.col_ituz and col_ituz <> '' ";
foreach ($bands as $band) {
for ($i = 1; $i <= 90; $i++) {
$banditu[$i][$band] = '-'; // Sets all to dash to indicate no result
}
if ($postdata['mode'] != 'All') {
$sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')";
if ($postdata['worked'] != NULL) {
$ituBand = $this->getituWorked($location_list, $band, $postdata);
foreach ($ituBand as $line) {
$banditu[$line->col_ituz][$band] = '<div class="bg-danger awardsBgDanger"><a href=\'javascript:displayContacts("' . str_replace("&", "%26", $line->col_ituz) . '","' . $band . '","All", "All","'. $postdata['mode'] . '","ITU","")\'>W</a></div>';
$ituZ[$line->col_ituz]['count']++;
}
}
if ($postdata['confirmed'] != NULL) {
$ituBand = $this->getituConfirmed($location_list, $band, $postdata);
foreach ($ituBand as $line) {
$banditu[$line->col_ituz][$band] = '<div class="bg-success awardsBgSuccess"><a href=\'javascript:displayContacts("' . str_replace("&", "%26", $line->col_ituz) . '","' . $band . '","All", "All","'. $postdata['mode'] . '","ITU","'.$qsl.'")\'>C</a></div>';
$ituZ[$line->col_ituz]['count']++;
}
}
}
$sql .= $this->genfunctions->addBandToQuery($band);
$sql .= $this->genfunctions->addQslToQuery($postdata);
$sql .= ")";
$query = $this->db->query($sql);
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 getituConfirmed($location_list, $band, $postdata) {
$sql = "SELECT distinct col_ituz FROM " . $this->config->item('table_name') . " thcv
where station_id in (" . $location_list . ") and col_ituz <= 90 and col_ituz <> ''";
if ($postdata['mode'] != 'All') {
$sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')";
// We want to remove the worked zones in the list, since we do not want to display them
if ($postdata['worked'] == NULL) {
$ituBand = $this->getituWorked($location_list, $postdata['band'], $postdata);
foreach ($ituBand as $line) {
unset($banditu[$line->col_ituz]);
}
}
$sql .= $this->genfunctions->addBandToQuery($band);
// We want to remove the confirmed zones in the list, since we do not want to display them
if ($postdata['confirmed'] == NULL) {
$ituBand = $this->getituConfirmed($location_list, $postdata['band'], $postdata);
foreach ($ituBand as $line) {
unset($banditu[$line->col_ituz]);
}
}
$sql .= $this->genfunctions->addQslToQuery($postdata);
if ($postdata['notworked'] == NULL) {
for ($i = 1; $i <= 90; $i++) {
if ($ituZ[$i]['count'] == 0) {
unset($banditu[$i]);
};
}
}
$query = $this->db->query($sql);
if (isset($banditu)) {
return $banditu;
} else {
return 0;
}
}
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 getituWorked($location_list, $band, $postdata) {
$bindings=[];
$sql = "SELECT distinct col_ituz FROM " . $this->config->item('table_name') . " thcv
where station_id in (" . $location_list . ") and col_ituz <= 90 and col_ituz <> ''";
if ($postdata['mode'] != 'All') {
$sql .= " and (col_mode = ? or col_submode = ?)";
$bindings[]=$postdata['mode'];
$bindings[]=$postdata['mode'];
}
$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_ituz = thcv.col_ituz and col_ituz <> '' ";
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 .= ")";
$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 getituConfirmed($location_list, $band, $postdata) {
$bindings=[];
$sql = "SELECT distinct col_ituz FROM " . $this->config->item('table_name') . " thcv
where station_id in (" . $location_list . ") and col_ituz <= 90 and col_ituz <> ''";
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);
$query = $this->db->query($sql,$bindings);
return $query->result();
}
/*
* Function gets worked and confirmed summary on each band on the active stationprofile
*/
function get_itu_summary($bands, $postdata, $location_list) {
foreach ($bands as $band) {
$worked = $this->getSummaryByBand($band, $postdata, $location_list);
$confirmed = $this->getSummaryByBandConfirmed($band, $postdata, $location_list);
$ituSummary['worked'][$band] = $worked[0]->count;
$ituSummary['confirmed'][$band] = $confirmed[0]->count;
}
/*
* Function gets worked and confirmed summary on each band on the active stationprofile
*/
function get_itu_summary($bands, $postdata, $location_list) {
foreach ($bands as $band) {
$worked = $this->getSummaryByBand($band, $postdata, $location_list);
$confirmed = $this->getSummaryByBandConfirmed($band, $postdata, $location_list);
$ituSummary['worked'][$band] = $worked[0]->count;
$ituSummary['confirmed'][$band] = $confirmed[0]->count;
}
$workedTotal = $this->getSummaryByBand($postdata['band'], $postdata, $location_list);
$confirmedTotal = $this->getSummaryByBandConfirmed($postdata['band'], $postdata, $location_list);
$workedTotal = $this->getSummaryByBand($postdata['band'], $postdata, $location_list);
$confirmedTotal = $this->getSummaryByBandConfirmed($postdata['band'], $postdata, $location_list);
$ituSummary['worked']['Total'] = $workedTotal[0]->count;
$ituSummary['confirmed']['Total'] = $confirmedTotal[0]->count;
$ituSummary['worked']['Total'] = $workedTotal[0]->count;
$ituSummary['confirmed']['Total'] = $confirmedTotal[0]->count;
return $ituSummary;
}
return $ituSummary;
}
function getSummaryByBand($band, $postdata, $location_list) {
$sql = "SELECT count(distinct thcv.col_ituz) as count FROM " . $this->config->item('table_name') . " thcv";
function getSummaryByBand($band, $postdata, $location_list) {
$bindings=[];
$sql = "SELECT count(distinct thcv.col_ituz) as count FROM " . $this->config->item('table_name') . " thcv";
$sql .= " where station_id in (" . $location_list . ') and col_ituz <= 90 and col_ituz > 0';
$sql .= " where station_id in (" . $location_list . ') and col_ituz <= 90 and col_ituz > 0';
if ($band == 'SAT') {
$sql .= " and thcv.col_prop_mode ='" . $band . "'";
} else if ($band == 'All') {
$this->load->model('bands');
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('cq');
$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 ='" . $band . "'";
}
if ($postdata['mode'] != 'All') {
$sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')";
" and thcv.col_prop_mode !='SAT'";
} else {
$sql .= " and thcv.col_prop_mode !='SAT'";
$sql .= " and thcv.col_band = ?";
$bindings[]=$band;
}
$query = $this->db->query($sql);
if ($postdata['mode'] != 'All') {
$sql .= " and (col_mode = ? or col_submode = ?)";
$bindings[]=$postdata['mode'];
$bindings[]=$postdata['mode'];
}
return $query->result();
}
$query = $this->db->query($sql,$bindings);
function getSummaryByBandConfirmed($band, $postdata, $location_list){
$sql = "SELECT count(distinct thcv.col_ituz) as count FROM " . $this->config->item('table_name') . " thcv";
return $query->result();
}
$sql .= " where station_id in (" . $location_list . ') and col_ituz <= 90 and col_ituz > 0';
function getSummaryByBandConfirmed($band, $postdata, $location_list){
$bindings=[];
$sql = "SELECT count(distinct thcv.col_ituz) as count FROM " . $this->config->item('table_name') . " thcv";
if ($band == 'SAT') {
$sql .= " and thcv.col_prop_mode ='" . $band . "'";
} else if ($band == 'All') {
$this->load->model('bands');
$sql .= " where station_id in (" . $location_list . ') and col_ituz <= 90 and col_ituz > 0';
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('cq');
$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 ='" . $band . "'";
}
if ($postdata['mode'] != 'All') {
$sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')";
" and thcv.col_prop_mode !='SAT'";
} else {
$sql .= " and thcv.col_prop_mode !='SAT'";
$sql .= " and thcv.col_band = ?";
$bindings[]=$band;
}
$sql .= $this->genfunctions->addQslToQuery($postdata);
if ($postdata['mode'] != 'All') {
$sql .= " and (col_mode = ? or col_submode = ?)";
$bindings[]=$postdata['mode'];
$bindings[]=$postdata['mode'];
}
$query = $this->db->query($sql);
$sql .= $this->genfunctions->addQslToQuery($postdata);
return $query->result();
}
$query = $this->db->query($sql, $bindings);
return $query->result();
}
}