HEX
Server: Apache/2.4.65 (Ubuntu)
System: Linux ielts-store-v2 6.8.0-1036-gcp #38~22.04.1-Ubuntu SMP Thu Aug 14 01:19:18 UTC 2025 x86_64
User: root (0)
PHP: 7.2.34-54+ubuntu20.04.1+deb.sury.org+1
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,
Upload Files
File: //snap/google-cloud-cli/current/lib/third_party/oauthlib/oauth2/rfc6749/__init__.py
# -*- coding: utf-8 -*-
"""oauthlib.oauth2.rfc6749 ~~~~~~~~~~~~~~~~~~~~~~~

This module is an implementation of various logic needed
for consuming and providing OAuth 2.0 RFC6749.
"""
from __future__ import absolute_import, unicode_literals

import functools
import logging

from .errors import TemporarilyUnavailableError, ServerError
from .errors import FatalClientError, OAuth2Error

log = logging.getLogger(__name__)


class BaseEndpoint(object):

  def __init__(self):
    self._available = True
    self._catch_errors = False

  @property
  def available(self):
    return self._available

  @available.setter
  def available(self, available):
    self._available = available

  @property
  def catch_errors(self):
    return self._catch_errors

  @catch_errors.setter
  def catch_errors(self, catch_errors):
    self._catch_errors = catch_errors


def catch_errors_and_unavailability(f):

  @functools.wraps(f)
  def wrapper(endpoint, uri, *args, **kwargs):
    if not endpoint.available:
      e = TemporarilyUnavailableError()
      log.info('Endpoint unavailable, ignoring request %s.' % uri)
      return {}, e.json, 503

    if endpoint.catch_errors:
      try:
        return f(endpoint, uri, *args, **kwargs)
      except OAuth2Error:
        raise
      except FatalClientError:
        raise
      except Exception as e:
        error = ServerError()
        log.warning('Exception caught while processing request, %s.' % e)
        return {}, error.json, 500
    else:
      return f(endpoint, uri, *args, **kwargs)

  return wrapper