blob: 3db584799f34d93e22cc0abdb6700e95d62942d1 [file] [log] [blame]
/****************************************************************
* 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. *
****************************************************************/
package org.apache.hupa.server.service;
import java.io.ByteArrayOutputStream;
import javax.mail.Folder;
import javax.mail.Message;
import org.apache.hupa.shared.data.GetMessageRawResultImpl;
import org.apache.hupa.shared.domain.GetMessageRawAction;
import org.apache.hupa.shared.domain.GetMessageRawResult;
import org.apache.hupa.shared.domain.ImapFolder;
import org.apache.hupa.shared.domain.User;
import com.sun.mail.imap.IMAPFolder;
import com.sun.mail.imap.IMAPStore;
public class GetMessageRawServiceImpl extends AbstractService implements GetMessageRawService {
@Override
public GetMessageRawResult get(GetMessageRawAction action) throws Exception {
User user = getUser();
long uid = action.getUid();
ImapFolder folder = action.getFolder();
try {
IMAPStore store = cache.get(user);
IMAPFolder f = (IMAPFolder) store.getFolder(folder.getFullName());
if (f.isOpen() == false) {
f.open(Folder.READ_ONLY);
}
Message m = f.getMessageByUID(action.getUid());
ByteArrayOutputStream out = new ByteArrayOutputStream();
m.writeTo(out);
if (f.isOpen()) {
f.close(false);
}
return new GetMessageRawResultImpl(out.toString());
} catch (Exception e) {
logger.error("Unable to get raw content of msg for user " + user + " in folder " + folder + " with uid "
+ uid, e);
throw new Exception("Unable to et raw content of msg for user " + user + " in folder " + folder
+ " with uid " + uid);
}
}
}