2011-08-17 01:21:23 +00:00
|
|
|
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
|
|
|
|
class API extends CI_Controller {
|
|
|
|
|
2018-12-17 22:19:23 +00:00
|
|
|
// Do absolutely nothing
|
|
|
|
function index()
|
|
|
|
{
|
2023-07-05 13:48:38 +00:00
|
|
|
echo "nothing to see";
|
2012-01-01 22:43:24 +00:00
|
|
|
}
|
|
|
|
|
2011-09-30 15:51:35 +00:00
|
|
|
function help()
|
|
|
|
{
|
2011-12-09 17:34:50 +00:00
|
|
|
$this->load->model('user_model');
|
|
|
|
|
2021-11-14 11:57:21 +00:00
|
|
|
// Check if users logged in
|
|
|
|
|
|
|
|
if($this->user_model->validate_session() == 0) {
|
|
|
|
// user is not logged in
|
|
|
|
redirect('user/login');
|
|
|
|
}
|
2011-12-09 17:34:50 +00:00
|
|
|
|
|
|
|
$this->load->model('api_model');
|
|
|
|
|
|
|
|
$data['api_keys'] = $this->api_model->keys();
|
2011-11-04 17:32:03 +00:00
|
|
|
|
2020-10-20 20:49:05 +00:00
|
|
|
$data['page_title'] = "API";
|
2011-11-04 17:32:03 +00:00
|
|
|
|
2019-01-09 15:18:46 +00:00
|
|
|
$this->load->view('interface_assets/header', $data);
|
2011-09-30 15:51:35 +00:00
|
|
|
$this->load->view('api/help');
|
2019-01-09 15:18:46 +00:00
|
|
|
$this->load->view('interface_assets/footer');
|
2011-09-30 15:51:35 +00:00
|
|
|
}
|
|
|
|
|
2019-07-09 16:18:19 +00:00
|
|
|
|
|
|
|
function edit($key) {
|
|
|
|
$this->load->model('user_model');
|
2021-05-01 17:52:13 +00:00
|
|
|
|
2021-11-14 11:57:21 +00:00
|
|
|
// Check if users logged in
|
|
|
|
|
|
|
|
if($this->user_model->validate_session() == 0) {
|
|
|
|
// user is not logged in
|
|
|
|
redirect('user/login');
|
|
|
|
}
|
2019-07-09 16:18:19 +00:00
|
|
|
|
|
|
|
$this->load->model('api_model');
|
|
|
|
|
|
|
|
$this->load->helper(array('form', 'url'));
|
|
|
|
|
|
|
|
$this->load->library('form_validation');
|
|
|
|
|
|
|
|
$this->form_validation->set_rules('api_desc', 'API Description', 'required');
|
|
|
|
$this->form_validation->set_rules('api_key', 'API Key is required do not change this field', 'required');
|
|
|
|
|
|
|
|
$data['api_info'] = $this->api_model->key_description($key);
|
|
|
|
|
|
|
|
if ($this->form_validation->run() == FALSE)
|
|
|
|
{
|
|
|
|
$data['page_title'] = "Edit API Description";
|
|
|
|
|
|
|
|
$this->load->view('interface_assets/header', $data);
|
|
|
|
$this->load->view('api/description');
|
|
|
|
$this->load->view('interface_assets/footer');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Success!
|
|
|
|
|
|
|
|
$this->api_model->update_key_description($this->input->post('api_key'), $this->input->post('api_desc'));
|
|
|
|
|
|
|
|
$this->session->set_flashdata('notice', 'API Key <b>'.$this->input->post('api_key')."</b> description has been updated.");
|
|
|
|
|
|
|
|
redirect('api/help');
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-12-09 17:34:50 +00:00
|
|
|
function generate($rights) {
|
|
|
|
$this->load->model('user_model');
|
2021-11-14 11:57:21 +00:00
|
|
|
|
|
|
|
// Check if users logged in
|
|
|
|
|
|
|
|
if($this->user_model->validate_session() == 0) {
|
|
|
|
// user is not logged in
|
|
|
|
redirect('user/login');
|
|
|
|
}
|
2011-12-09 17:34:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
$this->load->model('api_model');
|
|
|
|
|
|
|
|
$data['api_keys'] = $this->api_model->generate_key($rights);
|
|
|
|
|
|
|
|
redirect('api/help');
|
|
|
|
}
|
|
|
|
|
2019-06-21 20:33:21 +00:00
|
|
|
function delete($key) {
|
|
|
|
$this->load->model('user_model');
|
2021-11-14 11:57:21 +00:00
|
|
|
|
|
|
|
// Check if users logged in
|
|
|
|
|
|
|
|
if($this->user_model->validate_session() == 0) {
|
|
|
|
// user is not logged in
|
|
|
|
redirect('user/login');
|
|
|
|
}
|
2019-06-21 20:33:21 +00:00
|
|
|
|
|
|
|
|
|
|
|
$this->load->model('api_model');
|
|
|
|
|
|
|
|
$this->api_model->delete_key($key);
|
|
|
|
|
|
|
|
$this->session->set_flashdata('notice', 'API Key <b>'.$key."</b> has been deleted");
|
|
|
|
|
|
|
|
redirect('api/help');
|
|
|
|
}
|
|
|
|
|
2011-12-09 17:34:50 +00:00
|
|
|
// Example of authing
|
|
|
|
function auth($key) {
|
|
|
|
$this->load->model('api_model');
|
2017-12-01 02:01:11 +00:00
|
|
|
header("Content-type: text/xml");
|
2011-12-09 17:34:50 +00:00
|
|
|
if($this->api_model->access($key) == "No Key Found" || $this->api_model->access($key) == "Key Disabled") {
|
|
|
|
echo "<auth>";
|
|
|
|
echo "<message>Key Invalid - either not found or disabled</message>";
|
|
|
|
echo "</auth>";
|
|
|
|
} else {
|
|
|
|
echo "<auth>";
|
|
|
|
echo "<status>Valid</status>";
|
|
|
|
echo "<rights>".$this->api_model->access($key)."</rights>";
|
|
|
|
echo "</auth>";
|
2011-12-09 17:35:48 +00:00
|
|
|
}
|
2011-12-09 17:34:50 +00:00
|
|
|
}
|
|
|
|
|
2023-07-05 14:16:53 +00:00
|
|
|
function station_info($key) {
|
|
|
|
$this->load->model('api_model');
|
|
|
|
$this->load->model('stations');
|
|
|
|
header("Content-type: application/json");
|
|
|
|
if(substr($this->api_model->access($key),0,1) == 'r') { /* Checkpermission for _r_eading */
|
|
|
|
$this->api_model->update_last_used($key);
|
|
|
|
$userid = $this->api_model->key_userid($key);
|
|
|
|
$station_ids = array();
|
|
|
|
$stations=$this->stations->all_of_user($userid);
|
|
|
|
foreach ($stations->result() as $row) {
|
|
|
|
$result['station_id']=$row->station_id;
|
|
|
|
$result['station_profile_name']=$row->station_profile_name;
|
|
|
|
$result['station_gridsquare']=$row->station_gridsquare;
|
|
|
|
$result['station_callsign']=$row->station_callsign;;
|
|
|
|
$result['station_active']=$row->station_active;
|
|
|
|
array_push($station_ids, $result);
|
|
|
|
}
|
|
|
|
echo json_encode($station_ids);
|
|
|
|
} else {
|
|
|
|
http_response_code(401);
|
|
|
|
echo json_encode(['status' => 'failed', 'reason' => "missing or invalid api key"]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-17 01:21:23 +00:00
|
|
|
|
2023-08-08 13:47:23 +00:00
|
|
|
/*
|
2020-10-29 18:10:46 +00:00
|
|
|
*
|
|
|
|
* Function: QSO
|
|
|
|
* Task: allows passing of ADIF data to Cloudlog
|
|
|
|
*/
|
2019-06-17 14:10:43 +00:00
|
|
|
function qso() {
|
|
|
|
header('Content-type: application/json');
|
|
|
|
|
|
|
|
$this->load->model('api_model');
|
|
|
|
|
2023-06-15 06:12:57 +00:00
|
|
|
$this->load->model('stations');
|
|
|
|
|
2023-09-14 05:25:51 +00:00
|
|
|
$return_msg = array();
|
|
|
|
$return_count = 0;
|
|
|
|
|
2019-06-17 14:10:43 +00:00
|
|
|
// Decode JSON and store
|
|
|
|
$obj = json_decode(file_get_contents("php://input"), true);
|
2022-01-22 15:49:12 +00:00
|
|
|
if ($obj === NULL) {
|
|
|
|
echo json_encode(['status' => 'failed', 'reason' => "wrong JSON"]);
|
|
|
|
die();
|
|
|
|
}
|
2020-10-29 18:10:46 +00:00
|
|
|
|
2019-06-17 14:10:43 +00:00
|
|
|
if(!isset($obj['key']) || $this->api_model->authorize($obj['key']) == 0) {
|
2019-06-17 14:27:58 +00:00
|
|
|
http_response_code(401);
|
2019-06-17 14:10:43 +00:00
|
|
|
echo json_encode(['status' => 'failed', 'reason' => "missing api key"]);
|
|
|
|
die();
|
|
|
|
}
|
|
|
|
|
2023-06-15 06:12:57 +00:00
|
|
|
$userid = $this->api_model->key_userid($obj['key']);
|
|
|
|
|
2023-06-15 07:26:17 +00:00
|
|
|
if(!isset($obj['station_profile_id']) || $this->stations->check_station_against_user($obj['station_profile_id'], $userid) == false) {
|
2023-06-15 06:12:57 +00:00
|
|
|
http_response_code(401);
|
|
|
|
echo json_encode(['status' => 'failed', 'reason' => "station id does not belong to the API key owner."]);
|
|
|
|
die();
|
|
|
|
}
|
|
|
|
|
2019-06-17 14:10:43 +00:00
|
|
|
if($obj['type'] == "adif" && $obj['string'] != "") {
|
|
|
|
// Load the logbook model for adding QSO records
|
|
|
|
$this->load->model('logbook_model');
|
|
|
|
|
|
|
|
// Load ADIF Parser
|
|
|
|
$this->load->library('adif_parser');
|
|
|
|
|
|
|
|
// Feed in the ADIF string
|
|
|
|
$this->adif_parser->feed($obj['string']);
|
|
|
|
|
|
|
|
// Create QSO Record
|
|
|
|
while($record = $this->adif_parser->get_record())
|
|
|
|
{
|
|
|
|
if(count($record) == 0)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
};
|
2021-05-01 17:52:13 +00:00
|
|
|
|
2019-06-17 14:10:43 +00:00
|
|
|
|
2020-10-29 18:10:46 +00:00
|
|
|
if(isset($obj['station_profile_id'])) {
|
2023-09-05 22:02:07 +00:00
|
|
|
if(isset($record['station_callsign']) && $this->stations->check_station_against_callsign($obj['station_profile_id'], $record['station_callsign']) == false) {
|
|
|
|
http_response_code(401);
|
|
|
|
echo json_encode(['status' => 'failed', 'reason' => "station callsign does not match station callsign in station profile."]);
|
|
|
|
die();
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->api_model->update_last_used($obj['key']);
|
|
|
|
|
2023-09-14 05:25:51 +00:00
|
|
|
$msg = $this->logbook_model->import($record, $obj['station_profile_id'], NULL, NULL, NULL, NULL, NULL, NULL, false, false, true);
|
|
|
|
|
|
|
|
if ( $msg == "" ) {
|
|
|
|
$return_count++;
|
|
|
|
} else {
|
|
|
|
$return_msg[] = $msg;
|
|
|
|
}
|
2020-10-29 18:10:46 +00:00
|
|
|
}
|
2019-06-17 14:10:43 +00:00
|
|
|
|
|
|
|
};
|
2019-06-17 14:28:27 +00:00
|
|
|
http_response_code(201);
|
2023-09-17 19:55:22 +00:00
|
|
|
echo json_encode(['status' => 'created', 'type' => $obj['type'], 'string' => $obj['string'], 'imported_count' => $return_count, 'messages' => $return_msg ]);
|
2019-06-17 14:10:43 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-03-28 13:38:50 +00:00
|
|
|
// API function to check if a callsign is in the logbook already
|
|
|
|
function logbook_check_callsign() {
|
|
|
|
header('Content-type: application/json');
|
|
|
|
|
|
|
|
$this->load->model('api_model');
|
|
|
|
|
|
|
|
// Decode JSON and store
|
|
|
|
$obj = json_decode(file_get_contents("php://input"), true);
|
|
|
|
if ($obj === NULL) {
|
|
|
|
echo json_encode(['status' => 'failed', 'reason' => "wrong JSON"]);
|
2023-08-08 15:08:38 +00:00
|
|
|
return;
|
2023-03-28 13:38:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(!isset($obj['key']) || $this->api_model->authorize($obj['key']) == 0) {
|
|
|
|
http_response_code(401);
|
|
|
|
echo json_encode(['status' => 'failed', 'reason' => "missing api key"]);
|
2023-08-08 15:08:38 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!isset($obj['logbook_public_slug']) || !isset($obj['callsign'])) {
|
|
|
|
http_response_code(401);
|
|
|
|
echo json_encode(['status' => 'failed', 'reason' => "missing fields"]);
|
|
|
|
return;
|
2023-03-28 13:38:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if($obj['logbook_public_slug'] != "" && $obj['callsign'] != "") {
|
|
|
|
|
|
|
|
$logbook_slug = $obj['logbook_public_slug'];
|
|
|
|
$callsign = $obj['callsign'];
|
|
|
|
|
|
|
|
// If $obj['band'] exists
|
|
|
|
if(isset($obj['band'])) {
|
|
|
|
$band = $obj['band'];
|
|
|
|
} else {
|
|
|
|
$band = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->load->model('logbooks_model');
|
|
|
|
|
|
|
|
if($this->logbooks_model->public_slug_exists($logbook_slug)) {
|
|
|
|
$logbook_id = $this->logbooks_model->public_slug_exists_logbook_id($logbook_slug);
|
|
|
|
if($logbook_id != false)
|
|
|
|
{
|
|
|
|
// Get associated station locations for mysql queries
|
|
|
|
$logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($logbook_id);
|
|
|
|
|
|
|
|
if (!$logbooks_locations_array) {
|
|
|
|
// Logbook not found
|
|
|
|
http_response_code(404);
|
|
|
|
echo json_encode(['status' => 'failed', 'reason' => "Empty Logbook"]);
|
|
|
|
die();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Logbook not found
|
|
|
|
http_response_code(404);
|
|
|
|
echo json_encode(['status' => 'failed', 'reason' => $logbook_slug." has no associated station locations"]);
|
|
|
|
die();
|
|
|
|
}
|
|
|
|
// Search Logbook for callsign
|
|
|
|
$this->load->model('logbook_model');
|
|
|
|
|
2023-03-29 14:02:36 +00:00
|
|
|
$result = $this->logbook_model->check_if_callsign_worked_in_logbook($callsign, $logbooks_locations_array, $band);
|
2023-03-28 13:38:50 +00:00
|
|
|
|
|
|
|
http_response_code(201);
|
|
|
|
if($result > 0)
|
|
|
|
{
|
|
|
|
echo json_encode(['callsign' => $callsign, 'result' => 'Found']);
|
|
|
|
} else {
|
|
|
|
echo json_encode(['callsign' => $callsign, 'result' => 'Not Found']);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Logbook not found
|
|
|
|
http_response_code(404);
|
|
|
|
echo json_encode(['status' => 'failed', 'reason' => "logbook not found"]);
|
|
|
|
die();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-03-28 13:57:43 +00:00
|
|
|
// API function to check if a grid is in the logbook already
|
|
|
|
function logbook_check_grid() {
|
|
|
|
header('Content-type: application/json');
|
|
|
|
|
|
|
|
$this->load->model('api_model');
|
|
|
|
|
|
|
|
// Decode JSON and store
|
|
|
|
$obj = json_decode(file_get_contents("php://input"), true);
|
|
|
|
if ($obj === NULL) {
|
|
|
|
echo json_encode(['status' => 'failed', 'reason' => "wrong JSON"]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!isset($obj['key']) || $this->api_model->authorize($obj['key']) == 0) {
|
|
|
|
http_response_code(401);
|
|
|
|
echo json_encode(['status' => 'failed', 'reason' => "missing api key"]);
|
|
|
|
}
|
|
|
|
|
2023-08-08 15:08:38 +00:00
|
|
|
if(!isset($obj['logbook_public_slug']) || !isset($obj['grid'])) {
|
|
|
|
http_response_code(401);
|
|
|
|
echo json_encode(['status' => 'failed', 'reason' => "missing fields"]);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-03-28 13:57:43 +00:00
|
|
|
if($obj['logbook_public_slug'] != "" && $obj['grid'] != "") {
|
|
|
|
|
|
|
|
$logbook_slug = $obj['logbook_public_slug'];
|
|
|
|
$grid = $obj['grid'];
|
|
|
|
|
|
|
|
// If $obj['band'] exists
|
|
|
|
if(isset($obj['band'])) {
|
|
|
|
$band = $obj['band'];
|
|
|
|
} else {
|
|
|
|
$band = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->load->model('logbooks_model');
|
|
|
|
|
|
|
|
if($this->logbooks_model->public_slug_exists($logbook_slug)) {
|
|
|
|
$logbook_id = $this->logbooks_model->public_slug_exists_logbook_id($logbook_slug);
|
|
|
|
if($logbook_id != false)
|
|
|
|
{
|
|
|
|
// Get associated station locations for mysql queries
|
|
|
|
$logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($logbook_id);
|
|
|
|
|
|
|
|
if (!$logbooks_locations_array) {
|
|
|
|
// Logbook not found
|
|
|
|
http_response_code(404);
|
|
|
|
echo json_encode(['status' => 'failed', 'reason' => "Empty Logbook"]);
|
|
|
|
die();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Logbook not found
|
|
|
|
http_response_code(404);
|
|
|
|
echo json_encode(['status' => 'failed', 'reason' => $logbook_slug." has no associated station locations"]);
|
|
|
|
die();
|
|
|
|
}
|
|
|
|
// Search Logbook for callsign
|
|
|
|
$this->load->model('logbook_model');
|
|
|
|
|
2023-03-29 14:02:36 +00:00
|
|
|
$result = $this->logbook_model->check_if_grid_worked_in_logbook($grid, $logbooks_locations_array, $band);
|
2023-03-28 13:57:43 +00:00
|
|
|
|
|
|
|
http_response_code(201);
|
|
|
|
if($result > 0)
|
|
|
|
{
|
|
|
|
echo json_encode(['gridsquare' => strtoupper($grid), 'result' => 'Found']);
|
|
|
|
} else {
|
|
|
|
echo json_encode(['gridsquare' => strtoupper($grid), 'result' => 'Not Found']);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Logbook not found
|
|
|
|
http_response_code(404);
|
|
|
|
echo json_encode(['status' => 'failed', 'reason' => "logbook not found"]);
|
|
|
|
die();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-04-07 16:36:38 +00:00
|
|
|
/* ENDPOINT for Rig Control */
|
2017-12-01 02:01:11 +00:00
|
|
|
|
2012-04-07 16:36:38 +00:00
|
|
|
function radio() {
|
|
|
|
header('Content-type: application/json');
|
2017-12-01 02:01:11 +00:00
|
|
|
|
2018-12-17 21:16:06 +00:00
|
|
|
$this->load->model('api_model');
|
|
|
|
|
2012-04-07 16:36:38 +00:00
|
|
|
//$json = '{"radio":"FT-950","frequency":14075,"mode":"SSB","timestamp":"2012/04/07 16:47"}';
|
2017-12-01 02:01:11 +00:00
|
|
|
|
2012-04-07 16:36:38 +00:00
|
|
|
$this->load->model('cat');
|
2017-12-01 02:01:11 +00:00
|
|
|
|
2012-04-07 16:36:38 +00:00
|
|
|
//var_dump(file_get_contents("php://input"), true);
|
2017-12-01 02:01:11 +00:00
|
|
|
|
2012-04-07 16:36:38 +00:00
|
|
|
// Decode JSON and store
|
|
|
|
$obj = json_decode(file_get_contents("php://input"), true);
|
|
|
|
|
2018-12-17 21:16:06 +00:00
|
|
|
if(!isset($obj['key']) || $this->api_model->authorize($obj['key']) == 0) {
|
2023-07-26 12:23:52 +00:00
|
|
|
http_response_code(401);
|
|
|
|
echo json_encode(['status' => 'failed', 'reason' => "missing api key"]);
|
|
|
|
die();
|
2018-12-17 21:16:06 +00:00
|
|
|
}
|
|
|
|
|
2023-03-21 11:26:15 +00:00
|
|
|
$this->api_model->update_last_used($obj['key']);
|
|
|
|
|
2021-09-28 16:18:04 +00:00
|
|
|
$user_id = $this->api_model->key_userid($obj['key']);
|
|
|
|
|
2017-12-01 02:01:11 +00:00
|
|
|
// Store Result to Database
|
2021-09-28 16:18:04 +00:00
|
|
|
$this->cat->update($obj, $user_id);
|
2012-04-07 16:36:38 +00:00
|
|
|
|
|
|
|
// Return Message
|
2017-12-01 02:01:11 +00:00
|
|
|
|
2012-04-07 16:36:38 +00:00
|
|
|
$arr = array('status' => 'success');
|
|
|
|
|
|
|
|
echo json_encode($arr);
|
2017-12-01 02:01:11 +00:00
|
|
|
|
2012-04-07 16:36:38 +00:00
|
|
|
}
|
2020-04-03 15:41:21 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Stats API function calls
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2023-04-27 19:08:09 +00:00
|
|
|
function statistics($key = null) {
|
2020-04-03 15:41:21 +00:00
|
|
|
header('Content-type: application/json');
|
|
|
|
$this->load->model('logbook_model');
|
|
|
|
|
2023-04-27 19:08:09 +00:00
|
|
|
$data['todays_qsos'] = $this->logbook_model->todays_qsos(null, $key);
|
|
|
|
$data['total_qsos'] = $this->logbook_model->total_qsos(null, $key);
|
|
|
|
$data['month_qsos'] = $this->logbook_model->month_qsos(null, $key);
|
|
|
|
$data['year_qsos'] = $this->logbook_model->year_qsos(null, $key);
|
2020-04-03 15:41:21 +00:00
|
|
|
|
|
|
|
http_response_code(201);
|
|
|
|
echo json_encode(['Today' => $data['todays_qsos'], 'total_qsos' => $data['total_qsos'], 'month_qsos' => $data['month_qsos'], 'year_qsos' => $data['year_qsos']]);
|
|
|
|
|
|
|
|
}
|
2020-04-06 22:38:02 +00:00
|
|
|
|
|
|
|
function lookup() {
|
2020-04-06 22:58:26 +00:00
|
|
|
// start benchmarking
|
|
|
|
$this->output->enable_profiler(TRUE);
|
2020-04-06 22:38:02 +00:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Callsign lookup function for Cloudlogs logging page or thirdparty systems
|
|
|
|
* which want to show previous QSO data on their system.
|
|
|
|
*
|
|
|
|
* TODO
|
|
|
|
* - Local data make one database call ONLY
|
|
|
|
* - Add eQSL status
|
|
|
|
* - Add Callbook returned data
|
|
|
|
* - Add QSO before data array
|
|
|
|
* - Add options for checking based on band/mode/sat
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
// Make sure users logged in
|
|
|
|
$this->load->model('user_model');
|
|
|
|
if(!$this->user_model->authorize($this->config->item('auth_mode'))) { return; }
|
|
|
|
|
|
|
|
|
|
|
|
$this->load->model("logbook_model");
|
|
|
|
$date = date("Y-m-d");
|
|
|
|
|
|
|
|
// Return Array
|
|
|
|
$return = [
|
|
|
|
"callsign" => "",
|
|
|
|
"dxcc" => false,
|
|
|
|
"dxcc_lat" => "",
|
|
|
|
"dxcc_long" => "",
|
|
|
|
"dxcc_cqz" => "",
|
|
|
|
"name" => "",
|
|
|
|
"gridsquare" => "",
|
|
|
|
"location" => "",
|
|
|
|
"iota_ref" => "",
|
|
|
|
"state" => "",
|
|
|
|
"us_county" => "",
|
|
|
|
"qsl_manager" => "",
|
|
|
|
"bearing" => "",
|
|
|
|
"workedBefore" => false,
|
|
|
|
"lotw_member" => false,
|
|
|
|
"suffix_slash" => "", // Suffix Slash aka Portable
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Handle POST data being sent to check lookups
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
$raw_input = json_decode(file_get_contents("php://input"), true);
|
|
|
|
|
|
|
|
$lookup_callsign = strtoupper($raw_input['callsign']);
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Handle Callsign field
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
$return['callsign'] = $lookup_callsign;
|
|
|
|
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Lookup DXCC and Suffix information
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
$callsign_dxcc_lookup = $this->logbook_model->dxcc_lookup($lookup_callsign, $date);
|
|
|
|
|
|
|
|
$last_slash_pos = strrpos($lookup_callsign, '/');
|
|
|
|
|
|
|
|
if(isset($last_slash_pos) && $last_slash_pos > 4) {
|
|
|
|
$suffix_slash = $last_slash_pos === false ? $lookup_callsign : substr($lookup_callsign, $last_slash_pos + 1);
|
|
|
|
switch ($suffix_slash) {
|
|
|
|
case "P":
|
|
|
|
$suffix_slash_item = "Portable";
|
|
|
|
break;
|
|
|
|
case "M":
|
|
|
|
$suffix_slash_item = "Mobile";
|
|
|
|
case "MM":
|
|
|
|
$suffix_slash_item = "Maritime Mobile";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// If its not one of the above suffix slashes its likely dxcc
|
|
|
|
$ans2 = $this->logbook_model->dxcc_lookup($suffix_slash, $date);
|
|
|
|
$suffix_slash_item = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$return['suffix_slash'] = $suffix_slash_item;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the final slash is a DXCC then find it!
|
|
|
|
if (isset($ans2['call'])) {
|
|
|
|
$return['dxcc'] = $ans2['entity'];
|
|
|
|
$return['dxcc_lat'] = $ans2['lat'];
|
|
|
|
$return['dxcc_long'] = $ans2['long'];
|
|
|
|
$return['dxcc_cqz'] = $ans2['cqz'];
|
|
|
|
} else {
|
|
|
|
$return['dxcc'] = $callsign_dxcc_lookup['entity'];
|
|
|
|
$return['dxcc_lat'] = $callsign_dxcc_lookup['lat'];
|
|
|
|
$return['dxcc_long'] = $callsign_dxcc_lookup['long'];
|
|
|
|
$return['dxcc_cqz'] = $callsign_dxcc_lookup['cqz'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Pool any local data we have for a callsign
|
|
|
|
*
|
|
|
|
*/
|
2020-04-06 22:58:26 +00:00
|
|
|
$call_lookup_results = $this->logbook_model->call_lookup_result($lookup_callsign);
|
2020-04-06 22:38:02 +00:00
|
|
|
|
2020-04-06 22:58:26 +00:00
|
|
|
if($call_lookup_results != null)
|
2020-04-06 22:38:02 +00:00
|
|
|
{
|
2020-04-06 22:58:26 +00:00
|
|
|
$return['name'] = $call_lookup_results->COL_NAME;
|
|
|
|
$return['gridsquare'] = $call_lookup_results->COL_GRIDSQUARE;
|
|
|
|
$return['location'] = $call_lookup_results->COL_QTH;
|
|
|
|
$return['iota_ref'] = $call_lookup_results->COL_IOTA;
|
|
|
|
$return['qsl_manager'] = $call_lookup_results->COL_QSL_VIA;
|
2020-04-06 23:07:17 +00:00
|
|
|
$return['state'] = $call_lookup_results->COL_STATE;
|
|
|
|
$return['us_county'] = $call_lookup_results->COL_CNTY;
|
2020-04-06 22:38:02 +00:00
|
|
|
|
|
|
|
if ($return['gridsquare'] != "") {
|
|
|
|
$return['latlng'] = $this->qralatlng($return['gridsquare']);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
*
|
2023-07-27 07:16:55 +00:00
|
|
|
* Check if callsign is active on LoTW
|
2020-04-06 22:38:02 +00:00
|
|
|
*
|
|
|
|
*/
|
2020-09-21 13:10:55 +00:00
|
|
|
|
2020-04-06 22:38:02 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Output Returned data
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
echo json_encode($return, JSON_PRETTY_PRINT);
|
|
|
|
return;
|
|
|
|
|
2020-04-06 22:58:26 +00:00
|
|
|
// End benchmarking
|
|
|
|
$this->output->enable_profiler(FALSE);
|
2020-04-06 22:38:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function qralatlng($qra) {
|
|
|
|
$this->load->library('Qra');
|
|
|
|
$latlng = $this->qra->qra2latlong($qra);
|
|
|
|
return $latlng;
|
|
|
|
}
|
2023-04-27 19:08:09 +00:00
|
|
|
}
|