Cloudlog/application/controllers/Clublog.php

87 wiersze
2.3 KiB
PHP
Czysty Zwykły widok Historia

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
Controller to interact with the Clublog API
*/
class Clublog extends CI_Controller {
// Show frontend if there is one
public function index() {
}
// Upload ADIF to Clublog
public function upload($username) {
$this->load->helper('file');
$this->load->model('logbook_model');
$this->load->model('clublog_model');
$clublog_info = $this->clublog_model->get_clublog_auth_info($username);
if(!isset($clublog_info['user_name'])) {
echo "Username unknown";
exit;
}
$data['qsos'] = $this->logbook_model->get_clublog_qsos();
if($data['qsos']->num_rows()){
// Create ADIF File of contacts not uploaded to Clublog
$string = $this->load->view('adif/data/clublog', $data, TRUE);
2019-06-19 15:51:46 +00:00
$ranid = uniqid();
if ( ! write_file('uploads/clublog'.$ranid.'.adi', $string)) {
echo 'Unable to write the file - Make the folder Upload folder has write permissions.';
}
else {
2019-06-19 15:51:46 +00:00
$file_info = get_file_info('uploads/clublog'.$ranid.'.adi');
// initialise the curl request
$request = curl_init('https://clublog.org/putlogs.php');
if (function_exists('curl_file_create')) { // php 5.5+
$cFile = curl_file_create($_SERVER['DOCUMENT_ROOT']."/".$file_info['server_path']);
} else { //
$cFile = '@' . realpath($_SERVER['DOCUMENT_ROOT']."/".$file_info['server_path']);
}
// send a file
curl_setopt($request, CURLOPT_POST, true);
curl_setopt(
$request,
CURLOPT_POSTFIELDS,
array(
'email' => $clublog_info['user_clublog_name'],
'password' => $clublog_info['user_clublog_password'],
'callsign' => $clublog_info['user_clublog_callsign'],
'api' => "a11c3235cd74b88212ce726857056939d52372bd",
'file' => $cFile
));
// output the response
curl_setopt($request, CURLOPT_RETURNTRANSFER, true);
2019-06-19 15:23:41 +00:00
echo curl_exec($request);
2019-06-19 15:21:16 +00:00
2019-06-19 16:11:15 +00:00
$results = strval($request);
2019-06-19 16:11:15 +00:00
$check = strpos($results, 'accepted');
// If Clublog Accepts mark the QSOs
2019-06-19 16:11:15 +00:00
if ($check !== false) {
$this->clublog_model->mark_qsos_sent();
echo "QSOs uploaded and Logbook QSOs marked as sent to Clublog";
}
}
} else {
echo "Nothing awaiting upload to clublog";
}
}
}