
    D6iw                         d dl mZ d dlmZ d dlmZ d dlmZ dZ G d de      Z		 	 ddd	dddddddd
	dZ
 ed       Zy)    )g)
LocalProxy)OAuth2ConsumerBlueprint)OAuth2Sessionz(David Baumgold <david@davidbaumgold.com>c                        e Zd Z fdZ xZS )HerokuOAuth2Sessionc                 L    t        |   |i | d| }|| j                  d<   y )Nz%application/vnd.heroku+json; version=Accept)super__init__headers)selfapi_versionargskwargsaccept	__class__s        ]/home/azureuser/techstart-app/venv/lib/python3.12/site-packages/flask_dance/contrib/heroku.pyr   zHerokuOAuth2Session.__init__   s/    $)&)8F!'X    )__name__
__module____qualname__r   __classcell__)r   s   @r   r   r   
   s    ( (r   r   N3)	scoper   redirect_urlredirect_to	login_urlauthorized_urlsession_classstoragerule_kwargsc       	             t        dt        | |||ddd|||||xs t        |	|
      dj                  d<   dj                  d	<   j                  fd
       }S )a  
    Make a blueprint for authenticating with Heroku using OAuth 2. This requires
    a client ID and client secret from Heroku. You should either pass them to
    this constructor, or make sure that your Flask application config defines
    them, using the variables :envvar:`HEROKU_OAUTH_CLIENT_ID` and
    :envvar:`HEROKU_OAUTH_CLIENT_SECRET`.

    Args:
        client_id (str): The client ID for your application on Heroku.
        client_secret (str): The client secret for your application on Heroku
        scope (str, optional): comma-separated list of scopes for the OAuth token
        api_version (str): The version number of the Heroku API you want to use.
            Defaults to version 3.
        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 ``/heroku``
        authorized_url (str, optional): the URL path for the ``authorized`` view.
            Defaults to ``/heroku/authorized``.
        session_class (class, optional): The class to use for creating a
            Requests session. Defaults to
            :class:`~flask_dance.contrib.HerokuOAuth2Session`.
        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.
    herokuzhttps://api.heroku.com/z%https://id.heroku.com/oauth/authorizez!https://id.heroku.com/oauth/token)	client_idclient_secretr   r   base_urlauthorization_url	token_urlr   r   r   r   r    r!   r"   HEROKU_OAUTH_CLIENT_IDr%   HEROKU_OAUTH_CLIENT_SECRETr&   c                  0     j                   t        _        y N)sessionr   flask_dance_heroku)	heroku_bps   r   set_applocal_sessionz3make_heroku_blueprint.<locals>.set_applocal_sessionV   s    (00r   )r   r   r   from_configbefore_app_request)r%   r&   r   r   r   r   r   r   r    r!   r"   r1   r0   s               @r   make_heroku_blueprintr4      s    ` (#*A5!%#:':!I$ *BI+&-II/*!!1 "1 r   c                  "    t         j                  S r-   )r   r/    r   r   <lambda>r7   ]   s    A00 r   )NN)flaskr   werkzeug.localr   flask_dance.consumerr   flask_dance.consumer.requestsr   __maintainer__r   r4   r$   r6   r   r   <module>r=      sa     % 8 7;(- ( I IX 
0	1r   