2011-09-21 21:30:01 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
class adif_data extends CI_Model {
|
|
|
|
|
|
2023-05-01 21:25:30 +08:00
|
|
|
function export_all($api_key = null) {
|
2023-05-02 03:23:30 +08:00
|
|
|
$CI =& get_instance();
|
|
|
|
|
$CI->load->model('logbooks_model');
|
2023-05-01 21:25:30 +08:00
|
|
|
if ($api_key != null) {
|
|
|
|
|
$CI->load->model('api_model');
|
|
|
|
|
if (strpos($this->api_model->access($api_key), 'r') !== false) {
|
|
|
|
|
$this->api_model->update_last_used($api_key);
|
|
|
|
|
$user_id = $this->api_model->key_userid($api_key);
|
2023-05-31 03:03:39 +08:00
|
|
|
$logbooks_locations_array = $this->list_station_locations($user_id);
|
2023-05-01 21:25:30 +08:00
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook'));
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-26 18:35:11 +08:00
|
|
|
$this->db->select($this->config->item('table_name').'.*, station_profile.*, dxcc_entities.name as station_country');
|
2020-11-24 02:52:30 +08:00
|
|
|
$this->db->order_by("COL_TIME_ON", "ASC");
|
|
|
|
|
$this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id');
|
2023-05-01 21:25:30 +08:00
|
|
|
$this->db->where_in('station_profile.station_id', $logbooks_locations_array);
|
2023-04-26 18:35:11 +08:00
|
|
|
$this->db->join('dxcc_entities', 'station_profile.station_dxcc = dxcc_entities.adif');
|
2011-09-21 21:30:01 +08:00
|
|
|
$query = $this->db->get($this->config->item('table_name'));
|
2020-04-08 21:53:20 +08:00
|
|
|
|
2011-09-21 21:30:01 +08:00
|
|
|
return $query;
|
|
|
|
|
}
|
2019-04-08 22:36:23 +08:00
|
|
|
|
2023-05-31 03:03:39 +08:00
|
|
|
function list_station_locations($user_id) {
|
|
|
|
|
$this->db->where('user_id', $user_id);
|
|
|
|
|
$query = $this->db->get('station_profile');
|
|
|
|
|
|
|
|
|
|
if ($query->num_rows() == 0) {
|
|
|
|
|
return array();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$locations_array = array();
|
|
|
|
|
foreach ($query->result() as $row) {
|
|
|
|
|
array_push($locations_array, $row->station_id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $locations_array;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-22 23:16:49 +08:00
|
|
|
function export_printrequested($station_id = NULL) {
|
2019-09-25 06:42:01 +08:00
|
|
|
$this->load->model('stations');
|
|
|
|
|
$active_station_id = $this->stations->find_active();
|
|
|
|
|
|
2023-04-25 06:13:49 +08:00
|
|
|
$this->db->select($this->config->item('table_name').'.*, station_profile.*, dxcc_entities.name as station_country');
|
|
|
|
|
|
2021-07-22 23:16:49 +08:00
|
|
|
if ($station_id == NULL) {
|
|
|
|
|
$this->db->where($this->config->item('table_name').'.station_id', $active_station_id);
|
2021-08-25 02:10:07 +08:00
|
|
|
} else if ($station_id != 'All') {
|
2021-07-22 23:16:49 +08:00
|
|
|
$this->db->where($this->config->item('table_name').'.station_id', $station_id);
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-21 04:22:52 +08:00
|
|
|
$this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id');
|
2023-04-25 06:13:49 +08:00
|
|
|
$this->db->join('dxcc_entities', 'station_profile.station_dxcc = dxcc_entities.adif');
|
2021-11-18 05:30:20 +08:00
|
|
|
// always filter user. this ensures that even if the station_id is from another user no inaccesible QSOs will be returned
|
|
|
|
|
$this->db->where('station_profile.user_id', $this->session->userdata('user_id'));
|
2020-05-26 05:05:21 +08:00
|
|
|
$this->db->where_in('COL_QSL_SENT', array('R', 'Q'));
|
2020-12-21 04:22:52 +08:00
|
|
|
$this->db->order_by("COL_TIME_ON", "ASC");
|
2019-08-29 03:13:24 +08:00
|
|
|
$query = $this->db->get($this->config->item('table_name'));
|
2020-12-21 04:22:52 +08:00
|
|
|
|
2019-08-29 03:13:24 +08:00
|
|
|
return $query;
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-08 22:47:03 +08:00
|
|
|
function sat_all() {
|
2019-09-25 06:42:01 +08:00
|
|
|
$this->load->model('stations');
|
|
|
|
|
$active_station_id = $this->stations->find_active();
|
|
|
|
|
|
2023-04-25 06:13:49 +08:00
|
|
|
$this->db->select(''.$this->config->item('table_name').'.*, station_profile.*, dxcc_entities.name as station_country');
|
2020-04-08 22:00:48 +08:00
|
|
|
$this->db->from($this->config->item('table_name'));
|
|
|
|
|
$this->db->where($this->config->item('table_name').'.station_id', $active_station_id);
|
|
|
|
|
$this->db->where($this->config->item('table_name').'.COL_PROP_MODE', 'SAT');
|
|
|
|
|
|
|
|
|
|
$this->db->order_by($this->config->item('table_name').".COL_TIME_ON", "ASC");
|
|
|
|
|
|
|
|
|
|
$this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id');
|
2023-04-28 21:14:59 +08:00
|
|
|
$this->db->join('dxcc_entities', 'station_profile.station_dxcc = dxcc_entities.adif', 'left outer');
|
2020-04-08 22:00:48 +08:00
|
|
|
|
|
|
|
|
return $this->db->get();
|
2019-04-08 22:36:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function satellte_lotw() {
|
2019-09-25 06:42:01 +08:00
|
|
|
$this->load->model('stations');
|
|
|
|
|
$active_station_id = $this->stations->find_active();
|
|
|
|
|
|
2023-04-25 06:13:49 +08:00
|
|
|
$this->db->select(''.$this->config->item('table_name').'.*, station_profile.*, dxcc_entities.name as station_country');
|
2020-04-08 22:00:48 +08:00
|
|
|
$this->db->from($this->config->item('table_name'));
|
|
|
|
|
$this->db->where($this->config->item('table_name').'.station_id', $active_station_id);
|
|
|
|
|
$this->db->where($this->config->item('table_name').'.COL_PROP_MODE', 'SAT');
|
2019-04-08 22:36:23 +08:00
|
|
|
|
2023-04-21 06:03:18 +08:00
|
|
|
$where = $this->config->item('table_name').".COL_LOTW_QSLRDATE IS NOT NULL";
|
2019-04-08 22:36:23 +08:00
|
|
|
$this->db->where($where);
|
|
|
|
|
|
2020-04-08 22:00:48 +08:00
|
|
|
$this->db->order_by($this->config->item('table_name').".COL_TIME_ON", "ASC");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id');
|
2023-04-28 21:14:59 +08:00
|
|
|
$this->db->join('dxcc_entities', 'station_profile.station_dxcc = dxcc_entities.adif', 'left outer');
|
2020-04-08 22:00:48 +08:00
|
|
|
|
|
|
|
|
return $this->db->get();
|
2019-04-08 22:36:23 +08:00
|
|
|
}
|
2020-04-08 21:47:25 +08:00
|
|
|
|
2021-03-09 03:20:05 +08:00
|
|
|
function export_custom($from, $to, $station_id, $exportLotw = false) {
|
2021-11-16 02:46:20 +08:00
|
|
|
// be sure that station belongs to user
|
|
|
|
|
$CI =& get_instance();
|
|
|
|
|
$CI->load->model('Stations');
|
|
|
|
|
if (!$CI->Stations->check_station_is_accessible($station_id)) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-25 06:13:49 +08:00
|
|
|
$this->db->select(''.$this->config->item('table_name').'.*, station_profile.*, dxcc_entities.name as station_country');
|
2020-04-08 21:47:25 +08:00
|
|
|
$this->db->from($this->config->item('table_name'));
|
2021-03-09 03:20:05 +08:00
|
|
|
$this->db->where($this->config->item('table_name').'.station_id', $station_id);
|
2020-02-07 21:17:05 +08:00
|
|
|
|
|
|
|
|
// If date is set, we format the date and add it to the where-statement
|
2022-12-23 20:55:58 +08:00
|
|
|
if ($from) {
|
2020-02-07 21:17:05 +08:00
|
|
|
$from = DateTime::createFromFormat('d/m/Y', $from);
|
|
|
|
|
$from = $from->format('Y-m-d');
|
2020-04-08 21:47:25 +08:00
|
|
|
$this->db->where("date(".$this->config->item('table_name').".COL_TIME_ON) >= '".$from."'");
|
2020-02-07 21:17:05 +08:00
|
|
|
}
|
2022-12-23 20:55:58 +08:00
|
|
|
if ($to) {
|
2020-02-07 21:17:05 +08:00
|
|
|
$to = DateTime::createFromFormat('d/m/Y', $to);
|
|
|
|
|
$to = $to->format('Y-m-d');
|
2020-04-08 21:47:25 +08:00
|
|
|
$this->db->where("date(".$this->config->item('table_name').".COL_TIME_ON) <= '".$to."'");
|
2020-02-07 21:17:05 +08:00
|
|
|
}
|
2020-06-23 15:22:37 +08:00
|
|
|
if ($exportLotw) {
|
2022-09-03 13:27:58 +08:00
|
|
|
$this->db->group_start();
|
2020-06-23 15:22:37 +08:00
|
|
|
$this->db->where($this->config->item('table_name').".COL_LOTW_QSL_SENT != 'Y'");
|
2022-09-02 20:11:13 +08:00
|
|
|
$this->db->or_where($this->config->item('table_name').".COL_LOTW_QSL_SENT", NULL);
|
|
|
|
|
$this->db->group_end();
|
2020-06-23 15:22:37 +08:00
|
|
|
}
|
|
|
|
|
|
2020-04-08 21:47:25 +08:00
|
|
|
$this->db->order_by($this->config->item('table_name').".COL_TIME_ON", "ASC");
|
2011-09-21 21:30:01 +08:00
|
|
|
|
2020-04-08 21:47:25 +08:00
|
|
|
$this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id');
|
2023-04-28 21:14:59 +08:00
|
|
|
$this->db->join('dxcc_entities', 'station_profile.station_dxcc = dxcc_entities.adif', 'left outer');
|
2020-04-08 21:47:25 +08:00
|
|
|
|
|
|
|
|
return $this->db->get();
|
2011-09-21 21:30:01 +08:00
|
|
|
}
|
2021-03-09 03:20:05 +08:00
|
|
|
|
2013-03-05 12:57:29 +08:00
|
|
|
function export_lotw() {
|
2019-09-25 06:42:01 +08:00
|
|
|
$this->load->model('stations');
|
|
|
|
|
$active_station_id = $this->stations->find_active();
|
2020-04-08 21:53:20 +08:00
|
|
|
|
2021-03-09 03:20:05 +08:00
|
|
|
|
2023-04-25 06:13:49 +08:00
|
|
|
$this->db->select(''.$this->config->item('table_name').'.*, station_profile.*, dxcc_entities.name as station_country');
|
2020-04-08 21:53:20 +08:00
|
|
|
$this->db->from($this->config->item('table_name'));
|
|
|
|
|
$this->db->where($this->config->item('table_name').'.station_id', $active_station_id);
|
2022-09-03 13:27:58 +08:00
|
|
|
$this->db->group_start();
|
2020-04-08 21:53:20 +08:00
|
|
|
$this->db->where($this->config->item('table_name').".COL_LOTW_QSL_SENT != 'Y'");
|
2022-09-02 20:11:13 +08:00
|
|
|
$this->db->or_where($this->config->item('table_name').".COL_LOTW_QSL_SENT", NULL);
|
|
|
|
|
$this->db->group_end();
|
2020-04-08 21:53:20 +08:00
|
|
|
|
|
|
|
|
$this->db->order_by($this->config->item('table_name').".COL_TIME_ON", "ASC");
|
|
|
|
|
|
|
|
|
|
$this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id');
|
2023-04-28 21:14:59 +08:00
|
|
|
$this->db->join('dxcc_entities', 'station_profile.station_dxcc = dxcc_entities.adif', 'left outer');
|
2020-04-08 21:53:20 +08:00
|
|
|
|
|
|
|
|
return $this->db->get();
|
2013-03-05 12:57:29 +08:00
|
|
|
}
|
2021-03-09 03:20:05 +08:00
|
|
|
|
2013-03-07 13:31:19 +08:00
|
|
|
function mark_lotw_sent($id) {
|
|
|
|
|
$data = array(
|
|
|
|
|
'COL_LOTW_QSL_SENT' => 'Y'
|
|
|
|
|
);
|
2021-03-09 03:20:05 +08:00
|
|
|
|
2020-04-01 14:43:08 +08:00
|
|
|
$this->db->set('COL_LOTW_QSLSDATE', 'now()', FALSE);
|
2013-03-07 13:31:19 +08:00
|
|
|
$this->db->where('COL_PRIMARY_KEY', $id);
|
2021-03-09 03:20:05 +08:00
|
|
|
$this->db->update($this->config->item('table_name'), $data);
|
2013-03-07 13:31:19 +08:00
|
|
|
}
|
2021-03-20 18:24:13 +08:00
|
|
|
|
|
|
|
|
function sig_all($type) {
|
2021-09-10 04:29:59 +08:00
|
|
|
$CI =& get_instance();
|
|
|
|
|
$CI->load->model('logbooks_model');
|
|
|
|
|
$logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook'));
|
2021-03-20 18:24:13 +08:00
|
|
|
|
2023-04-25 06:13:49 +08:00
|
|
|
$this->db->select(''.$this->config->item('table_name').'.*, station_profile.*, dxcc_entities.name as station_country');
|
2021-03-20 18:24:13 +08:00
|
|
|
$this->db->from($this->config->item('table_name'));
|
2021-09-10 04:29:59 +08:00
|
|
|
$this->db->where_in($this->config->item('table_name').'.station_id', $logbooks_locations_array);
|
2021-03-20 18:24:13 +08:00
|
|
|
$this->db->where($this->config->item('table_name').'.COL_SIG', $type);
|
|
|
|
|
|
|
|
|
|
$this->db->order_by($this->config->item('table_name').".COL_TIME_ON", "ASC");
|
|
|
|
|
|
|
|
|
|
$this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id');
|
2023-04-28 21:14:59 +08:00
|
|
|
$this->db->join('dxcc_entities', 'station_profile.station_dxcc = dxcc_entities.adif', 'left outer');
|
2021-03-20 18:24:13 +08:00
|
|
|
|
|
|
|
|
return $this->db->get();
|
|
|
|
|
}
|
2011-09-21 21:30:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
?>
|