-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathMobilePush.php
More file actions
413 lines (354 loc) · 15 KB
/
MobilePush.php
File metadata and controls
413 lines (354 loc) · 15 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
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
<?php
// phpcs:disable PSR1.Files.SideEffects.FoundWithSymbols
namespace PubNub\Examples;
// Include Composer autoloader
require_once __DIR__ . '/../vendor/autoload.php';
use PubNub\PNConfiguration;
use PubNub\PubNub;
use PubNub\Enums\PNPushType;
use PubNub\Exceptions\PubNubServerException;
use PubNub\Exceptions\PubNubException;
use PubNub\Exceptions\PubNubValidationException;
use Exception;
// Demo configuration and sample data
class MobilePushDemo
{
private $pubnub;
private $sampleChannels;
private $sampleDevices;
public function __construct()
{
$this->initializePubNub();
$this->initializeSampleData();
}
private function initializePubNub()
{
// snippet.setup
echo "🚀 Initializing PubNub Mobile Push Demo...\n";
echo "================================================\n\n";
$pnConfig = new PNConfiguration();
$pnConfig->setSubscribeKey(getenv('SUBSCRIBE_KEY') ?: 'demo');
$pnConfig->setPublishKey(getenv('PUBLISH_KEY') ?: 'demo');
$pnConfig->setUserId('php-mobile-push-demo-' . time());
$this->pubnub = new PubNub($pnConfig);
echo "✅ PubNub configured with demo keys\n";
echo "📱 User ID: " . $pnConfig->getUserId() . "\n\n";
// snippet.end
}
private function initializeSampleData()
{
// snippet.sample_data
$this->sampleChannels = [
'news-channel-' . time(),
'alerts-channel-' . time(),
'promotions-channel-' . time(),
'updates-channel-' . time()
];
$this->sampleDevices = [
'fcm' => [
'deviceId' => 'fcm-device-token-' . uniqid(),
'pushType' => PNPushType::FCM,
'name' => 'Android Device (FCM)'
],
'apns2_dev' => [
'deviceId' => 'apns2-dev-token-' . uniqid(),
'pushType' => PNPushType::APNS2,
'environment' => 'development',
'topic' => 'com.example.myapp',
'name' => 'iOS Device (APNS2 - Development)'
],
'apns2_prod' => [
'deviceId' => 'apns2-prod-token-' . uniqid(),
'pushType' => PNPushType::APNS2,
'environment' => 'production',
'topic' => 'com.example.myapp',
'name' => 'iOS Device (APNS2 - Production)'
]
];
// snippet.end
echo "📋 Sample data initialized:\n";
echo " Channels: " . implode(', ', $this->sampleChannels) . "\n";
echo " Devices: " . count($this->sampleDevices) . " sample devices\n\n";
}
public function runFullDemo()
{
echo "🎯 Starting comprehensive Mobile Push demo...\n";
echo "==============================================\n\n";
// Test all features for each device type
foreach ($this->sampleDevices as $deviceKey => $device) {
$this->runDeviceDemo($deviceKey, $device);
echo "\n" . str_repeat("-", 60) . "\n\n";
}
echo "✨ Mobile Push demo completed successfully!\n";
}
private function runDeviceDemo($deviceKey, $device)
{
echo "📱 Testing {$device['name']}\n";
echo " Device ID: {$device['deviceId']}\n";
echo " Push Type: {$device['pushType']}\n";
if (isset($device['environment'])) {
echo " Environment: {$device['environment']}\n";
}
if (isset($device['topic'])) {
echo " Topic: {$device['topic']}\n";
}
echo "\n";
// 1. Add device to channels
$this->demonstrateAddDeviceToChannels($device);
// 2. List channels for device
$this->demonstrateListChannelsForDevice($device);
// 3. Remove device from some channels
$this->demonstrateRemoveDeviceFromChannels($device);
// 4. List channels again to verify removal
$this->demonstrateListChannelsForDevice($device, "After Removal");
// 5. Remove all channels from device
$this->demonstrateRemoveAllChannelsFromDevice($device);
// 6. Final verification
$this->demonstrateListChannelsForDevice($device, "Final Verification");
}
private function demonstrateAddDeviceToChannels($device)
{
echo "1️⃣ Adding device to channels...\n";
try {
if ($device['pushType'] === PNPushType::FCM) {
// snippet.add_device_to_channel_fcm
$result = $this->pubnub->addChannelsToPush()
->pushType(PNPushType::FCM)
->channels($this->sampleChannels)
->deviceId($device['deviceId'])
->sync();
// snippet.end
} elseif ($device['pushType'] === PNPushType::APNS2) {
// snippet.add_device_to_channel_apns2
$result = $this->pubnub->addChannelsToPush()
->pushType(PNPushType::APNS2)
->channels($this->sampleChannels)
->deviceId($device['deviceId'])
->environment($device['environment'])
->topic($device['topic'])
->sync();
// snippet.end
}
echo " ✅ Successfully added device to " . count($this->sampleChannels) . " channels\n";
echo " 📋 Channels: " . implode(', ', $this->sampleChannels) . "\n\n";
} catch (PubNubServerException $e) {
echo " ❌ Server Error: " . $e->getMessage() . "\n";
echo " 🔍 Status Code: " . $e->getStatusCode() . "\n\n";
} catch (PubNubException $e) {
echo " ❌ PubNub Error: " . $e->getMessage() . "\n\n";
} catch (Exception $e) {
echo " ❌ General Error: " . $e->getMessage() . "\n\n";
}
}
private function demonstrateListChannelsForDevice($device, $context = "")
{
$title = $context ? "2️⃣ Listing channels for device ($context)..." : "2️⃣ Listing channels for device...";
echo "$title\n";
try {
if ($device['pushType'] === PNPushType::FCM) {
// snippet.list_channels_fcm
$result = $this->pubnub->listPushProvisions()
->pushType(PNPushType::FCM)
->deviceId($device['deviceId'])
->sync();
// snippet.end
} elseif ($device['pushType'] === PNPushType::APNS2) {
// snippet.list_channels_apns2
$result = $this->pubnub->listPushProvisions()
->pushType(PNPushType::APNS2)
->deviceId($device['deviceId'])
->environment($device['environment'])
->topic($device['topic'])
->sync();
// snippet.end
}
$channels = $result->getChannels();
if (!empty($channels)) {
echo " ✅ Device is registered for " . count($channels) . " channels:\n";
foreach ($channels as $channel) {
echo " • $channel\n";
}
} else {
echo " 📝 No channels found for this device\n";
}
echo "\n";
} catch (PubNubServerException $e) {
echo " ❌ Server Error: " . $e->getMessage() . "\n";
echo " 🔍 Status Code: " . $e->getStatusCode() . "\n\n";
} catch (PubNubException $e) {
echo " ❌ PubNub Error: " . $e->getMessage() . "\n\n";
} catch (Exception $e) {
echo " ❌ General Error: " . $e->getMessage() . "\n\n";
}
}
private function demonstrateRemoveDeviceFromChannels($device)
{
echo "3️⃣ Removing device from specific channels...\n";
// Remove from first 2 channels only
$channelsToRemove = array_slice($this->sampleChannels, 0, 2);
try {
if ($device['pushType'] === PNPushType::FCM) {
// snippet.remove_device_from_channels_fcm
$result = $this->pubnub->removeChannelsFromPush()
->pushType(PNPushType::FCM)
->channels($channelsToRemove)
->deviceId($device['deviceId'])
->sync();
// snippet.end
} elseif ($device['pushType'] === PNPushType::APNS2) {
// snippet.remove_device_from_channels_apns2
$result = $this->pubnub->removeChannelsFromPush()
->pushType(PNPushType::APNS2)
->channels($channelsToRemove)
->deviceId($device['deviceId'])
->environment($device['environment'])
->topic($device['topic'])
->sync();
// snippet.end
}
echo " ✅ Successfully removed device from " . count($channelsToRemove) . " channels\n";
echo " 📋 Removed from: " . implode(', ', $channelsToRemove) . "\n\n";
} catch (PubNubServerException $e) {
echo " ❌ Server Error: " . $e->getMessage() . "\n";
echo " 🔍 Status Code: " . $e->getStatusCode() . "\n\n";
} catch (PubNubException $e) {
echo " ❌ PubNub Error: " . $e->getMessage() . "\n\n";
} catch (Exception $e) {
echo " ❌ General Error: " . $e->getMessage() . "\n\n";
}
}
private function demonstrateRemoveAllChannelsFromDevice($device)
{
echo "4️⃣ Removing all push channels from device...\n";
try {
if ($device['pushType'] === PNPushType::FCM) {
// snippet.remove_all_channels_fcm
$result = $this->pubnub->removeAllPushChannelsForDevice()
->pushType(PNPushType::FCM)
->deviceId($device['deviceId'])
->sync();
// snippet.end
} elseif ($device['pushType'] === PNPushType::APNS2) {
// snippet.remove_all_channels_apns2
$result = $this->pubnub->removeAllPushChannelsForDevice()
->pushType(PNPushType::APNS2)
->deviceId($device['deviceId'])
->sync();
// snippet.end
// snippet.remove_all_channels_response_check
$response = $this->pubnub->removeAllPushChannelsForDevice()
->pushType(PNPushType::APNS2)
->deviceId("yourDeviceId")
->sync();
if ($response->isSuccessful()) {
echo "Successfully removed all push channels from device.";
} else {
echo "Failed to remove push channels.";
}
// snippet.end
}
echo " ✅ Successfully removed all push channels from device\n\n";
} catch (PubNubServerException $e) {
echo " ❌ Server Error: " . $e->getMessage() . "\n";
echo " 🔍 Status Code: " . $e->getStatusCode() . "\n\n";
} catch (PubNubException $e) {
echo " ❌ PubNub Error: " . $e->getMessage() . "\n\n";
} catch (Exception $e) {
echo " ❌ General Error: " . $e->getMessage() . "\n\n";
}
}
public function demonstrateAdvancedFeatures()
{
echo "🔧 Advanced Mobile Push Features Demo\n";
echo "====================================\n\n";
// Demonstrate error handling scenarios
$this->demonstrateErrorHandling();
// Demonstrate bulk operations
$this->demonstrateBulkOperations();
}
private function demonstrateErrorHandling()
{
echo "🛠️ Error Handling Scenarios:\n\n";
// Test with invalid push type
echo "📋 Testing invalid device ID...\n";
try {
$result = $this->pubnub->addChannelsToPush()
->pushType(PNPushType::FCM)
->channels(['test-channel'])
->deviceId('') // Empty device ID
->sync();
} catch (PubNubValidationException $e) {
echo " ✅ Correctly caught error: " . $e->getMessage() . "\n\n";
}
// Test with invalid channels
echo "📋 Testing with empty channels array...\n";
try {
$result = $this->pubnub->addChannelsToPush()
->pushType(PNPushType::FCM)
->channels([]) // Empty channels
->deviceId('test-device-id')
->sync();
} catch (PubNubValidationException $e) {
echo " ✅ Correctly caught error: " . $e->getMessage() . "\n\n";
}
}
private function demonstrateBulkOperations()
{
echo "📦 Bulk Operations Demo:\n\n";
$bulkChannels = [
'bulk-news-' . time(),
'bulk-sports-' . time(),
'bulk-weather-' . time(),
'bulk-traffic-' . time(),
'bulk-entertainment-' . time()
];
$bulkDevice = [
'deviceId' => 'bulk-demo-device-' . uniqid(),
'pushType' => PNPushType::FCM,
'name' => 'Bulk Demo Device'
];
echo "📱 Adding device to " . count($bulkChannels) . " channels at once...\n";
try {
$result = $this->pubnub->addChannelsToPush()
->pushType($bulkDevice['pushType'])
->channels($bulkChannels)
->deviceId($bulkDevice['deviceId'])
->sync();
echo " ✅ Successfully added to all channels\n";
// Verify the addition
$listResult = $this->pubnub->listPushProvisions()
->pushType($bulkDevice['pushType'])
->deviceId($bulkDevice['deviceId'])
->sync();
$registeredChannels = $listResult->getChannels();
echo " 📋 Verified: Device registered for " . count($registeredChannels) . " channels\n";
// Clean up - remove all
$this->pubnub->removeAllPushChannelsForDevice()
->pushType($bulkDevice['pushType'])
->deviceId($bulkDevice['deviceId'])
->sync();
echo " 🧹 Cleaned up: Removed all channels\n\n";
} catch (Exception $e) {
echo " ❌ Error in bulk operations: " . $e->getMessage() . "\n\n";
}
}
}
// Main execution
if (php_sapi_name() === 'cli') {
try {
$demo = new MobilePushDemo();
// Run the comprehensive demo
$demo->runFullDemo();
// Run advanced features demo
$demo->demonstrateAdvancedFeatures();
echo "🎉 All Mobile Push demos completed successfully!\n";
echo "📚 Refer to PubNub docs: https://www.pubnub.com/docs/sdks/php/api-reference/mobile-push\n";
} catch (Exception $e) {
echo "💥 Fatal Error: " . $e->getMessage() . "\n";
echo "Stack trace:\n" . $e->getTraceAsString() . "\n";
exit(1);
}
} else {
echo "⚠️ This demo is designed to run from the command line.\n";
echo "Usage: php " . basename(__FILE__) . "\n";
}