RestfulFirebase 1.5.1

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package RestfulFirebase --version 1.5.1
NuGet\Install-Package RestfulFirebase -Version 1.5.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="RestfulFirebase" Version="1.5.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add RestfulFirebase --version 1.5.1
#r "nuget: RestfulFirebase, 1.5.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install RestfulFirebase as a Cake Addin
#addin nuget:?package=RestfulFirebase&version=1.5.1

// Install RestfulFirebase as a Cake Tool
#tool nuget:?package=RestfulFirebase&version=1.5.1

RestfulFirebase

Firebase REST API wrapper with streaming API wired with MVVM observers.

NuGets

Name Info
RestfulFirebase NuGet

Installation

// Install release version
Install-Package RestfulFirebase

// Install pre-release version
Install-Package RestfulFirebase -pre

Supported frameworks

.NET Standard 2.0 - see https://github.com/dotnet/standard/blob/master/docs/versions.md for compatibility matrix

Get Started

  • All firebase observable events are executed on the thread that is used to create the object instance. To use in UI safe updates, create the firebase object instances at the UI thread or manually configure the ISyncObject.SyncOperation to use UI thread.
  • If ILocalDatabase is provided and implemented with a specific device database persistency implementation, app authentication and the database will be persisted even if the app closes and reopens.

Usage

App Module Sample

using RestfulFirebase;

namespace YourNamespace
{
    public static class Program
    {
        private static FirebaseConfig config;
        private static RestfulFirebaseApp app;
        
        public static void Main(string[] args)
        {
            config = new FirebaseConfig()
            {
                ApiKey = "<Your API key>",
                DatabaseURL = "<Your realtime database URL>", // Ends with firebaseio.com
                StorageBucket = "<Your storage bucket>", // Ends with appspot.com
                LocalDatabase = "<Your implementation of RestfulFirebase.Local.ILocalDatabase>" // For optional offline persistency 
            };
            app = new RestfulFirebaseApp(config);
        }
    }
}

Authentication

using RestfulFirebase;

namespace YourNamespace
{
    public static class Program
    {
        public static async void Authenticate()
        {
            await app.Auth.SignInWithEmailAndPassword("t@st.com", "123123");
        }
    }
}

Realtime

The RealtimeWire holds a database subscription for real-time online and local data updates; Also manages offline persistency and caching for the specified reference node. Persistent data from the app launch will continue to sync if its real-time node or its parent`s real-time node is created and started.

FirebaseObject Sample
using RestfulFirebase.Database.Models;

namespace YourNamespace
{
    public class Dinosaur : FirebaseObject
    {
        public string Name
        {
            get => GetFirebasePropertyWithKey("name", () => "Default name");
            set => SetFirebasePropertyWithKey(value, "name");
        }
        
        public string? Family
        {
            get => GetFirebasePropertyWithKey<string>("family");
            set => SetFirebasePropertyWithKey(value, "family");
        }

        // Uses its property name for firebase key.
        public int Height
        {
            get => GetFirebaseProperty<int>();
            set => SetFirebaseProperty(value);
        }
    }
}
Subscribe

Predefined model values will be overwritten by the database values.

using System.Threading.Tasks;
using RestfulFirebase;
using RestfulFirebase.Database.Realtime;

namespace YourNamespace
{
    public static class Program
    {
        public static void Subscribe()
        {
            // Creates new realtime wire for https://some-database.firebaseio.com/users/some-uid/pets/dinosaur
            RealtimeWire userWire = app.Database
                .Child("users")
                .Child(app.Auth.Session.LocalId) // User UID
                .Child("pets")
                .Child("dinosaur")
                .AsRealtimeWire();

            // Starts to subscribe and listen for the node`s local and online updates
            // Realtime local data persistency and notification starts with this node.
            userWire.Start();

            // Create models
            Dinosaur dinosaur1 = new Dinosaur();
            Dinosaur dinosaur2 = new Dinosaur();
            
            // Subscribes model to the node https://some-database.firebaseio.com/users/some-uid/pets/dinosaur/dino1
            userWire.Child("dino1").PutModel(dinosaur1);
            
            // Subscribes model to the node https://some-database.firebaseio.com/users/some-uid/pets/dinosaur/dino2
            userWire.Child("dino2").PutModel(dinosaur2);

            // "dinosaur1" and "dinosaur1" are now subscribed to each node`s local and online changes.
            // Any preceding changes to "Dinosaur.Name" property will reflect in its database node and vice-versa.
            // Changes will trigger the model`s INotifyPropertyChanged observers.
        }
    }
}
Write and Subscribe

Database values will be overwritten by the predefined model values.

using System.Threading.Tasks;
using RestfulFirebase;
using RestfulFirebase.Database.Realtime;

