Skip to content

A light weight messaging framework for Firestore and Firebase Realtime

License

Notifications You must be signed in to change notification settings

gavelez/firestream-android

 
 

Repository files navigation

Firestream Beta

A lightweight Firebase messaging library from Chat SDK

Features

  1. 1-to-1 Messaging
  2. Group chat, roles, moderation
  3. Android, iOS, Web and Node.js
  4. Fully customisable messages
  5. Typing Indicator
  6. Delivery receipts
  7. User blocking
  8. Presence
  9. Message history (optional)
  10. Firestore or Realtime database

FireStream supports both Firestore and the Realtime database. You pay the hosting cost directly to Firebase and have sole access to your data.

There are many chat systems available, here are the benefits of FireStream:

  1. Open Souce - you can review, fork, optimize and audit the code
  2. Transparent - all the "server" code is included in the client
  3. Full Control - you control the source, you have sole access to the data
  4. Powered by Firebase - for a managed solution, it's the best

Firebase benefits:

  1. Low cost, excellent performance and reliability
  2. Reasonable data usage policy
  3. Google isn't going out of business any time soon
  4. You have full control over YOUR users' data

Community

You can also help us by:

  • Providing feedback and feature requests
  • Reporting bugs
  • Fixing bugs
  • Writing documentation

Email us at: team@sdk.chat

We also offer development services we are a team of full stack developers who are Firebase experts. For more information check out our consulting site.

Setup

Dependencies

Add the following to your project level build.gradle file:

allprojects {
    repositories {
        ...
        maven { url "http://dl.bintray.com/chat-sdk/chat-sdk-android" }
    }
}

Add the following to your app-level build.gradle file:

Enable Java 8:

android {
    ...
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}

Version

dependencies {
    ...
    implementation "sdk.chat:firestream:[version]"

    // And

    implementation "sdk.chat:firestream-realtime:[version]"
    
    // Or
    
    implementation "sdk.chat:firestream-firestore:[version]"
}

Firebase

You will need to add Firebase to your project. You can follow the guide here.

Initialise Firestream

If you want to use Firebase Firestore:

Fire.stream().initialize(this, new FirestoreService());

If you want to use Firebase Realtime:

Fire.stream().initialize(this, new RealtimeService());

The library will automatically integrate with Firebase's login / logout cycle.

Which is better Firestore or Realtime?

Firestore and Firebase each has it's own set of strenghts and weaknesses. But here is a short summary.

Firestore is better for:

  • Apps with more than 10 million monthly users
  • Apps where realtime latency isn't critical
  • Apps were a lot of users send few messages

Firebase is better for:

  • Apps where realtime latency is critical
  • Apps where a few users send a lot of messages

Hello world!

Send a message

Fire.stream().sendMessageWithText("userId", "Hello World!").subscribe();

Receive a message

Disposable d = Fire.stream().getSendableEvents().getMessages().pastAndNewEvents().subscribe(messageEvent -> {
    if (messageEvent.isAdded()) {
        // Message received
        String text = messageEvent.get().toTextMessage().getText();
        Logger.debug(text);
    }
    if (messageEvent.isRemoved()) {
        // Message removed
    }
});

Breaking it down, the base unit that can be sent is a Sendable there are a number of classes that extend from this class: Message, Presence, Invitation etc... So in the above example, we get message sendables and we request past and future events. We then check the event type, convert the message into a text message and print the result.

Note: We use the RxAndroid library. This means that any asynchronous tasks are activated lazily, you need to call subscribe for the action to be executed.

Chat Room

Make a new Chat Room

// Create a new chat room
Fire.stream().createChat("name", "url", new User("1"), new User("2")).subscribe(chat -> {

    // Send a message
    chat.sendMessageWithText("Hello World!");

    // Add a user
    chat.addUser(true, new User("3")).subscribe();

    // Make a user an admin
    chat.setRole(new User("2"), RoleType.admin()).subscribe();
    
    // etc...
});

Listen for Chat Rooms

// Listen for new chat rooms we have been added to
Fire.stream().getChatEvents().pastAndNewEvents().subscribe(chatEvent -> {
    if (chatEvent.isAdded()) {
        IChat chat = chatEvent.get();

        // Get a message listener
        chat.manage(chat.getSendableEvents().getMessages().pastAndNewEvents().subscribe(messageEvent -> {
            String text = messageEvent.get().toTextMessage().getText();
            Logger.debug(text);
        }));
    }
});

Disposing of Disposables

Whenever you call subscribe, you get a disposable. This is used to remove the observer. Managing these disposables can be tricky because you want to keep the references around until the time when you want to dispose of them.

FireStream has two helpful facilities to handles this:

  1. Let the framework manage them for you:
Fire.stream().manage(disposable);
chat.manage(disposable);

If you ask Firestream to manage a disposable, it will store the reference and then call dispose when the chat disconnects. This usually happens when the user logs out. The same goes for a group chat, if the user leaves the chat, the client will disconnect and the disposables will be disposed.

  1. Manage them yourself:
DisposableMap dm = new DisposableMap();

// Add
dm.add(disposable);

// Or add with a key
dm.put(chat.id, disposable);

// Then call to dispose of the default list
dm.dispose();

// Dispose of disposables associated with this key
dm.dispose(key);

// Dispose of all disposables
dm.disposeAll();

Performance and Hosting

FireStream can run on either Firestore or the Realtime Database.

Firestore

Performance and scalability:

  1. 1 million concurent users ~ 50 million MAU
  2. Messages arrive in near realtime

For more details Firestore usage and limits.

Hosting Cost:

  1. Free
  2. Up to 50 million monthly users
  3. 600k messages
  4. $25 per month
  5. Up to 50 million monthly users
  6. 3 million messages
  7. Pay as you go
  8. Up to 50 million monthly users
  9. $1 per 400k messages

For more details Firestore pricing.

Realtime database

Performance and scalability:

  1. 200k concurrent users ~ 10 million monthly users
  2. Messages arrive in realtime

For more details Realtime database limits.

Hosting Cost:

  1. Free
  2. Up to 5k monthly users
  3. 50 million messages
  4. $25 per month
  5. Up to 10 million monthly users
  6. 100 million messages
  7. Pay as you go
  8. Up to 10 million monthly users
  9. $1 per 5 million messages

For more details Firebase Pricing Page.

About

A light weight messaging framework for Firestore and Firebase Realtime

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%