Source code for airflow.providers.amazon.aws.transfers.imap_attachment_to_s3
## 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."""This module allows you to transfer mail attachments from a mail server into s3 bucket."""fromairflow.modelsimportBaseOperatorfromairflow.providers.amazon.aws.hooks.s3importS3Hookfromairflow.providers.imap.hooks.imapimportImapHook
[docs]classImapAttachmentToS3Operator(BaseOperator):""" Transfers a mail attachment from a mail server into s3 bucket. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:ImapAttachmentToS3Operator` :param imap_attachment_name: The file name of the mail attachment that you want to transfer. :type imap_attachment_name: str :param s3_key: The destination file name in the s3 bucket for the attachment. :type s3_key: str :param imap_check_regex: If set checks the `imap_attachment_name` for a regular expression. :type imap_check_regex: bool :param imap_mail_folder: The folder on the mail server to look for the attachment. :type imap_mail_folder: str :param imap_mail_filter: If set other than 'All' only specific mails will be checked. See :py:meth:`imaplib.IMAP4.search` for details. :type imap_mail_filter: str :param s3_overwrite: If set overwrites the s3 key if already exists. :type s3_overwrite: bool :param imap_conn_id: The reference to the connection details of the mail server. :type imap_conn_id: str :param s3_conn_id: The reference to the s3 connection details. :type s3_conn_id: str """
[docs]defexecute(self,context)->None:""" This function executes the transfer from the email server (via imap) into s3. :param context: The context while executing. :type context: dict """self.log.info('Transferring mail attachment %s from mail server via imap to s3 key %s...',self.imap_attachment_name,self.s3_key,)withImapHook(imap_conn_id=self.imap_conn_id)asimap_hook:imap_mail_attachments=imap_hook.retrieve_mail_attachments(name=self.imap_attachment_name,check_regex=self.imap_check_regex,latest_only=True,mail_folder=self.imap_mail_folder,mail_filter=self.imap_mail_filter,)s3_hook=S3Hook(aws_conn_id=self.s3_conn_id)s3_hook.load_bytes(bytes_data=imap_mail_attachments[0][1],key=self.s3_key,replace=self.s3_overwrite)