load->model('user_model'); $this->load->model('bands'); if(!$this->user_model->authorize($this->config->item('auth_mode'))) { if($this->user_model->validate_session()) { $this->user_model->clear_session(); show_error('Access denied

Click here to log in as another user', 403); } else { redirect('user/login'); } } // Render User Interface // Set Page Title $data['page_title'] = __("Statistics"); $data['sat_active'] = array_search("SAT", $this->bands->get_user_bands(), true); $data['years'] = $this->get_years(); // Load Views $this->load->view('interface_assets/header', $data); $this->load->view('statistics/index'); $this->load->view('interface_assets/footer'); } function custom() { $this->load->model('user_model'); if(!$this->user_model->authorize($this->config->item('auth_mode'))) { if($this->user_model->validate_session()) { $this->user_model->clear_session(); show_error('Access denied

Click here to log in as another user', 403); } else { redirect('user/login'); } } $this->load->model('logbook_model'); $data['page_title'] = __("Custom Statistics"); $data['modes'] = $this->logbook_model->get_modes(); $this->load->helper(array('form', 'url')); $this->load->library('form_validation'); $this->form_validation->set_rules('start_date', 'Start Date', 'required'); $this->form_validation->set_rules('end_date', 'End Date', 'required'); if ($this->form_validation->run() == FALSE) { $this->load->view('interface_assets/header', $data); $this->load->view('statistics/custom', $data); $this->load->view('interface_assets/footer'); } else { $this->load->model('stats'); $data['result'] = $this->stats->result(); $this->load->view('interface_assets/header', $data); $this->load->view('statistics/custom_result'); $this->load->view('interface_assets/footer'); } } function get_years() { $this->load->model('logbook_model'); $totals_year = $this->logbook_model->totals_year(); $years=[]; if ($totals_year) { foreach($totals_year->result() as $years_obj) { $years[] = $years_obj->year; } } return $years; } public function get_year() { $this->load->model('logbook_model'); // get data $totals_year = $this->logbook_model->totals_year(); $yearstats = array(); $i = 0; if ($totals_year) { foreach($totals_year->result() as $qso_numbers) { $yearstats[$i]['year'] = $qso_numbers->year; $yearstats[$i++]['total'] = $qso_numbers->total; } } header('Content-Type: application/json'); echo json_encode($yearstats); } public function get_mode() { $this->load->model('logbook_model'); $yr = xss_clean($this->input->post('yr')) ?? 'All'; $modestats = array(); $i = 0; $modestats[$i]['mode'] = 'ssb'; $modestats[$i++]['total'] = $this->logbook_model->total_ssb($yr); $modestats[$i]['mode'] = 'cw'; $modestats[$i++]['total'] = $this->logbook_model->total_cw($yr); $modestats[$i]['mode'] = 'fm'; $modestats[$i++]['total'] = $this->logbook_model->total_fm($yr); $modestats[$i]['mode'] = 'others'; $modestats[$i++]['total'] = $this->logbook_model->total_others($yr); $modestats[$i]['mode'] = 'digi'; $modestats[$i]['total'] = $this->logbook_model->total_digi($yr); usort($modestats, fn($a, $b) => $b['total'] <=> $a['total']); header('Content-Type: application/json'); echo json_encode($modestats); } public function get_band() { $this->load->model('logbook_model'); $bandstats = array(); $yr = xss_clean($this->input->post('yr')) ?? 'All'; $total_bands = $this->logbook_model->total_bands($yr); $i = 0; if ($total_bands) { foreach($total_bands->result() as $qso_numbers) { $bandstats[$i]['band'] = $qso_numbers->band; $bandstats[$i++]['count'] = $qso_numbers->count; } } header('Content-Type: application/json'); echo json_encode($bandstats); } public function get_sat() { $this->load->model('logbook_model'); $satstats = array(); $yr = xss_clean($this->input->post('yr')) ?? 'All'; $total_sat = $this->logbook_model->total_sat($yr); $i = 0; if ($total_sat) { foreach($total_sat->result() as $qso_numbers) { $satstats[$i]['sat'] = $qso_numbers->COL_SAT_NAME; $satstats[$i++]['count'] = $qso_numbers->count; } } header('Content-Type: application/json'); echo json_encode($satstats); } public function get_unique_sat_callsigns() { $this->load->model('stats'); $total_qsos = array(); $yr = xss_clean($this->input->post('yr')) ?? 'All'; $result = $this->stats->unique_sat_callsigns($yr); $total_qsos['qsoarray'] = $result['qsoView']; $total_qsos['satunique'] = $result['satunique']; $total_qsos['modeunique'] = $result['modeunique']; $total_qsos['total'] = $result['total']; $total_qsos['sats'] = $this->stats->get_sats($yr); $total_qsos['modes'] = $this->stats->get_sat_modes($yr); $this->load->view('statistics/satuniquetable', $total_qsos); } public function get_unique_callsigns() { $this->load->model('stats'); $total_qsos = array(); $yr = xss_clean($this->input->post('yr')) ?? 'All'; $result = $this->stats->unique_callsigns($yr); $total_qsos['qsoarray'] = $result['qsoView']; $total_qsos['bandunique'] = $result['bandunique']; $total_qsos['modeunique'] = $result['modeunique']; $total_qsos['total'] = $result['total']; $total_qsos['bands'] = $this->stats->get_bands($yr); $this->load->view('statistics/uniquetable', $total_qsos); } public function get_total_sat_qsos() { $this->load->model('stats'); $total_qsos = array(); $yr = xss_clean($this->input->post('yr')) ?? 'All'; $result = $this->stats->total_sat_qsos($yr); $total_qsos['qsoarray'] = $result['qsoView']; $total_qsos['sattotal'] = $result['sattotal']; $total_qsos['modetotal'] = $result['modetotal']; $total_qsos['modes'] = $result['modes']; $total_qsos['sats'] = $this->stats->get_sats($yr); $this->load->view('statistics/satqsotable', $total_qsos); } public function get_total_qsos() { $this->load->model('stats'); $total_qsos = array(); $yr = xss_clean($this->input->post('yr')) ?? 'All'; $result = $this->stats->total_qsos($yr); $total_qsos['qsoarray'] = $result['qsoView']; $total_qsos['bandtotal'] = $result['bandtotal']; $total_qsos['modetotal'] = $result['modetotal']; $total_qsos['bands'] = $this->stats->get_bands($yr); $this->load->view('statistics/qsotable', $total_qsos); } public function qslstats() { $this->load->model('stats'); $total_qsos = array(); $result = $this->stats->total_qsls(); $total_qsos['qsoarray'] = $result['qsoView']; $total_qsos['qsosatarray'] = $result['qsoSatView']; $total_qsos['bands'] = $this->stats->get_bands(); $total_qsos['sats'] = $this->stats->get_sats(); // Set Page Title $data['page_title'] = __("QSL Statistics"); // Load Views $this->load->view('interface_assets/header', $data); $this->load->view('statistics/qsltable', $total_qsos); $this->load->view('interface_assets/footer'); } public function antennaanalytics() { $this->load->model('stats'); $this->load->model('logbookadvanced_model'); $this->load->model('bands'); $data = array(); $headerData['page_title'] = __("Antenna Analytics"); $data['satellites'] = $this->stats->get_sats(); $data['bands'] = $this->bands->get_worked_bands(); $data['modes'] = $this->logbookadvanced_model->get_modes(); $data['sats'] = $this->bands->get_worked_sats(); $data['orbits'] = $this->bands->get_worked_orbits(); $footerData = []; $footerData['scripts'] = [ 'assets/js/chart.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/chart.js")), 'assets/js/sections/antennastats.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/antennestats.js")), ]; // Load Views $this->load->view('interface_assets/header', $headerData); $this->load->view('statistics/antennaanalytics', $data); $this->load->view('interface_assets/footer', $footerData); } public function get_azimuth_data() { $band = xss_clean($this->input->post('band')); $mode = xss_clean($this->input->post('mode')); $sat = xss_clean($this->input->post('sat')); $orbit = xss_clean($this->input->post('orbit')); $this->load->model('stats'); $azimutharray = $this->stats->azimuthdata($band, $mode, $sat, $orbit); header('Content-Type: application/json'); echo json_encode($azimutharray); } public function get_elevation_data() { $sat = xss_clean($this->input->post('sat')); $orbit = xss_clean($this->input->post('orbit')); $this->load->model('stats'); $elevationarray = $this->stats->elevationdata($sat, $orbit); header('Content-Type: application/json'); echo json_encode($elevationarray); } }