-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathwebhook.php
More file actions
89 lines (80 loc) · 2.68 KB
/
webhook.php
File metadata and controls
89 lines (80 loc) · 2.68 KB
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
<?php
function processMessage($update) {
if($update["queryResult"]["action"] == "sayHello"){
sendMessage(array(
"source" => $update["responseId"],
"fulfillmentText"=>"Hello from webhook",
"payload" => array(
"items"=>[
array(
"simpleResponse"=>
array(
"textToSpeech"=>"response from host"
)
)
],
),
));
}else if($update["queryResult"]["action"] == "convert"){
if($update["queryResult"]["parameters"]["outputcurrency"] == "USD"){
$amount = intval($update["queryResult"]["parameters"]["amountToConverte"]["amount"]);
$convertresult = $amount * 360;
}
sendMessage(array(
"source" => $update["responseId"],
"fulfillmentText"=>"The conversion result is".$convertresult,
"payload" => array(
"items"=>[
array(
"simpleResponse"=>
array(
"textToSpeech"=>"The conversion result is".$convertresult
)
)
],
),
));
}else{
sendMessage(array(
"source" => $update["responseId"],
"fulfillmentText"=>"Error",
"payload" => array(
"items"=>[
array(
"simpleResponse"=>
array(
"textToSpeech"=>"Bad request"
)
)
],
),
));
}
}
function sendMessage($parameters) {
echo json_encode($parameters);
}
$update_response = file_get_contents("php://input");
$update = json_decode($update_response, true);
if (isset($update["queryResult"]["action"])) {
processMessage($update);
$myfile = fopen("newfile.txt", "w") or die("Unable to open file!");
fwrite($myfile, $update["queryResult"]["action"]);
fclose($myfile);
}else{
sendMessage(array(
"source" => $update["responseId"],
"fulfillmentText"=>"Hello from webhook",
"payload" => array(
"items"=>[
array(
"simpleResponse"=>
array(
"textToSpeech"=>"Bad request"
)
)
],
),
));
}
?>