/
datastore.js
178 lines (166 loc) · 4.86 KB
/
datastore.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
*/
'use strict';
const {initializeApp} = require('firebase/app');
const {getAuth, signInWithEmailAndPassword} = require('firebase/auth');
const firestore = require('firebase/firestore');
/**
* Initializes store, and optionally authenticates current user.
*
* @param {string?} email
* @param {string?} password
* @returns {Promise<firebase.firestore.Firestore>} Reference to store instance
*/
async function initializeStore(email, password) {
const PROJECT_ID = 'react-native-1583841384889';
const apiKey = [
'AIzaSyCm',
'5hN3nVNY',
'tF9zkSHa',
'oFpeVe3g',
'LceuC0Q',
].join('');
const firebaseApp = initializeApp({
apiKey,
authDomain: `${PROJECT_ID}.firebaseapp.com`,
databaseURL: `https://${PROJECT_ID}.firebaseio.com`,
projectId: PROJECT_ID,
storageBucket: `${PROJECT_ID}.appspot.com`,
messagingSenderId: '329254200967',
appId: '1:329254200967:web:c465681d024115bc303a22',
measurementId: 'G-ZKSZ7SCLHK',
});
if (email && password) {
await signInWithEmailAndPassword(
getAuth(firebaseApp),
email,
password,
).catch(error => console.log(error));
}
return firestore.getFirestore(firebaseApp);
}
/**
* Initializes 'binary-sizes' collection using the initial commit's data.
*
* @param {firebase.firestore.Firestore} db Reference to store instance
*/
function initializeBinarySizesCollection(db) {
const collectionRef = getBinarySizesCollection(db);
const docRef = firestore.doc(
collectionRef,
'a15603d8f1ecdd673d80be318293cee53eb4475d',
);
firestore.setDoc(docRef, {
'android-hermes-arm64-v8a': 0,
'android-hermes-armeabi-v7a': 0,
'android-hermes-x86': 0,
'android-hermes-x86_64': 0,
'android-jsc-arm64-v8a': 0,
'android-jsc-armeabi-v7a': 0,
'android-jsc-x86': 0,
'android-jsc-x86_64': 0,
'ios-universal': 0,
timestamp: new Date('Thu Jan 29 17:10:49 2015 -0800'),
});
}
/**
* Returns 'binary-sizes' collection.
*
* @param {firebase.firestore.Firestore} db Reference to store instance
*/
function getBinarySizesCollection(db) {
const BINARY_SIZES_COLLECTION = 'binary-sizes';
return firestore.collection(db, BINARY_SIZES_COLLECTION);
}
/**
* Creates or updates the specified entry.
*
* @param {firebase.firestore.CollectionReference<firebase.firestore.DocumentData>} collection
* @param {string} sha The Git SHA used to identify the entry
* @param {firebase.firestore.UpdateData} data The data to be inserted/updated
* @param {string} branch The Git branch where this data was computed for
* @returns {Promise<void>}
*/
function createOrUpdateDocument(collectionRef, sha, data, branch) {
const stampedData = {
...data,
timestamp: firestore.Timestamp.now(),
branch,
};
const docRef = firestore.doc(collectionRef, sha);
return firestore.updateDoc(docRef, stampedData).catch(async error => {
if (error.code === 'not-found') {
await firestore
.setDoc(docRef, stampedData)
.catch(setError => console.log(setError));
} else {
console.log(error);
}
});
}
/**
* Returns the latest document in collection.
*
* @param {firebase.firestore.CollectionReference<firebase.firestore.DocumentData>} collection
* @param {string} branch The Git branch for the data
* @returns {Promise<firebase.firestore.DocumentData | undefined>}
*/
async function getLatestDocument(collectionRef, branch) {
try {
const querySnapshot = await firestore.getDocs(
firestore.query(
collectionRef,
firestore.orderBy('timestamp', 'desc'),
firestore.where('branch', '==', branch),
firestore.limit(1),
),
);
if (querySnapshot.empty) {
return undefined;
}
const doc = querySnapshot.docs[0];
return {
...doc.data(),
commit: doc.id,
};
} catch (error) {
console.log(error);
return undefined;
}
}
/**
* Terminates the supplied store.
*
* Documentation says that we don't need to call `terminate()` but the script
* will just hang around until the connection times out if we don't.
*
* @param {Promise<firebase.firestore.Firestore>} db
*/
async function terminateStore(db) {
await firestore.terminate(db);
}
/**
* Example usage:
*
* const datastore = require('./datastore');
* const store = datastore.initializeStore();
* const binarySizes = datastore.getBinarySizesCollection(store);
* console.log(await getLatestDocument(binarySizes));
* console.log(await createOrUpdateDocument(binarySizes, 'some-id', {data: 0}));
* terminateStore(store);
*
*/
module.exports = {
initializeStore,
initializeBinarySizesCollection,
getBinarySizesCollection,
createOrUpdateDocument,
getLatestDocument,
terminateStore,
};