summaryrefslogtreecommitdiff
path: root/app/php/components/SafeFileUploadMethods.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/php/components/SafeFileUploadMethods.php')
-rw-r--r--app/php/components/SafeFileUploadMethods.php32
1 files changed, 32 insertions, 0 deletions
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 @@
+<?php
+
+trait SafeFileUploadMethods {
+
+ protected $_isSecure = TRUE;
+
+ public function getIsSecure() {
+ return $this->_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();
+ }
+
+}
+
+?>