-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFile.php
More file actions
123 lines (109 loc) · 2.21 KB
/
File.php
File metadata and controls
123 lines (109 loc) · 2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<?php
/**
* AttwFramework
*
* @author Gabriel Jacinto <gamjj74@hotmail.com>
* @license MIT License
* @link http://attwframework.github.io
*/
namespace Attw\File;
use \UnexpectedValueException;
use \RuntimeException;
use Attw\File\FileInterface;
/**
* File to object
*/
class File implements FileInterface
{
/**
* File compoenents
*
* @var array
*/
private $file;
/**
* Set the file
*
* @param array $file File ($_FILES['file'])
* @throws \UnexpectedValueException case param $file is not a file
*/
public function __construct(array $file)
{
$this->file = $file;
if (!isset($file['tmp_name']) && !file_exists($file['tmp_name'])) {
throw new UnexpectedValueException('Invalid file: ' . print_r($file, true));
}
$this->detectExtension();
}
/**
* Returns the name of the file
*
* @return string
*/
public function getName()
{
return $this->file['name'];
}
/**
* Returns the name of the file
*
* @param string $name
*/
public function setName($name)
{
$this->file['name'] = (string) $name;
}
/**
* Returns the temporary name of the file
*
* @return string
*/
public function getTmpName()
{
return $this->file['tmp_name'];
}
/**
* Returns the mime type of the file
*
* @return string
*/
public function getMimeType()
{
return $this->file['type'];
}
/**
* Returns the size of the file
*
* @return integer
*/
public function getSize()
{
return $this->file['size'];
}
/**
* Returns the extension of the file
*
* @return string
*/
public function getExtension()
{
return $this->file['extension'];
}
/**
* Returns the extension
*
* @param string $extension
*/
public function setExtension($extension)
{
$this->file['extension'] = $extension;
}
/**
* To detect the file extension
*/
private function detectExtension()
{
$arr = explode('.', $this->file['name']);
$this->file['extension'] = end($arr);
}
}