mirror of
https://github.com/magicbug/Cloudlog
synced 2024-11-23 10:08:38 +00:00
163 lines
3.6 KiB
PHP
163 lines
3.6 KiB
PHP
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
class adif extends CI_Controller {
|
|
|
|
/* Controls ADIF Import/Export 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'); }
|
|
}
|
|
|
|
/* Shows Export Views */
|
|
public function export() {
|
|
|
|
$data['page_title'] = "ADIF Export";
|
|
|
|
$this->load->view('layout/header', $data);
|
|
$this->load->view('adif/main');
|
|
$this->load->view('layout/footer');
|
|
}
|
|
|
|
// Export all QSO Data in ASC Order of Date.
|
|
public function exportall()
|
|
{
|
|
// Set memory limit to unlimited to allow heavy usage
|
|
ini_set('memory_limit', '-1');
|
|
|
|
$this->load->model('adif_data');
|
|
|
|
$data['qsos'] = $this->adif_data->export_all();
|
|
|
|
$this->load->view('adif/data/exportall', $data);
|
|
}
|
|
|
|
public function export_custom() {
|
|
|
|
// Set memory limit to unlimited to allow heavy usage
|
|
ini_set('memory_limit', '-1');
|
|
|
|
$this->load->model('adif_data');
|
|
|
|
$data['qsos'] = $this->adif_data->export_custom($this->input->post('from'), $this->input->post('to'));
|
|
|
|
$this->load->view('adif/data/exportall', $data);
|
|
|
|
}
|
|
|
|
public function export_lotw()
|
|
{
|
|
// Set memory limit to unlimited to allow heavy usage
|
|
ini_set('memory_limit', '-1');
|
|
|
|
$this->load->model('adif_data');
|
|
|
|
$data['qsos'] = $this->adif_data->export_lotw();
|
|
|
|
$this->load->view('adif/data/exportall', $data);
|
|
|
|
foreach ($data['qsos']->result() as $qso)
|
|
{
|
|
$this->adif_data->mark_lotw_sent($qso->COL_PRIMARY_KEY);
|
|
}
|
|
}
|
|
|
|
public function import() {
|
|
|
|
$data['page_title'] = "ADIF Import";
|
|
|
|
$config['upload_path'] = 'uploads/';
|
|
$config['allowed_types'] = 'adi|ADI';
|
|
|
|
$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('adif/import');
|
|
$this->load->view('layout/footer');
|
|
}
|
|
else
|
|
{
|
|
|
|
$data = array('upload_data' => $this->upload->data());
|
|
|
|
ini_set('memory_limit', '-1');
|
|
set_time_limit(0);
|
|
|
|
$this->load->model('logbook_model');
|
|
|
|
$this->load->library('adif_parser');
|
|
|
|
$this->adif_parser->load_from_file('./uploads/'.$data['upload_data']['file_name']);
|
|
|
|
$this->adif_parser->initialize();
|
|
|
|
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);
|
|
};
|
|
|
|
unlink('./uploads/'.$data['upload_data']['file_name']);
|
|
|
|
$data['page_title'] = "ADIF Imported";
|
|
$this->load->view('layout/header', $data);
|
|
$this->load->view('adif/import_success');
|
|
$this->load->view('layout/footer');
|
|
|
|
}
|
|
}
|
|
|
|
|
|
function test() {
|
|
// Set memory limit to unlimited to allow heavy usage
|
|
ini_set('memory_limit', '-1');
|
|
set_time_limit(0);
|
|
|
|
$this->load->model('logbook_model');
|
|
|
|
$this->load->library('adif_parser');
|
|
|
|
$this->adif_parser->load_from_file('./uploads/2e0sql.ADI');
|
|
|
|
$this->adif_parser->initialize();
|
|
|
|
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);
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* End of file adif.php */
|