This repository has been archived by the owner on Feb 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.php
71 lines (66 loc) · 1.85 KB
/
functions.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
<?php
/**
* functions.php
*
* Funktionen für den pr0gramm Invitebenis Bot
*/
/**
* Funktion zum Senden von Nachrichten an einen Telegram Client.
*
* @param string Der zu sendende Text
* @param string Die Chat-ID an die der Text gesendet werden soll
* @param boolean Wenn die Benachrichtigung des Clients nicht erfolgen soll, dann TRUE.
*
* @return boolean Bei Erfolg TRUE, im Fehlerfall FALSE.
*/
function SendMessageToTelegram($text = NULL, $chat_id = NULL, $disableNotification = FALSE) {
if($text == NULL OR $chat_id == NULL) {
return FALSE;
}
global $apiToken;
global $bindTo;
global $telegamUseragent;
$postdata = array(
'chat_id' => $chat_id,
'text' => $text,
'parse_mode' => 'Markdown',
'disable_notification' => $disableNotification,
'disable_web_page_preview' => TRUE
);
$data = http_build_query($postdata);
$ch = curl_init();
curl_setopt_array($ch, array(
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_URL => 'https://api.telegram.org/bot'.$apiToken.'/sendMessage',
CURLOPT_USERAGENT => $telegamUseragent,
CURLOPT_INTERFACE => $bindTo,
CURLOPT_POST => 1,
CURLOPT_CONNECTTIMEOUT => 5,
CURLOPT_TIMEOUT => 10,
CURLOPT_POSTFIELDS => $data
));
$response = curl_exec($ch);
$errno = curl_errno($ch);
$errstr = curl_error($ch);
if($errno != 0) {
return FALSE;
}
$http_code = curl_getinfo($ch, CURLINFO_RESPONSE_CODE);
if($http_code != 200) {
return FALSE;
}
curl_close($ch);
return TRUE;
}
/**
* Funktion um Usernamen von pr0gramm.com zu validieren
*
* @param string Der zu prüfende Username.
*
* @return string/boolean Bei Erfolg wird der validierte Username zurückgegeben, bei Misserfolg FALSE.
*/
function validUsername($username) {
$regex = '/^[a-zA-Z0-9-_]{2,32}$/i';
return (preg_match($regex, trim($username), $matches) === 1) ? $matches[0] : FALSE;
}
?>