Skip to content

Instantly share code, notes, and snippets.

View deltaepsilon's full-sized avatar
🥰
Moving to private repos!!!

Chris Esplin deltaepsilon

🥰
Moving to private repos!!!
View GitHub Profile
function isUser (auth, userKey) {
return auth.uid == userKey;
}
function isAdmin (auth) {
return root.child('users').child(auth.uid).child('isAdmin').val() == true;
}
path /users/{uid} {
read() { isUser(auth, uid) || isAdmin(auth) }
{
"rules": {
"users": {
"$uid": {
".read": "auth.uid == $uid || root.child('users').child(auth.uid).child('isAdmin').val() == true",
".write": "root.child('users').child(auth.uid).child('isAdmin').val() == true",
".indexOn": ["email"]
}
}
}
{
"rules": {
"users": {
"$uid": {
".read": "auth.uid == $uid"
},
"taylorsUID": {
".read": "auth.uid == 'taylorsUID'",
".write": "auth.uid == 'taylorsUID'"
}
{
"users": {
"kanyesUID": {
"name": "Kanye West",
"email": "[email protected]"
},
"taylorsUID": {
"name": "Taylor Swift",
"email": "[email protected]"
},
<html>
<head>
<title>Authentication Example</title>
</head>
<body>
<form>
<div>
<input id="email" type="text" placeholder="Email...">
// Authenticate with the first user then save the currentUser to a local variable
var previousUser = firebase.auth().currentUser;
// Authenticate with a second method and get a credential
// This example shows an email/password credential, but you can get credentials from any auth provider
// Note that using an OAuth provider as your se
var credential = firebase.auth.EmailPasswordAuthProvider.credential(email, password);
previousUser.link(credential)
 .catch(function (error) {
  // Linking will often fail if the account has already been linked. Handle these cases manually.
<script src=”https://apis.google.com/js/platform.js" async defer></script>
<script>
 var provider = new firebase.auth.GoogleAuthProvider();
 provider.addScope(‘profile’);
 provider.addScope(‘email’);
 provider.addScope(‘https://www.googleapis.com/auth/plus.me');
 firebase.auth().signInWithPopup(provider); // Opens a popup window and returns a promise to handle errors.
</script>
// Register a new user
firebase.auth().createUserWithEmailAndPassword(email, password)
 .catch(function (err) {
  // Handle errors
 });
// Sign in existing user
firebase.auth().signInWithEmailAndPassword(email, password)
 .catch(function(err) {
 // Handle errors
var currentUser = firebase.auth().currentUser;
currentUser.updateProfile({
 displayName: “Bill Murray”,
 photoURL: “http://www.fillmurray.com/g/200/300"
});
currentUser.sendPasswordResetEmail(“[email protected]”); // Sends a temporary password
// Re-authentication is necessary for email, password and delete functions
var credential = firebase.auth.EmailAuthProvider.credential(email, password);
currentUser.reauthenticate(credential);
currentUser.updateEmail(“[email protected]”);
const Queue = require('firebase-queue');
var firebase = require('firebase').initializeApp({
serviceAccount: "/path/to/service/account/quiver-two-service-account.json",
databaseURL: "https://quiver-two.firebaseio.com"
}, 'Queue');
var queueRef = firebase.database().ref('firebase-queue/login-queue');
var accountsRef = firebase.database().ref('firebase-queue/accounts');
var adminUsers = ['[email protected]'];