-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathupdate.php
executable file
·59 lines (43 loc) · 1.53 KB
/
update.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
<?php
include "./includes/connect.php";
if (!$webhook_enabled)
die("no webhook is enabled");
if (isset($_POST["action"])) {
$data_list = (array)($data_collection->findOne($app_query)->data);
echo "Please hold...<br><br>$webhook_processPageDescription...";
$index = null;
foreach ($data_list as $key => $data) {
if ($data->id == $_POST["id"]) {
$data_back = json_encode($data);
$index = $key;
break;
}
}
if (isset($index)) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "$webhook_url");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_USERPWD, "$webhook_key:");
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_back);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type:application/json'));
$output = curl_exec($ch);
$info = curl_getinfo($ch);
curl_close($ch);
foreach (json_decode($output) as $field => $value) {
$data_list[$key]->$field = $value;
}
$updateDocument = $data_collection->updateOne(
$app_query,
['$set' => ['data' => $data_list]]
);
echo "<script>
setTimeout(function() {
window.location.href = \"./view.php?i=" . $_POST["id"] . "\";}, 3000);
</script>";
} else {
echo "ERROR: ID " . $_POST["id"] . " NOT FOUND";
}
}
?>