- Notifications
You must be signed in to change notification settings - Fork 3.8k
/
Copy pathmain.py
110 lines (93 loc) · 3.88 KB
/
main.py
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
# Copyright 2023 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# [START all]
fromtypingimportAny
fromurllibimportparseasurllib_parse
# [START import]
# The Cloud Functions for Firebase SDK to create Cloud Functions and set up triggers.
fromfirebase_functionsimportdb_fn, https_fn
# The Firebase Admin SDK to access the Firebase Realtime Database.
fromfirebase_adminimportinitialize_app, db
app=initialize_app()
# [END import]
# [START addMessage]
# [START addMessageTrigger]
@https_fn.on_request()
defaddmessage(req: https_fn.Request) ->https_fn.Response:
"""Take the text parameter passed to this HTTP endpoint and insert it into
the Realtime Database under the path /messages/{pushId}/original"""
# [END addMessageTrigger]
# Grab the text parameter.
original=req.args.get("text")
iforiginalisNone:
returnhttps_fn.Response("No text parameter provided", status=400)
# [START adminSdkPush]
# Push the new message into the Realtime Database using the Firebase Admin SDK.
ref=db.reference("/messages").push({"original": original}) # type: ignore
# Redirect with 303 SEE OTHER to the URL of the pushed object.
scheme, location, path, query, fragment= (
b.decode() forbinurllib_parse.urlsplit(app.options.get("databaseURL")))
path=f"{ref.path}.json"
returnhttps_fn.Response(
status=303,
headers={"Location": urllib_parse.urlunsplit((scheme, location, path, query, fragment))})
# [END adminSdkPush]
# [END addMessage]
# [START makeUppercase]
@db_fn.on_value_created(reference="/messages/{pushId}/original")
defmakeuppercase(event: db_fn.Event[Any]) ->None:
"""Listens for new messages added to /messages/{pushId}/original and
creates an uppercase version of the message to /messages/{pushId}/uppercase
"""
# Grab the value that was written to the Realtime Database.
original=event.data
ifnotisinstance(original, str):
print(f"Not a string: {event.reference}")
return
# Use the Admin SDK to set an "uppercase" sibling.
print(f"Uppercasing {event.params['pushId']}: {original}")
upper=original.upper()
parent=db.reference(event.reference).parent
ifparentisNone:
print("Message can't be root node.")
return
parent.child("uppercase").set(upper)
# [END makeUppercase]
# [START makeUppercase2]
@db_fn.on_value_written(reference="/messages/{pushId}/original")
defmakeuppercase2(event: db_fn.Event[db_fn.Change]) ->None:
"""Listens for new messages added to /messages/{pushId}/original and
creates an uppercase version of the message to /messages/{pushId}/uppercase
"""
# Only edit data when it is first created.
ifevent.data.beforeisnotNone:
return
# Exit when the data is deleted.
ifevent.data.afterisNone:
return
# Grab the value that was written to the Realtime Database.
original=event.data.after
ifnothasattr(original, "upper"):
print(f"Not a string: {event.reference}")
return
# Use the Admin SDK to set an "uppercase" sibling.
print(f"Uppercasing {event.params['pushId']}: {original}")
upper=original.upper()
parent=db.reference(event.reference).parent
ifparentisNone:
print("Message can't be root node.")
return
parent.child("uppercase").set(upper)
# [END makeUppercase2]
# [END all]