
    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'Matt Bachmann <bachmann.matt@gmail.com>NF)	scoperedirect_urlredirect_to	login_urlauthorized_urlrerequest_declined_permissionssession_classstoragerule_kwargsc       	             i }|rd|d<   t        dt        | ||dd|d||||||	|
      dj                  d	<   d
j                  d<   j                  fd       }S )a  
    Make a blueprint for authenticating with Facebook using OAuth 2. This requires
    a client ID and client secret from Facebook. You should either pass them to
    this constructor, or make sure that your Flask application config defines
    them, using the variables :envvar:`FACEBOOK_OAUTH_CLIENT_ID` and
    :envvar:`FACEBOOK_OAUTH_CLIENT_SECRET`.

    Args:
        client_id (str): The client ID for your application on Facebook.
        client_secret (str): The client secret for your application on Facebook
        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 ``/facebook``
        authorized_url (str, optional): the URL path for the ``authorized`` view.
            Defaults to ``/facebook/authorized``.
        rerequest_declined_permissions (bool, optional): should the blueprint ask again for declined permissions.
            Defaults to ``False``
        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.
    	rerequest	auth_typefacebookzhttps://graph.facebook.com/z%https://www.facebook.com/dialog/oauthz-https://graph.facebook.com/oauth/access_token)	client_idclient_secretr   base_urlauthorization_urlauthorization_url_params	token_urlr   r   r	   r
   r   r   r   FACEBOOK_OAUTH_CLIENT_IDr   FACEBOOK_OAUTH_CLIENT_SECRETr   c                  0     j                   t        _        y N)sessionr   flask_dance_facebook)facebook_bps   _/home/azureuser/techstart-app/venv/lib/python3.12/site-packages/flask_dance/contrib/facebook.pyset_applocal_sessionz5make_facebook_blueprint.<locals>.set_applocal_sessionQ   s    !,!4!4    )r   __name__from_configbefore_app_request)r   r   r   r   r   r	   r
   r   r   r   r   r   r!   r   s                @r    make_facebook_blueprintr&   	   s    `  "%0; -)#.A!9A!%#!K$ ,FKK(/MKO,##5 $5 r"   c                  "    t         j                  S r   )r   r    r"   r    <lambda>r)   X   s    a44 r"   )NN)	flaskr   werkzeug.localr   flask_dance.consumerr   __maintainer__r&   r   r(   r"   r    <module>r.      sR     % 8: L #(L^ 45r"   