| 
									
										
										
										
											2013-02-17 00:41:40 +08:00
										 |  |  | <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class Lotw extends CI_Controller { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Controls who can access the controller and its functions */ | 
					
						
							|  |  |  | 	function __construct() | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		parent::__construct(); | 
					
						
							|  |  |  | 		$this->load->helper(array('form', 'url')); | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | 		$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-24 07:42:18 +08:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	private function loadFromFile($filepath) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2013-03-03 04:24:16 +08: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; | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2013-02-24 08:40:06 +08:00
										 |  |  | 		ini_set('memory_limit', '-1'); | 
					
						
							| 
									
										
										
										
											2013-02-24 07:42:18 +08:00
										 |  |  | 		set_time_limit(0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		$this->load->library('adif_parser'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		$this->adif_parser->load_from_file($filepath); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		$this->adif_parser->initialize(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		$table = "<table>"; | 
					
						
							| 
									
										
										
										
											2013-11-10 04:14:08 +08:00
										 |  |  | 			$table .= "<tr class=\"titles\">"; | 
					
						
							|  |  |  | 				$table .= "<td>Date</td>"; | 
					
						
							|  |  |  | 				$table .= "<td>Call</td>"; | 
					
						
							|  |  |  | 				$table .= "<td>Mode</td>"; | 
					
						
							|  |  |  | 				$table .= "<td>Log Status</td>"; | 
					
						
							|  |  |  | 				$table .= "<td>LoTW Status</td>"; | 
					
						
							|  |  |  | 			$table .= "<tr>"; | 
					
						
							| 
									
										
										
										
											2013-02-24 07:42:18 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		while($record = $this->adif_parser->get_record()) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			if(count($record) == 0) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			//echo date('Y-m-d', strtotime($record['qso_date']))."<br>";
 | 
					
						
							|  |  |  | 			//echo date('H:m', strtotime($record['time_on']))."<br>";
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			//$this->logbook_model->import($record);
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			//echo $record["call"]."<br>";
 | 
					
						
							|  |  |  | 			//print_r($record->);
 | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 			$time_on = date('Y-m-d', strtotime($record['qso_date'])) ." ".date('H:i', strtotime($record['time_on'])); | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 			$qsl_date = date('Y-m-d', strtotime($record['qslrdate'])) ." ".date('H:i', strtotime($record['qslrdate'])); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (isset($record['time_off'])) { | 
					
						
							|  |  |  | 				$time_off = date('Y-m-d', strtotime($record['qso_date'])) ." ".date('H:i', strtotime($record['time_off'])); | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 			   $time_off = date('Y-m-d', strtotime($record['qso_date'])) ." ".date('H:i', strtotime($record['time_on']));   | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-02-25 05:51:31 +08:00
										 |  |  | 			 | 
					
						
							| 
									
										
										
										
											2013-03-03 04:24:16 +08: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") | 
					
						
							| 
									
										
										
										
											2013-02-25 05:51:31 +08:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2013-03-03 04:24:16 +08:00
										 |  |  | 				$record['qsl_rcvd'] = $config['lotw_rcvd_mark']; | 
					
						
							| 
									
										
										
										
											2013-02-25 05:51:31 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			 | 
					
						
							| 
									
										
										
										
											2013-02-24 07:42:18 +08:00
										 |  |  | 			$status = $this->logbook_model->import_check($time_on, $record['call'], $record['band']); | 
					
						
							|  |  |  | 			$lotw_status = $this->logbook_model->lotw_update($time_on, $record['call'], $record['band'], $qsl_date, $record['qsl_rcvd']); | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 			$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>"; | 
					
						
							|  |  |  | 				$table .= "<td>QSO Record: ".$status."</td>"; | 
					
						
							|  |  |  | 				$table .= "<td>LoTW Record: ".$lotw_status."</td>"; | 
					
						
							|  |  |  | 			$table .= "<tr>"; | 
					
						
							|  |  |  | 		}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		$table .= "</table>"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-24 08:40:06 +08:00
										 |  |  | 		unlink($filepath); | 
					
						
							| 
									
										
										
										
											2013-02-24 07:42:18 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		$data['lotw_table'] = $table; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		$data['page_title'] = "LoTW ADIF Information"; | 
					
						
							|  |  |  | 		$this->load->view('layout/header', $data); | 
					
						
							|  |  |  | 		$this->load->view('lotw/analysis'); | 
					
						
							|  |  |  | 		$this->load->view('layout/footer'); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-02-17 00:41:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	public function import() {	 | 
					
						
							|  |  |  | 		$data['page_title'] = "LoTW ADIF Import"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		$config['upload_path'] = './uploads/'; | 
					
						
							|  |  |  | 		$config['allowed_types'] = 'adi|ADI'; | 
					
						
							| 
									
										
										
										
											2013-03-03 04:24:16 +08:00
										 |  |  | 		 | 
					
						
							| 
									
										
										
										
											2013-02-17 00:41:40 +08:00
										 |  |  | 		$this->load->library('upload', $config); | 
					
						
							| 
									
										
										
										
											2013-02-24 03:25:36 +08:00
										 |  |  | 		 | 
					
						
							|  |  |  | 		$this->load->model('logbook_model'); | 
					
						
							|  |  |  | 		 | 
					
						
							| 
									
										
										
										
											2013-02-23 08:30:33 +08:00
										 |  |  | 		if ($this->input->post('lotwimport') == 'fetch') | 
					
						
							| 
									
										
										
										
											2013-02-23 08:57:44 +08:00
										 |  |  | 		{			 | 
					
						
							| 
									
										
										
										
											2013-02-23 08:30:33 +08:00
										 |  |  | 			$file = $config['upload_path'] . 'lotwreport_download.adi'; | 
					
						
							|  |  |  | 			 | 
					
						
							| 
									
										
										
										
											2013-02-23 08:57:44 +08:00
										 |  |  | 			// Get credentials for LoTW
 | 
					
						
							|  |  |  | 			$query = $this->user_model->get_by_id($this->session->userdata('user_id')); | 
					
						
							|  |  |  |     		$q = $query->row(); | 
					
						
							|  |  |  |     		$data['user_lotw_name'] = $q->user_lotw_name; | 
					
						
							|  |  |  | 			$data['user_lotw_password'] = $q->user_lotw_password; | 
					
						
							|  |  |  | 			 | 
					
						
							| 
									
										
										
										
											2013-03-03 04:24:16 +08: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; | 
					
						
							|  |  |  | 			 | 
					
						
							| 
									
										
										
										
											2013-02-24 03:25:36 +08: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 13:33:39 +08:00
										 |  |  | 				$this->session->set_flashdata('warning', 'You have not defined your ARRL LoTW credentials!'); redirect('lotw/import'); | 
					
						
							| 
									
										
										
										
											2013-02-24 03:25:36 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | 			// Query the logbook to determine when the last LoTW confirmation was
 | 
					
						
							|  |  |  | 			$lotw_last_qsl_date = $this->logbook_model->lotw_last_qsl_date(); | 
					
						
							| 
									
										
										
										
											2013-02-23 08:30:33 +08:00
										 |  |  | 			 | 
					
						
							| 
									
										
										
										
											2013-02-23 08:57:44 +08:00
										 |  |  | 			// Build URL for LoTW report file
 | 
					
						
							| 
									
										
										
										
											2013-03-03 04:24:16 +08:00
										 |  |  | 			$lotw_url .= "?"; | 
					
						
							| 
									
										
										
										
											2013-02-23 08:57:44 +08:00
										 |  |  | 			$lotw_url .= "login=" . $data['user_lotw_name']; | 
					
						
							|  |  |  | 			$lotw_url .= "&password=" . $data['user_lotw_password']; | 
					
						
							| 
									
										
										
										
											2013-02-24 03:25:36 +08:00
										 |  |  | 			$lotw_url .= "&qso_query=1&qso_qsl='yes'"; | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | 			//TODO: Option to specifiy whether we download location data from LoTW or not
 | 
					
						
							|  |  |  | 			//$lotw_url .= "&qso_qsldetail=\"yes\";
 | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | 			$lotw_url .= "&qso_qslsince="; | 
					
						
							|  |  |  | 			$lotw_url .= "$lotw_last_qsl_date"; | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | 			// Only pull back entries that belong to this callsign
 | 
					
						
							|  |  |  | 			$lotw_call = $this->session->userdata('user_callsign'); | 
					
						
							|  |  |  | 			$lotw_url .= "&qso_owncall=$lotw_call"; | 
					
						
							| 
									
										
										
										
											2013-02-22 10:13:42 +08:00
										 |  |  | 			 | 
					
						
							| 
									
										
										
										
											2013-02-23 08:57:44 +08:00
										 |  |  | 			file_put_contents($file, file_get_contents($lotw_url)); | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | 			ini_set('memory_limit', '-1'); | 
					
						
							| 
									
										
										
										
											2013-02-24 08:40:06 +08:00
										 |  |  | 			$this->loadFromFile($file); | 
					
						
							| 
									
										
										
										
											2013-02-17 00:41:40 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2013-02-23 08:30:33 +08:00
										 |  |  | 			if ( ! $this->upload->do_upload()) | 
					
						
							| 
									
										
										
										
											2013-02-22 10:19:58 +08:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2013-02-23 08:30:33 +08:00
										 |  |  | 			 | 
					
						
							|  |  |  | 				$data['error'] = $this->upload->display_errors(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				$this->load->view('layout/header', $data); | 
					
						
							|  |  |  | 				$this->load->view('lotw/import'); | 
					
						
							|  |  |  | 				$this->load->view('layout/footer'); | 
					
						
							| 
									
										
										
										
											2013-02-22 10:19:58 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			else | 
					
						
							| 
									
										
										
										
											2013-02-17 00:41:40 +08:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2013-02-22 10:13:42 +08:00
										 |  |  | 				$data = array('upload_data' => $this->upload->data()); | 
					
						
							| 
									
										
										
										
											2013-02-23 08:30:33 +08:00
										 |  |  | 		 | 
					
						
							| 
									
										
										
										
											2013-02-24 08:40:06 +08:00
										 |  |  | 				$this->loadFromFile('./uploads/'.$data['upload_data']['file_name']); | 
					
						
							| 
									
										
										
										
											2013-02-22 10:13:42 +08:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-02-17 00:41:40 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-02-23 08:30:33 +08:00
										 |  |  | 	} // end function
 | 
					
						
							| 
									
										
										
										
											2013-03-05 12:59:33 +08:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	public function export() {	 | 
					
						
							|  |  |  | 	$data['page_title'] = "LoTW .TQ8 Upload"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		$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(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			$this->load->view('layout/header', $data); | 
					
						
							|  |  |  | 			$this->load->view('lotw/export'); | 
					
						
							|  |  |  | 			$this->load->view('layout/footer'); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							| 
									
										
										
										
											2013-03-07 13:33:39 +08:00
										 |  |  | 		{	 | 
					
						
							| 
									
										
										
										
											2013-03-05 12:59:33 +08:00
										 |  |  | 			$data = array('upload_data' => $this->upload->data()); | 
					
						
							|  |  |  | 			 | 
					
						
							| 
									
										
										
										
											2013-03-06 09:19:52 +08: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; | 
					
						
							|  |  |  | 			 | 
					
						
							| 
									
										
										
										
											2013-03-07 13:33:39 +08:00
										 |  |  | 			// Set some fields that we're going to need for ARRL login
 | 
					
						
							| 
									
										
										
										
											2013-03-06 09:19:52 +08:00
										 |  |  | 			$query = $this->user_model->get_by_id($this->session->userdata('user_id')); | 
					
						
							|  |  |  |     		$q = $query->row(); | 
					
						
							| 
									
										
										
										
											2013-03-07 13:33:39 +08:00
										 |  |  |     		$fields['login'] = $q->user_lotw_name; | 
					
						
							|  |  |  | 			$fields['password'] = $q->user_lotw_password; | 
					
						
							|  |  |  | 			$fields['acct_sel'] = ""; | 
					
						
							| 
									
										
										
										
											2013-03-06 09:19:52 +08:00
										 |  |  | 			 | 
					
						
							| 
									
										
										
										
											2013-03-07 13:33:39 +08:00
										 |  |  | 			if ($fields['login'] == '' || $fields['password'] == '') | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				$this->session->set_flashdata('warning', 'You have not defined your ARRL LoTW credentials!'); redirect('lotw/status'); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 				 | 
					
						
							| 
									
										
										
										
											2013-03-05 12:59:33 +08:00
										 |  |  | 			// Curl stuff goes here
 | 
					
						
							|  |  |  | 			 | 
					
						
							| 
									
										
										
										
											2013-03-06 09:19:52 +08:00
										 |  |  | 			// First we need to get a cookie
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// options
 | 
					
						
							|  |  |  | 			$cookie_file_path = "./uploads/cookies.txt"; | 
					
						
							|  |  |  | 			$agent            = "Mozilla/4.0 (compatible;)"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// begin script
 | 
					
						
							|  |  |  | 			$ch = curl_init();  | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// 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); | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | 			// TODO: These SSL things should probably be set to true :)
 | 
					
						
							|  |  |  | 			curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); | 
					
						
							|  |  |  | 			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);  | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// Set login URL
 | 
					
						
							| 
									
										
										
										
											2013-03-07 13:33:39 +08:00
										 |  |  | 			curl_setopt($ch, CURLOPT_URL, $config['lotw_login_url']); | 
					
						
							| 
									
										
										
										
											2013-03-06 09:19:52 +08:00
										 |  |  | 			 | 
					
						
							|  |  |  | 			// set postfields using what we extracted from the form
 | 
					
						
							|  |  |  | 			$POSTFIELDS = http_build_query($fields);  | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// set post options
 | 
					
						
							|  |  |  | 			curl_setopt($ch, CURLOPT_POST, 1);  | 
					
						
							|  |  |  | 			curl_setopt($ch, CURLOPT_POSTFIELDS, $POSTFIELDS);  | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// perform login
 | 
					
						
							|  |  |  | 			$result = curl_exec($ch);   | 
					
						
							| 
									
										
										
										
											2013-03-07 13:33:39 +08:00
										 |  |  | 			if (stristr($result, "Username/password incorrect")) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 			   $this->session->set_flashdata('warning', 'Your ARRL username and/or password is incorrect.'); redirect('lotw/status'); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			 | 
					
						
							| 
									
										
										
										
											2013-03-06 09:19:52 +08: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']); | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | 			// Grab the file
 | 
					
						
							|  |  |  | 			$postfile = array( | 
					
						
							|  |  |  |         		"upfile"=>"@./uploads/".$data['upload_data']['file_name'], | 
					
						
							|  |  |  |     		); | 
					
						
							|  |  |  |     		 | 
					
						
							|  |  |  |     		//Upload it
 | 
					
						
							|  |  |  |     		curl_setopt($ch, CURLOPT_POSTFIELDS, $postfile);  | 
					
						
							|  |  |  |     		$response = curl_exec($ch); | 
					
						
							| 
									
										
										
										
											2013-03-07 13:33:39 +08:00
										 |  |  | 			if (stristr($response, "accepted")) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 			   $this->session->set_flashdata('lotw_status', 'accepted'); | 
					
						
							|  |  |  | 			   $data['page_title'] = "LoTW .TQ8 Sent"; | 
					
						
							|  |  |  | 			}  | 
					
						
							|  |  |  | 			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"; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			 | 
					
						
							| 
									
										
										
										
											2013-03-06 09:19:52 +08:00
										 |  |  | 			// Now we need to clean up
 | 
					
						
							|  |  |  | 			unlink($cookie_file_path); | 
					
						
							|  |  |  | 			unlink('./uploads/'.$data['upload_data']['file_name']); | 
					
						
							| 
									
										
										
										
											2013-03-05 12:59:33 +08:00
										 |  |  | 			 | 
					
						
							| 
									
										
										
										
											2013-03-07 13:33:39 +08:00
										 |  |  | 			$this->load->view('layout/header', $data); | 
					
						
							|  |  |  | 			$this->load->view('lotw/status'); | 
					
						
							| 
									
										
										
										
											2013-03-05 12:59:33 +08:00
										 |  |  | 			$this->load->view('layout/footer'); | 
					
						
							| 
									
										
										
										
											2013-03-07 13:33:39 +08:00
										 |  |  | 		}	 | 
					
						
							| 
									
										
										
										
											2013-03-05 12:59:33 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2013-02-23 08:30:33 +08:00
										 |  |  | } // end class
 |