| 
									
										
										
										
											2013-02-16 16:41:40 +00:00
										 |  |  | <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class Lotw extends CI_Controller { | 
					
						
							| 
									
										
										
										
											2020-08-26 20:26:37 +00:00
										 |  |  |  /* | 
					
						
							|  |  |  | 	|-------------------------------------------------------------------------- | 
					
						
							|  |  |  | 	| Controller: Lotw | 
					
						
							|  |  |  | 	|-------------------------------------------------------------------------- | 
					
						
							|  |  |  | 	|  | 
					
						
							|  |  |  | 	| This Controller handles all things LOTW, upload and download. | 
					
						
							|  |  |  | 	| | 
					
						
							|  |  |  | 	| | 
					
						
							|  |  |  | 	|	Note: | 
					
						
							|  |  |  | 	|	If you plan on using any of the code within this class please credit | 
					
						
							|  |  |  | 	| 	Cloudlog or Peter, 2M0SQL, a lot of hard work went into building the | 
					
						
							|  |  |  | 	|	signing of files. | 
					
						
							|  |  |  | 	| | 
					
						
							|  |  |  | 	|	Big Thanks to Rodrigo PY2RAF for all the help and information about OpenSSL | 
					
						
							|  |  |  | 	| | 
					
						
							|  |  |  | 	*/ | 
					
						
							| 
									
										
										
										
											2013-02-16 16:41:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Controls who can access the controller and its functions */ | 
					
						
							|  |  |  | 	function __construct() | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		parent::__construct(); | 
					
						
							|  |  |  | 		$this->load->helper(array('form', 'url')); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-13 16:28:22 +00:00
										 |  |  | 	/* | 
					
						
							|  |  |  | 	|-------------------------------------------------------------------------- | 
					
						
							|  |  |  | 	| Function: index | 
					
						
							|  |  |  | 	|-------------------------------------------------------------------------- | 
					
						
							|  |  |  | 	|  | 
					
						
							|  |  |  | 	| Default function for the controller which loads when doing /lotw | 
					
						
							|  |  |  | 	| this shows all the uploaded lotw p12 certificates the user has uploaded | 
					
						
							|  |  |  | 	| | 
					
						
							|  |  |  | 	*/ | 
					
						
							| 
									
										
										
										
											2020-08-13 16:24:07 +00:00
										 |  |  | 	public function index() { | 
					
						
							| 
									
										
										
										
											2020-09-02 13:48:13 +00:00
										 |  |  | 		$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'); } | 
					
						
							| 
									
										
										
										
											2020-09-03 22:20:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-05 20:42:07 +00:00
										 |  |  | 		// Fire OpenSSL missing error if not found
 | 
					
						
							|  |  |  | 		if (!extension_loaded('openssl')) { | 
					
						
							|  |  |  | 			echo "You must install php OpenSSL for LoTW functions to work"; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-13 16:28:22 +00:00
										 |  |  | 		// Load required models for page generation
 | 
					
						
							| 
									
										
										
										
											2020-08-13 16:24:07 +00:00
										 |  |  | 		$this->load->model('LotwCert'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-13 16:28:22 +00:00
										 |  |  | 		// Get Array of the logged in users LOTW certs.
 | 
					
						
							| 
									
										
										
										
											2020-08-13 16:24:07 +00:00
										 |  |  | 		$data['lotw_cert_results'] = $this->LotwCert->lotw_certs($this->session->userdata('user_id')); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-13 16:28:22 +00:00
										 |  |  | 		// Set Page Title
 | 
					
						
							| 
									
										
										
										
											2020-08-13 16:24:07 +00:00
										 |  |  | 		$data['page_title'] = "Logbook of the World"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-13 16:28:22 +00:00
										 |  |  | 		// Load Views
 | 
					
						
							| 
									
										
										
										
											2020-08-13 16:24:07 +00:00
										 |  |  | 		$this->load->view('interface_assets/header', $data); | 
					
						
							|  |  |  | 		$this->load->view('lotw_views/index'); | 
					
						
							|  |  |  | 		$this->load->view('interface_assets/footer'); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-17 16:02:54 +00:00
										 |  |  | 	/* | 
					
						
							|  |  |  | 	|-------------------------------------------------------------------------- | 
					
						
							|  |  |  | 	| Function: cert_upload | 
					
						
							|  |  |  | 	|-------------------------------------------------------------------------- | 
					
						
							|  |  |  | 	|  | 
					
						
							|  |  |  | 	| Nothing fancy just shows the cert_upload form for uploading p12 files | 
					
						
							|  |  |  | 	| | 
					
						
							|  |  |  | 	*/ | 
					
						
							|  |  |  | 	public function cert_upload() { | 
					
						
							| 
									
										
										
										
											2020-09-02 13:48:13 +00:00
										 |  |  | 		$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'); } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-17 16:02:54 +00:00
										 |  |  | 		// Set Page Title
 | 
					
						
							|  |  |  | 		$data['page_title'] = "Logbook of the World"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Load Views
 | 
					
						
							|  |  |  | 		$this->load->view('interface_assets/header', $data); | 
					
						
							|  |  |  | 		$this->load->view('lotw_views/upload_cert', array('error' => ' ' )); | 
					
						
							|  |  |  | 		$this->load->view('interface_assets/footer');		 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* | 
					
						
							|  |  |  | 	|-------------------------------------------------------------------------- | 
					
						
							|  |  |  | 	| Function: do_cert_upload | 
					
						
							|  |  |  | 	|-------------------------------------------------------------------------- | 
					
						
							|  |  |  | 	|  | 
					
						
							|  |  |  | 	| do_cert_upload is called from cert_upload form submit and handles uploading | 
					
						
							|  |  |  | 	| and processing of p12 files and storing the data into mysql | 
					
						
							|  |  |  | 	| | 
					
						
							|  |  |  | 	*/ | 
					
						
							|  |  |  | 	public function do_cert_upload() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-09-02 13:48:13 +00:00
										 |  |  | 		$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'); } | 
					
						
							| 
									
										
										
										
											2020-09-02 13:02:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-05 20:42:07 +00:00
										 |  |  | 		// Fire OpenSSL missing error if not found
 | 
					
						
							|  |  |  | 		if (!extension_loaded('openssl')) { | 
					
						
							|  |  |  | 			echo "You must install php OpenSSL for LoTW functions to work"; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-02 13:02:58 +00:00
										 |  |  |     	// create folder to store certs while processing
 | 
					
						
							|  |  |  |     	if (!file_exists('./uploads/lotw/certs')) { | 
					
						
							|  |  |  | 		    mkdir('./uploads/lotw/certs', 0755, true); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-17 16:02:54 +00:00
										 |  |  | 		$config['upload_path']          = './uploads/lotw/certs'; | 
					
						
							|  |  |  |     	$config['allowed_types']        = 'p12'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		$this->load->library('upload', $config); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ( ! $this->upload->do_upload('userfile')) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |         	// Upload of P12 Failed
 | 
					
						
							|  |  |  |             $error = array('error' => $this->upload->display_errors()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	        	// Set Page Title
 | 
					
						
							|  |  |  | 			$data['page_title'] = "Logbook of the World"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// Load Views
 | 
					
						
							|  |  |  | 			$this->load->view('interface_assets/header', $data); | 
					
						
							|  |  |  | 			$this->load->view('lotw_views/upload_cert', $error); | 
					
						
							|  |  |  | 			$this->load->view('interface_assets/footer');	 | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |         	// Load database queries
 | 
					
						
							|  |  |  |         	$this->load->model('LotwCert'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         	//Upload of P12 successful
 | 
					
						
							|  |  |  |         	$data = array('upload_data' => $this->upload->data()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         	$info = $this->decrypt_key($data['upload_data']['full_path']); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         	// Check to see if certificate is already in the system
 | 
					
						
							|  |  |  |         	$new_certficiate = $this->LotwCert->find_cert($info['issued_callsign'], $this->session->userdata('user_id')); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         	// Check DXCC & Store Country Name
 | 
					
						
							|  |  |  |         	$this->load->model('Logbook_model'); | 
					
						
							|  |  |  |         	$dxcc_check = $this->Logbook_model->check_dxcc_table($info['issued_callsign'], $info['validFrom']); | 
					
						
							|  |  |  |         	$dxcc = $dxcc_check[1]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         	if($new_certficiate == 0) { | 
					
						
							|  |  |  |         		// New Certificate Store in Database
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         		// Store Certificate Data into MySQL
 | 
					
						
							| 
									
										
										
										
											2020-08-26 15:31:35 +00:00
										 |  |  |         		$this->LotwCert->store_certficiate($this->session->userdata('user_id'), $info['issued_callsign'], $dxcc, $info['validFrom'], $info['validTo_Date'], $info['pem_key'], $info['general_cert']); | 
					
						
							| 
									
										
										
										
											2020-08-17 16:02:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         		// Cert success flash message
 | 
					
						
							|  |  |  |         		$this->session->set_flashdata('Success', $info['issued_callsign'].' Certficiate Imported.'); | 
					
						
							|  |  |  |         	} else { | 
					
						
							|  |  |  |         		// Certficiate is in the system time to update
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-26 15:31:35 +00:00
										 |  |  | 				$this->LotwCert->update_certficiate($this->session->userdata('user_id'), $info['issued_callsign'], $dxcc, $info['validFrom'], $info['validTo_Date'], $info['pem_key'], $info['general_cert']); | 
					
						
							| 
									
										
										
										
											2020-08-17 16:02:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         		// Cert success flash message
 | 
					
						
							|  |  |  |         		$this->session->set_flashdata('Success', $info['issued_callsign'].' Certficiate Updated.'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         	// p12 certificate processed time to delete the file
 | 
					
						
							|  |  |  |         	unlink($data['upload_data']['full_path']); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// Get Array of the logged in users LOTW certs.
 | 
					
						
							|  |  |  | 			$data['lotw_cert_results'] = $this->LotwCert->lotw_certs($this->session->userdata('user_id')); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	        // Set Page Title
 | 
					
						
							|  |  |  | 			$data['page_title'] = "Logbook of the World"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// Load Views
 | 
					
						
							|  |  |  | 			$this->load->view('interface_assets/header', $data); | 
					
						
							|  |  |  | 			$this->load->view('lotw_views/index'); | 
					
						
							|  |  |  | 			$this->load->view('interface_assets/footer'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-22 21:26:04 +00:00
										 |  |  |     /* | 
					
						
							|  |  |  | 	|-------------------------------------------------------------------------- | 
					
						
							|  |  |  | 	| Function: lotw_upload | 
					
						
							|  |  |  | 	|-------------------------------------------------------------------------- | 
					
						
							|  |  |  | 	|  | 
					
						
							|  |  |  | 	| This function Uploads to LOTW | 
					
						
							|  |  |  | 	| | 
					
						
							|  |  |  | 	*/ | 
					
						
							|  |  |  | 	public function lotw_upload() { | 
					
						
							| 
									
										
										
										
											2020-09-05 20:42:07 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// Fire OpenSSL missing error if not found
 | 
					
						
							|  |  |  | 		if (!extension_loaded('openssl')) { | 
					
						
							|  |  |  | 			echo "You must install php OpenSSL for LoTW functions to work"; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-09-05 20:42:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-22 21:26:04 +00:00
										 |  |  | 		// Get Station Profile Data
 | 
					
						
							| 
									
										
										
										
											2020-09-05 20:42:55 +00:00
										 |  |  | 		$this->load->model('Stations'); | 
					
						
							| 
									
										
										
										
											2020-08-22 21:26:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-05 20:42:55 +00:00
										 |  |  | 		$station_profiles = $this->Stations->all(); | 
					
						
							| 
									
										
										
										
											2020-08-22 21:26:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-05 20:42:55 +00:00
										 |  |  | 		// Array of QSO IDs being Uploaded
 | 
					
						
							| 
									
										
										
										
											2020-08-26 20:04:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-05 20:42:55 +00:00
										 |  |  | 		$qso_id_array = array(); | 
					
						
							| 
									
										
										
										
											2020-08-26 20:04:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-05 20:42:55 +00:00
										 |  |  | 		// Build TQ8 Outputs
 | 
					
						
							| 
									
										
										
										
											2020-08-22 21:26:04 +00:00
										 |  |  | 			if ($station_profiles->num_rows() >= 1) { | 
					
						
							| 
									
										
										
										
											2020-08-26 20:04:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-22 21:26:04 +00:00
										 |  |  | 				foreach ($station_profiles->result() as $station_profile) | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// Get Certificate Data
 | 
					
						
							|  |  |  | 					$this->load->model('LotwCert'); | 
					
						
							| 
									
										
										
										
											2020-08-25 14:53:20 +00:00
										 |  |  | 					$data['station_profile'] = $station_profile; | 
					
						
							|  |  |  | 					$data['lotw_cert_info'] = $this->LotwCert->lotw_cert_details($station_profile->station_callsign); | 
					
						
							| 
									
										
										
										
											2020-08-22 21:26:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-02 11:02:29 +00:00
										 |  |  | 					// If Station Profile has no LOTW Cert continue on.
 | 
					
						
							| 
									
										
										
										
											2020-09-02 10:46:54 +00:00
										 |  |  | 					if(!isset($data['lotw_cert_info']->cert_dxcc)) { | 
					
						
							| 
									
										
										
										
											2020-09-02 10:45:50 +00:00
										 |  |  | 						continue; | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-25 14:53:20 +00:00
										 |  |  | 					$this->load->model('Dxcc'); | 
					
						
							|  |  |  | 					$data['station_profile_dxcc'] = $this->Dxcc->lookup_country($data['lotw_cert_info']->cert_dxcc); | 
					
						
							| 
									
										
										
										
											2020-08-22 21:26:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-25 16:50:52 +00:00
										 |  |  | 					// Get QSOs
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					$this->load->model('Logbook_model'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-02 10:22:08 +00:00
										 |  |  | 					$data['qsos'] = $this->Logbook_model->get_lotw_qsos_to_upload($data['station_profile']->station_id, $data['lotw_cert_info']->date_created, $data['lotw_cert_info']->date_expires); | 
					
						
							| 
									
										
										
										
											2020-08-25 16:50:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-02 11:02:29 +00:00
										 |  |  | 					// Nothing to upload
 | 
					
						
							|  |  |  | 					if(empty($data['qsos']->result())){ | 
					
						
							|  |  |  | 					    continue; | 
					
						
							|  |  |  | 					}  | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-26 20:04:17 +00:00
										 |  |  | 					foreach ($data['qsos']->result() as $temp_qso) {  | 
					
						
							|  |  |  | 						array_push($qso_id_array, $temp_qso->COL_PRIMARY_KEY); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					//$this->load->view('lotw_views/adif_views/adif_export', $data);
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// Build File to save
 | 
					
						
							|  |  |  | 					$adif_to_save = $this->load->view('lotw_views/adif_views/adif_export', $data, TRUE); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// Build Filename
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					$filename_for_saving = $data['lotw_cert_info']->callsign."-".date("Y-m-d-H-i-s")."-cloudlog.tq8"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					$gzdata = gzencode($adif_to_save, 9); | 
					
						
							|  |  |  | 					$fp = fopen($filename_for_saving, "w"); | 
					
						
							|  |  |  | 					fwrite($fp, $gzdata); | 
					
						
							|  |  |  | 					fclose($fp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					//The URL that accepts the file upload.
 | 
					
						
							|  |  |  | 					$url = 'https://lotw.arrl.org/lotw/upload'; | 
					
						
							|  |  |  | 					  | 
					
						
							|  |  |  | 					//The name of the field for the uploaded file.
 | 
					
						
							|  |  |  | 					$uploadFieldName = 'upfile'; | 
					
						
							|  |  |  | 					  | 
					
						
							|  |  |  | 					//The full path to the file that you want to upload
 | 
					
						
							|  |  |  | 					$filePath = realpath($filename_for_saving); | 
					
						
							|  |  |  | 					  | 
					
						
							|  |  |  | 					//Initiate cURL
 | 
					
						
							|  |  |  | 					$ch = curl_init(); | 
					
						
							|  |  |  | 					  | 
					
						
							|  |  |  | 					//Set the URL
 | 
					
						
							|  |  |  | 					curl_setopt($ch, CURLOPT_URL, $url); | 
					
						
							|  |  |  | 					  | 
					
						
							|  |  |  | 					//Set the HTTP request to POST
 | 
					
						
							|  |  |  | 					curl_setopt($ch, CURLOPT_POST, true); | 
					
						
							|  |  |  | 					  | 
					
						
							|  |  |  | 					//Tell cURL to return the output as a string.
 | 
					
						
							|  |  |  | 					curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); | 
					
						
							|  |  |  | 					  | 
					
						
							|  |  |  | 					//If the function curl_file_create exists
 | 
					
						
							|  |  |  | 					if(function_exists('curl_file_create')){ | 
					
						
							|  |  |  | 					    //Use the recommended way, creating a CURLFile object.
 | 
					
						
							|  |  |  | 					    $filePath = curl_file_create($filePath); | 
					
						
							|  |  |  | 					} else{ | 
					
						
							|  |  |  | 					    //Otherwise, do it the old way.
 | 
					
						
							|  |  |  | 					    //Get the canonicalized pathname of our file and prepend
 | 
					
						
							|  |  |  | 					    //the @ character.
 | 
					
						
							|  |  |  | 					    $filePath = '@' . realpath($filePath); | 
					
						
							|  |  |  | 					    //Turn off SAFE UPLOAD so that it accepts files
 | 
					
						
							|  |  |  | 					    //starting with an @
 | 
					
						
							|  |  |  | 					    curl_setopt($ch, CURLOPT_SAFE_UPLOAD, false); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					  | 
					
						
							|  |  |  | 					//Setup our POST fields
 | 
					
						
							|  |  |  | 					$postFields = array( | 
					
						
							|  |  |  | 					    $uploadFieldName => $filePath | 
					
						
							|  |  |  | 					); | 
					
						
							|  |  |  | 					  | 
					
						
							|  |  |  | 					curl_setopt($ch, CURLOPT_POSTFIELDS, $postFields); | 
					
						
							|  |  |  | 					  | 
					
						
							|  |  |  | 					//Execute the request
 | 
					
						
							|  |  |  | 					$result = curl_exec($ch); | 
					
						
							|  |  |  | 					  | 
					
						
							|  |  |  | 					//If an error occured, throw an exception
 | 
					
						
							|  |  |  | 					//with the error message.
 | 
					
						
							|  |  |  | 					if(curl_errno($ch)){ | 
					
						
							|  |  |  | 					    throw new Exception(curl_error($ch)); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					  | 
					
						
							|  |  |  | 					$pos = strpos($result, "<!-- .UPL.  accepted -->"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					if ($pos === false) { | 
					
						
							|  |  |  | 						// Upload of TQ8 Failed for unknown reason
 | 
					
						
							| 
									
										
										
										
											2020-09-02 11:02:29 +00:00
										 |  |  | 					    echo "Upload Failed"."<br>"; | 
					
						
							| 
									
										
										
										
											2020-08-26 20:04:17 +00:00
										 |  |  | 					} else { | 
					
						
							|  |  |  | 						// Upload of TQ8 was successfull
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-02 11:02:29 +00:00
										 |  |  | 					    echo "Upload Successful - ".$filename_for_saving."<br>"; | 
					
						
							| 
									
										
										
										
											2020-08-26 20:04:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-26 20:20:58 +00:00
										 |  |  | 					    $this->LotwCert->last_upload($data['lotw_cert_info']->lotw_cert_id); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-26 20:04:17 +00:00
										 |  |  | 					    // Mark QSOs as Sent
 | 
					
						
							|  |  |  | 					    foreach ($qso_id_array as $qso_number) { | 
					
						
							|  |  |  | 					    	$this->Logbook_model->mark_lotw_sent($qso_number); | 
					
						
							|  |  |  | 					    } | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// Delete TQ8 File - This is done regardless of whether upload was succcessful
 | 
					
						
							|  |  |  | 					unlink(realpath($filename_for_saving)); | 
					
						
							| 
									
										
										
										
											2020-08-22 21:26:04 +00:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				echo "No Station Profiles"; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-17 16:02:54 +00:00
										 |  |  | 	/* | 
					
						
							|  |  |  | 	|-------------------------------------------------------------------------- | 
					
						
							|  |  |  | 	| Function: delete_cert | 
					
						
							|  |  |  | 	|-------------------------------------------------------------------------- | 
					
						
							|  |  |  | 	|  | 
					
						
							|  |  |  | 	| Deletes LOTW certificate from the MySQL table | 
					
						
							|  |  |  | 	| | 
					
						
							|  |  |  | 	*/ | 
					
						
							|  |  |  |     public function delete_cert($cert_id) { | 
					
						
							| 
									
										
										
										
											2020-09-02 13:48:13 +00:00
										 |  |  |     	$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'); } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-17 16:02:54 +00:00
										 |  |  |     	$this->load->model('LotwCert'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     	$this->LotwCert->delete_certficiate($this->session->userdata('user_id'), $cert_id); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     	$this->session->set_flashdata('Success', 'Certficiate Deleted.'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     	redirect('/lotw/'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* | 
					
						
							|  |  |  | 	|-------------------------------------------------------------------------- | 
					
						
							|  |  |  | 	| Function: decrypt_key | 
					
						
							|  |  |  | 	|-------------------------------------------------------------------------- | 
					
						
							|  |  |  | 	|  | 
					
						
							|  |  |  | 	| Accepts p12 file and optional password and encrypts the file returning | 
					
						
							|  |  |  | 	| the required fields for LOTW and the PEM Key | 
					
						
							|  |  |  | 	| | 
					
						
							|  |  |  | 	*/ | 
					
						
							|  |  |  | 	public function decrypt_key($file, $password = "") { | 
					
						
							| 
									
										
										
										
											2020-09-02 13:48:13 +00:00
										 |  |  | 		$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'); } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-13 22:03:25 +00:00
										 |  |  | 		$results = array(); | 
					
						
							| 
									
										
										
										
											2020-08-17 16:02:54 +00:00
										 |  |  | 		$password = $password; // Only needed if 12 has a password set
 | 
					
						
							|  |  |  | 		$filename = file_get_contents('file://'.$file); | 
					
						
							| 
									
										
										
										
											2020-08-13 22:03:25 +00:00
										 |  |  | 		$worked = openssl_pkcs12_read($filename, $results, $password); | 
					
						
							| 
									
										
										
										
											2020-08-26 15:31:35 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		$data['general_cert'] = $results['cert']; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-13 22:03:25 +00:00
										 |  |  | 		if($worked) { | 
					
						
							| 
									
										
										
										
											2020-08-13 22:34:10 +00:00
										 |  |  | 			// Reading p12 successful
 | 
					
						
							|  |  |  | 		    $new_password = "cloudlog"; // set default password
 | 
					
						
							| 
									
										
										
										
											2020-08-13 22:03:25 +00:00
										 |  |  | 			$result = null; | 
					
						
							|  |  |  | 			$worked = openssl_pkey_export($results['pkey'], $result, $new_password); | 
					
						
							| 
									
										
										
										
											2020-08-26 15:31:35 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-13 22:03:25 +00:00
										 |  |  | 			if($worked) { | 
					
						
							| 
									
										
										
										
											2020-08-13 22:34:10 +00:00
										 |  |  | 				// Store PEM Key in Array
 | 
					
						
							|  |  |  | 			    $data['pem_key'] = $result; | 
					
						
							| 
									
										
										
										
											2020-08-13 22:03:25 +00:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2020-08-17 16:02:54 +00:00
										 |  |  | 				// Error Log Error Message
 | 
					
						
							|  |  |  | 			    log_message('error', openssl_error_string()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			    // Set warning message redirect to LOTW main page
 | 
					
						
							|  |  |  | 			    $this->session->set_flashdata('Warning', openssl_error_string()); | 
					
						
							|  |  |  | 				redirect('/lotw/'); | 
					
						
							| 
									
										
										
										
											2020-08-13 22:03:25 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2020-08-17 16:02:54 +00:00
										 |  |  | 			// Reading p12 failed log error message
 | 
					
						
							|  |  |  | 			log_message('error', openssl_error_string()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// Set warning message redirect to LOTW main page
 | 
					
						
							|  |  |  | 			$this->session->set_flashdata('Warning', openssl_error_string()); | 
					
						
							|  |  |  | 			redirect('/lotw/'); | 
					
						
							| 
									
										
										
										
											2020-08-13 22:03:25 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-08-13 22:34:10 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// Read Cert Data
 | 
					
						
							|  |  |  | 		$certdata= openssl_x509_parse($results['cert'],0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Store Variables
 | 
					
						
							|  |  |  | 		$data['issued_callsign'] = $certdata['subject']['undefined']; | 
					
						
							|  |  |  | 		$data['issued_name'] = $certdata['subject']['commonName']; | 
					
						
							| 
									
										
										
										
											2020-08-17 16:02:54 +00:00
										 |  |  | 		$data['validFrom'] = $certdata['extensions']['1.3.6.1.4.1.12348.1.2']; | 
					
						
							|  |  |  | 		$data['validTo_Date'] = $certdata['extensions']['1.3.6.1.4.1.12348.1.3']; | 
					
						
							| 
									
										
										
										
											2020-08-13 22:34:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-17 16:02:54 +00:00
										 |  |  | 		return $data; | 
					
						
							| 
									
										
										
										
											2020-08-13 22:03:25 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-23 23:42:18 +00:00
										 |  |  | 	private function loadFromFile($filepath) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2020-07-01 06:34:51 +00:00
										 |  |  | 		$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'); } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-02 20:24:16 +00:00
										 |  |  | 		// Figure out how we should be marking QSLs confirmed via LoTW
 | 
					
						
							|  |  |  | 		$query = $query = $this->db->query('SELECT lotw_rcvd_mark FROM config'); | 
					
						
							|  |  |  | 		$q = $query->row(); | 
					
						
							|  |  |  | 		$config['lotw_rcvd_mark'] = $q->lotw_rcvd_mark; | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-24 00:40:06 +00:00
										 |  |  | 		ini_set('memory_limit', '-1'); | 
					
						
							| 
									
										
										
										
											2013-02-23 23:42:18 +00:00
										 |  |  | 		set_time_limit(0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		$this->load->library('adif_parser'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		$this->adif_parser->load_from_file($filepath); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		$this->adif_parser->initialize(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-10 22:07:55 +00:00
										 |  |  | 		$tableheaders = "<table width=\"100%\">"; | 
					
						
							| 
									
										
										
										
											2013-11-15 21:28:56 +00:00
										 |  |  | 			$tableheaders .= "<tr class=\"titles\">"; | 
					
						
							|  |  |  | 				$tableheaders .= "<td>QSO Date</td>"; | 
					
						
							|  |  |  | 				$tableheaders .= "<td>Call</td>"; | 
					
						
							|  |  |  | 				$tableheaders .= "<td>Mode</td>"; | 
					
						
							|  |  |  | 				$tableheaders .= "<td>LoTW QSL Received</td>"; | 
					
						
							|  |  |  | 				$tableheaders .= "<td>Date LoTW Confirmed</td>"; | 
					
						
							| 
									
										
										
										
											2020-08-10 22:07:55 +00:00
										 |  |  | 				$tableheaders .= "<td>State</td>"; | 
					
						
							| 
									
										
										
										
											2013-11-15 21:28:56 +00:00
										 |  |  | 				$tableheaders .= "<td>Log Status</td>"; | 
					
						
							|  |  |  | 				$tableheaders .= "<td>LoTW Status</td>"; | 
					
						
							| 
									
										
										
										
											2016-01-09 23:53:50 +00:00
										 |  |  | 			$tableheaders .= "</tr>"; | 
					
						
							| 
									
										
										
										
											2013-11-15 21:28:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			$table = ""; | 
					
						
							|  |  |  | 			while($record = $this->adif_parser->get_record()) | 
					
						
							| 
									
										
										
										
											2013-02-23 23:42:18 +00:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-15 21:28:56 +00:00
										 |  |  | 				$time_on = date('Y-m-d', strtotime($record['qso_date'])) ." ".date('H:i', strtotime($record['time_on'])); | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-15 21:28:56 +00:00
										 |  |  | 				$qsl_date = date('Y-m-d', strtotime($record['qslrdate'])) ." ".date('H:i', strtotime($record['qslrdate'])); | 
					
						
							| 
									
										
										
										
											2013-02-23 23:42:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-15 21:28:56 +00:00
										 |  |  | 				if (isset($record['time_off'])) { | 
					
						
							|  |  |  | 					$time_off = date('Y-m-d', strtotime($record['qso_date'])) ." ".date('H:i', strtotime($record['time_off'])); | 
					
						
							|  |  |  | 				} else { | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 				   $time_off = date('Y-m-d', strtotime($record['qso_date'])) ." ".date('H:i', strtotime($record['time_on'])); | 
					
						
							| 
									
										
										
										
											2013-11-15 21:28:56 +00:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-15 21:28:56 +00:00
										 |  |  | 				// If we have a positive match from LoTW, record it in the DB according to the user's preferences
 | 
					
						
							|  |  |  | 				if ($record['qsl_rcvd'] == "Y") | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					$record['qsl_rcvd'] = $config['lotw_rcvd_mark']; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-15 21:28:56 +00:00
										 |  |  | 				$status = $this->logbook_model->import_check($time_on, $record['call'], $record['band']); | 
					
						
							| 
									
										
										
										
											2020-05-01 11:29:02 +00:00
										 |  |  | 				$skipNewQso = $this->input->post('importMissing'); // If import missing was checked
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if($status == "No Match" && $skipNewQso != NULL) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     $station_id = $this->logbook_model->find_correct_station_id($record['station_callsign'], $record['my_gridsquare']); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     if ($station_id != NULL) { | 
					
						
							|  |  |  |                         $result = $this->logbook_model->import($record, $station_id, NULL, NULL, NULL);  // Create the Entry
 | 
					
						
							|  |  |  |                         if ($result == "") { | 
					
						
							|  |  |  |                             $lotw_status = 'QSO imported'; | 
					
						
							|  |  |  |                         } else { | 
					
						
							|  |  |  |                             $lotw_status = $result; | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                     } | 
					
						
							| 
									
										
										
										
											2019-05-22 14:10:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				} else { | 
					
						
							| 
									
										
										
										
											2020-08-10 22:07:55 +00:00
										 |  |  | 					if (isset($record['state'])) { | 
					
						
							|  |  |  | 						$state = $record['state']; | 
					
						
							|  |  |  | 					} else { | 
					
						
							|  |  |  | 						$state = ""; | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					$lotw_status = $this->logbook_model->lotw_update($time_on, $record['call'], $record['band'], $qsl_date, $record['qsl_rcvd'], $state); | 
					
						
							| 
									
										
										
										
											2019-05-22 14:10:57 +00:00
										 |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-15 21:28:56 +00:00
										 |  |  | 				$table .= "<tr>"; | 
					
						
							|  |  |  | 					$table .= "<td>".$time_on."</td>"; | 
					
						
							|  |  |  | 					$table .= "<td>".$record['call']."</td>"; | 
					
						
							|  |  |  | 					$table .= "<td>".$record['mode']."</td>"; | 
					
						
							|  |  |  | 					$table .= "<td>".$record['qsl_rcvd']."</td>"; | 
					
						
							|  |  |  | 					$table .= "<td>".$qsl_date."</td>"; | 
					
						
							| 
									
										
										
										
											2020-08-10 22:07:55 +00:00
										 |  |  | 					$table .= "<td>".$state."</td>"; | 
					
						
							| 
									
										
										
										
											2013-11-15 21:28:56 +00:00
										 |  |  | 					$table .= "<td>QSO Record: ".$status."</td>"; | 
					
						
							|  |  |  | 					$table .= "<td>LoTW Record: ".$lotw_status."</td>"; | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 				$table .= "</tr>"; | 
					
						
							| 
									
										
										
										
											2013-11-15 21:28:56 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-15 21:28:56 +00:00
										 |  |  | 			if ($table != "") | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				$table .= "</table>"; | 
					
						
							|  |  |  | 				$data['lotw_table_headers'] = $tableheaders; | 
					
						
							|  |  |  | 				$data['lotw_table'] = $table; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-24 00:40:06 +00:00
										 |  |  | 		unlink($filepath); | 
					
						
							| 
									
										
										
										
											2013-02-23 23:42:18 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		$data['page_title'] = "LoTW ADIF Information"; | 
					
						
							| 
									
										
										
										
											2019-01-14 16:29:06 +00:00
										 |  |  | 		$this->load->view('interface_assets/header', $data); | 
					
						
							| 
									
										
										
										
											2013-02-23 23:42:18 +00:00
										 |  |  | 		$this->load->view('lotw/analysis'); | 
					
						
							| 
									
										
										
										
											2019-01-14 16:29:06 +00:00
										 |  |  | 		$this->load->view('interface_assets/footer'); | 
					
						
							| 
									
										
										
										
											2013-02-23 23:42:18 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-02-16 16:41:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 	public function import() { | 
					
						
							| 
									
										
										
										
											2020-07-01 06:34:51 +00:00
										 |  |  | 		$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'); } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-16 16:41:40 +00:00
										 |  |  | 		$data['page_title'] = "LoTW ADIF Import"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		$config['upload_path'] = './uploads/'; | 
					
						
							|  |  |  | 		$config['allowed_types'] = 'adi|ADI'; | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-16 16:41:40 +00:00
										 |  |  | 		$this->load->library('upload', $config); | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-23 19:25:36 +00:00
										 |  |  | 		$this->load->model('logbook_model'); | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-23 00:30:33 +00:00
										 |  |  | 		if ($this->input->post('lotwimport') == 'fetch') | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2013-02-23 00:30:33 +00:00
										 |  |  | 			$file = $config['upload_path'] . 'lotwreport_download.adi'; | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-23 00:57:44 +00:00
										 |  |  | 			// Get credentials for LoTW
 | 
					
						
							|  |  |  | 			$query = $this->user_model->get_by_id($this->session->userdata('user_id')); | 
					
						
							| 
									
										
										
										
											2020-04-25 21:11:13 +00:00
										 |  |  |     	    $q = $query->row(); | 
					
						
							|  |  |  |     	    $data['user_lotw_name'] = $q->user_lotw_name; | 
					
						
							| 
									
										
										
										
											2013-02-23 00:57:44 +00:00
										 |  |  | 			$data['user_lotw_password'] = $q->user_lotw_password; | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-02 20:24:16 +00:00
										 |  |  | 			// Get URL for downloading LoTW
 | 
					
						
							|  |  |  | 			$query = $query = $this->db->query('SELECT lotw_download_url FROM config'); | 
					
						
							|  |  |  | 			$q = $query->row(); | 
					
						
							|  |  |  | 			$lotw_url = $q->lotw_download_url; | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-23 19:25:36 +00:00
										 |  |  | 			// Validate that LoTW credentials are not empty
 | 
					
						
							|  |  |  | 			// TODO: We don't actually see the error message
 | 
					
						
							|  |  |  | 			if ($data['user_lotw_name'] == '' || $data['user_lotw_password'] == '') | 
					
						
							|  |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2013-03-07 05:33:39 +00:00
										 |  |  | 				$this->session->set_flashdata('warning', 'You have not defined your ARRL LoTW credentials!'); redirect('lotw/import'); | 
					
						
							| 
									
										
										
										
											2013-02-23 19:25:36 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-25 21:11:13 +00:00
										 |  |  |             $customDate = $this->input->post('from'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if ($customDate != NULL) { | 
					
						
							|  |  |  |                 $customDate = DateTime::createFromFormat('d/m/Y', $customDate); | 
					
						
							|  |  |  |                 $customDate = $customDate->format('Y-m-d'); | 
					
						
							|  |  |  |                 $lotw_last_qsl_date = date($customDate); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             else { | 
					
						
							|  |  |  |                 // Query the logbook to determine when the last LoTW confirmation was
 | 
					
						
							|  |  |  |                 $lotw_last_qsl_date = date('Y-m-d', strtotime($this->logbook_model->lotw_last_qsl_date())); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-23 00:57:44 +00:00
										 |  |  | 			// Build URL for LoTW report file
 | 
					
						
							| 
									
										
										
										
											2013-03-02 20:24:16 +00:00
										 |  |  | 			$lotw_url .= "?"; | 
					
						
							| 
									
										
										
										
											2013-02-23 00:57:44 +00:00
										 |  |  | 			$lotw_url .= "login=" . $data['user_lotw_name']; | 
					
						
							|  |  |  | 			$lotw_url .= "&password=" . $data['user_lotw_password']; | 
					
						
							| 
									
										
										
										
											2019-05-22 13:57:20 +00:00
										 |  |  | 			$lotw_url .= "&qso_query=1&qso_qsl='yes'&qso_qsldetail='yes'&qso_mydetail='yes'"; | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-23 19:25:36 +00:00
										 |  |  | 			//TODO: Option to specifiy whether we download location data from LoTW or not
 | 
					
						
							|  |  |  | 			//$lotw_url .= "&qso_qsldetail=\"yes\";
 | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-25 21:11:13 +00:00
										 |  |  |             $lotw_url .= "&qso_qslsince="; | 
					
						
							|  |  |  |             $lotw_url .= "$lotw_last_qsl_date"; | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-23 19:25:36 +00:00
										 |  |  | 			// Only pull back entries that belong to this callsign
 | 
					
						
							|  |  |  | 			$lotw_call = $this->session->userdata('user_callsign'); | 
					
						
							|  |  |  | 			$lotw_url .= "&qso_owncall=$lotw_call"; | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-23 00:57:44 +00:00
										 |  |  | 			file_put_contents($file, file_get_contents($lotw_url)); | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-23 00:57:44 +00:00
										 |  |  | 			ini_set('memory_limit', '-1'); | 
					
						
							| 
									
										
										
										
											2013-02-24 00:40:06 +00:00
										 |  |  | 			$this->loadFromFile($file); | 
					
						
							| 
									
										
										
										
											2013-02-16 16:41:40 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2013-02-23 00:30:33 +00:00
										 |  |  | 			if ( ! $this->upload->do_upload()) | 
					
						
							| 
									
										
										
										
											2013-02-22 02:19:58 +00:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-23 00:30:33 +00:00
										 |  |  | 				$data['error'] = $this->upload->display_errors(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-14 16:29:06 +00:00
										 |  |  | 				$this->load->view('interface_assets/header', $data); | 
					
						
							| 
									
										
										
										
											2013-02-23 00:30:33 +00:00
										 |  |  | 				$this->load->view('lotw/import'); | 
					
						
							| 
									
										
										
										
											2019-01-14 16:29:06 +00:00
										 |  |  | 				$this->load->view('interface_assets/footer'); | 
					
						
							| 
									
										
										
										
											2013-02-22 02:19:58 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			else | 
					
						
							| 
									
										
										
										
											2013-02-16 16:41:40 +00:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2013-02-22 02:13:42 +00:00
										 |  |  | 				$data = array('upload_data' => $this->upload->data()); | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-24 00:40:06 +00:00
										 |  |  | 				$this->loadFromFile('./uploads/'.$data['upload_data']['file_name']); | 
					
						
							| 
									
										
										
										
											2013-02-22 02:13:42 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-02-16 16:41:40 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-02-23 00:30:33 +00:00
										 |  |  | 	} // end function
 | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	public function export() { | 
					
						
							| 
									
										
										
										
											2020-07-01 06:34:51 +00:00
										 |  |  | 		$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'); } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-13 16:24:07 +00:00
										 |  |  | 		$data['page_title'] = "LoTW .TQ8 Upload"; | 
					
						
							| 
									
										
										
										
											2013-03-05 04:59:33 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		$config['upload_path'] = './uploads/'; | 
					
						
							|  |  |  | 		$config['allowed_types'] = 'tq8|TQ8'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		$this->load->library('upload', $config); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if ( ! $this->upload->do_upload()) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			$data['error'] = $this->upload->display_errors(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-14 16:29:06 +00:00
										 |  |  | 			$this->load->view('interface_assets/header', $data); | 
					
						
							| 
									
										
										
										
											2013-03-05 04:59:33 +00:00
										 |  |  | 			$this->load->view('lotw/export'); | 
					
						
							| 
									
										
										
										
											2019-01-14 16:29:06 +00:00
										 |  |  | 			$this->load->view('interface_assets/footer'); | 
					
						
							| 
									
										
										
										
											2013-03-05 04:59:33 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2013-03-05 04:59:33 +00:00
										 |  |  | 			$data = array('upload_data' => $this->upload->data()); | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-06 01:19:52 +00:00
										 |  |  | 			// Figure out how we should be marking QSLs confirmed via LoTW
 | 
					
						
							|  |  |  | 			$query = $query = $this->db->query('SELECT lotw_login_url FROM config'); | 
					
						
							|  |  |  | 			$q = $query->row(); | 
					
						
							|  |  |  | 			$config['lotw_login_url'] = $q->lotw_login_url; | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-07 05:33:39 +00:00
										 |  |  | 			// Set some fields that we're going to need for ARRL login
 | 
					
						
							| 
									
										
										
										
											2013-03-06 01:19:52 +00:00
										 |  |  | 			$query = $this->user_model->get_by_id($this->session->userdata('user_id')); | 
					
						
							|  |  |  |     		$q = $query->row(); | 
					
						
							| 
									
										
										
										
											2013-03-07 05:33:39 +00:00
										 |  |  |     		$fields['login'] = $q->user_lotw_name; | 
					
						
							|  |  |  | 			$fields['password'] = $q->user_lotw_password; | 
					
						
							|  |  |  | 			$fields['acct_sel'] = ""; | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-07 05:33:39 +00:00
										 |  |  | 			if ($fields['login'] == '' || $fields['password'] == '') | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				$this->session->set_flashdata('warning', 'You have not defined your ARRL LoTW credentials!'); redirect('lotw/status'); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-05 04:59:33 +00:00
										 |  |  | 			// Curl stuff goes here
 | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-06 01:19:52 +00:00
										 |  |  | 			// First we need to get a cookie
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// options
 | 
					
						
							|  |  |  | 			$cookie_file_path = "./uploads/cookies.txt"; | 
					
						
							|  |  |  | 			$agent            = "Mozilla/4.0 (compatible;)"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// begin script
 | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 			$ch = curl_init(); | 
					
						
							| 
									
										
										
										
											2013-03-06 01:19:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			// extra headers
 | 
					
						
							|  |  |  | 			$headers[] = "Accept: */*"; | 
					
						
							|  |  |  | 			$headers[] = "Connection: Keep-Alive"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// basic curl options for all requests
 | 
					
						
							|  |  |  | 			curl_setopt($ch, CURLOPT_HTTPHEADER,  $headers); | 
					
						
							|  |  |  | 			curl_setopt($ch, CURLOPT_HEADER,  0); | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-06 01:19:52 +00:00
										 |  |  | 			// TODO: These SSL things should probably be set to true :)
 | 
					
						
							|  |  |  | 			curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 			curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); | 
					
						
							|  |  |  | 			curl_setopt($ch, CURLOPT_USERAGENT, $agent); | 
					
						
							|  |  |  | 			curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); | 
					
						
							|  |  |  | 			curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); | 
					
						
							|  |  |  | 			curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie_file_path); | 
					
						
							|  |  |  | 			curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie_file_path); | 
					
						
							| 
									
										
										
										
											2013-03-06 01:19:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			// Set login URL
 | 
					
						
							| 
									
										
										
										
											2013-03-07 05:33:39 +00:00
										 |  |  | 			curl_setopt($ch, CURLOPT_URL, $config['lotw_login_url']); | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-06 01:19:52 +00:00
										 |  |  | 			// set postfields using what we extracted from the form
 | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 			$POSTFIELDS = http_build_query($fields); | 
					
						
							| 
									
										
										
										
											2013-03-06 01:19:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			// set post options
 | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 			curl_setopt($ch, CURLOPT_POST, 1); | 
					
						
							|  |  |  | 			curl_setopt($ch, CURLOPT_POSTFIELDS, $POSTFIELDS); | 
					
						
							| 
									
										
										
										
											2013-03-06 01:19:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			// perform login
 | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 			$result = curl_exec($ch); | 
					
						
							| 
									
										
										
										
											2013-03-07 05:33:39 +00:00
										 |  |  | 			if (stristr($result, "Username/password incorrect")) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 			   $this->session->set_flashdata('warning', 'Your ARRL username and/or password is incorrect.'); redirect('lotw/status'); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-06 01:19:52 +00:00
										 |  |  | 			// Now we need to use that cookie and upload the file
 | 
					
						
							|  |  |  | 			// change URL to upload destination URL
 | 
					
						
							|  |  |  | 			curl_setopt($ch, CURLOPT_URL, $config['lotw_login_url']); | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-06 01:19:52 +00:00
										 |  |  | 			// Grab the file
 | 
					
						
							|  |  |  | 			$postfile = array( | 
					
						
							|  |  |  |         		"upfile"=>"@./uploads/".$data['upload_data']['file_name'], | 
					
						
							|  |  |  |     		); | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-06 01:19:52 +00:00
										 |  |  |     		//Upload it
 | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  |     		curl_setopt($ch, CURLOPT_POSTFIELDS, $postfile); | 
					
						
							| 
									
										
										
										
											2013-03-06 01:19:52 +00:00
										 |  |  |     		$response = curl_exec($ch); | 
					
						
							| 
									
										
										
										
											2013-03-07 05:33:39 +00:00
										 |  |  | 			if (stristr($response, "accepted")) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 			   $this->session->set_flashdata('lotw_status', 'accepted'); | 
					
						
							|  |  |  | 			   $data['page_title'] = "LoTW .TQ8 Sent"; | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-03-07 05:33:39 +00:00
										 |  |  | 			elseif (stristr($response, "rejected")) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 					$this->session->set_flashdata('lotw_status', 'rejected'); | 
					
						
							|  |  |  | 					$data['page_title'] = "LoTW .TQ8 Sent"; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				// If we're here, we didn't find what we're looking for in the ARRL response
 | 
					
						
							|  |  |  | 				// and LoTW is probably down or broken.
 | 
					
						
							|  |  |  | 				$this->session->set_flashdata('warning', 'Did not receive proper response from LoTW. Try again later.'); | 
					
						
							|  |  |  | 				$data['page_title'] = "LoTW .TQ8 Not Sent"; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-06 01:19:52 +00:00
										 |  |  | 			// Now we need to clean up
 | 
					
						
							|  |  |  | 			unlink($cookie_file_path); | 
					
						
							|  |  |  | 			unlink('./uploads/'.$data['upload_data']['file_name']); | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-14 16:29:06 +00:00
										 |  |  | 			$this->load->view('interface_assets/header', $data); | 
					
						
							| 
									
										
										
										
											2013-03-07 05:33:39 +00:00
										 |  |  | 			$this->load->view('lotw/status'); | 
					
						
							| 
									
										
										
										
											2019-01-14 16:29:06 +00:00
										 |  |  | 			$this->load->view('interface_assets/footer'); | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-03-05 04:59:33 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-16 13:31:23 +00:00
										 |  |  | 	/* | 
					
						
							|  |  |  | 		Load the ARRL LOTW User Activity CSV into LOTW User Table for cross checking when logging | 
					
						
							|  |  |  | 	*/ | 
					
						
							|  |  |  | 	function load_users() { | 
					
						
							|  |  |  | 		set_time_limit(0); | 
					
						
							|  |  |  | 		$this->load->model('lotw_user'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-16 15:52:32 +00:00
										 |  |  | 		$this->lotw_user->empty_table(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-16 13:31:23 +00:00
										 |  |  | 		$row = 1; | 
					
						
							|  |  |  | 		if (($handle = fopen("https://lotw.arrl.org/lotw-user-activity.csv", "r")) !== FALSE) { | 
					
						
							|  |  |  | 		    while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) { | 
					
						
							|  |  |  | 		        $num = count($data); | 
					
						
							|  |  |  | 		        $row++; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		        if(isset($data[2])) { | 
					
						
							|  |  |  | 		        	$callsign = $data[0]; | 
					
						
							|  |  |  | 		        	$upload_date = $data[1]." ".$data[2]; | 
					
						
							|  |  |  | 		        	$this->lotw_user->add_lotwuser($callsign, $upload_date); | 
					
						
							|  |  |  | 		    	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		    } | 
					
						
							|  |  |  | 		    fclose($handle); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* | 
					
						
							|  |  |  | 		Check if callsign is an active LOTW user and return whether its true or not | 
					
						
							|  |  |  | 	*/ | 
					
						
							|  |  |  | 	function lotw_usercheck($callsign) { | 
					
						
							|  |  |  | 		$this->load->model('lotw_user'); | 
					
						
							| 
									
										
										
										
											2019-06-16 15:37:26 +00:00
										 |  |  |   | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		$lotw_user_result = $this->lotw_user->check($callsign); | 
					
						
							| 
									
										
										
										
											2019-06-16 13:31:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-25 16:50:52 +00:00
										 |  |  | 	function signlog($sign_key, $string) { | 
					
						
							| 
									
										
										
										
											2020-08-12 22:53:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-25 16:50:52 +00:00
										 |  |  | 		$qso_string = $string; | 
					
						
							| 
									
										
										
										
											2020-08-12 22:53:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-25 16:50:52 +00:00
										 |  |  | 		$key = $sign_key; | 
					
						
							| 
									
										
										
										
											2020-08-12 22:53:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-25 16:50:52 +00:00
										 |  |  | 		$pkeyid = openssl_pkey_get_private($key, 'cloudlog'); | 
					
						
							| 
									
										
										
										
											2020-08-13 22:03:25 +00:00
										 |  |  | 		//openssl_sign($plaintext, $signature, $pkeyid, OPENSSL_ALGO_SHA1 );
 | 
					
						
							|  |  |  | 		//openssl_free_key($pkeyid);
 | 
					
						
							| 
									
										
										
										
											2020-08-12 22:53:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-13 22:03:25 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if(openssl_sign($qso_string, $signature, $pkeyid, OPENSSL_ALGO_SHA1)) { | 
					
						
							|  |  |  | 		  openssl_free_key($pkeyid); | 
					
						
							|  |  |  | 		  $signature_b64 = base64_encode($signature); | 
					
						
							| 
									
										
										
										
											2020-08-25 16:50:52 +00:00
										 |  |  | 		  return $signature_b64; | 
					
						
							| 
									
										
										
										
											2020-08-13 22:03:25 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-08-12 22:53:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-03 22:20:22 +00:00
										 |  |  | 	public function sat() { | 
					
						
							|  |  |  | 		$satellite_name_check = $this->lotw_satellite_map('ISS'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if($satellite_name_check != FALSE) { | 
					
						
							|  |  |  | 			echo $satellite_name_check; | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			echo "no match"; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* | 
					
						
							|  |  |  | 	|	Function: lotw_satellite_map | 
					
						
							|  |  |  | 	|	Requires: OSCAR Satellite name $satname | 
					
						
							|  |  |  | 	| | 
					
						
							|  |  |  | 	|	Outputs if LOTW uses a different satellite name | 
					
						
							|  |  |  | 	| | 
					
						
							|  |  |  | 	*/ | 
					
						
							|  |  |  | 	function lotw_satellite_map($satname) { | 
					
						
							|  |  |  | 		$arr = array( | 
					
						
							|  |  |  | 			"ARISS"		=>	"ISS", | 
					
						
							|  |  |  | 			"UKUBE1"	=>	"UKUBE-1", | 
					
						
							|  |  |  | 			"KEDR"		=>	"ARISSAT-1", | 
					
						
							|  |  |  | 			"TO-108"	=>	"CAS-6", | 
					
						
							|  |  |  | 			"TAURUS"	=>	"TAURUS-1", | 
					
						
							| 
									
										
										
										
											2020-09-05 21:03:30 +00:00
										 |  |  | 			"AISAT1"	=>	"AISAT-1", | 
					
						
							| 
									
										
										
										
											2020-09-03 22:20:22 +00:00
										 |  |  | 		); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return array_search(strtoupper($satname),$arr,true); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-09 23:50:42 +00:00
										 |  |  | } // end class
 |