1aa5a4f7248ec5689493578c1a1f1364748a457c.svn-base
5.77 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
<?php
if(! class_exists("UploadUtil") ) {
class UploadUtil
{
var $acceptExtension;
var $Extension;
var $LimitFileSize;
function UploadUtil($acceptExtension = FALSE, $Extension = NULL, $LimitFileSize = 20971520)
{
/*
$File
# 파일로 넘어온 데이터
$Root
# 파일이 저장될 디렉터리
$Extension
# 업로드시 허용 또는 허용하지 않는 확장자명
# 변수 타입 Array();
$Extension_Type
# 0 $Extension 으로 넘어오는 확장자 배열을 포함하면 업로드 허용
# 1 $Extension 으로 넘어오는 확장자 배열을 포함하면 업로드 불가
$Limit_File_Size
# 업로드 할수 있는 파일용량 제한
# 기본 : 2메가 (1048576)
*/
$this->LimitFileSize = $LimitFileSize;
if($Extension == NULL)
{
$this->acceptExtension = FALSE;
$this->Extension = array("php","cgi","php3","php","asp","html");
}
else
{
$this->acceptExtension = $acceptExtension;
$this->Extension = $Extension;
//대문자로 들어오더라도 소문자로 변환
for($i=0; $i<sizeof($this->Extension); $i++)
{
$this->Extension[$i] = strtolower($this->Extension[$i]);
}
}
}
//업로드 기본 패스 확인
function Make_SavePath($savePath, $makeDayFolderFlag)
{
if($makeDayFolderFlag)
$savePath = $savePath . "/" . date("Ymd");
if(!file_exists($savePath))
{
if(!@mkdir($savePath, 0755, TRUE))
$savePath = FALSE;
}
return $savePath;
}
// 파일명중 확장자를 분리해준다.
function File_Explode_Extension($File_Name){
$Tmp = explode(".",$File_Name);
if(count($Tmp) == 1)
{
return "";
}
else
{
return strtolower($Tmp[count($Tmp)-1]);
}
}
//확장자 체크
function File_Check_Extension($File_Name){
$extension = $this->File_Explode_Extension($File_Name);
if($extension == "")
{
return false;
}
for($i=0;$i <= count($this->Extension);$i++){
//허용확장자에 포함되는 경우 - 확장자가 동일해야함
if($this->acceptExtension && strcmp($this->Extension[$i],$extension) === 0){
return true;
break;
}
else if(!$this->acceptExtension && strcmp($this->Extension[$i],$extension) !== 0)
{
return true;
break;
}
}
return false;
}
//파일 크기 체크
function File_Check_Size($File_Size){
if($this->LimitFileSize < $File_Size){
return false;
}
return true;
}
//유니크 이름 생성
function File_Make_Unique_Name($FileName){
$extension = $this->File_Explode_Extension($FileName);
srand((double)microtime()*1000000) ;
$Rnd = rand(1000000,2000000) ;
$Temp = date("Ymdhis") ;
return $Temp.$Rnd.".".$extension ;
}
function File_Check_Overlap($SavePath, $fileName){
if(file_exists($SavePath."/".$fileName)){
return false;
}
return true;
}
function removeFile($SavePath, $fileName)
{
@unlink($SavePath."/".$fileName);
}
//결과정보 전송
function makeResult($returnCode, $returnMsg, $fileInfo = NULL)
{
$retVal = Array(
"returnCode" => $returnCode,
"returnMessage" => $returnMsg,
"fileInfo" => $fileInfo
);
return $retVal;
}
function uploadOneFile($File, $BasePath, $SubPath, $makeDayFolderFlag = FALSE, $overlapFlag = FALSE, $MakeNewNameFlag = TRUE) {
$newFileName = $File ["name"];
$SavePath = $BasePath;
$logData = "Api : uploadOneFile // file : {$newFileName} //uploadResult : {$uploadResult["returnMessage"]}";
LogUtil::writeFileLog ( $this->logPath, $logData );
if ($SubPath != "")
$SavePath .= "/" . $SubPath;
// 새로운 파일 이름 생성
if ($MakeNewNameFlag)
$newFileName = $this->File_Make_Unique_Name ( $newFileName );
// 우선 파일사이즈가 0인건 업로드 하지 않음
if ($File ["size"] == 0 || ! isset ( $File ["size"] )) {
return $this->makeResult ( "-2", "비정상 파일입니다.(사이즈 0)" );
}
// 파일 확장자 체크
if (! $this->File_Check_Extension ( $File ["name"] )) {
return $this->makeResult ( "-3", "허용되지 않은 확장자" );
}
// 파일 사이즈 체크
if (! $this->File_Check_Size ( $File ["size"] )) {
return $this->makeResult ( "-4", "업로드 용량을 초과하였습니다." );
}
// 에러 체크
if ($File ["error"] === "0") {
return $this->makeResult ( "-5", "파일이 비정상적으로 업로드 되었습니다 - {$File["error"]}" );
}
// 파일 중복 체크
if ($overlapFlag && ! $this->File_Check_Overlap ( $SavePath, $newFileName )) {
$this->removeFile ( $SavePath, $newFileName );
} else if (! $overlapFlag && ! $this->File_Check_Overlap ( $SavePath, $newFileName )) {
return $this->makeResult ( "-6", "이미 파일이 존재합니다." );
}
$SavePath = $this->Make_SavePath ( $SavePath, $makeDayFolderFlag );
$SubPath = str_replace ( $BasePath . "/", "", $SavePath );
if ($SavePath === FALSE) {
return $this->makeResult ( "-7", "업로드 경로 확인" );
}
// 실제 업로드
if (! @move_uploaded_file ( $File ["tmp_name"], $SavePath . "/" . $newFileName )) {
return $this->makeResult ( "-8", "업로드 도중 에러가 발생함" );
}
chmod ( $SavePath . "/" . $newFileName, 0755 );
$fileInfo = array (
"re_name" => $newFileName,
"name" => $File ["name"],
"tmp_name" => $File ["tmp_name"],
"error" => $File ["error"],
"type" => $File ["type"],
"size" => $File ["size"],
"extension" => $this->File_Explode_Extension ( $newFileName ),
"savePath" => $SavePath,
"SubPath" => $SubPath,
"saveURL" => $SubPath . "/" . $newFileName
);
return $this->makeResult ( "1", "", $fileInfo ); // 모든 파일을 업로드 한후 파일 정보를 넘겨준당.
}
}
}