namespace YourNamespace
{
    public static class Program
    {
        public static void WriteAndSubscribe()
        {
            // Creates new realtime wire for https://some-database.firebaseio.com/users/some-uid/pets/dinosaur
            RealtimeWire userWire = app.Database
                .Child("users")
                .Child(app.Auth.Session.LocalId) // User UID
                .Child("pets")
                .Child("dinosaur")
                .AsRealtimeWire();

            // Starts to subscribe and listen for the node`s local and online updates.
            // Realtime local data persistency and notification starts with this node.
            userWire.Start();

            // Create models
            Dinosaur dinosaur1 = new Dinosaur();
            Dinosaur dinosaur2 = new Dinosaur();
            dinosaur1.Name = "Megalosaurus";
            dinosaur2.Name = "T-rex";
            
            // Write and subscribes model to the node https://some-database.firebaseio.com/users/some-uid/pets/dinosaur/dino1
            userWire.Child("dino1").PutModel(dinosaur1);
            
            // Write and subscribes model to the node https://some-database.firebaseio.com/users/some-uid/pets/dinosaur/dino2
            userWire.Child("dino2").PutModel(dinosaur2);

            // "dinosaur1" and "dinosaur1" are now subscribed to each local and online changes.
            // Any preceding changes to "Dinosaur.Name" property will reflect in its database node and vice-versa.
            // Changes will trigger the model`s INotifyPropertyChanged observers.
        }
    }
}
Listen Instance

Creating a listen instance of the existing realtime wire without resubscribing to the node will save you some bandwidth and usage.

using System.Threading.Tasks;
using RestfulFirebase;
using RestfulFirebase.Database.Realtime;

namespace YourNamespace
{
    public static class Program
    {
        public static void WriteAndSubscribe()
        {
            // Creates new realtime wire for https://some-database.firebaseio.com/users/some-uid/
            RealtimeWire userWire = app.Database
                .Child("users")
                .Child(app.Auth.Session.LocalId) // User UID
                .AsRealtimeWire();

            // Starts to subscribe and listen for the node`s local and online updates
            userWire.Start();

            // Creates a new listen instance without resubscribing to the node.
            RealtimeInstance userDinosaur = userWire
                .Child("pets")
                .Child("dinosaur");
              
            RealtimeInstance userDinosaur1 = userWire
                .Child("pets")
                .Child("dinosaur1");
              
            RealtimeInstance userDinosaur2 = userWire
                .Child("pets")
                .Child("dinosaur2");
        }
    }
}

UI safe

using RestfulFirebase.Database.Models;

namespace YourNamespace
{
    public static class Program
    {
        private static Dinosaur dinosaur;

        public static void UIThread()
        {
            dinosaur = new Dinosaur();
        }

        public static void BackgroundThread()
        {
            // Subscribe to both online and local updates
            dinosaur.PropertyChanged += (s, e) =>
            {
                // Executed on UI thread
            }
            dinosaur.Name = "Megalosaurus";
        }
    }
}

Code & Inspiration from the following:

Want To Support This Project?

