From cf13952b45bfa844b5114eaa5692a53c5594ad0e Mon Sep 17 00:00:00 2001 From: drigato Date: Wed, 16 Apr 2014 11:01:02 -0400 Subject: [PATCH] Logging messages for debugging the ftp script --- .../modules/rest/controllers/MediaController.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/airtime_mvc/application/modules/rest/controllers/MediaController.php b/airtime_mvc/application/modules/rest/controllers/MediaController.php index ecd538a12..1510e4db1 100644 --- a/airtime_mvc/application/modules/rest/controllers/MediaController.php +++ b/airtime_mvc/application/modules/rest/controllers/MediaController.php @@ -144,7 +144,7 @@ class Rest_MediaController extends Zend_Rest_Controller $file->setDbUtime($now); $file->setDbHidden(true); $file->save(); - +Logging::info("POST --- file saved"); $callbackUrl = $this->getRequest()->getScheme() . '://' . $this->getRequest()->getHttpHost() . $this->getRequest()->getRequestUri() . "/" . $file->getPrimaryKey(); $this->processUploadedFile($callbackUrl, $_FILES["file"]["name"], $this->getOwnerId()); @@ -337,12 +337,13 @@ class Rest_MediaController extends Zend_Rest_Controller private function processUploadedFile($callbackUrl, $originalFilename, $ownerId) { + Logging::info("POST --- process uploaded file begin"); $CC_CONFIG = Config::getConfig(); $apiKey = $CC_CONFIG["apiKey"][0]; $tempFilePath = $_FILES['file']['tmp_name']; $tempFileName = basename($tempFilePath); - + Logging::info("POST --- ".$tempFilePath); //Only accept files with a file extension that we support. $fileExtension = pathinfo($originalFilename, PATHINFO_EXTENSION); if (!in_array(strtolower($fileExtension), explode(",", "ogg,mp3,oga,flac,wav,m4a,mp4,opus"))) @@ -350,7 +351,7 @@ class Rest_MediaController extends Zend_Rest_Controller @unlink($tempFilePath); throw new Exception("Bad file extension."); } - + Logging::info("POST --- ".$fileExtension); //TODO: Remove uploadFileAction from ApiController.php **IMPORTANT** - It's used by the recorder daemon... $storDir = Application_Model_MusicDir::getStorDir();