2019-08-13 20:22:06 +00:00
|
|
|
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
Data lookup functions used within Cloudlog
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
class Lookup extends CI_Controller {
|
|
|
|
|
2019-10-05 18:35:55 +00:00
|
|
|
|
|
|
|
function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
|
|
|
|
$this->load->model('user_model');
|
|
|
|
if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
|
|
|
|
}
|
2021-03-14 09:11:21 +00:00
|
|
|
|
2019-08-13 20:22:06 +00:00
|
|
|
public function index()
|
|
|
|
{
|
2021-03-14 09:11:21 +00:00
|
|
|
$data['page_title'] = "Quick Lookup";
|
|
|
|
$this->load->model('logbook_model');
|
|
|
|
$data['dxcc'] = $this->logbook_model->fetchDxcc();
|
|
|
|
$data['iota'] = $this->logbook_model->fetchIota();
|
|
|
|
$this->load->view('lookup/index', $data);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function search() {
|
|
|
|
$CI =& get_instance();
|
|
|
|
$CI->load->model('Stations');
|
|
|
|
$station_id = $CI->Stations->find_active();
|
2019-08-13 20:22:06 +00:00
|
|
|
|
2021-03-14 10:50:21 +00:00
|
|
|
$type = xss_clean($this->input->post('type'));
|
|
|
|
$dxcc = xss_clean($this->input->post('dxcc'));
|
|
|
|
$was = xss_clean($this->input->post('was'));
|
|
|
|
$cqz = xss_clean($this->input->post('cqz'));
|
|
|
|
$sota = xss_clean($this->input->post('sota'));
|
|
|
|
$grid = xss_clean($this->input->post('grid'));
|
|
|
|
$iota = xss_clean($this->input->post('iota'));
|
2021-03-14 09:11:21 +00:00
|
|
|
|
|
|
|
$this->load->model('lookup_model');
|
|
|
|
|
|
|
|
$data['bands'] = $this->lookup_model->get_Worked_Bands($station_id);
|
|
|
|
$data['result'] = $this->lookup_model->getSearchResult($station_id, $type, $dxcc, $was, $cqz, $sota, $grid, $iota, $data['bands']);
|
|
|
|
$this->load->view('lookup/result', $data);
|
2019-08-13 20:22:06 +00:00
|
|
|
}
|
|
|
|
|
2019-08-15 10:53:32 +00:00
|
|
|
public function scp($call) {
|
2021-03-14 09:11:21 +00:00
|
|
|
|
2019-10-11 15:42:18 +00:00
|
|
|
if($call) {
|
|
|
|
$uppercase_callsign = strtoupper($call);
|
|
|
|
}
|
|
|
|
|
2019-08-15 10:53:32 +00:00
|
|
|
// SCP results from logbook
|
|
|
|
$this->load->model('logbook_model');
|
|
|
|
|
2019-10-11 15:42:18 +00:00
|
|
|
$arCalls = array();
|
2019-08-15 10:53:32 +00:00
|
|
|
|
2019-10-11 15:42:18 +00:00
|
|
|
$query = $this->logbook_model->get_callsigns($uppercase_callsign);
|
2019-08-15 10:53:32 +00:00
|
|
|
|
2019-10-11 15:42:18 +00:00
|
|
|
foreach ($query->result() as $row)
|
|
|
|
{
|
|
|
|
if (in_array($row->COL_CALL, $arCalls) == false)
|
|
|
|
{
|
|
|
|
$arCalls[] = $row->COL_CALL;
|
|
|
|
}
|
|
|
|
}
|
2019-10-11 12:58:43 +00:00
|
|
|
|
2019-08-15 10:53:32 +00:00
|
|
|
// SCP results from master scp db
|
2019-10-11 15:42:18 +00:00
|
|
|
$file = 'updates/clublog_scp.txt';
|
2019-08-13 20:22:06 +00:00
|
|
|
|
2019-08-15 11:00:57 +00:00
|
|
|
if (is_readable($file)) {
|
|
|
|
$lines = file($file, FILE_IGNORE_NEW_LINES);
|
2019-10-11 15:42:18 +00:00
|
|
|
$input = preg_quote($uppercase_callsign, '~');
|
2019-08-15 11:00:57 +00:00
|
|
|
$result = preg_grep('~' . $input . '~', $lines, 0);
|
2019-10-11 15:42:18 +00:00
|
|
|
foreach ($result as &$value) {
|
|
|
|
if (in_array($value, $arCalls) == false)
|
|
|
|
{
|
|
|
|
$arCalls[] = $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$file = 'updates/masterscp.txt';
|
2019-08-13 20:22:06 +00:00
|
|
|
|
2019-10-11 15:42:18 +00:00
|
|
|
if (is_readable($file)) {
|
|
|
|
$lines = file($file, FILE_IGNORE_NEW_LINES);
|
|
|
|
$input = preg_quote($uppercase_callsign, '~');
|
|
|
|
$result = preg_grep('~' . $input . '~', $lines, 0);
|
2019-08-15 11:00:57 +00:00
|
|
|
foreach ($result as &$value) {
|
2019-10-11 15:42:18 +00:00
|
|
|
if (in_array($value, $arCalls) == false)
|
|
|
|
{
|
|
|
|
$arCalls[] = $value;
|
|
|
|
}
|
2019-08-15 11:00:57 +00:00
|
|
|
}
|
2019-08-13 20:22:06 +00:00
|
|
|
}
|
2019-10-11 15:42:18 +00:00
|
|
|
|
|
|
|
sort($arCalls);
|
|
|
|
|
|
|
|
foreach ($arCalls as $strCall)
|
|
|
|
{
|
|
|
|
echo " " . $strCall . " ";
|
|
|
|
}
|
2021-03-14 09:11:21 +00:00
|
|
|
|
2019-10-09 12:54:07 +00:00
|
|
|
}
|
2019-10-11 12:58:43 +00:00
|
|
|
|
2019-08-15 10:54:18 +00:00
|
|
|
}
|