Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/**
* Copyright (c) 2009-2016, netbout.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are PROHIBITED without prior written permission from
* the author. This product may NOT be used anywhere and on any computer
* except the server platform of netbout Inc. located at www.netbout.com.
* Federal copyright law prohibits unauthorized reproduction by any means
* and imposes fines up to $25,000 for violation. If you received
* this code accidentally and without intent to use it, please report this
* incident to the author by email.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
package com.netbout.email;
import com.google.common.base.Joiner;
import com.jcabi.aspects.Immutable;
import com.jcabi.aspects.Loggable;
import com.jcabi.email.Envelope;
import com.jcabi.email.Postman;
import com.jcabi.email.enclosure.EnHTML;
import com.jcabi.email.stamp.StRecipient;
import com.jcabi.email.stamp.StSender;
import com.jcabi.email.stamp.StSubject;
import com.netbout.rest.Markdown;
import com.netbout.spi.Alias;
import com.netbout.spi.Bout;
import com.netbout.spi.Inbox;
import java.io.IOException;
import java.net.URI;
import java.util.Locale;
import lombok.EqualsAndHashCode;
import lombok.ToString;
/**
* Email Alias.
*
* @author Yegor Bugayenko ([email protected])
* @version $Id: 81d3baa4a99599aa4ada43d0062c58f28238ae53 $
* @since 2.12
* @checkstyle ClassDataAbstractionCouplingCheck (500 lines)
*/
@Immutable
@Loggable(Loggable.DEBUG)
@ToString(of = "origin")
@EqualsAndHashCode(of = "origin")
final class EmAlias implements Alias {
/**
* Original.
*/
private final transient Alias origin;
/**
* Postman.
*/
private final transient Postman postman;
/**
* Public ctor.
* @param org Origin
* @param pst Postman
*/
EmAlias(final Alias org, final Postman pst) {
this.origin = org;
this.postman = new Postman() {
@Override
public void send(final Envelope envelope) throws IOException {
pst.send(
new Envelope.MIME(envelope).with(
new StSender(org.name(), "[email protected]")
)
);
}
};
}
@Override
public String name() throws IOException {
return this.origin.name();
}
@Override
public URI photo() throws IOException {
return this.origin.photo();
}
@Override
public Locale locale() throws IOException {
return this.origin.locale();
}
@Override
public void photo(final URI uri) throws IOException {
this.origin.photo(uri);
}
@Override
public String email() throws IOException {
return this.origin.email();
}
@Override
public void email(final String email) throws IOException {
this.origin.email(email);
}
@Override
public void email(final String email, final String urn, final Bout bout)
throws IOException {
this.origin.email(email);
new BoutInviteMail(this.postman).send(email, urn, bout);
}
// @todo #738:30min We need to improve the format and content of the
// verification email. Currently, it only asks the user to verify
// the new email by using the provided verification link. We may add
// some header, footer, note like "Ignore this email if you did not
// change your email address", etc.
@Override
public void email(final String email, final String link)
throws IOException {
this.email(email);
try {
this.postman.send(
new Envelope.MIME()
.with(new StSubject("Netbout email verification"))
.with(
new StRecipient(
email.substring(email.indexOf('!') + 1)
)
)
.with(
new EnHTML(
Joiner.on('\n').join(
new Markdown.Default().html(
"Please verify your new email:"
), " ",
String.format("%s", link, link)
)
)
)
);
} catch (final IOException exc) {
throw new IOException(
// @checkstyle StringLiteralsConcatenationCheck (2 lines)
"Sorry we were not able to send the verification link to "
+ "the new email address.", exc
);
}
}
@Override
public Inbox inbox() throws IOException {
return new EmInbox(this.origin.inbox(), this.postman, this.name());
}
}