2020-11-04 00:06:35 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
class Eqslmethods_model extends CI_Model {
|
|
|
|
|
|
|
|
|
|
function mark_all_as_sent() {
|
|
|
|
|
$data = array(
|
|
|
|
|
'COL_EQSL_QSL_SENT' => 'Y',
|
|
|
|
|
'COL_EQSL_QSLSDATE' => date('Y-m-d')." 00:00:00",
|
|
|
|
|
);
|
2022-07-05 02:12:39 +08:00
|
|
|
|
|
|
|
|
$this->db->group_start();
|
|
|
|
|
$this->db->where('COL_EQSL_QSL_SENT', 'N');
|
|
|
|
|
$this->db->or_where('COL_EQSL_QSL_SENT', 'R');
|
|
|
|
|
$this->db->or_where('COL_EQSL_QSL_SENT', 'Q');
|
|
|
|
|
$this->db->or_where('COL_EQSL_QSL_SENT', null);
|
|
|
|
|
$this->db->group_end();
|
|
|
|
|
|
2022-07-05 01:29:25 +08:00
|
|
|
$this->db->update($this->config->item('table_name'), $data);
|
2020-11-04 00:06:35 +08:00
|
|
|
}
|
|
|
|
|
|
2023-05-05 15:34:32 +08:00
|
|
|
function get_eqsl_users() {
|
|
|
|
|
$this->db->select('user_eqsl_name, user_eqsl_password, user_id');
|
|
|
|
|
$this->db->where('coalesce(user_eqsl_name, "") != ""');
|
|
|
|
|
$this->db->where('coalesce(user_eqsl_password, "") != ""');
|
|
|
|
|
$query = $this->db->get($this->config->item('auth_table'));
|
|
|
|
|
return $query->result();
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-05 22:31:10 +08:00
|
|
|
/*
|
|
|
|
|
* Gets all station location for user, for use in cron where we don't have any login
|
|
|
|
|
*/
|
|
|
|
|
function get_all_user_locations($userid) {
|
|
|
|
|
$this->db->select('station_profile.*, dxcc_entities.name as station_country, dxcc_entities.end as dxcc_end');
|
|
|
|
|
$this->db->where('user_id', $userid);
|
|
|
|
|
$this->db->join('dxcc_entities','station_profile.station_dxcc = dxcc_entities.adif','left outer');
|
|
|
|
|
return $this->db->get('station_profile');
|
|
|
|
|
}
|
2023-05-05 15:34:32 +08:00
|
|
|
|
|
|
|
|
// Show all QSOs we need to send to eQSL
|
|
|
|
|
function eqsl_not_yet_sent($userid = null) {
|
|
|
|
|
$CI =& get_instance();
|
|
|
|
|
if ($userid == null) {
|
|
|
|
|
$CI->load->model('logbooks_model');
|
|
|
|
|
$logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook'));
|
|
|
|
|
} else {
|
2023-05-05 22:31:10 +08:00
|
|
|
$stations = $this->get_all_user_locations($userid);
|
2023-05-05 15:34:32 +08:00
|
|
|
$logbooks_locations_array = array();
|
|
|
|
|
foreach ($stations->result() as $row) {
|
|
|
|
|
array_push($logbooks_locations_array, $row->station_id);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$this->db->select('station_profile.*, '.$this->config->item('table_name').'.COL_PRIMARY_KEY, '.$this->config->item('table_name').'.COL_TIME_ON, '.$this->config->item('table_name').'.COL_CALL, '.$this->config->item('table_name').'.COL_MODE, '.$this->config->item('table_name').'.COL_SUBMODE, '.$this->config->item('table_name').'.COL_BAND, '.$this->config->item('table_name').'.COL_COMMENT, '.$this->config->item('table_name').'.COL_RST_SENT, '.$this->config->item('table_name').'.COL_PROP_MODE, '.$this->config->item('table_name').'.COL_SAT_NAME, '.$this->config->item('table_name').'.COL_SAT_MODE, '.$this->config->item('table_name').'.COL_QSLMSG');
|
|
|
|
|
$this->db->from('station_profile');
|
|
|
|
|
$this->db->join($this->config->item('table_name'),'station_profile.station_id = '.$this->config->item('table_name').'.station_id');
|
|
|
|
|
$this->db->where("coalesce(station_profile.eqslqthnickname, '') <> ''");
|
|
|
|
|
$this->db->where($this->config->item('table_name').'.COL_CALL !=', '');
|
|
|
|
|
$this->db->group_start();
|
|
|
|
|
$this->db->where($this->config->item('table_name').'.COL_EQSL_QSL_SENT is null');
|
|
|
|
|
$this->db->or_where($this->config->item('table_name').'.COL_EQSL_QSL_SENT', '');
|
|
|
|
|
$this->db->or_where($this->config->item('table_name').'.COL_EQSL_QSL_SENT', 'R');
|
|
|
|
|
$this->db->or_where($this->config->item('table_name').'.COL_EQSL_QSL_SENT', 'Q');
|
|
|
|
|
$this->db->or_where($this->config->item('table_name').'.COL_EQSL_QSL_SENT', 'N');
|
|
|
|
|
$this->db->group_end();
|
|
|
|
|
$this->db->where_in('station_profile.station_id', $logbooks_locations_array);
|
|
|
|
|
|
|
|
|
|
return $this->db->get();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Mark the QSO as sent to eQSL
|
|
|
|
|
function eqsl_mark_sent($primarykey) {
|
|
|
|
|
$data = array(
|
|
|
|
|
'COL_EQSL_QSLSDATE' => date('Y-m-d H:i:s'), // eQSL doesn't give us a date, so let's use current
|
|
|
|
|
'COL_EQSL_QSL_SENT' => 'Y',
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$this->db->where('COL_PRIMARY_KEY', $primarykey);
|
|
|
|
|
|
|
|
|
|
$this->db->update($this->config->item('table_name'), $data);
|
|
|
|
|
|
|
|
|
|
return "eQSL Sent";
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-04 00:06:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
?>
|