All I have ever asked is to be active by submitting bugs, features, and sending those pull requests down!.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.0-prerelease.29 77 4/16/2023
2.0.0-prerelease.28 96 4/2/2023
2.0.0-prerelease.27 88 3/26/2023
2.0.0-prerelease.26 82 3/26/2023
2.0.0-prerelease.24 75 3/26/2023
2.0.0-prerelease.23 82 3/26/2023
2.0.0-prerelease.22 109 2/12/2023
2.0.0-prerelease.21 91 2/12/2023
2.0.0-prerelease.20 83 2/12/2023
2.0.0-prerelease.19 80 2/11/2023
2.0.0-prerelease.18 80 2/11/2023
2.0.0-prerelease.17 82 2/11/2023
2.0.0-prerelease.16 98 2/5/2023
2.0.0-prerelease.15 94 2/5/2023
2.0.0-prerelease.14 90 2/5/2023
2.0.0-prerelease.13 84 2/4/2023
2.0.0-prerelease.12 89 2/4/2023
2.0.0-prerelease.11 88 2/4/2023
2.0.0-prerelease.10 88 2/4/2023
2.0.0-prerelease.9 105 1/31/2023
2.0.0-prerelease.8 101 1/29/2023
2.0.0-prerelease.7 108 1/23/2023
2.0.0-prerelease.6 100 1/22/2023
2.0.0-prerelease.5 94 1/22/2023
2.0.0-prerelease.4 90 1/22/2023
2.0.0-prerelease.3 103 1/21/2023
1.6.0-prerelease.4 99 10/25/2022
1.6.0-prerelease.3 96 10/24/2022
1.6.0-prerelease.2 101 10/24/2022
1.5.1 602 3/19/2022
1.5.0 443 3/14/2022
1.4.5 419 3/13/2022
1.4.4 408 3/9/2022
1.4.2 414 2/23/2022
1.4.1 409 2/22/2022
1.4.0 426 2/22/2022
1.3.30 429 2/21/2022
1.3.29 436 1/24/2022
1.3.28 258 1/10/2022
1.3.27 254 1/9/2022
1.3.26 255 1/8/2022
1.3.25 251 1/8/2022
1.3.24 265 1/5/2022
1.3.23 269 1/5/2022
1.3.22 268 1/5/2022
1.3.21 271 1/4/2022
1.3.20 276 1/2/2022
1.3.19 267 1/1/2022
1.3.18 247 12/31/2021
1.3.17 258 12/27/2021
1.3.16 337 9/15/2021
1.3.15 335 9/8/2021
1.3.14 308 9/6/2021
1.3.13 295 9/6/2021
1.3.12 294 9/6/2021
1.3.11 335 9/5/2021
1.3.10 291 9/3/2021
1.3.9 290 9/2/2021
1.3.8 286 9/2/2021
1.3.7 276 8/31/2021
1.3.6 289 8/26/2021
1.3.5 286 8/26/2021
1.3.4 295 8/26/2021
1.3.3 292 8/26/2021
1.3.2 302 8/26/2021
1.3.1 293 8/26/2021
1.3.0 310 8/24/2021
1.2.8 315 8/20/2021
1.2.7 275 8/19/2021
1.2.6 277 8/19/2021
1.2.5 296 8/18/2021
1.2.4 295 8/9/2021
1.2.3 285 8/9/2021
1.2.2 308 8/9/2021
1.2.1 308 8/9/2021
1.2.0 281 8/9/2021
1.1.9 314 8/8/2021
1.1.8 323 8/4/2021
1.1.7 313 7/19/2021
1.1.6 379 7/5/2021
1.1.5 403 7/5/2021
1.1.4 287 7/5/2021
1.1.3 389 7/3/2021
1.1.2 409 7/3/2021
1.1.1 284 7/2/2021
1.1.0 350 6/30/2021
1.0.99 343 6/30/2021
1.0.98 342 6/30/2021
1.0.97 352 6/20/2021
1.0.96 345 6/17/2021
1.0.95 325 6/16/2021
1.0.94 318 6/16/2021
1.0.93 355 6/16/2021
1.0.92 351 6/15/2021
1.0.91 321 6/15/2021
1.0.90 321 6/15/2021
1.0.89 355 6/15/2021
1.0.88 333 6/15/2021
1.0.87 324 6/15/2021
1.0.86 345 6/15/2021
1.0.83 321 6/15/2021
1.0.82 346 6/14/2021
1.0.81 344 6/14/2021
1.0.80 395 6/14/2021
1.0.79 357 6/13/2021
1.0.78 400 6/13/2021
1.0.77 413 6/13/2021
1.0.76 357 6/12/2021
1.0.75 356 6/12/2021
1.0.74 386 6/12/2021
1.0.72 356 6/12/2021
1.0.71 396 6/12/2021
1.0.70 360 6/11/2021
1.0.69 346 6/11/2021
1.0.68 343 6/11/2021
1.0.67 284 6/11/2021
1.0.66 341 6/9/2021
1.0.65 337 6/8/2021
1.0.64 335 6/8/2021
1.0.63 323 6/8/2021
1.0.62 316 6/8/2021
1.0.61 339 6/8/2021
1.0.60 315 6/8/2021
1.0.59 323 6/8/2021
1.0.58 345 6/8/2021
1.0.56 293 6/8/2021
1.0.55 326 6/8/2021
1.0.54 351 6/7/2021
1.0.53 359 6/7/2021
1.0.52 289 6/6/2021
1.0.51 338 6/6/2021
1.0.50 401 6/6/2021
1.0.49 423 6/6/2021
1.0.48 319 6/6/2021
1.0.47 319 6/6/2021
1.0.46 315 6/6/2021
1.0.45 334 6/5/2021
1.0.44 346 6/5/2021
1.0.43 300 6/5/2021
1.0.42 315 6/5/2021
1.0.41 363 6/5/2021
1.0.40 375 6/5/2021
1.0.39 342 6/5/2021
1.0.38 347 6/4/2021
1.0.37 315 6/4/2021
1.0.36 293 6/4/2021
1.0.35 338 6/3/2021
1.0.34 298 6/3/2021
1.0.33 310 6/3/2021
1.0.32 369 6/3/2021
1.0.31 288 6/3/2021
1.0.30 332 6/2/2021
1.0.29 318 6/2/2021
1.0.28 310 6/2/2021
1.0.27 323 6/2/2021
1.0.26 333 6/2/2021
1.0.25 345 6/2/2021
1.0.24 311 6/2/2021
1.0.23 362 6/2/2021
1.0.22 310 6/1/2021
1.0.21 308 6/1/2021
1.0.20 303 6/1/2021
1.0.19 327 6/1/2021
1.0.18 303 6/1/2021
1.0.17 308 6/1/2021
1.0.16 308 6/1/2021
1.0.15 299 6/1/2021
1.0.14 293 6/1/2021
1.0.13 294 6/1/2021
1.0.12 330 6/1/2021
1.0.11 303 5/27/2021
1.0.10 301 5/16/2021
1.0.9 290 5/15/2021
1.0.8 308 5/14/2021
1.0.7 326 5/13/2021
1.0.6 285 5/13/2021
1.0.5 288 5/12/2021
1.0.4 298 5/12/2021
1.0.3 285 5/12/2021
1.0.2 294 5/9/2021
1.0.1 306 5/8/2021
1.0.0 339 5/7/2021

* Changed auth signout to not to remove local database on signout.