60 lines
1.9 KiB
Python
60 lines
1.9 KiB
Python
from flask import request, jsonify
|
|
from marshmallow import ValidationError
|
|
from app.utils.logger import logger
|
|
from app.api.schemas.sms import SMSSchema, SMSResponseSchema
|
|
|
|
|
|
class SMSService:
|
|
@staticmethod
|
|
def process_request(data):
|
|
"""
|
|
Process the SMS request.
|
|
|
|
Args:
|
|
data (dict): The request data.
|
|
|
|
Returns:
|
|
dict: A standardized response.
|
|
"""
|
|
try:
|
|
logger.info("Processing SMS request")
|
|
|
|
# Validate input data using SMSSchema
|
|
schema = SMSSchema()
|
|
validated_data = schema.load(data) # Raises ValidationError if invalid
|
|
|
|
# Simulated processing logic
|
|
# In a real implementation, this would interact with your business logic
|
|
# to send an SMS to the customer
|
|
|
|
# For demonstration, we'll simulate a successful SMS send
|
|
response_data = {
|
|
"data": "",
|
|
"statusCode": 200,
|
|
"IsSuccessful": True,
|
|
"errorMessage": None
|
|
}
|
|
|
|
# Validate the response using the response schema
|
|
response_schema = SMSResponseSchema()
|
|
validated_response = response_schema.dump(response_data)
|
|
|
|
return jsonify(validated_response)
|
|
|
|
except ValidationError as err:
|
|
logger.error(f"Validation Error: {err.messages}")
|
|
return jsonify({
|
|
"data": "",
|
|
"statusCode": 400,
|
|
"IsSuccessful": False,
|
|
"errorMessage": f"Validation error: {err.messages}"
|
|
}), 400
|
|
|
|
except Exception as e:
|
|
logger.error(f"An error occurred: {str(e)}", exc_info=True)
|
|
return jsonify({
|
|
"data": "",
|
|
"statusCode": 500,
|
|
"IsSuccessful": False,
|
|
"errorMessage": f"Error occurred: {str(e)}"
|
|
}), 500 |