mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
226 lines
7.0 KiB
PHP
226 lines
7.0 KiB
PHP
<?php
|
|
|
|
class Itu extends CI_Model{
|
|
|
|
function __construct() {
|
|
$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
|
|
|
|
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 awardsBgWarning"><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) {
|
|
$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;
|
|
}
|
|
|
|
$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;
|
|
|
|
return $ituSummary;
|
|
}
|
|
|
|
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';
|
|
|
|
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 = ?";
|
|
$bindings[]=$band;
|
|
}
|
|
|
|
if ($postdata['mode'] != 'All') {
|
|
$sql .= " and (col_mode = ? or col_submode = ?)";
|
|
$bindings[]=$postdata['mode'];
|
|
$bindings[]=$postdata['mode'];
|
|
}
|
|
|
|
$query = $this->db->query($sql,$bindings);
|
|
|
|
return $query->result();
|
|
}
|
|
|
|
function getSummaryByBandConfirmed($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';
|
|
|
|
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 = ?";
|
|
$bindings[]=$band;
|
|
}
|
|
|
|
if ($postdata['mode'] != 'All') {
|
|
$sql .= " and (col_mode = ? or col_submode = ?)";
|
|
$bindings[]=$postdata['mode'];
|
|
$bindings[]=$postdata['mode'];
|
|
}
|
|
|
|
$sql .= $this->genfunctions->addQslToQuery($postdata);
|
|
|
|
$query = $this->db->query($sql, $bindings);
|
|
|
|
return $query->result();
|
|
}
|
|
|
|
}
|