Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
braintree / customer_session_gateway.py
Size: Mime:
from typing import Dict
import braintree
from braintree.error_result import ErrorResult
from braintree.exceptions.unexpected_error import UnexpectedError
from braintree.successful_result import SuccessfulResult
from braintree.util.graphql_client import GraphQLClient
from braintree.graphql import (
    CreateCustomerSessionInput,
    UpdateCustomerSessionInput,
    CustomerRecommendations,
    CustomerRecommendationsInput,
    CustomerRecommendationsPayload,
    RecommendedPaymentOption,
    PaymentOptions,
)

class CustomerSessionGateway:
    """
    Creates and manages PayPal customer sessions.
    """
    def __init__(self, gateway):
        self.gateway = gateway
        self.graphql_client = self.gateway.graphql_client

    def create_customer_session(self, customer_session_input: CreateCustomerSessionInput):
        """
        Creates a new customer session.

        Example:
          customer_session = (
            CustomerSessionInput
            .builder()
            .email("test@example.com")
            .build()
          )

          create_input = (
            CreateCustomerSessionInput
            .builder()
            .customer(customer_session)
            .build()
          )

          result = gateway.customer_session.create_customer_session(create_input)
    
          if result.is_success:
            print(result.session_id)

        Args:
            CreateCustomerSessionInput: Input object for creating a customer session.
        
        Returns:
            (Successful|Error)Result: A result object with session ID if successful, or errors otherwise.

        Raises:
            UnexpectedError: If there is an unexpected error during the process.
        """
        mutation = """
            mutation CreateCustomerSession($input: CreateCustomerSessionInput!) {
              createCustomerSession(input: $input) {
                sessionId
              }
            }
        """
        variables = dict({"input": customer_session_input.to_graphql_variables()})
        return  self._execute_mutation(mutation, variables, "createCustomerSession")


    def update_customer_session(self, update_customer_session_input: UpdateCustomerSessionInput):
        """
        Updates an existing customer session.

        Example:
          customer_session = (
            CustomerSessionInput
            .builder()
            .email("test@example.com")
            .build()
          )

          update_input = (
            UpdateCustomerSessionInput
            .builder(session_id)
            .customer(customer_session)
            .build()
          )

          result = gateway.customer_session.update_customer_session(update_input)
    
          if result.is_success:
            print(result.session_id)

        Args:
            UpdateCustomerSessionInput: Input object for updating a customer session.
        
        Returns:
            (Successful|Error)Result: A result object with session ID if successful, or errors otherwise.

        Raises:
            UnexpectedError: If there is an unexpected error during the process.
        """
        mutation = """
            mutation UpdateCustomerSession($input: UpdateCustomerSessionInput!) {
              updateCustomerSession(input: $input) {
                sessionId
              }
            }
        """
        variables = dict({"input": update_customer_session_input.to_graphql_variables()})
        return self._execute_mutation(mutation, variables, "updateCustomerSession")

    def get_customer_recommendations(self, get_customer_recommendations_input: CustomerRecommendationsInput):
        """
        Retrieves customer recommendations associated with a customer session.

        Example:

          recommendations_input = (
            CustomerRecommendationsInput
              .builder()
              .session_id(session_id)
              .build()
          )

          result = gateway.customer_session.get_customer_recommendations(recommendations_input)
         
          if result.is_success:
            print(result.customer_recommendations.recommendations.payment_recommendations)

        Args:
            GenerateCustomerRecommendationsInput: Input object for retrieving customer recommendations.
        
        Returns:
            (Successful|Error)Result: A result object containing a GenerateCustomerRecommendationsPayload and a success flag if successful, or errors otherwise.

        Raises:
            UnexpectedError: If there is an unexpected error during the process.
        """
        query = """
            mutation GenerateCustomerRecommendations($input: GenerateCustomerRecommendationsInput!) {
                generateCustomerRecommendations(input: $input) {
                  isInPayPalNetwork
                  paymentRecommendations{
                    paymentOption
                    recommendedPriority
                  }
                }
              }
        """
        variables = dict({"input": get_customer_recommendations_input.to_graphql_variables()})
        response = self.graphql_client.query(query, variables)
        errors = GraphQLClient.get_validation_errors(response)

        if errors:
            return ErrorResult(self.gateway, {"errors": errors, "message": "Validation errors were found."})
        try:
            recommendations_payload = response["data"]
            customer_recommendations = CustomerRecommendationsPayload(
                response = recommendations_payload
            )
            return SuccessfulResult({"customer_recommendations": customer_recommendations})
        except KeyError:
            raise UnexpectedError("Couldn't parse response")

    
    def _execute_mutation(self, mutation: str, variables: Dict, operation: str):
        response = self.graphql_client.query(mutation, variables)
        errors = GraphQLClient.get_validation_errors(response)
        if errors:
            return ErrorResult(self.gateway, {"errors": errors, "message": "Validation errors were found."})
        try:
            session_id = response["data"][operation]["sessionId"]
            return  SuccessfulResult({"session_id": session_id})
        except KeyError:
            raise UnexpectedError("Couldn't parse response")