Exemple #1
0
 def has_permissions_token(self):
     """
     Have we got a permissions token. If you've got 'should_ignore_paypal'
     enabled, then it will just happily return True.
     """
     return bool(paypal.should_ignore_paypal() or
                 self.paypal_permissions_token)
Exemple #2
0
 def has_permissions_token(self):
     """
     Have we got a permissions token. If you've got 'should_ignore_paypal'
     enabled, then it will just happily return True.
     """
     return bool(paypal.should_ignore_paypal()
                 or self.paypal_permissions_token)
Exemple #3
0
 def has_valid_permissions_token(self):
     """
     Have we got a valid permissions token by ping paypal. If you've got
     'should_ignore_paypal', then it will just happily return True.
     """
     token = self.paypal_permissions_token
     return bool(paypal.should_ignore_paypal() or
                 paypal.check_refund_permission(token))
Exemple #4
0
 def has_valid_permissions_token(self):
     """
     Have we got a valid permissions token by ping paypal. If you've got
     'should_ignore_paypal', then it will just happily return True.
     """
     if paypal.should_ignore_paypal():
         return True
     if not self.paypal_permissions_token:
         return False
     return paypal.check_refund_permission(self.paypal_permissions_token)
Exemple #5
0
 def has_valid_permissions_token(self):
     """
     Have we got a valid permissions token by ping paypal. If you've got
     'should_ignore_paypal', then it will just happily return True.
     """
     if paypal.should_ignore_paypal():
         return True
     if not self.paypal_permissions_token:
         return False
     return paypal.check_refund_permission(self.paypal_permissions_token)