Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
#!/usr/bin/env python
#
# Copyright (c) 2012-2021 Snowflake Computing Inc. All rights reserved.
#

from __future__ import annotations

from .auth_by_plugin import AuthByPlugin


class AuthByDefault(AuthByPlugin):
    """Default username and password authenticator."""

    @property
    def assertion_content(self):
        return "*********"

    def __init__(self, password):
        """Initializes an instance with a password."""
        super().__init__()
        self._password = password

    def authenticate(self, authenticator, service_name, account, user, password):
        """NOOP."""
        pass

    def update_body(self, body):
        """Sets the password if available."""
        if self._password:
            body["data"]["PASSWORD"] = self._password