-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
53 lines (41 loc) · 1.54 KB
/
index.ts
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
import * as functions from 'firebase-functions';
import * as admin from 'firebase-admin';
import { url } from 'inspector';
// Start writing Firebase Functions
// https://firebase.google.com/docs/functions/typescript
admin.initializeApp(functions.config().firebase);
export const writeData = functions.https.onRequest((request, response) => {
var houseid: String = request.body["floor"];
var data:String = request.body["data"];
// error checking (only accepts 3 status)
for (var i = 0; i < 4; i++) {
if (data.charCodeAt(i) < 48 || data.charCodeAt(i) > 50) {
response.send(400)
}
}
admin.firestore().collection("levels").doc(houseid.toString()).update(
{
"washer1": data.charCodeAt(0) - 48,
"washer2": data.charCodeAt(1) - 48,
"dryer1": data.charCodeAt(2) - 48,
"dryer2": data.charCodeAt(3) - 48,
}
).then(() => response.send(200));
});
export const readData = functions.https.onRequest((request, response) => {
var houseid: String = request.url.substr(1);
admin.firestore().collection("levels").doc(houseid.toString()).get().then(
(snapshot) => {
if (!snapshot.exists) {
response.send(404)
}
var map = {
"washer1": snapshot.get("washer1"),
"washer2": snapshot.get("washer2"),
"dryer1": snapshot.get("dryer1"),
"dryer2": snapshot.get("dryer2"),
}
response.send(map)
}
)
});