Skip to content
Snippets Groups Projects
data-set-processing-mail.py 1.14 KiB
Newer Older
  • Learn to ignore specific revisions
  • import org.apache.commons.io.IOUtils as IOUtils
    
    def process(dataSet):
        dataSetCode = dataSet.getDataSetCode()
        print "script processing " + dataSetCode
        processNode(dataSet.getContent().getRootNode(), dataSet.getDataSetCode())
        
    def processNode(node, dataSetCode):
        print "process node: " + dataSetCode + "/" + node.getRelativePath()
        if node.isDirectory():
            for child in node.getChildNodes():
                processNode(child, dataSetCode)
        else:
            fileAsString = IOUtils.readLines(node.getInputStream()).toString()
            fileName = node.getName()
            
            if fileName.endswith(".txt"):
                mailService.createEmailSender().\
                    withSubject("processed text file " + fileName).\
                    withBody("see the attached file").\
                    withAttachedText(fileAsString, fileName).\
                    send()
            else:
                filePath = node.getFile().getPath()
                mailService.createEmailSender().\
                    withSubject("processed file " + fileName).\
                    withBody("see the attached file").\
                    withAttachedFile(filePath, fileName).\
                    send()