wavelog/application/models/Rac.php

267 lines
8 KiB
PHP
Raw Normal View History

2024-01-08 10:17:53 +01:00
<?php
class rac extends CI_Model {
2024-02-18 12:32:54 +00:00
function __construct() {
2024-02-18 14:54:45 +00:00
$this->load->library('Genfunctions');
2024-02-18 12:32:54 +00:00
}
2024-01-08 10:17:53 +01:00
public $stateString = 'AB,BC,MB,NB,NL,NT,NS,NU,ON,PE,QC,SK,YT';
2024-01-31 14:04:21 +00:00
function get_rac_array($bands, $postdata) {
2024-01-08 10:17:53 +01:00
$CI =& get_instance();
$CI->load->model('logbooks_model');
$logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook'));
2024-01-31 14:04:21 +00:00
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
2024-09-06 11:53:18 +00:00
$qsl = $this->genfunctions->gen_qsl_from_postdata($postdata);
2024-01-31 14:04:21 +00:00
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
$bandrac[$state][$band] = '-'; // Sets all to dash to indicate no result
}
if ($postdata['worked'] != NULL) {
$racBand = $this->getracWorked($location_list, $band, $postdata);
foreach ($racBand as $line) {
2024-04-14 13:58:23 +02:00
$bandrac[$line->col_state][$band] = '<div class="bg-danger awardsBgDanger"><a href=\'javascript:displayContacts("' . $line->col_state . '","' . $band . '","All","All","'. $postdata['mode'] . '","RAC", "")\'>W</a></div>';
2024-01-31 14:04:21 +00:00
$states[$line->col_state]['count']++;
}
}
if ($postdata['confirmed'] != NULL) {
$racBand = $this->getracConfirmed($location_list, $band, $postdata);
foreach ($racBand as $line) {
2024-04-14 13:58:23 +02:00
$bandrac[$line->col_state][$band] = '<div class="bg-success awardsBgSuccess"><a href=\'javascript:displayContacts("' . $line->col_state . '","' . $band . '","All","All","'. $postdata['mode'] . '","RAC", "'.$qsl.'")\'>C</a></div>';
2024-01-31 14:04:21 +00:00
$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) {
$racBand = $this->getracWorked($location_list, $postdata['band'], $postdata);
foreach ($racBand as $line) {
unset($bandrac[$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) {
$racBand = $this->getracConfirmed($location_list, $postdata['band'], $postdata);
foreach ($racBand as $line) {
unset($bandrac[$line->col_state]);
}
}
if ($postdata['notworked'] == NULL) {
foreach ($stateArray as $state) {
if ($states[$state]['count'] == 0) {
unset($bandrac[$state]);
};
}
}
if (isset($bandrac)) {
return $bandrac;
}
else {
return 0;
}
}
/*
* Function gets worked and confirmed summary on each band on the active stationprofile
*/
2024-09-06 11:53:18 +00:00
function get_rac_summary($bands, $postdata) {
$this->load->model('logbooks_model');
$logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook'));
2024-01-08 10:17:53 +01:00
2024-01-31 14:04:21 +00:00
if (!$logbooks_locations_array) {
return null;
}
2024-01-08 10:17:53 +01:00
$location_list = "'".implode("','",$logbooks_locations_array)."'";
2024-01-31 14:04:21 +00:00
foreach ($bands as $band) {
$worked = $this->getSummaryByBand($band, $postdata, $location_list);
$confirmed = $this->getSummaryByBandConfirmed($band, $postdata, $location_list);
$racSummary['worked'][$band] = $worked[0]->count;
$racSummary['confirmed'][$band] = $confirmed[0]->count;
}
2024-01-08 10:17:53 +01:00
2024-01-31 14:04:21 +00:00
$workedTotal = $this->getSummaryByBand($postdata['band'], $postdata, $location_list);
$confirmedTotal = $this->getSummaryByBandConfirmed($postdata['band'], $postdata, $location_list);
2024-01-08 10:17:53 +01:00
2024-01-31 14:04:21 +00:00
$racSummary['worked']['Total'] = $workedTotal[0]->count;
$racSummary['confirmed']['Total'] = $confirmedTotal[0]->count;
2024-01-08 10:17:53 +01:00
2024-01-31 14:04:21 +00:00
return $racSummary;
}
2024-01-08 10:17:53 +01:00
2024-09-06 11:53:18 +00:00
function getSummaryByBand($band, $postdata, $location_list) {
$bindings=[];
2024-01-31 14:04:21 +00:00
$sql = "SELECT count(distinct thcv.col_state) as count FROM " . $this->config->item('table_name') . " thcv";
2024-01-08 10:17:53 +01:00
2024-01-31 14:04:21 +00:00
$sql .= " where station_id in (" . $location_list . ")";
2024-01-08 10:17:53 +01:00
2024-01-31 14:04:21 +00:00
if ($band == 'SAT') {
2024-09-06 11:53:18 +00:00
$sql .= " and thcv.col_prop_mode = ?";
$bindings[]=$band;
2024-01-31 14:04:21 +00:00
} else if ($band == 'All') {
$this->load->model('bands');
2024-01-08 10:17:53 +01:00
$bandslots = $this->bands->get_worked_bands('rac');
$bandslots_list = "'".implode("','",$bandslots)."'";
$sql .= " and thcv.col_band in (" . $bandslots_list . ")" .
2024-01-31 14:04:21 +00:00
" and thcv.col_prop_mode !='SAT'";
} else {
$sql .= " and thcv.col_prop_mode !='SAT'";
2024-09-06 11:53:18 +00:00
$sql .= " and thcv.col_band = ?";
$bindings[]=$band;
2024-01-31 14:04:21 +00:00
}
2024-01-08 10:17:53 +01:00
2024-01-31 14:04:21 +00:00
if ($postdata['mode'] != 'All') {
2024-09-06 11:53:18 +00:00
$sql .= " and (col_mode = ? or col_submode = ?)";
$bindings[]=$postdata['mode'];
$bindings[]=$postdata['mode'];
2024-01-08 10:17:53 +01:00
}
2024-01-31 14:04:21 +00:00
$sql .= $this->addStateToQuery();
2024-01-08 10:17:53 +01:00
2024-09-06 11:53:18 +00:00
$query = $this->db->query($sql,$bindings);
2024-01-08 10:17:53 +01:00
2024-01-31 14:04:21 +00:00
return $query->result();
}
2024-01-08 10:17:53 +01:00
2024-09-06 11:53:18 +00:00
function getSummaryByBandConfirmed($band, $postdata, $location_list) {
$bindings=[];
2024-01-31 14:04:21 +00:00
$sql = "SELECT count(distinct thcv.col_state) as count FROM " . $this->config->item('table_name') . " thcv";
2024-01-08 10:17:53 +01:00
2024-01-31 14:04:21 +00:00
$sql .= " where station_id in (" . $location_list . ")";
2024-01-08 10:17:53 +01:00
2024-01-31 14:04:21 +00:00
if ($band == 'SAT') {
2024-09-06 11:53:18 +00:00
$sql .= " and thcv.col_prop_mode = ?";
$bindings[]=$band;
2024-01-31 14:04:21 +00:00
} else if ($band == 'All') {
$this->load->model('bands');
2024-01-08 10:17:53 +01:00
$bandslots = $this->bands->get_worked_bands('rac');
$bandslots_list = "'".implode("','",$bandslots)."'";
$sql .= " and thcv.col_band in (" . $bandslots_list . ")" .
2024-01-31 14:04:21 +00:00
" and thcv.col_prop_mode !='SAT'";
} else {
$sql .= " and thcv.col_prop_mode !='SAT'";
2024-09-06 11:53:18 +00:00
$sql .= " and thcv.col_band = ?";
$bindings[]=$band;
2024-01-31 14:04:21 +00:00
}
2024-01-08 10:17:53 +01:00
2024-01-31 14:04:21 +00:00
if ($postdata['mode'] != 'All') {
2024-09-06 11:53:18 +00:00
$sql .= " and (col_mode = ? or col_submode = ?)";
$bindings[]=$postdata['mode'];
$bindings[]=$postdata['mode'];
2024-01-08 10:17:53 +01:00
}
2024-02-18 14:54:45 +00:00
$sql .= $this->genfunctions->addQslToQuery($postdata);
2024-01-08 10:17:53 +01:00
2024-01-31 14:04:21 +00:00
$sql .= $this->addStateToQuery();
2024-01-08 10:17:53 +01:00
2024-09-06 11:53:18 +00:00
$query = $this->db->query($sql,$bindings);
2024-01-08 10:17:53 +01:00
2024-01-31 14:04:21 +00:00
return $query->result();
}
2024-01-08 10:17:53 +01:00
2024-01-31 14:04:21 +00:00
/*
* Function returns all worked, but not confirmed states
* $postdata contains data from the form, in this case Lotw or QSL are used
*/
function getracWorked($location_list, $band, $postdata) {
2024-09-06 11:53:18 +00:00
$bindings=[];
2024-01-31 14:04:21 +00:00
$sql = "SELECT distinct col_state FROM " . $this->config->item('table_name') . " thcv
where station_id in (" . $location_list . ")";
2024-01-08 10:17:53 +01:00
if ($postdata['mode'] != 'All') {
2024-09-06 11:53:18 +00:00
$sql .= " and (col_mode = ? or col_submode = ?)";
$bindings[]=$postdata['mode'];
$bindings[]=$postdata['mode'];
2024-01-08 10:17:53 +01:00
}
2024-01-31 14:04:21 +00:00
$sql .= $this->addStateToQuery();
2024-01-08 10:17:53 +01:00
2024-09-06 11:53:18 +00:00
$sql .= $this->genfunctions->addBandToQuery($band,$bindings);
2024-01-08 10:17:53 +01:00
2024-01-31 14:04:21 +00:00
$sql .= " and not exists (select 1 from ". $this->config->item('table_name') .
" where station_id in (". $location_list . ")" .
" and col_state = thcv.col_state";
2024-01-08 10:17:53 +01:00
if ($postdata['mode'] != 'All') {
2024-09-06 11:53:18 +00:00
$sql .= " and (col_mode = ? or col_submode = ?)";
$bindings[]=$postdata['mode'];
$bindings[]=$postdata['mode'];
2024-01-08 10:17:53 +01:00
}
2024-09-06 11:53:18 +00:00
$sql .= $this->genfunctions->addBandToQuery($band,$bindings);
2024-01-08 10:17:53 +01:00
2024-02-18 14:54:45 +00:00
$sql .= $this->genfunctions->addQslToQuery($postdata);
2024-01-08 10:17:53 +01:00
2024-01-31 14:04:21 +00:00
$sql .= $this->addStateToQuery();
2024-01-08 10:17:53 +01:00
2024-01-31 14:04:21 +00:00
$sql .= ")";
2024-01-08 10:17:53 +01:00
2024-09-06 11:53:18 +00:00
$query = $this->db->query($sql,$bindings);
2024-01-08 10:17:53 +01:00
2024-01-31 14:04:21 +00:00
return $query->result();
}
2024-01-08 10:17:53 +01:00
2024-01-31 14:04:21 +00:00
/*
* 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 getracConfirmed($location_list, $band, $postdata) {
2024-09-06 11:53:18 +00:00
$bindings=[];
2024-01-31 14:04:21 +00:00
$sql = "SELECT distinct col_state FROM " . $this->config->item('table_name') . " thcv
where station_id in (" . $location_list . ")";
2024-01-08 10:17:53 +01:00
if ($postdata['mode'] != 'All') {
2024-09-06 11:53:18 +00:00
$sql .= " and (col_mode = ? or col_submode = ?)";
$bindings[]=$postdata['mode'];
$bindings[]=$postdata['mode'];
2024-01-08 10:17:53 +01:00
}
2024-01-31 14:04:21 +00:00
$sql .= $this->addStateToQuery();
2024-09-06 11:53:18 +00:00
$sql .= $this->genfunctions->addBandToQuery($band,$bindings);
2024-01-31 14:04:21 +00:00
2024-02-18 14:54:45 +00:00
$sql .= $this->genfunctions->addQslToQuery($postdata);
2024-01-31 14:04:21 +00:00
2024-09-06 11:53:18 +00:00
$query = $this->db->query($sql,$bindings);
2024-01-31 14:04:21 +00:00
return $query->result();
}
function addStateToQuery() {
$sql = '';
$sql .= " and COL_DXCC = 1";
$sql .= " and COL_STATE in ('AB','BC','MB','NB','NL','NT','NS','NU','ON','PE','QC','SK','YT')";
return $sql;
}
2024-01-08 10:17:53 +01:00
}
?>