Пример #1
0
    def update(self, request, *args, **kwargs):
        """
        :param request: old_password, new_password
        :param args:
        :param kwargs:
        :return: success message
        """
        self.object = self.get_object()
        serializer = self.get_serializer(data=request.data)

        if serializer.is_valid():
            # Check old password
            if not self.object.check_password(
                    serializer.data.get("old_password")):
                return Response(
                    {"old_password": ["Wrong password."]},
                    status=status.HTTP_400_BAD_REQUEST,
                )

            # set_password also hashes the password that the user will get
            self.object.set_password(serializer.data.get("new_password"))
            self.object.save()
            response = {
                "status": "success",
                "code": status.HTTP_200_OK,
                "message": "Password updated successfully",
                "data": [],
            }

            return Response(response)

        return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST)
Пример #2
0
    def post(self, request):
        """
        :param request: username, password, email, first_name, last_name, gender, dob, country, state, visit_reason
        :return: success message: Registered successfully
        """

        serializer = CreateUserSerializer(data=request.data)
        serializer.is_valid(raise_exception=True)
        if serializer.is_valid():

            try:
                # Adding user info to stripe
                # stripe.api_key = settings.STRIPE_KEY
                # r = stripe.Customer.create(
                #     address={'country': request.data['country'], 'state': request.data['state']},
                #     email=request.data['email'],
                #     name=request.data['first_name'] + " " + request.data['last_name'],
                # )
                serializer.save()

                # Adding stripe ID to user object
                instance = User.objects.get(email=request.data['email'])
                # instance.strip_id = r.get("id")
                otp = OTP.generateOTP(self)
                instance.otp = otp
                instance.save()

                # Creating default plan for user
                # plan_instance = Plans.objects.get(id=settings.DEFAULT_PLAN)
                # subscription_object = Subscriptions(user=instance, plan=plan_instance)
                # subscription_object.save()

                # #send email for email verification
                current_site = get_current_site(request)
                email_subject = 'Activate Your Account'
                # here we create message in the html form in the we pass user,domain,otp
                message = render_to_string('users/email.html', {
                    'user': instance,
                    'otp': otp,
                })
                to_email = request.data['email']
                email = EmailMessage(email_subject, message, to=[to_email])
                email.send()
                return Response({"message": "Registered successfully"})

            except Exception as e:
                return Response(data={'message': str(e)},
                                status=status.HTTP_500_INTERNAL_SERVER_ERROR)
        else:
            return Response(serializer.errors)
Пример #3
0
 def post(self, request, *args, **kwargs):
     num = request.data['otp']
     try:
         user = User.objects.get(otp=num)
         if not user.is_active:
             user.is_active = True
             user.otp = OTP.generateOTP(self)
             user.save()
             return Response(
                 data={"message": "Your account has been Activated"})
         else:
             return Response(
                 data={"message": "Your account already Activate"},
                 status=status.HTTP_200_OK)
     except Exception as e:
         return Response(data={"message": str(e)},
                         status=status.HTTP_404_NOT_FOUND)
Пример #4
0
def response_failed_400():
    """
    返回请求失败
    :return: response(dict)
    """
    response = dict()
    response['msg'] = 'Request Parameter Error'
    response['result'] = dict()
    response['code'] = 400
    return Response(response, status=400)
Пример #5
0
def response_failed_400():
    """
    返回请求失败
    :return: response(dict)
    """
    response = dict()
    response['msg'] = '请求参数错误'
    response['result'] = dict()
    response['code'] = 400
    return Response(response, status=400)
Пример #6
0
    def post(self, request, *args, **kwargs):
        """
            :param request: token
            :return: success message
            """
        r = requests.post(
            settings.URL_TYPE + "/o/revoke_token/",
            data={
                "token": request.data["token"],
                "client_id": settings.CLIENT_ID,
                "client_secret": settings.CLIENT_SECRET,
            },
        )
        # If it goes well return success message (would be empty otherwise)
        if r.status_code == requests.codes.ok:
            return Response({"message": "token revoked"}, r.status_code)

        # Return the error if it goes badly
        return Response(r.json(), r.status_code)
