-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
89 lines (65 loc) · 2.16 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
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Push Notification</title>
</head>
<form action="" method="POST">
<table>
<tr>
<td>Token</td><td><input type="text" name="token" size="100" /></td>
</tr>
<tr>
<td>Nazwa certyfikatu:</td><td><input type="text" name="nazwaCertyfikatu" size="15" /></td>
</tr>
<tr>
<td>Hasło certyfikatu:</td><td><input type="text" name="hasloCertyfikatu" size="15" /></td>
</tr>
<tr>
<td>Wiadomość:</td><td><input type="text" name="wiadomosc" size="100" /></td></tr>
<tr>
<td></td>
<td><input type="submit" value="Wyślij" /></td></tr>
</table>
</form>
<body>
</body>
</html>
<?php
if ((isset($_POST["token"]) && !empty($_POST["token"]))
&& (isset($_POST["wiadomosc"]) && !empty($_POST["wiadomosc"]))) {
$token = $_POST["token"];
$wiadomosc = $_POST["wiadomosc"];
$hasloCertyfikatu = $_POST["hasloCertyfikatu"];
$nazwaCertyfikatu = $_POST["nazwaCertyfikatu"];
$scc = stream_context_create();
stream_context_set_option($scc, 'ssl', 'local_cert', $nazwaCertyfikatu);
stream_context_set_option($scc, 'ssl', 'passphrase', $hasloCertyfikatu);
// Otwieramy połączenie do serwera APNS (wersja dla developerów, wersja produkcyjna -> gateway.push.apple.com:2195)
$apns = stream_socket_client(
'ssl://gateway.sandbox.push.apple.com:2195', $error,
$errorstr, 60, STREAM_CLIENT_CONNECT|STREAM_CLIENT_PERSISTENT, $scc);
if (!$apns)
exit("Błąd połączenia: $error $errorstr" . PHP_EOL);
echo 'Połączono do APNS >>> ' . PHP_EOL;
// rodzaj notyfikacji
$body['aps'] = array(
'alert' => $wiadomosc,
'sound' => 'default'
);
// kodowanie JSON
$payload = json_encode($body);
// binarnie
$msg = chr(0) . pack('n', 32) . pack('H*', $token) . pack('n', strlen($payload)) . $payload;
// wyślij do serwera
$result = fwrite($apns, $msg, strlen($msg));
if (!$result)
echo 'Wiadomość nie dostarczona...' . PHP_EOL;
else
echo 'Wiadomość dostarczono' . PHP_EOL;
// zamknij połaczenie z serwerem
fclose($apns);
} else {
echo 'Wypełnij wszystkie pola!';
}
?>