-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbridge_grpc_service.py
376 lines (324 loc) · 14 KB
/
bridge_grpc_service.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
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
"""
Bridge gRPC Service.
This program is free software: you can redistribute it under the terms
of the GNU General Public License, v. 3.0. If a copy of the GNU General
Public License was not distributed with this file, see <https://www.gnu.org/licenses/>.
"""
import traceback
import base64
import os
import grpc
import phonenumbers
from phonenumbers import geocoder
import bridge_pb2
import bridge_pb2_grpc
from content_parser import decode_content, extract_content
from vault_grpc_client import (
create_bridge_entity,
decrypt_payload,
authenticate_bridge_entity,
)
from utils import get_logger, get_bridge_details_by_shortcode, import_module_dynamically
from notification_dispatcher import dispatch_notifications
logger = get_logger(__name__)
class BridgeService(bridge_pb2_grpc.EntityServiceServicer):
"""Bridge Service Descriptor"""
def handle_create_grpc_error_response(
self, context, response, error, status_code, **kwargs
):
"""
Handles the creation of a gRPC error response.
Args:
context (grpc.ServicerContext): The gRPC context object.
response (callable): The gRPC response object.
error (Exception or str): The exception instance or error message.
status_code (grpc.StatusCode): The gRPC status code to be set for the response
(e.g., grpc.StatusCode.INTERNAL).
user_msg (str, optional): A user-friendly error message to be returned to the client.
If not provided, the `error` message will be used.
error_type (str, optional): A string identifying the type of error.
When set to "UNKNOWN", it triggers the logging of a full exception traceback
for debugging purposes.
error_prefix (str, optional): An optional prefix to prepend to the error message
for additional context (e.g., indicating the specific operation or subsystem
that caused the error).
Returns:
An instance of the specified response with the error set.
"""
user_msg = kwargs.get("user_msg")
error_type = kwargs.get("error_type")
error_prefix = kwargs.get("error_prefix")
if not user_msg:
user_msg = str(error)
if error_type == "UNKNOWN":
traceback.print_exception(type(error), error, error.__traceback__)
error_message = f"{error_prefix}: {user_msg}" if error_prefix else user_msg
context.set_details(error_message)
context.set_code(status_code)
return response()
def handle_request_field_validation(
self, context, request, response, required_fields
):
"""
Validates the fields in the gRPC request.
Args:
context: gRPC context.
request: gRPC request object.
response: gRPC response object.
required_fields (list): List of required fields, can include tuples.
Returns:
None or response: None if no missing fields,
error response otherwise.
"""
def validate_field(field):
if not getattr(request, field, None):
return self.handle_create_grpc_error_response(
context,
response,
f"Missing required field: {field}",
grpc.StatusCode.INVALID_ARGUMENT,
)
return None
for field in required_fields:
validation_error = validate_field(field)
if validation_error:
return validation_error
return None
def PublishContent(self, request, context):
"""Handles publishing bridge payload"""
response = bridge_pb2.PublishContentResponse
def create_entity(
client_publish_pub_key=None,
ownership_proof_response=None,
server_pub_key_identifier=None,
server_pub_key_version=None,
language=None,
):
parsed_number = phonenumbers.parse(request.metadata["From"])
region_code = geocoder.region_code_for_number(parsed_number)
create_entity_response, create_entity_error = create_bridge_entity(
phone_number=request.metadata["From"],
country_code=region_code,
client_publish_pub_key=client_publish_pub_key,
ownership_proof_response=ownership_proof_response,
server_pub_key_identifier=(
str(server_pub_key_identifier)
if server_pub_key_identifier is not None
else None
),
server_pub_key_version=server_pub_key_version,
language=language,
)
if create_entity_error:
error_message = create_entity_error.details()
if error_message.startswith("OTP not initiated. "):
return response(message=error_message, success=True), None
return None, self.handle_create_grpc_error_response(
context, response, error_message, create_entity_error.code()
)
if not create_entity_response.success:
return None, response(
message=create_entity_response.message,
success=create_entity_response.success,
)
return (
response(
message=create_entity_response.message,
success=create_entity_response.success,
),
None,
)
def authenticate_entity(language=None):
authentication_response, authentication_error = authenticate_bridge_entity(
phone_number=request.metadata["From"], language=language
)
if authentication_error:
return None, self.handle_create_grpc_error_response(
context,
response,
authentication_error.details(),
authentication_error.code(),
)
if not authentication_response.success:
return None, response(
message=authentication_response.message,
success=authentication_response.success,
)
return (
response(
message=authentication_response.message,
success=authentication_response.success,
),
None,
)
def get_bridge_info(bridge_letter):
bridge_info, bridge_err = get_bridge_details_by_shortcode(bridge_letter)
if bridge_info is None:
return None, self.handle_create_grpc_error_response(
context,
response,
bridge_err,
grpc.StatusCode.INVALID_ARGUMENT,
)
return bridge_info, None
def decrypt_message(phone_number, encrypted_content):
decrypt_payload_response, decrypt_payload_error = decrypt_payload(
phone_number=phone_number,
payload_ciphertext=base64.b64encode(encrypted_content).decode("utf-8"),
)
if decrypt_payload_error:
return None, self.handle_create_grpc_error_response(
context,
response,
decrypt_payload_error.details(),
decrypt_payload_error.code(),
)
if not decrypt_payload_response.success:
return None, response(
message=decrypt_payload_response.message,
success=decrypt_payload_response.success,
)
return decrypt_payload_response, None
def send_message(platform_name, content_parts):
if platform_name == "email_bridge":
email_bridge_module = import_module_dynamically(
"email_bridge.simplelogin.client",
os.path.join("bridges", "email_bridge", "simplelogin", "client.py"),
os.path.join("bridges", "email_bridge"),
)
to_email, cc_email, bcc_email, email_subject, email_body = content_parts
email_send_success, email_send_message = email_bridge_module.send_email(
phone_number=request.metadata["From"],
to_email=to_email,
subject=email_subject,
body=email_body,
cc_email=cc_email,
bcc_email=bcc_email,
)
if not email_send_success:
return None, self.handle_create_grpc_error_response(
context,
response,
email_send_message,
grpc.StatusCode.INVALID_ARGUMENT,
)
return email_send_message, None
return None, self.handle_create_grpc_error_response(
context,
response,
f"Sorry, the platform '{platform_name}' is not supported.",
grpc.StatusCode.UNIMPLEMENTED,
)
def handle_publication_notifications(
platform_name, status="failed", country_code=None
):
notifications = [
{
"notification_type": "event",
"target": "publication",
"details": {
"platform_name": platform_name,
"source": "bridges",
"status": status,
"country_code": country_code,
},
},
]
dispatch_notifications(notifications)
try:
invalid_fields_response = self.handle_request_field_validation(
context, request, response, ["content"]
)
if invalid_fields_response:
return invalid_fields_response
decoded_result, decode_error = decode_content(content=request.content)
if decode_error:
return self.handle_create_grpc_error_response(
context,
response,
decode_error,
grpc.StatusCode.INVALID_ARGUMENT,
error_prefix="Error Decoding Content",
error_type="UNKNOWN",
)
if public_key := decoded_result.get("public_key"):
create_response, create_error = create_entity(
client_publish_pub_key=base64.b64encode(public_key).decode("utf-8"),
server_pub_key_identifier=decoded_result.get("skid"),
language=decoded_result.get("language"),
)
if create_error:
return create_error
if "skid" not in decoded_result:
return create_response
bridge_info = None
if bridge_letter := decoded_result.get("bridge_letter"):
bridge_info, bridge_info_error = get_bridge_info(bridge_letter)
if bridge_info_error:
return bridge_info_error
if auth_code := decoded_result.get("auth_code"):
create_response, create_error = create_entity(
ownership_proof_response=auth_code
)
if create_error:
return create_error
if "content_ciphertext" not in decoded_result:
return response(success=True, message=create_response.message)
if (
"skid" not in decoded_result
and "auth_code" not in decoded_result
and "public_key" not in decoded_result
):
_, authenticate_error = authenticate_entity(
language=decoded_result.get("language")
)
if authenticate_error:
return authenticate_error
decrypt_response, decrypt_error = decrypt_message(
phone_number=request.metadata["From"],
encrypted_content=decoded_result["content_ciphertext"],
)
if decrypt_error:
return decrypt_error
extracted_content, extraction_error = extract_content(
bridge_name=bridge_info["name"],
content=decrypt_response.payload_plaintext,
)
if extraction_error:
return self.handle_create_grpc_error_response(
context,
response,
extraction_error,
grpc.StatusCode.INVALID_ARGUMENT,
)
_, message_error = send_message(bridge_info["name"], extracted_content)
if message_error:
handle_publication_notifications(
bridge_info["name"],
status="failed",
country_code=decrypt_response.country_code,
)
return message_error
handle_publication_notifications(
bridge_info["name"],
status="published",
country_code=decrypt_response.country_code,
)
return response(
success=True,
message=f"Successfully published {bridge_info['name']} message",
)
except Exception as exc:
handle_publication_notifications(
bridge_info["name"],
status="failed",
country_code=decrypt_response.country_code,
)
return self.handle_create_grpc_error_response(
context,
response,
exc,
grpc.StatusCode.INTERNAL,
user_msg="Oops! Something went wrong. Please try again later.",
error_type="UNKNOWN",
)