491 行
		
	
	
	
		
			17 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			491 行
		
	
	
	
		
			17 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
 | |
| 
 | |
| /*
 | |
| 	Handles Displaying of information for awards.
 | |
| 
 | |
| 	These are taken from comments fields or ADIF fields
 | |
| */
 | |
| 
 | |
| class Awards extends CI_Controller {
 | |
| 
 | |
| 	function __construct()
 | |
| 	{
 | |
| 		parent::__construct();
 | |
| 
 | |
| 		$this->load->model('user_model');
 | |
| 		if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
 | |
| 	}
 | |
| 
 | |
| 	public function index()
 | |
| 	{
 | |
| 		// Render Page
 | |
| 		$data['page_title'] = "Awards";
 | |
| 		$this->load->view('interface_assets/header', $data);
 | |
| 		$this->load->view('awards/index');
 | |
| 		$this->load->view('interface_assets/footer');
 | |
| 	}
 | |
| 
 | |
| 	public function dok ()
 | |
| 	{
 | |
| 		//echo "Needs Developed";
 | |
| 		$this->load->model('dok');
 | |
| 		$data['doks'] = $this->dok->show_stats();
 | |
| 		$data['worked_bands'] = $this->dok->get_worked_bands();
 | |
| 
 | |
| 		// Render Page
 | |
| 		$data['page_title'] = "Awards - DOK";
 | |
| 		$this->load->view('interface_assets/header', $data);
 | |
| 		$this->load->view('awards/dok/index');
 | |
| 		$this->load->view('interface_assets/footer');
 | |
| 
 | |
| 	}
 | |
| 
 | |
|     public function dok_details_ajax(){
 | |
|         $a = $this->input->post();
 | |
|         $q = "";
 | |
|         foreach ($a as $key => $value) {
 | |
|             $q .= $key."=".$value.("(and)");
 | |
|         }
 | |
|         $q = substr($q, 0, strlen($q)-13);
 | |
| 
 | |
|         $arguments["query"] = $q;
 | |
|         $arguments["fields"] = '';
 | |
|         $arguments["format"] = "json";
 | |
|         $arguments["limit"] = '';
 | |
|         $arguments["order"] = '';
 | |
| 
 | |
|         // print_r($arguments);
 | |
|         // return;
 | |
| 
 | |
|         // Load the API and Logbook models
 | |
|         $this->load->model('api_model');
 | |
|         $this->load->model('logbook_model');
 | |
| 
 | |
|         // Call the parser within the API model to build the query
 | |
|         $query = $this->api_model->select_parse($arguments);
 | |
| 
 | |
|         // Execute the query, and retrieve the results
 | |
|         $data = $this->logbook_model->api_search_query($query);
 | |
| 
 | |
|         // Render Page
 | |
|         $data['page_title'] = "Log View - DOK";
 | |
|         $data['filter'] = str_replace("(and)", ", ", $q);//implode(", ", array_keys($a));
 | |
|         $this->load->view('awards/details', $data);
 | |
|     }
 | |
| 
 | |
| 	public function dxcc ()	{
 | |
| 		$this->load->model('dxcc');
 | |
|         $this->load->model('modes');
 | |
| 
 | |
|         $data['worked_bands'] = $this->dxcc->get_worked_bands(); // Used in the view for band select
 | |
|         $data['modes'] = $this->modes->active(); // Used in the view for mode select
 | |
| 
 | |
|         if ($this->input->post('band') != NULL) {   // Band is not set when page first loads.
 | |
|             if ($this->input->post('band') == 'All') {         // Did the user specify a band? If not, use all bands
 | |
|                 $bands = $data['worked_bands'];
 | |
|             }
 | |
|             else {
 | |
|                 $bands[] = $this->input->post('band');
 | |
|             }
 | |
|         }
 | |
|         else {
 | |
|             $bands = $data['worked_bands'];
 | |
|         }
 | |
| 
 | |
|         $data['bands'] = $bands; // Used for displaying selected band(s) in the table in the view
 | |
| 
 | |
|         if($this->input->method() === 'post') {
 | |
|             $postdata['lotw'] = $this->input->post('lotw');
 | |
|             $postdata['qsl'] = $this->input->post('qsl');
 | |
|             $postdata['worked'] = $this->input->post('worked');
 | |
|             $postdata['confirmed'] = $this->input->post('confirmed');
 | |
|             $postdata['notworked'] = $this->input->post('notworked');
 | |
|             $postdata['includedeleted'] = $this->input->post('includedeleted');
 | |
|             $postdata['Africa'] = $this->input->post('Africa');
 | |
|             $postdata['Asia'] = $this->input->post('Asia');
 | |
|             $postdata['Europe'] = $this->input->post('Europe');
 | |
|             $postdata['NorthAmerica'] = $this->input->post('NorthAmerica');
 | |
|             $postdata['SouthAmerica'] = $this->input->post('SouthAmerica');
 | |
|             $postdata['Oceania'] = $this->input->post('Oceania');
 | |
|             $postdata['Antarctica'] = $this->input->post('Antarctica');
 | |
|             $postdata['band'] = $this->input->post('band');
 | |
|             $postdata['mode'] = $this->input->post('mode');
 | |
|         }
 | |
|         else { // Setting default values at first load of page
 | |
|             $postdata['lotw'] = 1;
 | |
|             $postdata['qsl'] = 1;
 | |
|             $postdata['worked'] = 1;
 | |
|             $postdata['confirmed'] = 1;
 | |
|             $postdata['notworked'] = 1;
 | |
|             $postdata['includedeleted'] = 1;
 | |
|             $postdata['Africa'] = 1;
 | |
|             $postdata['Asia'] = 1;
 | |
|             $postdata['Europe'] = 1;
 | |
|             $postdata['NorthAmerica'] = 1;
 | |
|             $postdata['SouthAmerica'] = 1;
 | |
|             $postdata['Oceania'] = 1;
 | |
|             $postdata['Antarctica'] = 1;
 | |
|             $postdata['band'] = 'All';
 | |
|             $postdata['mode'] = 'All';
 | |
|         }
 | |
| 
 | |
| 		$dxcclist = $this->dxcc->fetchdxcc($postdata);
 | |
|         $data['dxcc_array'] = $this->dxcc->get_dxcc_array($dxcclist, $bands, $postdata);
 | |
|         $data['dxcc_summary'] = $this->dxcc->get_dxcc_summary($data['worked_bands']);
 | |
| 
 | |
| 		// Render Page
 | |
| 		$data['page_title'] = "Awards - DXCC";
 | |
| 		$this->load->view('interface_assets/header', $data);
 | |
| 		$this->load->view('awards/dxcc/index');
 | |
| 		$this->load->view('interface_assets/footer');
 | |
| 	}
 | |
| 
 | |
|     public function vucc()	{
 | |
|         $this->load->model('vucc');
 | |
|         $data['worked_bands'] = $this->vucc->get_worked_bands();
 | |
| 
 | |
|         $data['vucc_array'] = $this->vucc->get_vucc_array($data);
 | |
| 
 | |
|         // Render Page
 | |
|         $data['page_title'] = "Awards - VUCC";
 | |
|         $this->load->view('interface_assets/header', $data);
 | |
|         $this->load->view('awards/vucc/index');
 | |
|         $this->load->view('interface_assets/footer');
 | |
|     }
 | |
| 
 | |
|     public function vucc_band(){
 | |
|         $this->load->model('vucc');
 | |
|         $band = str_replace('"', "", $this->input->get("Band"));
 | |
|         $type = str_replace('"', "", $this->input->get("Type"));
 | |
|         $data['vucc_array'] = $this->vucc->vucc_details($band, $type);
 | |
|         $data['type'] = $type;
 | |
| 
 | |
|         // Render Page
 | |
|         $data['page_title'] = "VUCC - " .$band . " Band";
 | |
|         $data['filter'] = "band ".$band;
 | |
|         $data['band'] = $band;
 | |
|         $this->load->view('interface_assets/header', $data);
 | |
|         $this->load->view('awards/vucc/band');
 | |
|         $this->load->view('interface_assets/footer');
 | |
|     }
 | |
| 
 | |
|     public function vucc_details_ajax(){
 | |
|         $this->load->model('logbook_model');
 | |
| 
 | |
|         $gridsquare = str_replace('"', "", $this->input->post("Gridsquare"));
 | |
|         $band = str_replace('"', "", $this->input->post("Band"));
 | |
|         $data['results'] = $this->logbook_model->vucc_qso_details($gridsquare, $band);
 | |
| 
 | |
|         // Render Page
 | |
|         $data['page_title'] = "Log View - VUCC";
 | |
|         $data['filter'] = "vucc " . $gridsquare . " and band ".$band;
 | |
|         $this->load->view('awards/details', $data);
 | |
|     }
 | |
| 
 | |
| 	/*
 | |
| 	 * Used to fetch QSOs from the logbook in the awards
 | |
| 	 */
 | |
| 	public function qso_details_ajax(){
 | |
| 		$this->load->model('logbook_model');
 | |
| 
 | |
| 		$searchphrase = str_replace('"', "", $this->input->post("Searchphrase"));
 | |
| 		$band = str_replace('"', "", $this->input->post("Band"));
 | |
| 		$mode = str_replace('"', "", $this->input->post("Mode"));
 | |
| 		$type = $this->input->post('Type');
 | |
| 
 | |
| 		$data['results'] = $this->logbook_model->qso_details($searchphrase, $band, $mode, $type);
 | |
| 
 | |
| 		// Render Page
 | |
| 		$data['page_title'] = "Log View - " . $type;
 | |
| 		$data['filter'] = $type . " " . $searchphrase . " and band ".$band . " and mode ".$mode;
 | |
| 		$this->load->view('awards/details', $data);
 | |
| 	}
 | |
| 
 | |
| 	/*
 | |
| 		Handles showing worked SOTAs
 | |
| 		Comment field - SOTA:#
 | |
| 	*/
 | |
| 	public function sota() {
 | |
| 
 | |
| 		// Grab all worked sota stations
 | |
| 		$this->load->model('sota');
 | |
| 		$data['sota_all'] = $this->sota->get_all();
 | |
| 
 | |
| 		// Render page
 | |
| 		$data['page_title'] = "Awards - SOTA";
 | |
| 		$this->load->view('interface_assets/header', $data);
 | |
| 		$this->load->view('awards/sota/index');
 | |
| 		$this->load->view('interface_assets/footer');
 | |
| 	}
 | |
| 
 | |
| 	public function cq(){
 | |
| 		$CI =& get_instance();
 | |
| 		$CI->load->model('Stations');
 | |
| 		$station_id = $CI->Stations->find_active();
 | |
| 
 | |
|         $this->load->model('cq');
 | |
| 
 | |
|         $data['worked_bands'] = $this->cq->get_worked_bands($station_id);
 | |
| 
 | |
|         if ($this->input->post('band') != NULL) {   // Band is not set when page first loads.
 | |
|             if ($this->input->post('band') == 'All') {         // Did the user specify a band? If not, use all bands
 | |
|                 $bands = $data['worked_bands'];
 | |
|             }
 | |
|             else {
 | |
|                 $bands[] = $this->input->post('band');
 | |
|             }
 | |
|         }
 | |
|         else {
 | |
|             $bands = $data['worked_bands'];
 | |
|         }
 | |
| 
 | |
|         $data['bands'] = $bands; // Used for displaying selected band(s) in the table in the view
 | |
| 
 | |
|         if($this->input->method() === 'post') {
 | |
|             $postdata['lotw'] = $this->input->post('lotw');
 | |
|             $postdata['qsl'] = $this->input->post('qsl');
 | |
|             $postdata['worked'] = $this->input->post('worked');
 | |
|             $postdata['confirmed'] = $this->input->post('confirmed');
 | |
|             $postdata['notworked'] = $this->input->post('notworked');
 | |
|             $postdata['band'] = $this->input->post('band');
 | |
|         }
 | |
|         else { // Setting default values at first load of page
 | |
|             $postdata['lotw'] = 1;
 | |
|             $postdata['qsl'] = 1;
 | |
|             $postdata['worked'] = 1;
 | |
|             $postdata['confirmed'] = 1;
 | |
|             $postdata['notworked'] = 1;
 | |
|             $postdata['band'] = 'All';
 | |
|         }
 | |
| 
 | |
|         $data['cq_array'] = $this->cq->get_cq_array($bands, $postdata, $station_id);
 | |
|         $data['cq_summary'] = $this->cq->get_cq_summary($data['worked_bands'], $station_id);
 | |
| 
 | |
|         // Render page
 | |
|         $data['page_title'] = "Awards - CQ Magazine";
 | |
| 		$this->load->view('interface_assets/header', $data);
 | |
| 		$this->load->view('awards/cq/index');
 | |
| 		$this->load->view('interface_assets/footer');
 | |
| 	}
 | |
| 
 | |
|     public function was() {
 | |
|         $this->load->model('was');
 | |
|         $data['worked_bands'] = $this->was->get_worked_bands();
 | |
| 
 | |
|         if ($this->input->post('band') != NULL) {   // Band is not set when page first loads.
 | |
|             if ($this->input->post('band') == 'All') {         // Did the user specify a band? If not, use all bands
 | |
|                 $bands = $data['worked_bands'];
 | |
|             }
 | |
|             else {
 | |
|                 $bands[] = $this->input->post('band');
 | |
|             }
 | |
|         }
 | |
|         else {
 | |
|             $bands = $data['worked_bands'];
 | |
|         }
 | |
| 
 | |
|         $data['bands'] = $bands; // Used for displaying selected band(s) in the table in the view
 | |
| 
 | |
|         if($this->input->method() === 'post') {
 | |
|             $postdata['lotw'] = $this->input->post('lotw');
 | |
|             $postdata['qsl'] = $this->input->post('qsl');
 | |
|             $postdata['worked'] = $this->input->post('worked');
 | |
|             $postdata['confirmed'] = $this->input->post('confirmed');
 | |
|             $postdata['notworked'] = $this->input->post('notworked');
 | |
|             $postdata['band'] = $this->input->post('band');
 | |
|         }
 | |
|         else { // Setting default values at first load of page
 | |
|             $postdata['lotw'] = 1;
 | |
|             $postdata['qsl'] = 1;
 | |
|             $postdata['worked'] = 1;
 | |
|             $postdata['confirmed'] = 1;
 | |
|             $postdata['notworked'] = 1;
 | |
|             $postdata['band'] = 'All';
 | |
|         }
 | |
| 
 | |
|         $data['was_array'] = $this->was->get_was_array($bands, $postdata);
 | |
|         $data['was_summary'] = $this->was->get_was_summary($bands);
 | |
| 
 | |
|         // Render Page
 | |
|         $data['page_title'] = "Awards - WAS (Worked All States)";
 | |
|         $this->load->view('interface_assets/header', $data);
 | |
|         $this->load->view('awards/was/index');
 | |
|         $this->load->view('interface_assets/footer');
 | |
|     }
 | |
| 
 | |
|     public function iota ()	{
 | |
|         $this->load->model('iota');
 | |
|         $data['worked_bands'] = $this->iota->get_worked_bands(); // Used in the view for band select
 | |
| 
 | |
|         if ($this->input->post('band') != NULL) {   // Band is not set when page first loads.
 | |
|             if ($this->input->post('band') == 'All') {         // Did the user specify a band? If not, use all bands
 | |
|                 $bands = $data['worked_bands'];
 | |
|             }
 | |
|             else {
 | |
|                 $bands[] = $this->input->post('band');
 | |
|             }
 | |
|         }
 | |
|         else {
 | |
|             $bands = $data['worked_bands'];
 | |
|         }
 | |
| 
 | |
|         $data['bands'] = $bands; // Used for displaying selected band(s) in the table in the view
 | |
| 
 | |
|         if($this->input->method() === 'post') {
 | |
|             $postdata['worked'] = $this->input->post('worked');
 | |
|             $postdata['confirmed'] = $this->input->post('confirmed');
 | |
|             $postdata['notworked'] = $this->input->post('notworked');
 | |
|             $postdata['includedeleted'] = $this->input->post('includedeleted');
 | |
|             $postdata['Africa'] = $this->input->post('Africa');
 | |
|             $postdata['Asia'] = $this->input->post('Asia');
 | |
|             $postdata['Europe'] = $this->input->post('Europe');
 | |
|             $postdata['NorthAmerica'] = $this->input->post('NorthAmerica');
 | |
|             $postdata['SouthAmerica'] = $this->input->post('SouthAmerica');
 | |
|             $postdata['Oceania'] = $this->input->post('Oceania');
 | |
|             $postdata['Antarctica'] = $this->input->post('Antarctica');
 | |
|             $postdata['band'] = $this->input->post('band');
 | |
|         }
 | |
|         else { // Setting default values at first load of page
 | |
|             $postdata['worked'] = 1;
 | |
|             $postdata['confirmed'] = 1;
 | |
|             $postdata['notworked'] = 1;
 | |
|             $postdata['includedeleted'] = 1;
 | |
|             $postdata['Africa'] = 1;
 | |
|             $postdata['Asia'] = 1;
 | |
|             $postdata['Europe'] = 1;
 | |
|             $postdata['NorthAmerica'] = 1;
 | |
|             $postdata['SouthAmerica'] = 1;
 | |
|             $postdata['Oceania'] = 1;
 | |
|             $postdata['Antarctica'] = 1;
 | |
|             $postdata['band'] = 'All';
 | |
|         }
 | |
| 
 | |
|         $iotalist = $this->iota->fetchIota($postdata);
 | |
|         $data['iota_array'] = $this->iota->get_iota_array($iotalist, $bands, $postdata);
 | |
|         $data['iota_summary'] = $this->iota->get_iota_summary($bands);
 | |
| 
 | |
|         // Render Page
 | |
|         $data['page_title'] = "Awards - IOTA (Islands On The Air)";
 | |
|         $this->load->view('interface_assets/header', $data);
 | |
|         $this->load->view('awards/iota/index');
 | |
|         $this->load->view('interface_assets/footer');
 | |
|     }
 | |
| 
 | |
|     public function counties()	{
 | |
|         $this->load->model('counties');
 | |
|         $data['counties_array'] = $this->counties->get_counties_array();
 | |
| 
 | |
|         // Render Page
 | |
|         $data['page_title'] = "Awards - US Counties";
 | |
|         $this->load->view('interface_assets/header', $data);
 | |
|         $this->load->view('awards/counties/index');
 | |
|         $this->load->view('interface_assets/footer');
 | |
|     }
 | |
| 
 | |
|     public function counties_details() {
 | |
|         $this->load->model('counties');
 | |
|         $state = str_replace('"', "", $this->input->get("State"));
 | |
|         $type = str_replace('"', "", $this->input->get("Type"));
 | |
|         $data['counties_array'] = $this->counties->counties_details($state, $type);
 | |
|         $data['type'] = $type;
 | |
| 
 | |
|         // Render Page
 | |
|         $data['page_title'] = "US Counties";
 | |
|         $data['filter'] = $type . " counties in state ".$state;
 | |
|         $this->load->view('interface_assets/header', $data);
 | |
|         $this->load->view('awards/counties/details');
 | |
|         $this->load->view('interface_assets/footer');
 | |
|     }
 | |
| 
 | |
|     public function counties_details_ajax(){
 | |
|         $this->load->model('logbook_model');
 | |
| 
 | |
|         $state = str_replace('"', "", $this->input->post("State"));
 | |
|         $county = str_replace('"', "", $this->input->post("County"));
 | |
|         $data['results'] = $this->logbook_model->county_qso_details($state, $county);
 | |
| 
 | |
|         // Render Page
 | |
|         $data['page_title'] = "Log View - Counties";
 | |
|         $data['filter'] = "county " . $state;
 | |
|         $this->load->view('awards/details', $data);
 | |
|     }
 | |
| 
 | |
| 	/*
 | |
| 		Handles showing worked Sigs
 | |
| 		Adif fields: my_sig
 | |
| 	*/
 | |
| 	public function sig() {
 | |
| 		// Grab all worked sig stations
 | |
| 		$this->load->model('sig');
 | |
| 
 | |
| 		$data['sig_types'] = $this->sig->get_all_sig_types();
 | |
| 
 | |
| 		// Render page
 | |
| 		$data['page_title'] = "Awards - SIG";
 | |
| 		$this->load->view('interface_assets/header', $data);
 | |
| 		$this->load->view('awards/sig/index');
 | |
| 		$this->load->view('interface_assets/footer');
 | |
| 	}
 | |
| 
 | |
| 	/*
 | |
| 	Handles showing worked Sigs
 | |
| 	*/
 | |
| 	public function sig_details() {
 | |
| 
 | |
| 		// Grab all worked sig stations
 | |
| 		$this->load->model('sig');
 | |
| 		$type = str_replace('"', "", $this->input->get("type"));
 | |
| 		$data['sig_all'] = $this->sig->get_all($type);
 | |
| 		$data['type'] = $type;
 | |
| 
 | |
| 		// Render page
 | |
| 		$data['page_title'] = "Awards - SIG - " . $type;
 | |
| 		$this->load->view('interface_assets/header', $data);
 | |
| 		$this->load->view('awards/sig/qso_list');
 | |
| 		$this->load->view('interface_assets/footer');
 | |
| 	}
 | |
| 
 | |
| 	/*
 | |
| 	Handles exporting SIGS to ADIF
 | |
| 	*/
 | |
| 	public function sigexportadif() {
 | |
| 		// Set memory limit to unlimited to allow heavy usage
 | |
| 		ini_set('memory_limit', '-1');
 | |
| 
 | |
| 		$this->load->model('adif_data');
 | |
| 		//$type = str_replace('"', "", $this->input->get("type"));
 | |
| 		$type = $this->uri->segment(3);
 | |
| 		$data['qsos'] = $this->adif_data->sig_all($type);
 | |
| 
 | |
| 		$this->load->view('adif/data/exportall', $data);
 | |
| 	}
 | |
| 
 | |
|     /*
 | |
|         function was_map
 | |
| 
 | |
|         This displays the WAS map and requires the $band_type
 | |
|     */
 | |
|     public function was_map($band_type) {
 | |
| 
 | |
|         $this->load->model('was');
 | |
|         $data['worked_bands'] = $this->was->get_worked_bands();
 | |
| 
 | |
|         $bands[] = $band_type;
 | |
| 
 | |
|         $data['bands'] = $bands; // Used for displaying selected band(s) in the table in the view
 | |
| 
 | |
|         $postdata['lotw'] = 1;
 | |
|         $postdata['qsl'] = 1;
 | |
|         $postdata['worked'] = 1;
 | |
|         $postdata['confirmed'] = 1;
 | |
|         $postdata['notworked'] = 1;
 | |
|         $postdata['band'] = $band_type;
 | |
| 
 | |
| 
 | |
|         $data['was_array'] = $this->was->get_was_array($bands, $postdata);
 | |
| 
 | |
|         $data['page_title'] = "";
 | |
| 
 | |
|         $this->load->view('awards/was/map', $data);
 | |
|     }
 | |
| }
 |