Пример #7
0
 def post(self, request):
     """
     :param request: refresh_token
     :return: access_token, refresh_token, scope, validity
     """
     r = requests.post(
         settings.URL_TYPE + "/o/token/",
         data={
             "grant_type": "refresh_token",
             "refresh_token": request.data["refresh_token"],
             "client_id": settings.CLIENT_ID,
             "client_secret": settings.CLIENT_SECRET,
         },
         verify=False,
     )
     if r.status_code == 200:
         return Response(r.json())
     else:
         return Response(r.json(), r.status_code)
Пример #8
0
def response_success_200(res={}):
    """
    返回请求成功
    :param data_dict:
    :return: response(dict)
    """
    response = dict()
    response['msg'] = 'Request Success'
    response['result'] = res
    response['code'] = 200
    return Response(response, status=200)
Пример #9
0
 def create(self, request, *args, **kwargs):
     serializer = self.get_serializer(data=request.data)
     serializer.is_valid(raise_exception=True)
     user = self.perform_create(serializer)
     re_dict = serializer.data
     payload = jwt_payload_handler(user)
     re_dict["token"] = jwt_encode_handler(payload)
     re_dict["name"] = user.name if user.name else user.username
     headers = self.get_success_headers(serializer.data)
     return Response(re_dict,
                     status=status.HTTP_201_CREATED,
                     headers=headers)
Пример #10
0
 def list(self, request, id=None, *args, **kwargs):
     if id:
         states = States.objects.filter(country_id=id)
         serializer = StateSerializer(states, many=True)
         return Response(data=serializer.data, status=status.HTTP_200_OK)
Пример #11
0
 def list(self, request, *args, **kwargs):
     countries = Country.objects.all()
     serializer = CountrySerializer(countries, many=True)
     return Response(data=serializer.data, status=status.HTTP_200_OK)
Пример #12
0
    def post(self, request, *args, **kwargs):
        """
        :param request: username, password
        :param args:
        :param kwargs:
        :return: user data, token data
        """

        try:
            regex = '^[a-z0-9]+[\._]?[a-z0-9]+[@]\w+[.]\w+$'
            if re.search(regex, request.data["username"]):
                user = User.objects.filter(email=request.data["username"])
                if len(user):
                    username = user[0].username
                    # isVerified = user[0].isVerified
                    scope = user[0].role
                    if user[0].is_active == False:
                        return Response({
                            "message":
                            "Your account has been suspended, please contact customer care service for more information."
                        })
                    # elif isVerified == False:
                    #     return Response({"message": "Email not verified."})
                    user = user[0]
                else:
                    return Response(data={"message": "Invalid Credentials"},
                                    status=status.HTTP_400_BAD_REQUEST)
            else:
                user = User.objects.get(username=request.data["username"])
                username = request.data["username"]
                # isVerified = user.isVerified
                scope = user.role
                if user.is_active == False:
                    return Response({
                        "message":
                        "Your account has been suspended, please contact customer care service for more information."
                    })
                # elif isVerified == False:
                #     return Response({"message": "Email not verified."})

        except Exception as e:

            return Response(status=status.HTTP_500_INTERNAL_SERVER_ERROR,
                            data={'error': str(e)})

        r = requests.post(
            settings.URL_TYPE + "/o/token/",
            data={
                "grant_type": "password",
                "username": username,
                "password": request.data["password"],
                "scope": scope,
                "client_id": settings.CLIENT_ID,
                "client_secret": settings.CLIENT_SECRET,
            },
        )

        if r.status_code == 400:
            json_res = {"message": "Bad request or Invalid credentials"}
            return Response(data=json_res, status=r.status_code)
        else:
            res = r.json()

            res['strip_id'] = user.strip_id
            res['fullname'] = user.fullname()
            res['email'] = user.email
            return Response(res)
Пример #13
0
 def create_form(self, request, *args, **kwargs):
     return Response({})