2019-01-01 19:14:25 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class Stations extends CI_Model {
|
|
|
|
|
2019-09-24 23:38:13 +00:00
|
|
|
function all_with_count() {
|
2019-09-24 21:19:49 +00:00
|
|
|
|
|
|
|
$this->db->select('station_profile.*, count('.$this->config->item('table_name').'.station_id) as qso_total');
|
|
|
|
$this->db->from('station_profile');
|
|
|
|
$this->db->join($this->config->item('table_name'),'station_profile.station_id = '.$this->config->item('table_name').'.station_id','left');
|
|
|
|
$this->db->group_by('station_profile.station_id');
|
2021-08-23 14:50:19 +00:00
|
|
|
$this->db->where('station_profile.user_id', $this->session->userdata('user_id'));
|
2021-10-20 19:26:35 +00:00
|
|
|
$this->db->or_where('station_profile.user_id =', NULL);
|
|
|
|
$this->db->order_by('station_profile.station_profile_name');
|
2019-09-24 21:19:49 +00:00
|
|
|
return $this->db->get();
|
2019-01-01 19:14:25 +00:00
|
|
|
}
|
|
|
|
|
2021-09-29 21:02:08 +00:00
|
|
|
// Returns ALL station profiles regardless of user logged in
|
|
|
|
// This is also used by LoTW sync so must not be changed.
|
2019-09-24 23:38:13 +00:00
|
|
|
function all() {
|
|
|
|
return $this->db->get('station_profile');
|
|
|
|
}
|
|
|
|
|
2021-10-31 08:56:45 +00:00
|
|
|
function all_of_user() {
|
|
|
|
$this->db->where('user_id', $this->session->userdata('user_id'));
|
|
|
|
return $this->db->get('station_profile');
|
|
|
|
}
|
|
|
|
|
2019-08-19 21:25:50 +00:00
|
|
|
function profile($id) {
|
2019-10-05 18:16:05 +00:00
|
|
|
// Clean ID
|
|
|
|
$clean_id = $this->security->xss_clean($id);
|
2020-12-07 16:32:12 +00:00
|
|
|
$this->db->where('station_id', $clean_id);
|
|
|
|
return $this->db->get('station_profile');
|
|
|
|
}
|
|
|
|
|
|
|
|
function profile_clean($id) {
|
|
|
|
// Clean ID
|
|
|
|
$clean_id = $this->security->xss_clean($id);
|
2019-10-05 18:16:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
$this->db->where('station_id', $clean_id);
|
2020-12-07 16:32:12 +00:00
|
|
|
$query = $this->db->get('station_profile');
|
|
|
|
|
|
|
|
$row = $query->row();
|
|
|
|
|
|
|
|
return $row;
|
2019-08-19 21:25:50 +00:00
|
|
|
}
|
|
|
|
|
2020-09-15 21:49:05 +00:00
|
|
|
/*
|
|
|
|
* Function: add
|
|
|
|
* Adds post material into the station profile table.
|
|
|
|
*/
|
2019-01-01 19:14:25 +00:00
|
|
|
function add() {
|
2021-12-04 16:14:57 +00:00
|
|
|
// check if user has no active station profile yet
|
|
|
|
$station_active = null;
|
|
|
|
if ($this->find_active() === '0') {
|
|
|
|
$station_active = 1;
|
|
|
|
}
|
|
|
|
|
2020-09-15 21:49:05 +00:00
|
|
|
// Create data array with field values
|
2019-01-01 19:14:25 +00:00
|
|
|
$data = array(
|
2021-11-15 18:54:01 +00:00
|
|
|
'user_id' => $this->session->userdata('user_id'),
|
2021-12-04 16:14:57 +00:00
|
|
|
'station_active' => $station_active,
|
2019-10-05 21:02:28 +00:00
|
|
|
'station_profile_name' => xss_clean($this->input->post('station_profile_name', true)),
|
|
|
|
'station_gridsquare' => xss_clean(strtoupper($this->input->post('gridsquare', true))),
|
|
|
|
'station_city' => xss_clean($this->input->post('city', true)),
|
|
|
|
'station_iota' => xss_clean(strtoupper($this->input->post('iota', true))),
|
|
|
|
'station_sota' => xss_clean(strtoupper($this->input->post('sota', true))),
|
2020-11-08 09:19:47 +00:00
|
|
|
'station_sig' => xss_clean(strtoupper($this->input->post('sig', true))),
|
|
|
|
'station_sig_info' => xss_clean(strtoupper($this->input->post('sig_info', true))),
|
2019-10-05 21:02:28 +00:00
|
|
|
'station_callsign' => xss_clean($this->input->post('station_callsign', true)),
|
|
|
|
'station_dxcc' => xss_clean($this->input->post('dxcc', true)),
|
|
|
|
'station_country' => xss_clean($this->input->post('station_country', true)),
|
|
|
|
'station_cnty' => xss_clean($this->input->post('station_cnty', true)),
|
|
|
|
'station_cq' => xss_clean($this->input->post('station_cq', true)),
|
|
|
|
'station_itu' => xss_clean($this->input->post('station_itu', true)),
|
2020-04-08 16:00:25 +00:00
|
|
|
'state' => xss_clean($this->input->post('station_state', true)),
|
2020-05-07 15:35:58 +00:00
|
|
|
'eqslqthnickname' => xss_clean($this->input->post('eqslnickname', true)),
|
|
|
|
'qrzapikey' => xss_clean($this->input->post('qrzapikey', true)),
|
2020-11-18 10:50:15 +00:00
|
|
|
'qrzrealtime' => xss_clean($this->input->post('qrzrealtime', true)),
|
2019-01-01 19:14:25 +00:00
|
|
|
);
|
|
|
|
|
2020-09-15 21:49:05 +00:00
|
|
|
// Insert Records
|
2019-01-01 19:14:25 +00:00
|
|
|
$this->db->insert('station_profile', $data);
|
|
|
|
}
|
|
|
|
|
|
|
|
function edit() {
|
|
|
|
$data = array(
|
2019-10-05 21:02:28 +00:00
|
|
|
'station_profile_name' => xss_clean($this->input->post('station_profile_name', true)),
|
|
|
|
'station_gridsquare' => xss_clean($this->input->post('gridsquare', true)),
|
|
|
|
'station_city' => xss_clean($this->input->post('city', true)),
|
|
|
|
'station_iota' => xss_clean($this->input->post('iota', true)),
|
|
|
|
'station_sota' => xss_clean($this->input->post('sota', true)),
|
2020-11-08 09:19:47 +00:00
|
|
|
'station_sig' => xss_clean($this->input->post('sig', true)),
|
|
|
|
'station_sig_info' => xss_clean($this->input->post('sig_info', true)),
|
2019-10-05 21:02:28 +00:00
|
|
|
'station_callsign' => xss_clean($this->input->post('station_callsign', true)),
|
|
|
|
'station_dxcc' => xss_clean($this->input->post('dxcc', true)),
|
|
|
|
'station_country' => xss_clean($this->input->post('station_country', true)),
|
|
|
|
'station_cnty' => xss_clean($this->input->post('station_cnty', true)),
|
|
|
|
'station_cq' => xss_clean($this->input->post('station_cq', true)),
|
|
|
|
'station_itu' => xss_clean($this->input->post('station_itu', true)),
|
2020-04-08 16:00:25 +00:00
|
|
|
'state' => xss_clean($this->input->post('station_state', true)),
|
2019-10-05 21:02:28 +00:00
|
|
|
'eqslqthnickname' => xss_clean($this->input->post('eqslnickname', true)),
|
2020-05-07 15:35:58 +00:00
|
|
|
'qrzapikey' => xss_clean($this->input->post('qrzapikey', true)),
|
2020-11-18 10:50:15 +00:00
|
|
|
'qrzrealtime' => xss_clean($this->input->post('qrzrealtime', true)),
|
2019-01-01 19:14:25 +00:00
|
|
|
);
|
|
|
|
|
2021-10-31 09:17:14 +00:00
|
|
|
$this->db->where('user_id', $this->session->userdata('user_id'));
|
2019-10-05 21:02:28 +00:00
|
|
|
$this->db->where('station_id', xss_clean($this->input->post('station_id', true)));
|
2019-01-01 19:14:25 +00:00
|
|
|
$this->db->update('station_profile', $data);
|
|
|
|
}
|
|
|
|
|
|
|
|
function delete($id) {
|
2019-10-05 18:16:05 +00:00
|
|
|
// Clean ID
|
|
|
|
$clean_id = $this->security->xss_clean($id);
|
|
|
|
|
2021-12-04 16:14:57 +00:00
|
|
|
// do not delete active station
|
|
|
|
if ($clean_id === $this->find_active()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-12-03 19:16:40 +00:00
|
|
|
// Delete QSOs
|
|
|
|
$this->db->where('station_id', $id);
|
|
|
|
$this->db->delete($this->config->item('table_name'));
|
|
|
|
|
|
|
|
// Delete Station Profile
|
2019-10-05 18:16:05 +00:00
|
|
|
$this->db->delete('station_profile', array('station_id' => $clean_id));
|
2019-01-01 19:14:25 +00:00
|
|
|
}
|
|
|
|
|
2020-02-07 13:54:49 +00:00
|
|
|
function deletelog($id) {
|
|
|
|
// Delete QSOs
|
|
|
|
$this->db->where('station_id', $id);
|
|
|
|
$this->db->delete($this->config->item('table_name'));
|
|
|
|
}
|
|
|
|
|
2021-08-23 14:50:19 +00:00
|
|
|
function claim_user($id) {
|
|
|
|
$data = array(
|
2021-08-23 16:34:00 +00:00
|
|
|
'user_id' => $this->session->userdata('user_id'),
|
2021-08-23 14:50:19 +00:00
|
|
|
);
|
2021-08-23 16:34:00 +00:00
|
|
|
|
|
|
|
$this->db->where('station_id', $id);
|
|
|
|
$this->db->update('station_profile', $data);
|
2021-08-23 14:50:19 +00:00
|
|
|
}
|
|
|
|
|
2019-09-23 16:29:22 +00:00
|
|
|
function set_active($current, $new) {
|
2019-10-05 18:16:05 +00:00
|
|
|
// Clean inputs
|
|
|
|
$clean_current = $this->security->xss_clean($current);
|
|
|
|
$clean_new = $this->security->xss_clean($new);
|
|
|
|
|
2021-10-31 08:56:45 +00:00
|
|
|
// be sure that stations belong to user
|
2021-10-31 09:17:14 +00:00
|
|
|
if ($clean_current != 0) {
|
|
|
|
if (!$this->check_station_is_accessible($clean_current)) {
|
|
|
|
return;
|
|
|
|
}
|
2021-10-31 08:56:45 +00:00
|
|
|
}
|
2021-10-31 09:17:14 +00:00
|
|
|
if (!$this->check_station_is_accessible($clean_new)) {
|
2021-10-31 08:56:45 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deselect current default
|
2019-09-23 16:29:22 +00:00
|
|
|
$current_default = array(
|
2021-10-31 08:56:45 +00:00
|
|
|
'station_active' => null,
|
2019-09-23 16:29:22 +00:00
|
|
|
);
|
2021-10-31 08:56:45 +00:00
|
|
|
$this->db->where('user_id', $this->session->userdata('user_id'));
|
2019-10-05 18:16:05 +00:00
|
|
|
$this->db->where('station_id', $clean_current);
|
2019-09-23 16:29:22 +00:00
|
|
|
$this->db->update('station_profile', $current_default);
|
2021-10-31 08:56:45 +00:00
|
|
|
|
2019-09-23 16:29:22 +00:00
|
|
|
// Deselect current default
|
|
|
|
$newdefault = array(
|
|
|
|
'station_active' => 1,
|
|
|
|
);
|
2021-10-31 08:56:45 +00:00
|
|
|
$this->db->where('user_id', $this->session->userdata('user_id'));
|
2019-10-05 18:16:05 +00:00
|
|
|
$this->db->where('station_id', $clean_new);
|
2019-09-23 16:29:22 +00:00
|
|
|
$this->db->update('station_profile', $newdefault);
|
2021-10-31 08:56:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function find_active() {
|
|
|
|
$this->db->where('user_id', $this->session->userdata('user_id'));
|
|
|
|
$this->db->where('station_active', 1);
|
|
|
|
$query = $this->db->get('station_profile');
|
2019-09-23 16:29:22 +00:00
|
|
|
|
2021-10-31 08:56:45 +00:00
|
|
|
if($query->num_rows() >= 1) {
|
|
|
|
foreach ($query->result() as $row)
|
2019-09-23 16:29:22 +00:00
|
|
|
{
|
|
|
|
return $row->station_id;
|
|
|
|
}
|
2021-10-31 08:56:45 +00:00
|
|
|
} else {
|
2019-09-23 16:29:22 +00:00
|
|
|
return "0";
|
|
|
|
}
|
2020-02-18 09:49:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function find_gridsquare() {
|
2021-10-31 08:56:45 +00:00
|
|
|
$this->db->where('user_id', $this->session->userdata('user_id'));
|
|
|
|
$this->db->where('station_active', 1);
|
|
|
|
$query = $this->db->get('station_profile');
|
|
|
|
|
|
|
|
if($query->num_rows() >= 1) {
|
|
|
|
foreach ($query->result() as $row)
|
2020-02-18 09:49:27 +00:00
|
|
|
{
|
|
|
|
return $row->station_gridsquare;
|
|
|
|
}
|
2021-10-31 08:56:45 +00:00
|
|
|
} else {
|
2020-02-18 09:49:27 +00:00
|
|
|
return "0";
|
|
|
|
}
|
2021-10-31 08:56:45 +00:00
|
|
|
}
|
2019-09-23 16:29:22 +00:00
|
|
|
|
|
|
|
public function reassign($id) {
|
2019-10-05 18:16:05 +00:00
|
|
|
// Clean ID
|
|
|
|
$clean_id = $this->security->xss_clean($id);
|
|
|
|
|
|
|
|
$this->db->where('station_id', $clean_id);
|
2019-09-23 16:29:22 +00:00
|
|
|
$query = $this->db->get('station_profile');
|
|
|
|
|
|
|
|
$row = $query->row();
|
|
|
|
|
|
|
|
//print_r($row);
|
|
|
|
|
|
|
|
$data = array(
|
|
|
|
'station_id' => $id,
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->db->where('COL_STATION_CALLSIGN', $row->station_callsign);
|
|
|
|
|
|
|
|
if($row->station_iota != "") {
|
2019-09-23 17:35:56 +00:00
|
|
|
$this->db->where('COL_MY_IOTA', $row->station_iota);
|
2019-09-23 16:29:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if($row->station_sota != "") {
|
|
|
|
$this->db->where('COL_MY_SOTA_REF', $row->station_sota);
|
|
|
|
}
|
|
|
|
|
2020-11-08 20:46:57 +00:00
|
|
|
if($row->station_sig != "") {
|
|
|
|
$this->db->where('COL_MY_SIG', $row->station_sig);
|
|
|
|
}
|
|
|
|
|
|
|
|
if($row->station_sig_info != "") {
|
|
|
|
$this->db->where('COL_MY_SIG_INFO', $row->station_sig_info);
|
|
|
|
}
|
|
|
|
|
2019-09-23 16:29:22 +00:00
|
|
|
$this->db->where('COL_MY_COUNTRY', $row->station_country);
|
|
|
|
|
|
|
|
if( strpos($row->station_gridsquare, ',') !== false ) {
|
|
|
|
$this->db->where('COL_MY_VUCC_GRIDS', $row->station_gridsquare);
|
|
|
|
} else {
|
|
|
|
$this->db->where('COL_MY_GRIDSQUARE', $row->station_gridsquare);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->db->update($this->config->item('table_name'), $data);
|
|
|
|
|
|
|
|
$str = $this->db->last_query();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function profile_exists() {
|
|
|
|
$query = $this->db->get('station_profile');
|
|
|
|
if($query->num_rows() >= 1) {
|
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-20 17:43:13 +00:00
|
|
|
function stations_with_qrz_api_key() {
|
|
|
|
$sql = "select station_profile.station_id, station_profile.station_profile_name, station_profile.station_callsign, modc.modcount, notc.notcount, totc.totcount
|
|
|
|
from station_profile
|
|
|
|
left outer join (
|
|
|
|
select count(*) modcount, station_id
|
|
|
|
from ". $this->config->item('table_name') .
|
|
|
|
" where COL_QRZCOM_QSO_UPLOAD_STATUS = 'M'
|
|
|
|
group by station_id
|
|
|
|
) as modc on station_profile.station_id = modc.station_id
|
|
|
|
left outer join (
|
|
|
|
select count(*) notcount, station_id
|
|
|
|
from " . $this->config->item('table_name') .
|
|
|
|
" where (coalesce(COL_QRZCOM_QSO_UPLOAD_STATUS, '') = ''
|
|
|
|
or COL_QRZCOM_QSO_UPLOAD_STATUS = 'N')
|
|
|
|
group by station_id
|
|
|
|
) as notc on station_profile.station_id = notc.station_id
|
|
|
|
left outer join (
|
|
|
|
select count(*) totcount, station_id
|
|
|
|
from " . $this->config->item('table_name') .
|
|
|
|
" where COL_QRZCOM_QSO_UPLOAD_STATUS = 'Y'
|
|
|
|
group by station_id
|
|
|
|
) as totc on station_profile.station_id = totc.station_id
|
2021-11-25 19:18:44 +00:00
|
|
|
where coalesce(station_profile.qrzapikey, '') <> ''
|
|
|
|
and station_profile.user_id = " . $this->session->userdata('user_id');
|
2020-05-20 17:43:13 +00:00
|
|
|
$query = $this->db->query($sql);
|
|
|
|
|
|
|
|
return $query;
|
|
|
|
}
|
|
|
|
|
2020-09-15 21:49:05 +00:00
|
|
|
/*
|
|
|
|
* Function: are_eqsl_nicks_defined
|
|
|
|
* Description: Returns number of station profiles with eqslnicknames
|
|
|
|
*/
|
|
|
|
function are_eqsl_nicks_defined() {
|
|
|
|
$this->db->select('eqslqthnickname');
|
|
|
|
$this->db->where('eqslqthnickname IS NOT NULL');
|
|
|
|
$this->db->where('eqslqthnickname !=', '');
|
|
|
|
$this->db->from('station_profile');
|
|
|
|
$query = $this->db->get();
|
|
|
|
|
|
|
|
return $query->num_rows();
|
|
|
|
}
|
|
|
|
|
2021-10-31 09:17:14 +00:00
|
|
|
public function check_station_is_accessible($id) {
|
|
|
|
// check if station belongs to user
|
2021-11-14 16:50:11 +00:00
|
|
|
$this->db->select('station_id');
|
2021-10-31 09:17:14 +00:00
|
|
|
$this->db->where('user_id', $this->session->userdata('user_id'));
|
|
|
|
$this->db->where('station_id', $id);
|
|
|
|
$query = $this->db->get('station_profile');
|
|
|
|
if ($query->num_rows() == 1) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2019-01-01 19:14:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|