-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathprocess.php
136 lines (92 loc) · 3.13 KB
/
process.php
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
<?php
// Comment if you don't want to allow posts from other domains
header('Access-Control-Allow-Origin: *');
// Allow the following methods to access this file
header('Access-Control-Allow-Methods: OPTIONS, GET, DELETE, POST, HEAD, PATCH');
// Allow the following headers in preflight
header('Access-Control-Allow-Headers: content-type, upload-length, upload-offset, upload-name');
// Allow the following headers in response
header('Access-Control-Expose-Headers: upload-offset');
// Load our configuration for this server
require_once('config.php');
require("./util/uploadmedia.php");
require("./util/read_write_functions.php");
// writeJsonFile(array());
// $arrayDBStore = readJsonFile();
// // echo 123;
// echo gettype($arrayDBStore);
// print_r($arrayDBStore);
// print_r(array());
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
$files = $_FILES["filepond"];
$imageName = null;
$id = null;
function saveImagesToTempLocation ($uploadedFile) {
global $imageName;
global $id;
$imageUniqueId = null;
// check that there were no errors while uploading file
if (isset($uploadedFile) && $uploadedFile['error'] === UPLOAD_ERR_OK) {
$imageName = uploadImage($uploadedFile, UPLOAD_DIR);
if ($imageName) {
$filePointer = UPLOAD_DIR . $imageName;
$arrayDBStore = readJsonFile();
$id = uniqid();
$newImageInfo = [
"id" => $id,
"name" => $imageName,
"date" => time()
];
array_push($arrayDBStore , $newImageInfo);
writeJsonFile($arrayDBStore);
}
}
return $id;
}
$structuredFiles = [];
if (isset($files)) {
foreach($files["name"] as $filename) {
$structuredFiles[] = [
"name" => $filename
];
}
foreach($files["type"] as $index => $filetype) {
$structuredFiles[$index]["type"] = $filetype;
}
foreach($files["tmp_name"] as $index => $file_tmp_name) {
$structuredFiles[$index]["tmp_name"] = $file_tmp_name;
}
foreach($files["error"] as $index => $file_error) {
$structuredFiles[$index]["error"] = $file_error;
}
foreach($files["size"] as $index => $file_size) {
$structuredFiles[$index]["size"] = $file_size;
}
}
$uniqueImgID = null;
if (count($structuredFiles)) {
foreach ($structuredFiles as $structuredFile) {
$uniqueImgID = saveImagesToTempLocation($structuredFile);
}
}
$response = [];
if ($uniqueImgID) {
$response["status"] = "success";
$response["key"] = $uniqueImgID;
$response["msg"] = null;
$response["files"] = json_encode($structuredFiles);
http_response_code(200);
} else {
$response["status"] = "error";
$response["key"] = null;
$response["msg"] = "An error occured while uploading image";
$response["files"] = json_encode($structuredFiles);
http_response_code(400);
}
header('Content-Type: application/json');
echo json_encode($response);
exit();
} else {
exit();
}
?>