Skip to content

Commit 2367998

Browse files
authored
Create csv_upload.ws
1 parent ec22946 commit 2367998

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

csv_upload.ws

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
url = var('request.url')
2+
3+
if (var('$request.method$') != 'POST') {
4+
respond('
5+
<html>
6+
<head><title>Upload CSV</title></head>
7+
<body>
8+
<h1>Upload CSV</h1>
9+
<form action="{}" method="POST" enctype="multipart/form-data">
10+
<input type="file" name="file"/>
11+
<button type="submit">Upload</button>
12+
</form>
13+
</body>
14+
</html>
15+
'.format(url))
16+
}
17+
18+
array = csv_to_array(var('request.file.file.content'), ',', 0)
19+
20+
if (!array or array.length() < 2) {
21+
respond('
22+
<h1>Could not parse CSV</h1>
23+
<a href="{}">Upload again</a>
24+
'.format(url));
25+
}
26+
27+
respond('
28+
<h1>Upload successful</h1>
29+
<pre>{}</pre>
30+
<p>
31+
<a href="{}">Upload again</a>
32+
</p>
33+
'.format(json_encode(array), url))

0 commit comments

Comments
 (0)