1
1
//
2
2
// PushHandlerActivity.java
3
3
//
4
- // Pushwoosh Push Notifications SDK
5
- // www.pushwoosh.com
6
- //
7
- // MIT Licensed
8
4
9
5
package com .plugin .GCM ;
10
6
7
+ import java .io .FileOutputStream ;
11
8
import java .util .Iterator ;
12
9
13
10
import org .json .JSONArray ;
18
15
import android .app .NotificationManager ;
19
16
import android .content .Context ;
20
17
import android .content .Intent ;
18
+ import android .content .pm .PackageManager ;
21
19
import android .os .Bundle ;
22
20
import android .util .Log ;
23
21
24
22
public class PushHandlerActivity extends Activity
25
23
{
26
24
public static final int NOTIFICATION_ID = 237 ;
25
+ public static boolean EXITED = false ;
27
26
27
+ // this activity will be started if the user touches a notification that we own. If returning from the background,
28
+ // we process it immediately. If from a cold start, we cache the payload and start the main activity which will then process the cached payload.
28
29
@ Override
29
30
public void onCreate (Bundle savedInstanceState )
30
31
{
32
+ Log .v ("onCreate:" , "entry" );
33
+
31
34
super .onCreate (savedInstanceState );
32
- handlePush ();
33
- }
34
35
35
- private void handlePush ()
36
- {
37
- // If we are here, it is because we were launched via a notification. It is up to the author to decide what to do with it.
38
- // You may simply ignore it since the notification already fired in the background. Either way, the background flag
39
- // will let you know what the state was when the notification fired.
40
- Bundle extras = this .getIntent ().getExtras ();
36
+ Bundle extras = getIntent ().getExtras ();
41
37
if (extras != null )
42
38
{
43
39
Bundle originalExtras = extras .getBundle ("pushBundle" );
44
40
if (originalExtras != null )
45
- PushHandlerActivity .sendToApp (originalExtras );
46
- }
47
- finish ();
41
+ {
42
+ if (EXITED )
43
+ {
44
+ PackageManager pm = getPackageManager ();
45
+ Intent launchIntent = pm .getLaunchIntentForPackage (getApplicationContext ().getPackageName ());
46
+
47
+ // remember how we got here
48
+ originalExtras .putBoolean ("coldstart" , true );
49
+
50
+ // serialize and cache the payload before starting the main activity.
51
+ String json = extrasToJSON (originalExtras ).toString ();
52
+ try
53
+ {
54
+ FileOutputStream fos = openFileOutput ("cached_payload" , Context .MODE_PRIVATE );
55
+ fos .write (json .getBytes ());
56
+ fos .close ();
57
+ }
58
+ catch (Exception e )
59
+ {
60
+ e .printStackTrace ();
61
+ }
48
62
49
- // Now that we've processed the notification, remove it from the tray
50
- CharSequence appName = this .getPackageManager ().getApplicationLabel (this .getApplicationInfo ());
51
- if (null == appName )
52
- appName = "" ;
63
+ // now fire up our main activity
64
+ startActivity (launchIntent );
65
+ }
66
+ else
67
+ {
68
+ // our main activity was already running (in the background), process the payload
69
+ sendToApp (originalExtras );
70
+ }
71
+
72
+ // Now that we've processed the notification, remove it from the tray
73
+ CharSequence appName = this .getPackageManager ().getApplicationLabel (this .getApplicationInfo ());
74
+ if (null == (String )appName )
75
+ appName = "" ;
53
76
54
- NotificationManager mNotificationManager = (NotificationManager ) getSystemService (Context .NOTIFICATION_SERVICE );
55
- // use a combo of appName and id to insure uniqueness since this plugin may be running
56
- // in multiple apps on a particular device.
57
- mNotificationManager .cancel ((String ) appName , NOTIFICATION_ID );
58
- }
77
+ NotificationManager mNotificationManager = (NotificationManager ) getSystemService (Context .NOTIFICATION_SERVICE );
78
+ mNotificationManager .cancel ((String ) appName , NOTIFICATION_ID );
79
+ }
80
+ }
81
+
82
+ finish ();
83
+ }
59
84
85
+ // surface the notification up to the JS layer
60
86
public static void sendToApp (Bundle extras )
87
+ {
88
+ JSONObject json = extrasToJSON (extras );
89
+
90
+ PushPlugin .sendJavascript ( json );
91
+ }
92
+
93
+ // serialize the bundle for caching or JS processing
94
+ private static JSONObject extrasToJSON (Bundle extras )
61
95
{
62
96
try
63
97
{
@@ -80,6 +114,10 @@ else if (key.equals("foreground"))
80
114
{
81
115
json .put (key , extras .getBoolean ("foreground" ));
82
116
}
117
+ else if (key .equals ("coldstart" ))
118
+ {
119
+ json .put (key , extras .getBoolean ("coldstart" ));
120
+ }
83
121
else
84
122
{
85
123
// Maintain backwards compatibility
@@ -122,15 +160,15 @@ else if (value.startsWith("["))
122
160
} // while
123
161
json .put ("payload" , jsondata );
124
162
125
- Log .v ("sendToApp :" , json .toString ());
163
+ Log .v ("extrasToJSON :" , json .toString ());
126
164
127
- PushPlugin .sendJavascript ( json );
128
- // Send the MESSAGE to the Javascript application
165
+ return json ;
129
166
}
130
167
catch ( JSONException e )
131
168
{
132
- Log .e ("sendToApp :" , "JSON exception" );
169
+ Log .e ("extrasToJSON :" , "JSON exception" );
133
170
}
171
+ return null ;
134
172
}
135
173
136
174
@ Override
0 commit comments