-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
31 lines (31 loc) · 1.28 KB
/
index.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
<?php
date_default_timezone_set('Europe/Madrid');
define("BOT_ID", "");
include("functions.php");
$result = file_get_contents("php://input");
if ($result){
$update = json_decode($result, true);
if (!empty($update)){
if ($update["message"]["chat"]["type"]=="group"){ //GROUP
$group_id = $update["message"]["chat"]["id"];
$message_id = $update["message"]["message_id"];
$text = $update["message"]["text"];
checkMessage($text,$group_id,$message_id);
}else if ($update["message"]["chat"]["type"]=="supergroup"){ //SUPERGROUP/CHANNEL
$group_id = $update["message"]["chat"]["id"];
$message_id = $update["message"]["message_id"];
$text = $update["message"]["text"];
checkMessage($text,$group_id,$message_id);
}else if ($update["message"]["chat"]["type"]=="private"){ //CHAT
$now = strtotime("now");
$chat_id = $update["message"]["chat"]["id"];
$message_id = $update["message"]["message_id"];
$text = $update["message"]["text"];
sendMessage("Este bot sirve para borrar los mensajes (EN GRUPOS, requiere permisos de borrado de texto) que se generan automáticamente al compartir algún vídeo o foto desde Whatsapp",$chat_id);
}else if ($update["channel_post"]){ //CHANNEL
$channel_id = $update["channel_post"]["chat"]["id"];
leaveChat($channel_id);
}
}
}
?>