forked from erlyaws/yaws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyaws_multipart.erl
231 lines (213 loc) · 8.32 KB
/
yaws_multipart.erl
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
-module(yaws_multipart).
-export([read_multipart_form/2]).
-include("../include/yaws.hrl").
-include("../include/yaws_api.hrl").
-record(upload, {
fd,
filename,
fixed_filename,
last = false,
param_name,
param_running_value,
params,
running_file_size = 0,
max_file_size,
no_temp_file,
temp_dir = yaws:tmpdir("/tmp"),
temp_file,
headers = [],
data_type = list
}).
read_multipart_form(A, Options) when A#arg.state == undefined ->
State = #upload{params = dict:new()},
NewState = read_options(Options,State),
multipart(A, NewState);
read_multipart_form(A, _Options) ->
multipart(A, A#arg.state).
read_options([], State) -> State;
read_options([Option|Rest], State) ->
NewState = case Option of
{max_file_size, SizeInBytes} ->
State#upload{max_file_size = SizeInBytes};
no_temp_file ->
State#upload{no_temp_file = true};
{temp_file, FullPath} ->
State#upload{fixed_filename = FullPath};
{temp_dir, Dir} ->
true = filelib:is_dir(Dir),
State#upload{temp_dir = Dir};
list ->
State#upload{data_type = list};
binary ->
State#upload{data_type = binary}
end,
read_options(Rest, NewState).
multipart(A, State) ->
Parse = yaws_api:parse_multipart_post(A, [State#upload.data_type]),
case Parse of
{cont, Cont, Res} ->
case add_file_chunk(A, Res, State) of
{done, NewState} ->
{done, NewState#upload.params};
{cont, NewState} ->
{get_more, Cont, NewState};
Error={error, _Reason} ->
Error
end;
{result, Res} ->
case add_file_chunk(A, Res, State#upload{last=true}) of
{done, S2} ->
{done,S2#upload.params};
Error={error, _Reason} ->
Error
end;
Error={error, _Reason} ->
Error
end.
add_file_chunk(A, [{part_body, Data}|Res], State) ->
add_file_chunk(A, [{body, Data}|Res], State);
add_file_chunk(_A, [], State) when State#upload.last == true ->
{done, close_previous_param(State)};
add_file_chunk(_A, [], State) ->
{cont, State};
add_file_chunk(A, [{head, {_Name, Opts}}|Res], State ) ->
S1 = close_previous_param(State),
S2 = lists:foldl(
fun({"filename", Fname0}, RunningState) ->
case create_temp_file(State) of
[undefined, undefined] ->
%% values will be stored in memory as
%% dictated by state#upload.no_temp_file
RunningState#upload{
filename = Fname0,
param_running_value = undefined,
running_file_size = 0};
[Fname, Fd] ->
RunningState#upload{
fd = Fd,
filename = Fname0,
temp_file = Fname,
param_running_value = undefined,
running_file_size = 0}
end;
({"name", ParamName}, RunningState) ->
RunningState#upload{
param_name = ParamName,
param_running_value = undefined};
(HdrVal, RunningState) ->
RunningState#upload{
headers = [HdrVal | RunningState#upload.headers]}
end,
S1,
Opts),
add_file_chunk(A,Res,S2);
add_file_chunk(A, [{body, Data}|Res],State) when State#upload.fd /= undefined ->
NewSize = compute_new_size(State,Data),
Check = check_param_size(State, NewSize),
case Check of
ok ->
ok = file:write(State#upload.fd, Data),
add_file_chunk(A, Res, State#upload{running_file_size = NewSize});
Error={error, _Reason} ->
Error
end;
add_file_chunk(A, [{body, Data}|Res], State) ->
NewSize = compute_new_size(State,Data),
Check = check_param_size(State, NewSize),
case Check of
ok ->
NewState =
case State#upload.param_running_value of
undefined ->
State#upload{param_running_value = Data};
PrevValue ->
NewData = compute_new_value(PrevValue, Data),
State#upload{param_running_value = NewData}
end,
add_file_chunk(A, Res,NewState#upload{running_file_size = NewSize});
Error={error, _Reason} ->
Error
end.
create_temp_file(State) ->
case State#upload.no_temp_file of
undefined ->
FilePath =
case State#upload.fixed_filename of
undefined ->
{A, B, C} = now(),
FileName = yaws:join_sep(["yaws",
integer_to_list(A),
integer_to_list(B),
integer_to_list(C)], "_"),
filename:join([State#upload.temp_dir, FileName]);
Filename ->
Filename
end,
{ok,Fd} = file:open(FilePath, [write,binary]),
[FilePath, Fd];
true ->
[undefined, undefined]
end
.
close_previous_param(#upload{param_name = undefined} = State) ->
State;
close_previous_param(#upload{param_name = ParamName} = State) ->
S2 = case State#upload.filename of
undefined ->
ParamValue = State#upload.param_running_value,
State#upload{
params = dict:store(ParamName, ParamValue,
State#upload.params)};
_ ->
ParamInfo = [{"filename", State#upload.filename}],
ParamInfo2 = case State#upload.fd of
undefined ->
lists:append(
ParamInfo,
[{value,
State#upload.param_running_value}]);
Fd ->
file:close(Fd),
lists:append(ParamInfo,
[{temp_file,
State#upload.temp_file}])
end,
ParamInfo3 = lists:append(ParamInfo2, State#upload.headers),
State#upload{
filename = undefined,
fd = undefined,
temp_file= undefined,
running_file_size = 0,
params = dict:store(ParamName, ParamInfo3,
State#upload.params)
}
end,
S2#upload{param_name = undefined,
param_running_value = undefined,
headers = []}.
compute_new_size(State, Data) ->
case Data of
undefined ->
State#upload.running_file_size;
_ ->
State#upload.running_file_size + iolist_size(Data)
end.
check_param_size(State, NewSize) ->
case State#upload.max_file_size of
undefined -> ok;
MaxSizeInBytes ->
case NewSize > MaxSizeInBytes of
true ->
{error, io_lib:format("~p is too large",
[State#upload.param_name])};
false ->
ok
end
end.
compute_new_value(PrevValue, NewData) ->
case NewData of
Data when is_binary(NewData) ->
<<PrevValue/binary, Data/binary>>;
Data when is_list(NewData) ->
PrevValue ++ Data
end.