You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Nicolas Garnier 1e7da02a75 Changing `return null;` to `return;` 8 years ago
bigquery-import Update text and Firebase version number in package.json 8 years ago
child-count Update text and Firebase version number in package.json 8 years ago
convert-images Changing `return null;` to `return;` 8 years ago
delete-unused-accounts-cron Simplified delete-unused-accounts-cron and moderate-images 8 years ago
email-confirmation Updating "Firebase" Functions and Storage naming following the rebranding to "Cloud". 8 years ago
exif-images Changing `return null;` to `return;` 8 years ago
fcm-notifications Some fixes 8 years ago
fulltext-search Update text and Firebase version number in package.json 8 years ago
generate-thumbnail Changing `return null;` to `return;` 8 years ago
instagram-auth Updating "Firebase" Functions and Storage naming following the rebranding to "Cloud". 8 years ago
lastmodified-tracking Update text and Firebase version number in package.json 8 years ago
limit-children Updating "Firebase" Functions and Storage naming following the rebranding to "Cloud". 8 years ago
linkedin-auth Updating "Firebase" Functions and Storage naming following the rebranding to "Cloud". 8 years ago
message-translation Add new "delete-unused-accounts-cron" sample. 8 years ago
minimal-webhook Update text and Firebase version number in package.json 8 years ago
moderate-images Simplified delete-unused-accounts-cron and moderate-images 8 years ago
new-user-email Add new user email and user data cleanup samples showing how to use auth events. 8 years ago
quickstarts Changing `return null;` to `return;` 8 years ago
text-moderation Updating "Firebase" Functions and Storage naming following the rebranding to "Cloud". 8 years ago
user-data-cleanup Add new user email and user data cleanup samples showing how to use auth events. 8 years ago
.gitignore Cleaned up the email-confirmation sample. 8 years ago
CONTRIBUTING.md Updated Contributing guide. 9 years ago
LICENSE Adding initial README, license files and CONTRIBUTING rules. 9 years ago
README.md Removing the HTTPS hello world quickstart and adding back the time-server one. 8 years ago

README.md

Firebase SDK for Cloud Functions Samples Library

This repository contains a collection of samples showcasing some typical uses of Cloud Functions using the Firebase SDK for CLoud Functions.

Prerequisites

To learn how to get started with the Firebase SDKL for Cloud Functions try the quickstart samples and have a look at the documentation.

Use Cases and Samples

This repository contains the following samples:

Realtime database trigger quickstart: Uppercaser

This quickstart sample demonstrates using Cloud Functions with a Firebase Realtime Database trigger. The function will uppercase messages written to the datastore.

HTTPS trigger quickstart: Time Server

This quickstart sample demonstrates using Cloud Functions triggered by HTTPS requests. The function will return the current server time and allows for date time formatting.

Cloud Storage trigger quickstart: Thumbnail generator

This quickstart sample demonstrates using Cloud Functions triggered by Firebase Storage events. The function will generate a thumbnail of uploaded images.

PubSub trigger quickstart: Hello World

This quickstart sample demonstrates using Cloud Functions triggered by PubSub events. The function will log the PubSub payload in a Hello world message.

Send FCM notifications

This sample demonstrates how to send a Firebase Cloud Messaging (FCM) notification from a Realtime Database triggered Function when users get new followers. The sample also features a Web UI to experience the FCM notification.

Authorize with LinkedIn

Demonstrates how to authorize with a 3rd party sign-in mechanism (LinkedIn in this case), create a Firebase custom auth token, update the user's profile and authorize Firebase.

Uses an HTTP trigger.

Authorize with Instagram

Demonstrates how to authorize with a 3rd party sign-in mechanism (Instagram in this case), create a Firebase custom auth token, update the user's profile and authorize Firebase.

Uses an HTTP trigger.

Automatically Convert Images

Demonstrates how to automatically convert images that are uploaded to Firebase Storage to JPEG using ImageMagick.

Uses a Firebase Storage trigger.

Automatically Generate Thumbnails

Demonstrates how to automatically generate a thumbnail for images that are uploaded to Firebase Storage.

Uses a Firebase Storage trigger.

Automatically Moderate Images

Demonstrates how to automatically moderate offensive images that are uploaded to Firebase Storage by using the Google Cloud Vision API to detect offensive images and ImageMagick to blur these images.

Uses a Firebase Storage trigger.

Extract Image Metadata

Demonstrates how to automatically extract image's metadata using ImageMagick for images that are uploaded to Firebase Storage.

Uses a Firebase Storage trigger.

Text Moderation

How to moderate user input text for bad words. For example this can be used to moderate usernames, chat or forum messages.

Uses an Realtime Database trigger.

Email Confirmation

Sends email confirmation after users subscribed to a mailing list.

Uses an Realtime Database trigger.

LastModified Firebase Database tracking

Tracking when the Firebase Database (or a subset) was last modified.

Uses an Realtime Database trigger.

Webhook upon Database writes

Writing to the Database triggers a request to a callback URL (a Webhook). The content of the modified Data is sent to the Webhook.

Uses an Realtime Database trigger.

Firebase Database Child Nodes Count

Keeps track of the number of child nodes of a Firebase Database element allowing clients to filter or order results using the child count. This can be useful to keep tack of the number of "likes" or "followers" of a somethings shares through social media.

Uses an Realtime Database trigger.

Automatic message translation

Integrates the Google Translate API to perform automatic text translation across any number of languages. Language codes can be stored in Firebase for on the fly changes.

Uses an Realtime Database trigger.

Limit number of child nodes

Make sure to keep the number of child nodes below a certain threshold. For instance this can be useful to limit the number of lines of logs or chat history below a given number.

Uses an Realtime Database trigger.

Import Data to Big Query

Copies Firebase Database elements into BigQuery automatically. This can be useful for instance for further logs analysis.

Uses an Realtime Database trigger.

Enable full-text search on firebase database elements by using an Algolia hosted search service.

Uses an Realtime Database trigger.

User Data Cleanup

Deletes all associated user data that's on the Realtime database when a user deletes his Firebase account.

Uses an Auth trigger.

Welcome Email

Sends a Welcome email when a user signs-in for the first time.

Uses an Auth trigger.

Delete Inactive Users Accounts Cron

Periodically deletes the accounts of users who have not signed in the last month.

Uses an HTTPS trigger.

Contributing

We'd love that you contribute to the project. Before doing so please read our Contributor guide.

License

© Google, 2015. Licensed under an Apache-2 license.