Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@userhub/gcip-functions

Package Overview
Dependencies
Maintainers
0
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@userhub/gcip-functions

Google Cloud Identity Platform

  • 0.5.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

Google Cloud Identity Platform Functions

Helper functions for the UserHub Google Cloud Identity Platform (Firebase Authentication) connection.

Usage

const { UserHubFunctions } = require("@userhub/gcip-functions");
const { runWith } = require("firebase-functions/v1");
const { defineSecret, defineString } = require("firebase-functions/params");

const API_KEY = defineSecret("USERHUB_API_KEY");
const CONNECTION_ID = defineString("USERHUB_CONNECTION_ID");

const functions = new UserHubFunctions({
  apiKey: API_KEY,
  connectionId: CONNECTION_ID,
});

exports.onCreate = runWith({
  memory: "128MB",
  secrets: [API_KEY],
})
  .auth.user()
  .onCreate(functions.onCreate);

exports.onDelete = runWith({
  memory: "128MB",
  secrets: [API_KEY],
})
  .auth.user()
  .onDelete(functions.onDelete);

There is also support for the blocking beforeSignIn function which ensures the user exists in UserHub before the sign-in process completes.

Enabling this function adds latency to the sign-in flow and requires that your Firebase project be updated to Firebase Authentication with Identity Platform.

exports.beforeSignIn = runWith({
  memory: "128MB",
  minInstances: 1,
  secrets: [API_KEY],
})
  .auth.user()
  .beforeSignIn(functions.beforeSignIn);

FAQs

Package last updated on 02 Oct 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc