Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision | |||
| report:conc [2026/06/14 14:54] – [8.3 Flow charts] team1 | report:conc [2026/06/14 14:55] (current) – [8.2.2 Back-end] team1 | ||
|---|---|---|---|
| Line 170: | Line 170: | ||
| Thirdly, Supabase allows for realtime table changes to be read from the front-end. This makes is very simple to display the live sensor data from the plant pot to the application. This functionality is called Supabase Realtime [(supabase2026realtime)]. | Thirdly, Supabase allows for realtime table changes to be read from the front-end. This makes is very simple to display the live sensor data from the plant pot to the application. This functionality is called Supabase Realtime [(supabase2026realtime)]. | ||
| + | == 8.2.2.3 Push notifications using Firebase Cloud Messaging == | ||
| + | |||
| + | Push notifications are implemented by combining Supabase as the backend system with Firebase Cloud Messaging (FCM) as the delivery service. Supabase itself does not directly send push notifications to mobile devices. Instead, it is used to detect when a notification should be triggered, while FCM is responsible for delivering the notification to the user’s device. | ||
| + | |||
| + | In this architecture, | ||
| + | |||
| + | Once a critical condition is detected, Supabase executes a server-side action that prepares a notification payload. This payload usually includes information such as the type of alert, sensor ID, timestamp, and severity level. Supabase then sends a request to Firebase Cloud Messaging using a secure server-to-server API call. | ||
| + | |||
| + | Firebase Cloud Messaging acts as the messaging intermediary between the backend and the mobile application. It receives the notification request from Supabase and routes it to the correct device using a unique device token stored in the Supabase database. The device token is generated when the Flutter application first registers the user’s device with FCM and is linked to the user account in Supabase. | ||
| + | |||
| + | FCM is capable of delivering notifications even when the application is closed or running in the background, as it operates at the operating system level. This ensures that critical sensor alerts are reliably delivered regardless of the application state. When the user receives the notification, | ||
| + | |||
| + | This approach separates responsibilities clearly: Supabase manages data storage, real-time evaluation, and trigger logic, while Firebase Cloud Messaging handles cross-platform notification delivery. | ||
| === 8.3 Flow charts === | === 8.3 Flow charts === | ||
| Using flow charts, the developer displays how the product flow goes for various functions. The functions are the ones listed below. | Using flow charts, the developer displays how the product flow goes for various functions. The functions are the ones listed below. | ||