
    D6i~                     `    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Z ed	       Zy)    )g)
LocalProxy)OAuth2ConsumerBlueprintz"Matthew Evans <git@ml-evs.science>NF)	scoperedirect_urlredirect_to	login_urlauthorized_urlsession_classstoragerule_kwargssandboxc       	             d}d}d}|
rd}d}d}t        dt        | ||||||||||||	      d	j                  d
<   dj                  d<   j                  fd       }S )a)  
    Make a blueprint for authenticating with ORCID (https://orcid.org)
    using OAuth2.

    This requires a client ID and client secret from ORCID. You should
    either pass them to this constructor, or make sure that your Flask
    application config defines them, using the variables
    :envvar:`ORCID_OAUTH_CLIENT_ID` and :envvar:`ORCID_OAUTH_CLIENT_SECRET`.

    The ORCID Sandbox API (https://sandbox.orcid.org) will be used if
    the ``sandbox`` argument is set to true.

    Args:
        client_id (str): The client ID for your application on ORCID.
        client_secret (str): The client secret for your application on ORCID
        scope (str, optional): comma-separated list of scopes for the OAuth token
        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 ``/orcid``
        authorized_url (str, optional): the URL path for the ``authorized`` view.
            Defaults to ``/orcid/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``.
        sandbox (bool): Whether to use the ORCID sandbox instead of the production API.

    :rtype: :class:`~flask_dance.consumer.OAuth2ConsumerBlueprint`
    :returns: A :doc:`blueprint <flask:blueprints>` to attach to your Flask app.
    zhttps://api.orcid.orgz!https://orcid.org/oauth/authorizezhttps://orcid.org/oauth/tokenzhttps://api.sandbox.orcid.orgz)https://sandbox.orcid.org/oauth/authorizez%https://sandbox.orcid.org/oauth/tokenorcid)	client_idclient_secretr   base_urlauthorization_url	token_urlr   r   r	   r
   r   r   r   ORCID_OAUTH_CLIENT_IDr   ORCID_OAUTH_CLIENT_SECRETr   c                  0     j                   t        _        y N)sessionr   flask_dance_orcid)orcid_bps   \/home/azureuser/techstart-app/venv/lib/python3.12/site-packages/flask_dance/contrib/orcid.pyset_applocal_sessionz2make_orcid_blueprint.<locals>.set_applocal_sessionZ   s    &..    )r   __name__from_configbefore_app_request)r   r   r   r   r   r	   r
   r   r   r   r   r   r   r   r   r   s                  @r   make_orcid_blueprintr#   	   s    j 'H;/I2G;	&#+!%#H" )@H%,GH)  / !/ Or   c                  "    t         j                  S r   )r   r    r   r   <lambda>r&   a   s    1.. r   )NN)	flaskr   werkzeug.localr   flask_dance.consumerr   __maintainer__r#   r   r%   r   r   <module>r+      sR     % 85 U Up 	./r   