From 050c6cfd0e75249ae7b7dad3f8ec6eed6be50102 Mon Sep 17 00:00:00 2001 From: emkael Date: Mon, 25 Apr 2016 11:40:28 +0200 Subject: * separating safer file upload trait to its own file --- app/php/components/SafeActiveFileUpload.php | 4 ++-- app/php/components/SafeFileUpload.php | 33 +++------------------------- app/php/components/SafeFileUploadMethods.php | 32 +++++++++++++++++++++++++++ 3 files changed, 37 insertions(+), 32 deletions(-) create mode 100644 app/php/components/SafeFileUploadMethods.php (limited to 'app/php') diff --git a/app/php/components/SafeActiveFileUpload.php b/app/php/components/SafeActiveFileUpload.php index 9b8e2a8..0c3335c 100644 --- a/app/php/components/SafeActiveFileUpload.php +++ b/app/php/components/SafeActiveFileUpload.php @@ -1,11 +1,11 @@ _isSecure; - } - - public function setIsSecure($bool) { - $this->_isSecure = $bool; - } - - public function getFileType() { - if ($this->getIsSecure()) { - $fileInfo = new finfo(FILEINFO_MIME_TYPE); - return $fileInfo->file($this->getLocalName()); - } - return parent::getFileType(); - } +class SafeFileUpload extends TFileUpload { - public function getFileSize() { - if ($this->getIsSecure()) { - return filesize($this->getLocalName()); - } - return parent::getFileSize(); - } + use SafeFileUploadMethods; } diff --git a/app/php/components/SafeFileUploadMethods.php b/app/php/components/SafeFileUploadMethods.php new file mode 100644 index 0000000..bdb2af6 --- /dev/null +++ b/app/php/components/SafeFileUploadMethods.php @@ -0,0 +1,32 @@ +_isSecure; + } + + public function setIsSecure($bool) { + $this->_isSecure = $bool; + } + + public function getFileType() { + if ($this->getIsSecure()) { + $fileInfo = new finfo(FILEINFO_MIME_TYPE); + return $fileInfo->file($this->getLocalName()); + } + return parent::getFileType(); + } + + public function getFileSize() { + if ($this->getIsSecure()) { + return filesize($this->getLocalName()); + } + return parent::getFileSize(); + } + +} + +?> -- cgit v1.2.3