2011-09-21 13:30:01 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class adif_data extends CI_Model {
|
|
|
|
|
|
|
|
function __construct()
|
|
|
|
{
|
|
|
|
// Call the Model constructor
|
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
|
|
|
function export_all() {
|
2019-09-24 22:42:01 +00:00
|
|
|
$this->load->model('stations');
|
|
|
|
$active_station_id = $this->stations->find_active();
|
|
|
|
|
|
|
|
$this->db->where('station_id', $active_station_id);
|
2011-09-21 13:30:01 +00:00
|
|
|
$this->db->order_by("COL_TIME_ON", "ASC");
|
|
|
|
$query = $this->db->get($this->config->item('table_name'));
|
|
|
|
|
|
|
|
return $query;
|
|
|
|
}
|
2019-04-08 14:36:23 +00:00
|
|
|
|
2019-08-28 19:13:24 +00:00
|
|
|
function export_printrequested() {
|
2019-09-24 22:42:01 +00:00
|
|
|
$this->load->model('stations');
|
|
|
|
$active_station_id = $this->stations->find_active();
|
|
|
|
|
|
|
|
$this->db->where('station_id', $active_station_id);
|
2019-08-28 19:13:24 +00:00
|
|
|
$this->db->where('COL_QSL_SENT', 'R');
|
|
|
|
$this->db->order_by("COL_TIME_ON", "ASC");
|
|
|
|
$query = $this->db->get($this->config->item('table_name'));
|
|
|
|
|
|
|
|
return $query;
|
|
|
|
}
|
|
|
|
|
2019-04-08 14:47:03 +00:00
|
|
|
function sat_all() {
|
2019-09-24 22:42:01 +00:00
|
|
|
$this->load->model('stations');
|
|
|
|
$active_station_id = $this->stations->find_active();
|
|
|
|
|
|
|
|
$this->db->where('station_id', $active_station_id);
|
2019-04-08 14:36:23 +00:00
|
|
|
$this->db->where('COL_PROP_MODE', 'SAT');
|
|
|
|
$this->db->order_by("COL_TIME_ON", "ASC");
|
|
|
|
$query = $this->db->get($this->config->item('table_name'));
|
|
|
|
|
|
|
|
return $query;
|
|
|
|
}
|
|
|
|
|
|
|
|
function satellte_lotw() {
|
2019-09-24 22:42:01 +00:00
|
|
|
$this->load->model('stations');
|
|
|
|
$active_station_id = $this->stations->find_active();
|
|
|
|
|
|
|
|
$this->db->where('station_id', $active_station_id);
|
2019-04-08 14:36:23 +00:00
|
|
|
$this->db->where('COL_PROP_MODE', 'SAT');
|
|
|
|
|
|
|
|
$where = "COL_LOTW_QSLRDATE != ''";
|
|
|
|
$this->db->where($where);
|
|
|
|
|
|
|
|
$this->db->order_by("COL_TIME_ON", "ASC");
|
|
|
|
$query = $this->db->get($this->config->item('table_name'));
|
|
|
|
|
|
|
|
return $query;
|
|
|
|
}
|
2011-09-21 13:30:01 +00:00
|
|
|
|
|
|
|
function export_custom($from, $to) {
|
2019-09-24 22:42:01 +00:00
|
|
|
$this->load->model('stations');
|
|
|
|
$active_station_id = $this->stations->find_active();
|
|
|
|
$this->db->where('station_id', $active_station_id);
|
2020-02-07 13:17:05 +00:00
|
|
|
|
|
|
|
// If date is set, we format the date and add it to the where-statement
|
|
|
|
if ($from != 0) {
|
|
|
|
$from = DateTime::createFromFormat('d/m/Y', $from);
|
|
|
|
$from = $from->format('Y-m-d');
|
|
|
|
$this->db->where("date(COL_TIME_ON) >= '".$from."'");
|
|
|
|
}
|
|
|
|
if ($to != 0) {
|
|
|
|
$to = DateTime::createFromFormat('d/m/Y', $to);
|
|
|
|
$to = $to->format('Y-m-d');
|
|
|
|
$this->db->where("date(COL_TIME_ON) <= '".$to."'");
|
|
|
|
}
|
|
|
|
$this->db->order_by("COL_TIME_ON", "ASC");
|
2011-09-21 13:30:01 +00:00
|
|
|
$query = $this->db->get($this->config->item('table_name'));
|
|
|
|
|
|
|
|
return $query;
|
|
|
|
}
|
2013-03-05 04:57:29 +00:00
|
|
|
|
|
|
|
function export_lotw() {
|
2019-09-24 22:42:01 +00:00
|
|
|
$this->load->model('stations');
|
|
|
|
$active_station_id = $this->stations->find_active();
|
|
|
|
$this->db->where('station_id', $active_station_id);
|
2013-03-05 04:57:29 +00:00
|
|
|
$this->db->where("COL_LOTW_QSL_SENT != 'Y'");
|
|
|
|
$this->db->order_by("COL_TIME_ON", "ASC");
|
|
|
|
$query = $this->db->get($this->config->item('table_name'));
|
|
|
|
|
|
|
|
return $query;
|
|
|
|
}
|
2013-03-07 05:31:19 +00:00
|
|
|
|
|
|
|
function mark_lotw_sent($id) {
|
|
|
|
$data = array(
|
|
|
|
'COL_LOTW_QSL_SENT' => 'Y'
|
|
|
|
);
|
2013-03-09 00:25:47 +00:00
|
|
|
|
2020-04-01 06:43:08 +00:00
|
|
|
$this->db->set('COL_LOTW_QSLSDATE', 'now()', FALSE);
|
2013-03-07 05:31:19 +00:00
|
|
|
$this->db->where('COL_PRIMARY_KEY', $id);
|
|
|
|
$this->db->update($this->config->item('table_name'), $data);
|
|
|
|
}
|
2011-09-21 13:30:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|