These missed commit. Using the LoTW Rcvd mark specified in the DB.

这个提交包含在:
Corby Krick 2013-03-02 14:24:16 -06:00
父节点 364bb9541e
当前提交 24cd4bfe11
共有 3 个文件被更改,包括 16 次插入20 次删除

查看文件

@ -66,20 +66,6 @@ $config['auth_level'][99] = "Administrator";
$config['qrz_username'] = "";
$config['qrz_password'] = "";
/*
|--------------------------------------------------------------------------
| Logbook of The World (LoTW) Options
|--------------------------------------------------------------------------
|
| 'lotw_download_url' Download URL
| 'lotw_upload_url' Upload URL
| 'lotw_rcvd_mark' How to mark LoTW confirmations ('Y' or 'V')
*/
$config['lotw_download_url'] = "https://p1k.arrl.org/lotwuser/lotwreport.adi";
$config['lotw_upload_url'] = "https://p1k.arrl.org/lotwuser/upload";
$config['lotw_rcvd_mark'] = "Y";
/*
|--------------------------------------------------------------------------
| Base Site URL

查看文件

@ -21,7 +21,7 @@ $config['migration_enabled'] = TRUE;
| be upgraded / downgraded to.
|
*/
$config['migration_version'] = 1;
$config['migration_version'] = 2;
/*

查看文件

@ -14,6 +14,11 @@ class Lotw extends CI_Controller {
private function loadFromFile($filepath)
{
// 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;
ini_set('memory_limit', '-1');
set_time_limit(0);
@ -52,10 +57,10 @@ class Lotw extends CI_Controller {
$time_off = date('Y-m-d', strtotime($record['qso_date'])) ." ".date('H:i', strtotime($record['time_on']));
}
// If defined in the config file that we want a V (for Verified) instead of a Y (for Yes), use that
if ($this->config->item('lotw_rcvd_mark') != "Y" && $record['qsl_rcvd'] == "Y")
// 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'] = "V";
$record['qsl_rcvd'] = $config['lotw_rcvd_mark'];
}
$status = $this->logbook_model->import_check($time_on, $record['call'], $record['band']);
@ -89,7 +94,7 @@ class Lotw extends CI_Controller {
$config['upload_path'] = './uploads/';
$config['allowed_types'] = 'adi|ADI';
$this->load->library('upload', $config);
$this->load->model('logbook_model');
@ -104,6 +109,11 @@ class Lotw extends CI_Controller {
$data['user_lotw_name'] = $q->user_lotw_name;
$data['user_lotw_password'] = $q->user_lotw_password;
// 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;
// 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'] == '')
@ -118,7 +128,7 @@ class Lotw extends CI_Controller {
// TODO: Specifiy in config file whether we want LoTW confirms as V or Y. Both are acceptable under ADIF specification. HRD seems to use V. Everyone else that I've used uses Y.
// Build URL for LoTW report file
$lotw_url = $this->config->item('lotw_download_url') . "?";
$lotw_url .= "?";
$lotw_url .= "login=" . $data['user_lotw_name'];
$lotw_url .= "&password=" . $data['user_lotw_password'];
$lotw_url .= "&qso_query=1&qso_qsl='yes'";