
    D6i                     f    d dl mZ d dlmZ d dlmZ dZ	 	 d
ddddddddddddddZ ed	       Zy)    )g)
LocalProxy)OAuth2ConsumerBlueprintz(David Baumgold <david@davidbaumgold.com>NF)scopeofflineforce_reapprovedisable_signuprequire_roleredirect_urlredirect_to	login_urlauthorized_urlsession_classstoragerule_kwargsc                    i }|rd|d<   |rd|d<   |rd|d<   |r||d<   t        dt        | ||dd	d
|||	|
||||      dj                  d<   dj                  d<   j                  fd       }S )a
  
    Make a blueprint for authenticating with Dropbox using OAuth 2. This requires
    a client ID and client secret from Dropbox. You should either pass them to
    this constructor, or make sure that your Flask application config defines
    them, using the variables :envvar:`DROPBOX_OAUTH_CLIENT_ID` and
    :envvar:`DROPBOX_OAUTH_CLIENT_SECRET`.

    For more information about the ``force_reapprove``, ``disable_signup``,
    and ``require_role`` arguments, `check the Dropbox API documentation
    <https://www.dropbox.com/developers/documentation/http/overview>`_.

    Args:
        app_key (str): The client ID for your application on Dropbox.
        app_secret (str): The client secret for your application on Dropbox
        scope (str, optional): Comma-separated list of scopes for the OAuth token
        offline (bool): Whether to request `Dropbox offline access
            <https://www.dropbox.com/lp/developers/reference/oauth-guide>`_
            for the OAuth token. Defaults to False
        force_reapprove (bool): Force the user to approve the app again
            if they've already done so.
        disable_signup (bool): Prevent users from seeing a sign-up link
            on the authorization page.
        require_role (str): Pass the string ``work`` to require a Dropbox
            for Business account, or the string ``personal`` to require a
            personal account.
        redirect_url (str): the URL to redirect to after the authentication
            dance is complete
        redirect_to (str): if ``redirect_url`` is not defined, the name of the
            view to redirect to after the authentication dance is complete.
            The actual URL will be determined by :func:`flask.url_for`
        login_url (str, optional): the URL path for the ``login`` view.
            Defaults to ``/dropbox``
        authorized_url (str, optional): the URL path for the ``authorized`` view.
            Defaults to ``/dropbox/authorized``.
        session_class (class, optional): The class to use for creating a
            Requests session. Defaults to
            :class:`~flask_dance.consumer.requests.OAuth2Session`.
        storage: A token storage class, or an instance of a token storage
                class, to use for this blueprint. Defaults to
                :class:`~flask_dance.consumer.storage.session.SessionStorage`.
        rule_kwargs (dict, optional): Additional arguments that should be passed when adding
            the login and authorized routes. Defaults to ``None``.

    :rtype: :class:`~flask_dance.consumer.OAuth2ConsumerBlueprint`
    :returns: A :doc:`blueprint <flask:blueprints>` to attach to your Flask app.
    r   token_access_typetruer   r	   r
   dropboxzhttps://api.dropbox.com/2/z(https://www.dropbox.com/oauth2/authorizez$https://api.dropbox.com/oauth2/token)	client_idclient_secretr   base_urlauthorization_url	token_urlr   r   r   r   authorization_url_paramsr   r   r   DROPBOX_OAUTH_CLIENT_IDr   DROPBOX_OAUTH_CLIENT_SECRETr   c                  0     j                   t        _        y N)sessionr   flask_dance_dropbox)
dropbox_bps   ^/home/azureuser/techstart-app/venv/lib/python3.12/site-packages/flask_dance/contrib/dropbox.pyset_applocal_sessionz4make_dropbox_blueprint.<locals>.set_applocal_sessiong   s     * 2 2    )r   __name__from_configbefore_app_request)app_key
app_secretr   r   r   r	   r
   r   r   r   r   r   r   r   r   r$   r"   s                   @r#   make_dropbox_blueprintr+   	   s    ~  "8A !456< !235; !123? 0( -D8!%!9#!J$ +DJ;'.KJ?+""3 #3 r%   c                  "    t         j                  S r   )r   r!    r%   r#   <lambda>r.   n   s    Q22 r%   )NN)	flaskr   werkzeug.localr   flask_dance.consumerr   __maintainer__r+   r   r-   r%   r#   <module>r3      s[     % 8; b bJ 2
3r%   