Source code for airflow.providers.samba.hooks.samba
## Licensed to the Apache Software Foundation (ASF) under one# or more contributor license agreements. See the NOTICE file# distributed with this work for additional information# regarding copyright ownership. The ASF licenses this file# to you under the Apache License, Version 2.0 (the# "License"); you may not use this file except in compliance# with the License. You may obtain a copy of the License at## http://www.apache.org/licenses/LICENSE-2.0## Unless required by applicable law or agreed to in writing,# software distributed under the License is distributed on an# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY# KIND, either express or implied. See the License for the# specific language governing permissions and limitations# under the License.from__future__importannotationsimportposixpathfromfunctoolsimportwrapsfromshutilimportcopyfileobjfromtypingimportTYPE_CHECKING,Anyimportsmbclientfromairflow.hooks.baseimportBaseHookifTYPE_CHECKING:importsmbprotocol.connection
[docs]classSambaHook(BaseHook):""" Allows for interaction with a Samba server. The hook should be used as a context manager in order to correctly set up a session and disconnect open connections upon exit. :param samba_conn_id: The connection id reference. :param share: An optional share name. If this is unset then the "schema" field of the connection is used in its place. """
def__init__(self,samba_conn_id:str=default_conn_name,share:str|None=None)->None:super().__init__()conn=self.get_connection(samba_conn_id)ifnotconn.login:self.log.info("Login not provided")ifnotconn.password:self.log.info("Password not provided")connection_cache:dict[str,smbprotocol.connection.Connection]={}self._host=conn.hostself._share=shareorconn.schemaself._connection_cache=connection_cacheself._conn_kwargs={"username":conn.login,"password":conn.password,"port":conn.portor445,"connection_cache":connection_cache,}
[docs]def__enter__(self):# This immediately connects to the host (which can be# perceived as a benefit), but also help work around an issue:## https://github.com/jborean93/smbprotocol/issues/109.smbclient.register_session(self._host,**self._conn_kwargs)returnself
[docs]def__exit__(self,exc_type,exc_value,traceback):forhost,connectioninself._connection_cache.items():self.log.info("Disconnecting from %s",host)connection.disconnect()self._connection_cache.clear()
[docs]defpush_from_local(self,destination_filepath:str,local_filepath:str,buffer_size:int|None=None):""" Push local file to samba server. :param destination_filepath: the samba location to push to :param local_filepath: the file to push :param buffer_size: size in bytes of the individual chunks of file to send. Larger values may speed up large file transfers """extra_args=(buffer_size,)ifbuffer_sizeelse()withopen(local_filepath,"rb")asf,self.open_file(destination_filepath,mode="wb")asg:copyfileobj(f,g,*extra_args)
@classmethod
[docs]defget_ui_field_behaviour(cls)->dict[str,Any]:"""Return custom field behaviour."""return{"hidden_fields":["extra"],"relabeling":{"schema":"Share"},}