
    D6i                     b    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Z ed	       Zy)    )g)
LocalProxy)OAuth2ConsumerBlueprintz&Przemyslaw Kanach <kanach16@gmail.com>NF)
scopereprompt_consenthostname
is_sandboxredirect_urlredirect_to	login_urlauthorized_urlsession_classstoragec       
             i }|rd|d<   |s|rdnd}t        dt        | ||d| dd| dd| d	||||	||
|
      dj                  d<   dj                  d<   j                  fd       }S )a  
    Make a blueprint for authenticating with Salesforce using OAuth 2. This requires
    a client ID and client secret from Salesforce. You should either pass them to
    this constructor, or make sure that your Flask application config defines
    them, using the variables :envvar:`SALESFORCE_OAUTH_CLIENT_ID` and
    :envvar:`SALESFORCE_OAUTH_CLIENT_SECRET`.

    Args:
        client_id (str): The client ID for your application on Salesforce.
        client_secret (str): The client secret for your application on Salesforce.
        scope (str, optional): comma-separated list of scopes for the OAuth token.
        reprompt_consent (bool): If True, force Salesforce to re-prompt the user
            for their consent, even if the user has already given their
            consent. Defaults to False.
        hostname (str, optional): The hostname of your Salesforce instance.
            By default, Salesforce uses ``login.salesforce.com`` for production
            instances and ``test.salesforce.com`` for sandboxes.
        is_sandbox (bool): If hostname is not defined specify whether Salesforce
            instance is a sandbox. Defaults to False.
        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 ``/salesforce``.
        authorized_url (str, optional): the URL path for the ``authorized`` view.
            Defaults to ``/salesforce/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`.

    :rtype: :class:`~flask_dance.consumer.OAuth2ConsumerBlueprint`
    :returns: A :doc:`blueprint <flask:blueprints>` to attach to your Flask app.
    consentpromptztest.salesforce.comzlogin.salesforce.com
salesforcezhttps:///z/services/oauth2/authorizez/services/oauth2/token)	client_idclient_secretr   base_urlauthorization_url	token_urlr
   r   r   r   authorization_url_paramsr   r   SALESFORCE_OAUTH_CLIENT_IDr   SALESFORCE_OAUTH_CLIENT_SECRETr   c                  0     j                   t        _        y N)sessionr   flask_dance_salesforce)salesforce_bps   a/home/azureuser/techstart-app/venv/lib/python3.12/site-packages/flask_dance/contrib/salesforce.pyset_applocal_sessionz7make_salesforce_blueprint.<locals>.set_applocal_sessionY   s    #0#8#8     )r   __name__from_configbefore_app_request)r   r   r   r   r   r	   r
   r   r   r   r   r   r   r#   r!   s                 @r"   make_salesforce_blueprintr(   	   s    j  "-6 *,6(<R+#H:Q'$XJ.HIXJ&<=!%!9#M" .JMk*1QMo.%%9 &9 r$   c                  "    t         j                  S r   )r   r     r$   r"   <lambda>r+   `   s     8 8 r$   )NN)	flaskr   werkzeug.localr   flask_dance.consumerr   __maintainer__r(   r   r*   r$   r"   <module>r0      sU     % 89 T Tn 89
r$   