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
'use strict'; | |
/////////////////////////////////// | |
// Rudimentary logger impl that outputs | |
// to the JS console and to <div> tag | |
// in demo app. | |
// | |
// ♡ Firebase | |
/////////////////////////////////// |
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
import './style.css'; | |
import logger from './logger'; // see https://gist.github.com/katowulf/08cd54013ad75f2c4d6cc9961ec77db1 | |
import {sendRequest} from './request'; | |
const endpoint = 'https://us-central1-YOUR_PROJECT_ID_HERE.cloudfunctions.net/validateRequest'; | |
const data = { | |
string: 'foo', | |
integer: 23, | |
boolean: false, |
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
import * as firebase from "firebase/app"; | |
import 'firebase/firestore'; | |
import config from './config'; | |
firebase.initializeApp(config); | |
const data = { | |
string: 'foo', | |
integer: 23, | |
boolean: false, |
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 functions = require('firebase-functions'); | |
const admin = require('firebase-admin'); | |
admin.initializeApp(); | |
const express = require('express'); | |
const cookieParser = require('cookie-parser')(); | |
const cors = require('cors')({origin: true}); | |
const app = express(); | |
// See https://github.com/firebase/functions-samples/blob/Node-8/authorized-https-endpoint/functions/index.js | |
const validateFirebaseIdToken = require('./validateFirebaseIdToken'); |
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": { | |
".read": false, | |
".write": false, | |
"roles-example": { | |
// grant global read to our admin tools | |
".read": "auth.uid === 'ACCESS_MANAGER'", | |
// The documents which we are restricting access to | |
"docs": { |
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
export const run = (data, context) => { | |
const path = data.path; | |
if( path !== "bar" ) { | |
throw new functions.https.HttpsError('invalid-argument', "Path was not valid"); | |
} | |
return {foo: "bar"}; | |
} |
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
/******* Android **********/ | |
// See https://firebase.google.com/docs/reference/android/com/google/firebase/firestore/FirebaseFirestore.html#setLoggingEnabled(boolean) | |
FirebaseFirestore.setLoggingEnabled(true); | |
/******* Server-side Java **********/ | |
/** | |
See https://medium.com/@hiranya911/logging-in-java-libraries-for-firebase-and-google-cloud-platform-f8742493b73f | |
1) Add the slf4j-simple binding to the application classpath | |
2) Set the -Dorg.slf4j.simpleLogger.defaultLogLevel=debug system property | |
**/ |
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 functions = require('firebase-functions'); | |
const util = require('util'); | |
const admin = require('firebase-admin'); | |
admin.initializeApp(); | |
exports.uploadedFile = functions.storage.object().onFinalize((uploadedObject) => { | |
console.log('object keys', Object.keys(uploadedObject)); | |
// This contains the custom metadata | |
console.log('metedata keys', Object.keys(uploadedObject.metadata)); |
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 admin = require('firebase-admin'); | |
const serviceAccount = require('path/to/serviceAccountKey.json'); | |
// User IDs to be deleted | |
const UIDs = []; | |
// initialize the app | |
admin.initializeApp({ | |
credential: admin.credential.cert(serviceAccount), | |
databaseURL: 'https://<DATABASE_NAME>.firebaseio.com' |
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
// This can probably be simplified somehow. Not sure why I need to add it in the component to init the service. | |
import { Component, OnInit } from '@angular/core'; | |
import {TitleService} from "./@core/utils/title.service"; | |
@Component({...}) | |
export class AppComponent implements OnInit { | |
constructor(private titleService: TitleService) {...} |