I'm trying to get files making a POST request to an action. The web service is working fine but I can't retrieve that file "as it is". Cake automatically transfoms the $this->request->data into an array and that's not what I need. I need to save that file into a BLOB column in my db.
Please help me!!!
Thanks in advance for you help!!
this is my controller code, I'm on CakePHP 2.1.0:
class TransfersController extends AppController {
public $name = 'Transfers';
public $components = array('RequestHandler');
public function record($rfc = null, $numop = null, $source = null) {
if ($this->request->is('post')) {
if (strlen($rfc) > 0) {
if ($numop > 0) {
$this->loadModel('Client');
$client = $this->Client->findByRfc($rfc);
if (!empty($client)) {
if ($client['Client']['enabled'] == 1) {
// unknown way to get the received file
$this->Transfer->set('client_id', $client['Client']['id']);
$this->Transfer->set('num_operacion', $numop);
$this->Transfer->set('source', $source);
// $this->Transfer->set('xml', $this->request->data);
if ($this->Transfer->save($this->request->data)) {
//$message = 'Ok';
$message = $data;
} else {
$message = 'No se pudo registrar la transmisión';
}
} else {
$message = 'Su cuenta ha sido suspendida. Póngase en contacto con Aduanasoft para resolver éste inconveniente.';
}
} else {
$message = 'El RFC ' . $rfc . ' no está registrado con Aduanasoft';
}
} else {
$message = 'El número de operación no es válido';
}
} else {
$message = 'El RFC no es válido';
}
} else {
$message = 'La petición es inválida';
}
$this->set('message', $message);
}
}