-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwriteAPI.php
160 lines (150 loc) · 4.12 KB
/
writeAPI.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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<?php
include("dbHandler.php");
$db = new dbHandler();
$dbConfig = $db->readDbConfig();
$eventCode = $dbConfig["eventcode"];
if (isset($_GET["eventCode"]))
{
$eventCode = $_GET["eventCode"];
}
if (isset($_POST["writeData"]))
{
// Write Data API
$db->connectToDB();
$dat = json_decode($_POST["writeData"], true);
$msg = "success";
for ($i = 0; $i < count($dat); ++$i)
{
$dat[$i]["entrykey"] = $dat[$i]["eventcode"] . "_" . $dat[$i]["matchnumber"] . "_" . $dat[$i]["teamnumber"];
try
{
$db->writeRowToTable($dat[$i]);
}
catch (Exception $e)
{
error_log("! writeRowToTable() threw exception = $e");
$msg = "fail";
}
}
echo ($msg);
}
if (isset($_POST["writeSingleData"]))
{
// Write Data API
$db->connectToDB();
$dat = json_decode($_POST["writeSingleData"], true);
// echo($_POST["writeData"]);
$dat["eventcode"] = $eventCode;
$dat["entrykey"] = $dat["eventcode"] . "_" . $dat["matchnumber"] . "_" . $dat["teamnumber"];
$db->writeRowToTable($dat);
echo ("success");
}
if (isset($_POST["writePitData"]))
{
$db->connectToDB();
$args = json_decode($_POST["writePitData"], true);
$args["entrykey"] = $eventCode . "_" . $args["teamnumber"];
$args["eventcode"] = $eventCode;
$db->writeRowToPitTable($args);
echo ("success");
}
if (isset($_POST["writeStrategicData"]))
{
$db->connectToDB();
$args = json_decode($_POST["writeStrategicData"], true);
$args["eventcode"] = $eventCode;
$msg = "success";
$args["entrykey"] = $args["eventcode"] . "_" . $args["matchnumber"] . "_" . $args["teamnumber"];
try
{
$db->writeRowToStrategicTable($args);
}
catch (Exception $e)
{
error_log("! writeStrategicData() threw exception = $e");
$msg = "fail";
}
echo ($msg);
}
if (isset($_POST["writePicklist"]))
{
$plistData = $_POST["writePicklist"];
$fileName = "$eventCode.csv";
error_log("writePicklist fileName = $fileName");
$file = fopen($fileName,"w");
fwrite($file,$plistData);
fclose($file);
}
if (isset($_POST["teamNum"]) and isset($_FILES["teamPic"]))
{
// For testing: add a delay
//TEST sleep(10); // 10 seconds delay
// Upload Picture API
$uploadSuccess = false;
$errorMessage = "";
$target_dir = "robot-pics/";
$imageFileType = strtolower(pathinfo(basename($_FILES["teamPic"]["name"]), PATHINFO_EXTENSION));
$target_file = $target_dir . $_POST["teamNum"];
// Check that there is a file in the POST request
if (getimagesize($_FILES["teamPic"]["tmp_name"]) !== false)
{
// Check that the size of the file is less than the number below
if ($_FILES["teamPic"]["size"] < 100000000)
{
// Check that the file type is a JPG or PNG
if ($imageFileType == "jpg" || $imageFileType == "JPG" || $imageFileType == "PNG" || $imageFileType == "png" || $imageFileType == "jpeg" || $imageFileType == "JPEG" || $imageFileType == "gif" || $imageFileType == "GIF")
{
$i = 0;
$fileValid = false;
$newFileName = "";
// Check that the file names that we want are not taken
while ($i < 20)
{
$newFileName = strtolower($target_file . '-' . $i . '.' . $imageFileType);
if (file_exists($newFileName))
{
$i++;
}
else
{
$fileValid = true;
break;
}
}
if ($fileValid)
{
// Upload the file to the folder
if (move_uploaded_file($_FILES["teamPic"]["tmp_name"], $newFileName))
{
$uploadSuccess = true;
}
else
{
$errorMessage = "Server had issue uploading photo.";
}
}
else
{
$errorMessage = "Too many images exist for this team in the DB. Please contact the Scouting Admin.";
}
}
else
{
$errorMessage = "File not JPG or PNG.";
}
}
else
{
$errorMessage = "Image too large.";
}
}
else
{
$errorMessage = "Image does not exist.";
}
$response = array();
$response["success"] = $uploadSuccess;
$response["message"] = $errorMessage;
echo (json_encode($response));
}
?>