Coverage Report - com.jcabi.email.enclosure.EnBinary
 
Classes in this File Line Coverage Branch Coverage Complexity
EnBinary
73%
11/15
0%
0/28
2
 
 1  
 /**
 2  
  * Copyright (c) 2014-2017, jcabi.com
 3  
  * All rights reserved.
 4  
  *
 5  
  * Redistribution and use in source and binary forms, with or without
 6  
  * modification, are permitted provided that the following conditions
 7  
  * are met: 1) Redistributions of source code must retain the above
 8  
  * copyright notice, this list of conditions and the following
 9  
  * disclaimer. 2) Redistributions in binary form must reproduce the above
 10  
  * copyright notice, this list of conditions and the following
 11  
  * disclaimer in the documentation and/or other materials provided
 12  
  * with the distribution. 3) Neither the name of the jcabi.com nor
 13  
  * the names of its contributors may be used to endorse or promote
 14  
  * products derived from this software without specific prior written
 15  
  * permission.
 16  
  *
 17  
  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 18  
  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT
 19  
  * NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
 20  
  * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
 21  
  * THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
 22  
  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 23  
  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 24  
  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 25  
  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 26  
  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 27  
  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 28  
  * OF THE POSSIBILITY OF SUCH DAMAGE.
 29  
  */
 30  
 package com.jcabi.email.enclosure;
 31  
 
 32  
 import com.jcabi.aspects.Immutable;
 33  
 import com.jcabi.aspects.Loggable;
 34  
 import com.jcabi.email.Enclosure;
 35  
 import java.io.File;
 36  
 import java.io.IOException;
 37  
 import javax.mail.MessagingException;
 38  
 import javax.mail.internet.MimeBodyPart;
 39  
 import lombok.EqualsAndHashCode;
 40  
 import lombok.ToString;
 41  
 
 42  
 /**
 43  
  * Binary enclosure in MIME envelope.
 44  
  *
 45  
  * @author Yegor Bugayenko (yegor@teamed.io)
 46  
  * @version $Id: 851768569ddbede6f945712a8569e62e12e69858 $
 47  
  * @since 1.0
 48  
  */
 49  
 @Immutable
 50  0
 @ToString
 51  0
 @EqualsAndHashCode(of = { "path", "name", "ctype" })
 52  
 @Loggable(Loggable.DEBUG)
 53  
 public final class EnBinary implements Enclosure {
 54  
 
 55  
     /**
 56  
      * File path.
 57  
      */
 58  
     private final transient String path;
 59  
 
 60  
     /**
 61  
      * Name.
 62  
      */
 63  
     private final transient String name;
 64  
 
 65  
     /**
 66  
      * Content type.
 67  
      */
 68  
     private final transient String ctype;
 69  
 
 70  
     /**
 71  
      * Ctor.
 72  
      * @param file File to attach
 73  
      * @param label Name of the file to show
 74  
      * @param type MIME content type
 75  
      */
 76  1
     public EnBinary(final File file, final String label, final String type) {
 77  1
         this.path = file.getAbsolutePath();
 78  1
         this.name = label;
 79  1
         this.ctype = type;
 80  1
     }
 81  
 
 82  
     @Override
 83  
     public MimeBodyPart part() throws MessagingException {
 84  1
         final MimeBodyPart mime = new MimeBodyPart();
 85  
         try {
 86  1
             mime.attachFile(new File(this.path));
 87  0
         } catch (final IOException ex) {
 88  0
             throw new IllegalStateException(ex);
 89  1
         }
 90  1
         mime.setFileName(this.name);
 91  1
         mime.addHeader("Content-Type", this.ctype);
 92  1
         return mime;
 93  
     }
 94  
 }