-
Notifications
You must be signed in to change notification settings - Fork 0
/
rss.php
155 lines (118 loc) · 4.44 KB
/
rss.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
#!/usr/bin/php
<?php
require('phpagi.php');
$agi = new AGI();
$agi->answer();
function sendMessageToUsername($username, $message) {
global $agi;
$botToken = '6683963944:AAGLXvJPU2Qj307AIvy9ifNviIQsTHcQ-vQ';
$apiUrl = "https://api.telegram.org/bot{$botToken}/getUpdates";
$updates = json_decode(file_get_contents($apiUrl), true);
$chatId = null;
foreach ($updates['result'] as $update) {
$user = $update['message']['chat'];
if (isset($user['username']) && $user['username'] === $username) {
$chatId = $user['id'];
// break;
}
}
if ($chatId === null) {
$$agi->stream_file('/root/aluno/telegram/audios/nao');
} else {
$sendMessageUrl = "https://api.telegram.org/bot{$botToken}/sendMessage";
$data = array(
'chat_id' => $chatId,
'text' => $message,
);
$options = array(
'http' => array(
'method' => 'POST',
'content' => json_encode($data),
'header' => "Content-Type: application/json\n",
),
);
$context = stream_context_create($options);
$result = file_get_contents($sendMessageUrl, false, $context);
if ($result === FALSE) {
$agi->verbose('Erro ao enviar a mensagem.');
$agi->stream_file('/root/aluno/telegram/audios/pro');
} else {
$agi->stream_file('/root/aluno/telegram/audios/enviada');
$agi->verbose('Mensagem enviada com sucesso.');
}
}
}
function removerCaracteresEspeciais($str) {
// Substitui todos os caracteres especiais por uma string vazia
$strSemEspeciais = preg_replace('/[^\p{L}\p{N}\s]/u', '', $str);
return $strSemEspeciais;
}
function mostrarTitulosNoticias($rssLink) {
global $agi;
$rss = simplexml_load_file($rssLink);
if ($rss === false) {
$agi->verbose('Erro ao carregar o RSS.');
return array();
}
$count = min(count($rss->channel->item), 5);
for ($i = 0; $i < $count; $i++) {
$titulo = $rss->channel->item[$i]->title;
$n = $i + 1;
$agi->say_digits($n);
$string = removerCaracteresEspeciais((string) $titulo);
$agi->verbose(gettype($string));
exec('espeak --clearcache');
$agi->exec('espeak', "\"$string\"", 'any');
sleep(1);
$agi->verbose("$n - $titulo");
}
return $rss->channel->item;
}
function obterLinkNoticia($noticias, $indice) {
return $noticias[$indice]->link;
}
$links = array(
'https://g1.globo.com/dynamo/educacao/rss2.xml',
'https://g1.globo.com/dynamo/politica/mensalao/rss2.xml',
'https://g1.globo.com/dynamo/tecnologia/rss2.xml',
'https://g1.globo.com/dynamo/rn/rio-grande-do-norte/rss2.xml'
);
function menu1($links){
global $agi;
do {
$agi->stream_file('/root/aluno/telegram/audios/inic');
$resultado = $agi->get_data('beep', 5000, 1);
$escolha = intval($resultado['result']);
$agi->verbose("Escolha 1: $escolha");
} while ($escolha < 1 || $escolha > count($links));
$linkEscolhido = $links[$escolha - 1];
return $linkEscolhido;
};
$escolhaNoticia = 0;
while ($escolhaNoticia != 9) {
do {
if ($escolhaNoticia == 0) {
$linkEscolhido = menu1($links);
}
$agi->stream_file('/root/aluno/telegram/audios/notitele');
$agi->stream_file('/root/aluno/telegram/audios/voltar');
$noticias = mostrarTitulosNoticias($linkEscolhido);
$resultado = $agi->get_data('beep', 5000, 1);
$escolhaNoticia = intval($resultado['result']);
$agi->verbose("Escolha 2: $escolhaNoticia");
} while ($escolhaNoticia < 1 || $escolhaNoticia > count($noticias));
$linkNoticiaEscolhida = (string) obterLinkNoticia($noticias, $escolhaNoticia - 1);
$tituloNoticia = (string) $noticias[$escolhaNoticia - 1]->title;
$username = $agi->get_variable('username');
$user = $username['data'];
$agi->verbose((string) $linkNoticiaEscolhida);
$agi->verbose((string) $tituloNoticia);
$agi->verbose((string) $user);
$message = "Olá! Eu sou o seu bot de notícias.\n\nAqui está a notícia escolhida\n\n$tituloNoticia\n\n $linkNoticiaEscolhida ";
$agi->verbose($message);
sendMessageToUsername($user, $message);
//$agi->stream_file('/root/aluno/telegram/audios/enviada');
}
$agi->stream_file('/root/aluno/telegram/audios/fim');
$agi->hangup();
?>