
    D6i                         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slack_compliance_fix)
LocalProxy)OAuth2ConsumerBlueprintz(David Baumgold <david@davidbaumgold.com>c                       e Zd Zd Zy)SlackBlueprintc                     t        |      S Nr   )selfsessions     \/home/azureuser/techstart-app/venv/lib/python3.12/site-packages/flask_dance/contrib/slack.pysession_createdzSlackBlueprint.session_created   s    #G,,    N)__name__
__module____qualname__r    r   r   r	   r	   
   s    -r   r	   N)	scoperedirect_urlredirect_to	login_urlauthorized_urlsession_classstorage	subdomainrule_kwargsc       	             |xs ddg}t        dt        | ||d|	dnd|	 dd|||||||
	      d
j                  d<   dj                  d<   j                  fd       }S )a  
    Make a blueprint for authenticating with Slack using OAuth 2. This requires
    a client ID and client secret from Slack. You should either pass them to
    this constructor, or make sure that your Flask application config defines
    them, using the variables :envvar:`SLACK_OAUTH_CLIENT_ID` and
    :envvar:`SLACK_OAUTH_CLIENT_SECRET`.

    Args:
        client_id (str): The client ID for your application on Slack.
        client_secret (str): The client secret for your application on Slack
        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 ``/slack``
        authorized_url (str, optional): the URL path for the ``authorized`` view.
            Defaults to ``/slack/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`.
        subdomain (str, optional): the name of the subdomain under which your
            Slack space is accessed. Providing this may improve the login experience.
        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.
    identifyzchat:write:botslackzhttps://slack.com/api/z!https://slack.com/oauth/authorizezhttps://z.slack.com/oauth/authorizez"https://slack.com/api/oauth.access)	client_idclient_secretr   base_urlauthorization_url	token_urlr   r   r   r   r   r   r   SLACK_OAUTH_CLIENT_IDr!   SLACK_OAUTH_CLIENT_SECRETr"   c                  0     j                   t        _        y r   )r   r   flask_dance_slack)slack_bps   r   set_applocal_sessionz2make_slack_blueprint.<locals>.set_applocal_sessionX   s    &..r   )r	   r   from_configbefore_app_request)r!   r"   r   r   r   r   r   r   r   r   r   r+   r*   s               @r   make_slack_blueprintr.      s    ` 3j"23E#)   0I;&@A6!%#'H* )@H%,GH)  / !/ Or   c                  "    t         j                  S r   )r   r)   r   r   r   <lambda>r0   _   s    1.. r   )NN)flaskr   (requests_oauthlib.compliance_fixes.slackr   werkzeug.localr   flask_dance.consumerr   __maintainer__r	   r.   r    r   r   r   <module>r6      sb     I % 8;-, - M M` 	./r   