1
1
package io .fullstack .firestack ;
2
2
3
3
import android .content .Context ;
4
+ import android .text .TextUtils ;
4
5
import android .util .Log ;
5
6
import java .util .HashMap ;
6
7
import java .util .List ;
13
14
import com .facebook .react .bridge .ReactContextBaseJavaModule ;
14
15
import com .facebook .react .bridge .ReactMethod ;
15
16
import com .facebook .react .bridge .Callback ;
17
+ import com .facebook .react .bridge .WritableArray ;
16
18
import com .facebook .react .bridge .WritableMap ;
17
19
import com .facebook .react .bridge .ReadableMap ;
18
20
import com .facebook .react .bridge .ReadableMapKeySetIterator ;
@@ -49,29 +51,29 @@ public void setModifiers(final ReadableArray modifiers) {
49
51
mModifiers = modifiers ;
50
52
}
51
53
52
- public void addChildEventListener (final String name , final ReadableArray modifiers ) {
54
+ public void addChildEventListener (final String name , final ReadableArray modifiersArray , final String modifiersString ) {
53
55
final FirestackDBReference self = this ;
54
56
55
57
if (mEventListener == null ) {
56
58
mEventListener = new ChildEventListener () {
57
59
@ Override
58
60
public void onChildAdded (DataSnapshot dataSnapshot , String previousChildName ) {
59
- self .handleDatabaseEvent ("child_added" , mPath , dataSnapshot );
61
+ self .handleDatabaseEvent ("child_added" , mPath , modifiersString , dataSnapshot );
60
62
}
61
63
62
64
@ Override
63
65
public void onChildChanged (DataSnapshot dataSnapshot , String previousChildName ) {
64
- self .handleDatabaseEvent ("child_changed" , mPath , dataSnapshot );
66
+ self .handleDatabaseEvent ("child_changed" , mPath , modifiersString , dataSnapshot );
65
67
}
66
68
67
69
@ Override
68
70
public void onChildRemoved (DataSnapshot dataSnapshot ) {
69
- self .handleDatabaseEvent ("child_removed" , mPath , dataSnapshot );
71
+ self .handleDatabaseEvent ("child_removed" , mPath , modifiersString , dataSnapshot );
70
72
}
71
73
72
74
@ Override
73
75
public void onChildMoved (DataSnapshot dataSnapshot , String previousChildName ) {
74
- self .handleDatabaseEvent ("child_moved" , mPath , dataSnapshot );
76
+ self .handleDatabaseEvent ("child_moved" , mPath , modifiersString , dataSnapshot );
75
77
}
76
78
77
79
@ Override
@@ -81,18 +83,18 @@ public void onCancelled(DatabaseError error) {
81
83
};
82
84
}
83
85
84
- Query ref = this .getDatabaseQueryAtPathAndModifiers (modifiers );
86
+ Query ref = this .getDatabaseQueryAtPathAndModifiers (modifiersArray );
85
87
ref .addChildEventListener (mEventListener );
86
- this .setListeningTo (mPath , name );
88
+ // this.setListeningTo(mPath, modifiersString , name);
87
89
}
88
90
89
- public void addValueEventListener (final String name , final ReadableArray modifiers ) {
91
+ public void addValueEventListener (final String name , final ReadableArray modifiersArray , final String modifiersString ) {
90
92
final FirestackDBReference self = this ;
91
93
92
94
mValueListener = new ValueEventListener () {
93
95
@ Override
94
96
public void onDataChange (DataSnapshot dataSnapshot ) {
95
- self .handleDatabaseEvent ("value" , mPath , dataSnapshot );
97
+ self .handleDatabaseEvent ("value" , mPath , modifiersString , dataSnapshot );
96
98
}
97
99
98
100
@ Override
@@ -101,19 +103,20 @@ public void onCancelled(DatabaseError error) {
101
103
}
102
104
};
103
105
104
- Query ref = this .getDatabaseQueryAtPathAndModifiers (modifiers );
106
+ Query ref = this .getDatabaseQueryAtPathAndModifiers (modifiersArray );
105
107
ref .addValueEventListener (mValueListener );
106
- this .setListeningTo (mPath , "value" );
108
+ // this.setListeningTo(mPath, modifiersString , "value");
107
109
}
108
110
109
- public void addOnceValueEventListener (final ReadableArray modifiers ,
111
+ public void addOnceValueEventListener (final ReadableArray modifiersArray ,
112
+ final String modifiersString ,
110
113
final Callback callback ) {
111
114
final FirestackDBReference self = this ;
112
115
113
116
mOnceValueListener = new ValueEventListener () {
114
117
@ Override
115
118
public void onDataChange (DataSnapshot dataSnapshot ) {
116
- WritableMap data = FirestackUtils .dataSnapshotToMap ("value" , mPath , dataSnapshot );
119
+ WritableMap data = FirestackUtils .dataSnapshotToMap ("value" , mPath , modifiersString , dataSnapshot );
117
120
callback .invoke (null , data );
118
121
}
119
122
@@ -127,31 +130,31 @@ public void onCancelled(DatabaseError error) {
127
130
}
128
131
};
129
132
130
- Query ref = this .getDatabaseQueryAtPathAndModifiers (modifiers );
133
+ Query ref = this .getDatabaseQueryAtPathAndModifiers (modifiersArray );
131
134
ref .addListenerForSingleValueEvent (mOnceValueListener );
132
135
}
133
136
134
- public Boolean isListeningTo (final String path , final String evtName ) {
135
- String key = this .pathListeningKey (path , evtName );
136
- return mListeners .containsKey (key );
137
- }
137
+ // public Boolean isListeningTo(final String path, String modifiersString , final String evtName) {
138
+ // String key = this.pathListeningKey(path, modifiersString , evtName);
139
+ // return mListeners.containsKey(key);
140
+ // }
138
141
139
142
/**
140
143
* Note: these path/eventType listeners only get removed when javascript calls .off() and cleanup is run on the entire path
141
144
*/
142
- public void setListeningTo (final String path , final String evtName ) {
143
- String key = this .pathListeningKey (path , evtName );
144
- mListeners .put (key , true );
145
- }
145
+ // public void setListeningTo(final String path, String modifiersString , final String evtName) {
146
+ // String key = this.pathListeningKey(path, modifiersString , evtName);
147
+ // mListeners.put(key, true);
148
+ // }
146
149
147
- public void notListeningTo (final String path , final String evtName ) {
148
- String key = this .pathListeningKey (path , evtName );
149
- mListeners .remove (key );
150
- }
150
+ // public void notListeningTo(final String path, String modifiersString , final String evtName) {
151
+ // String key = this.pathListeningKey(path, modifiersString , evtName);
152
+ // mListeners.remove(key);
153
+ // }
151
154
152
- private String pathListeningKey (final String path , final String eventName ) {
153
- return "listener/" + path + "/" + eventName ;
154
- }
155
+ // private String pathListeningKey(final String path, String modifiersString , final String eventName) {
156
+ // return "listener/" + path + "/" + modifiersString + "/" + eventName;
157
+ // }
155
158
156
159
public void cleanup () {
157
160
Log .d (TAG , "cleaning up database reference " + this );
@@ -163,10 +166,10 @@ public void removeChildEventListener() {
163
166
if (mEventListener != null ) {
164
167
DatabaseReference ref = this .getDatabaseRef ();
165
168
ref .removeEventListener (mEventListener );
166
- this .notListeningTo (mPath , "child_added" );
167
- this .notListeningTo (mPath , "child_changed" );
168
- this .notListeningTo (mPath , "child_removed" );
169
- this .notListeningTo (mPath , "child_moved" );
169
+ // this.notListeningTo(mPath, "child_added");
170
+ // this.notListeningTo(mPath, "child_changed");
171
+ // this.notListeningTo(mPath, "child_removed");
172
+ // this.notListeningTo(mPath, "child_moved");
170
173
mEventListener = null ;
171
174
}
172
175
}
@@ -175,7 +178,7 @@ public void removeValueEventListener() {
175
178
DatabaseReference ref = this .getDatabaseRef ();
176
179
if (mValueListener != null ) {
177
180
ref .removeEventListener (mValueListener );
178
- this .notListeningTo (mPath , "value" );
181
+ // this.notListeningTo(mPath, "value");
179
182
mValueListener = null ;
180
183
}
181
184
if (mOnceValueListener != null ) {
@@ -184,16 +187,17 @@ public void removeValueEventListener() {
184
187
}
185
188
}
186
189
187
- private void handleDatabaseEvent (final String name , final String path , final DataSnapshot dataSnapshot ) {
188
- if (!FirestackDBReference .this .isListeningTo (path , name )) {
189
- return ;
190
- }
191
- WritableMap data = FirestackUtils .dataSnapshotToMap (name , path , dataSnapshot );
190
+ private void handleDatabaseEvent (final String name , final String path , final String modifiersString , final DataSnapshot dataSnapshot ) {
191
+ // if (!FirestackDBReference.this.isListeningTo(path, modifiersString , name)) {
192
+ // return;
193
+ // }
194
+ WritableMap data = FirestackUtils .dataSnapshotToMap (name , path , modifiersString , dataSnapshot );
192
195
WritableMap evt = Arguments .createMap ();
193
196
evt .putString ("eventName" , name );
194
197
evt .putString ("path" , path );
198
+ evt .putString ("modifiersString" , modifiersString );
195
199
evt .putMap ("body" , data );
196
-
200
+
197
201
FirestackUtils .sendEvent (mReactContext , "database_event" , evt );
198
202
}
199
203
@@ -304,8 +308,12 @@ public String getName() {
304
308
public void enablePersistence (
305
309
final Boolean enable ,
306
310
final Callback callback ) {
307
- FirebaseDatabase .getInstance ()
311
+ try {
312
+ FirebaseDatabase .getInstance ()
308
313
.setPersistenceEnabled (enable );
314
+ } catch (Throwable t ) {
315
+ Log .e (TAG , "FirebaseDatabase setPersistenceEnabled exception" , t );
316
+ }
309
317
310
318
WritableMap res = Arguments .createMap ();
311
319
res .putString ("status" , "success" );
@@ -429,35 +437,37 @@ public void onComplete(DatabaseError error, DatabaseReference ref) {
429
437
430
438
@ ReactMethod
431
439
public void on (final String path ,
432
- final ReadableArray modifiers ,
440
+ final String modifiersString ,
441
+ final ReadableArray modifiersArray ,
433
442
final String name ,
434
443
final Callback callback ) {
435
- FirestackDBReference ref = this .getDBHandle (path );
444
+ FirestackDBReference ref = this .getDBHandle (path , modifiersString );
436
445
437
446
WritableMap resp = Arguments .createMap ();
438
447
439
448
if (name .equals ("value" )) {
440
- ref .addValueEventListener (name , modifiers );
449
+ ref .addValueEventListener (name , modifiersArray , modifiersString );
441
450
} else {
442
- ref .addChildEventListener (name , modifiers );
451
+ ref .addChildEventListener (name , modifiersArray , modifiersString );
443
452
}
444
453
445
- this .saveDBHandle (path , ref );
454
+ this .saveDBHandle (path , modifiersString , ref );
446
455
resp .putString ("result" , "success" );
447
- Log .d (TAG , "Added listener " + name + " for " + ref );
448
-
456
+ Log .d (TAG , "Added listener " + name + " for " + ref + "with modifiers: " + modifiersString );
457
+
449
458
resp .putString ("handle" , path );
450
459
callback .invoke (null , resp );
451
460
}
452
461
453
462
@ ReactMethod
454
463
public void onOnce (final String path ,
455
- final ReadableArray modifiers ,
464
+ final String modifiersString ,
465
+ final ReadableArray modifiersArray ,
456
466
final String name ,
457
467
final Callback callback ) {
458
468
Log .d (TAG , "Setting one-time listener on event: " + name + " for path " + path );
459
- FirestackDBReference ref = this .getDBHandle (path );
460
- ref .addOnceValueEventListener (modifiers , callback );
469
+ FirestackDBReference ref = this .getDBHandle (path , modifiersString );
470
+ ref .addOnceValueEventListener (modifiersArray , modifiersString , callback );
461
471
}
462
472
463
473
/**
@@ -467,9 +477,13 @@ public void onOnce(final String path,
467
477
* off() should therefore clean *everything* up
468
478
*/
469
479
@ ReactMethod
470
- public void off (final String path , @ Deprecated final String name , final Callback callback ) {
471
- this .removeDBHandle (path );
472
- Log .d (TAG , "Removed listener " + path );
480
+ public void off (
481
+ final String path ,
482
+ final String modifiersString ,
483
+ @ Deprecated final String name ,
484
+ final Callback callback ) {
485
+ this .removeDBHandle (path , modifiersString );
486
+ Log .d (TAG , "Removed listener " + path + "/" + modifiersString );
473
487
WritableMap resp = Arguments .createMap ();
474
488
resp .putString ("handle" , path );
475
489
resp .putString ("result" , "success" );
@@ -569,24 +583,31 @@ private void handleCallback(
569
583
}
570
584
}
571
585
572
- private FirestackDBReference getDBHandle (final String path ) {
573
- if (!mDBListeners .containsKey (path )) {
586
+ private FirestackDBReference getDBHandle (final String path , final String modifiersString ) {
587
+ String key = this .getDBListenerKey (path , modifiersString );
588
+ if (!mDBListeners .containsKey (key )) {
574
589
ReactContext ctx = getReactApplicationContext ();
575
- mDBListeners .put (path , new FirestackDBReference (ctx , path ));
590
+ mDBListeners .put (key , new FirestackDBReference (ctx , path ));
576
591
}
577
592
578
- return mDBListeners .get (path );
593
+ return mDBListeners .get (key );
579
594
}
580
595
581
- private void saveDBHandle (final String path , final FirestackDBReference dbRef ) {
582
- mDBListeners .put (path , dbRef );
596
+ private void saveDBHandle (final String path , String modifiersString , final FirestackDBReference dbRef ) {
597
+ String key = this .getDBListenerKey (path , modifiersString );
598
+ mDBListeners .put (key , dbRef );
583
599
}
584
600
585
- private void removeDBHandle (final String path ) {
586
- if (mDBListeners .containsKey (path )) {
587
- FirestackDBReference r = mDBListeners .get (path );
601
+ private String getDBListenerKey (String path , String modifiersString ) {
602
+ return path + " | " + modifiersString ;
603
+ }
604
+
605
+ private void removeDBHandle (final String path , String modifiersString ) {
606
+ String key = this .getDBListenerKey (path , modifiersString );
607
+ if (mDBListeners .containsKey (key )) {
608
+ FirestackDBReference r = mDBListeners .get (key );
588
609
r .cleanup ();
589
- mDBListeners .remove (path );
610
+ mDBListeners .remove (key );
590
611
}
591
612
}
592
613
@@ -600,73 +621,10 @@ private DatabaseReference getDatabaseReferenceAtPath(final String path) {
600
621
return mDatabase ;
601
622
}
602
623
603
- private Query getDatabaseQueryAtPathAndModifiers (
604
- final String path ,
605
- final ReadableArray modifiers ) {
606
- DatabaseReference ref = this .getDatabaseReferenceAtPath (path );
607
-
608
- List <Object > strModifiers = FirestackUtils .recursivelyDeconstructReadableArray (modifiers );
609
- ListIterator <Object > it = strModifiers .listIterator ();
610
- Query query = ref .orderByKey ();
611
-
612
- while (it .hasNext ()) {
613
- String str = (String ) it .next ();
614
- String [] strArr = str .split (":" );
615
- String methStr = strArr [0 ];
616
-
617
- if (methStr .equalsIgnoreCase ("orderByKey" )) {
618
- query = ref .orderByKey ();
619
- } else if (methStr .equalsIgnoreCase ("orderByValue" )) {
620
- query = ref .orderByValue ();
621
- } else if (methStr .equalsIgnoreCase ("orderByPriority" )) {
622
- query = ref .orderByPriority ();
623
- } else if (methStr .contains ("orderByChild" )) {
624
- String key = strArr [1 ];
625
- Log .d (TAG , "orderByChild: " + key );
626
- query = ref .orderByChild (key );
627
- } else if (methStr .contains ("limitToLast" )) {
628
- String key = strArr [1 ];
629
- int limit = Integer .parseInt (key );
630
- Log .d (TAG , "limitToLast: " + limit );
631
- query = query .limitToLast (limit );
632
- } else if (methStr .contains ("limitToFirst" )) {
633
- String key = strArr [1 ];
634
- int limit = Integer .parseInt (key );
635
- Log .d (TAG , "limitToFirst: " + limit );
636
- query = query .limitToFirst (limit );
637
- } else if (methStr .contains ("equalTo" )) {
638
- String value = strArr [1 ];
639
- String key = strArr .length >= 3 ? strArr [2 ] : null ;
640
- if (key == null ) {
641
- query = query .equalTo (value );
642
- } else {
643
- query = query .equalTo (value , key );
644
- }
645
- } else if (methStr .contains ("endAt" )) {
646
- String value = strArr [1 ];
647
- String key = strArr .length >= 3 ? strArr [2 ] : null ;
648
- if (key == null ) {
649
- query = query .endAt (value );
650
- } else {
651
- query = query .endAt (value , key );
652
- }
653
- } else if (methStr .contains ("startAt" )) {
654
- String value = strArr [1 ];
655
- String key = strArr .length >= 3 ? strArr [2 ] : null ;
656
- if (key == null ) {
657
- query = query .startAt (value );
658
- } else {
659
- query = query .startAt (value , key );
660
- }
661
- }
662
- }
663
-
664
- return query ;
665
- }
666
624
667
- private WritableMap dataSnapshotToMap (String name , String path , DataSnapshot dataSnapshot ) {
668
- return FirestackUtils .dataSnapshotToMap (name , path , dataSnapshot );
669
- }
625
+ // private WritableMap dataSnapshotToMap(String name, String path, DataSnapshot dataSnapshot) {
626
+ // return FirestackUtils.dataSnapshotToMap(name, path, dataSnapshot);
627
+ // }
670
628
671
629
private <Any > Any castSnapshotValue (DataSnapshot snapshot ) {
672
630
if (snapshot .hasChildren ()) {
0 commit comments