文章目录
1.使用celery异步发送短信1.1 在`celery_task/mian.py`中添加发送短信函数1.2 在`verifications/views.py`中添加celery发送短信试图函数1.3 添加路由
2.测试接口
1.使用celery异步发送短信
1.1 在celery_task/mian.py中添加发送短信函数
CELERY_BASE_DIR
= os
.path
.dirname
(os
.path
.abspath
(__file__
))
@app
.task
(bind
=True)
def send_sms_code(self
, mobile
, datas
):
sys
.path
.insert
(0, os
.path
.join
(CELERY_BASE_DIR
, '../syl'))
from libs
.rl_sms
import send_message
try:
res
= send_message
(mobile
, datas
)
except Exception
as e
:
res
= '-1'
if res
== '-1':
self
.retry
(countdown
=5, max_retries
=3, exc
=Exception
('短信发送失败'))
1.2 在verifications/views.py中添加celery发送短信试图函数
class SmsCodeView(APIView
):
"""使用apiview的限流"""
permission_classes
= (AllowAny
,)
def post(self
, request
):
phone
= request
.data
.get
('phone')
image_code
= request
.data
.get
('image_code')
image_code_uuid
= request
.data
.get
('image_code_uuid')
if not all([phone
, image_code
, image_code_uuid
]):
return Response
({"code": 999, "msg": "参数不全"})
if not re
.match
(r
'^1[3456789]\d{9}$', phone
):
return Response
({"code": 999, "msg": "手机号码不正确"})
redis_client
= get_redis_connection
('img_code')
phone_exists
= redis_client
.get
(phone
)
if phone_exists
:
return Response
({"code": 999, "msg": "频繁发送, 请稍后再试"})
redis_image_code
= redis_client
.get
(image_code_uuid
)
if redis_image_code
:
redis_image_code
= redis_image_code
.decode
()
if image_code
.upper
() != redis_image_code
:
return Response
({'code': 999, 'msg': '图片验证码不正确'})
code
= '%06d' % random
.randint
(0, 999999)
from syl
.settings
import BASE_DIR
sys
.path
.insert
(0, os
.path
.join
(BASE_DIR
, '../celery_task'))
from main
import send_sms_code
send_sms_code
.delay
(phone
, (code
, "5"))
print(code
)
pl
= redis_client
.pipeline
()
pl
.setex
(phone
, 60 * 5, code
)
pl
.delete
(image_code_uuid
)
pl
.execute
()
return Response
({"code": 0, "msg": "短信发送成功"})
1.3 添加路由
urlpatterns
= [
path
('sms_codes/', views
.SmsCodeView
.as_view
()),
]
2.测试接口
接口URL
http://192.168.56.100:8888/user/sms_codes/
请求携带参数
{
"phone": 18538752511,
"image_code":"aed3",
"image_code_uuid":"de8edce2-fc9f-11ea-9325-005056c00008"
}