RxJava wrapper on Google's Firebase for Android library.
Library provides set of static methods of classes:
- RxFirebaseAuth
- RxFirebaseUser
- RxFirebaseDatabase
- RxFirebaseStorage
Sign in anonymously and get token:
RxFirebaseAuth.signInAnonymously(FirebaseAuth.getInstance())
.flatMap(x -> RxFirebaseUser.getToken(FirebaseAuth.getInstance().getCurrentUser(), false))
.subscribe(token -> {
Log.i("RxFirebaseSample", "user token: " + token.getToken());
}, throwable -> {
Log.e("RxFirebaseSample", throwable.toString());
});
You can query single value like:
RxFirebaseDatabase.observeSingleValue(reference.child("users").child("nick"), User.class)
.subscribe(user -> {
userTextView.setText(user.toString());
}, throwable -> {
Log.e("RxFirebaseSample", throwable.toString());
});
or the list of values:
RxFirebaseDatabase.observeValuesList(reference.child("posts"), BlogPost.class)
.subscribe(blogPosts -> {
postsTextView.setText(blogPosts.toString());
}, throwable -> {
Log.e("RxFirebaseSample", throwable.toString());
});
Download file from Firebase storage
StorageReference storageRef = FirebaseStorage.getInstance().getReferenceFromUrl("gs://project-1125675579821020265.appspot.com");
RxFirebaseStorage.getFile(storageRef.child("README.md"), targetFile)
.subscribe(snapshot -> {
Log.i("RxFirebaseSample", "transferred: " + snapshot.getBytesTransferred() + " bytes");
}, throwable -> {
Log.e("RxFirebaseSample", throwable.toString());
});
or download file as bytes array
RxFirebaseStorage.getBytes(storageRef.child("README.md"), 1024 * 100)
.subscribe(bytes -> {
Log.i("RxFirebaseSample", "downloaded: " + new String(bytes));
}, throwable -> {
Log.e("RxFirebaseSample", throwable.toString());
});
dependencies {
compile 'com.google.firebase:firebase-auth:9.0.0'
compile 'com.google.firebase:firebase-database:9.0.0'
compile 'com.google.firebase:firebase-storage:9.0.0'
compile 'com.kelvinapps:rxfirebase:0.0.10'
}
<dependency>
<groupId>com.kelvinapps</groupId>
<artifactId>rxfirebase</artifactId>
<version>0.0.10</version>
<type>pom</type>
</dependency>
Copyright 2016 Nickolay Moskalenko
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.