This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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"] | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"rules": { | |
"users": { | |
"$uid": { | |
".read": "auth.uid == $uid" | |
}, | |
"taylorsUID": { | |
".read": "auth.uid == 'taylorsUID'", | |
".write": "auth.uid == 'taylorsUID'" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"users": { | |
"kanyesUID": { | |
"name": "Kanye West", | |
"email": "[email protected]" | |
}, | |
"taylorsUID": { | |
"name": "Taylor Swift", | |
"email": "[email protected]" | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Authentication Example</title> | |
</head> | |
<body> | |
<form> | |
<div> | |
<input id="email" type="text" placeholder="Email..."> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]”); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]']; |