2010-06-02 04:46:46 -04:00
|
|
|
/*
|
|
|
|
* DavMail POP/IMAP/SMTP/CalDav/LDAP Exchange Gateway
|
|
|
|
* Copyright (C) 2010 Mickael Guessant
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
package davmail.exchange.ews;
|
|
|
|
|
2010-06-07 17:17:07 -04:00
|
|
|
import davmail.exception.DavMailAuthenticationException;
|
2010-06-02 04:46:46 -04:00
|
|
|
import davmail.exception.DavMailException;
|
2010-07-21 11:39:51 -04:00
|
|
|
import davmail.exception.HttpNotFoundException;
|
2010-06-02 04:46:46 -04:00
|
|
|
import davmail.exchange.ExchangeSession;
|
2010-06-07 17:17:07 -04:00
|
|
|
import davmail.http.DavGatewayHttpClientFacade;
|
2010-07-19 18:01:11 -04:00
|
|
|
import davmail.util.IOUtil;
|
2010-06-07 17:17:07 -04:00
|
|
|
import davmail.util.StringUtil;
|
2010-07-05 05:58:18 -04:00
|
|
|
import org.apache.commons.codec.binary.Base64;
|
2010-07-07 05:20:42 -04:00
|
|
|
import org.apache.commons.httpclient.HttpException;
|
2010-06-02 04:46:46 -04:00
|
|
|
import org.apache.commons.httpclient.HttpMethod;
|
2010-06-07 17:17:07 -04:00
|
|
|
import org.apache.commons.httpclient.HttpStatus;
|
2010-07-27 06:26:19 -04:00
|
|
|
import org.apache.commons.httpclient.methods.GetMethod;
|
2010-06-02 04:46:46 -04:00
|
|
|
|
2010-07-19 18:01:11 -04:00
|
|
|
import java.io.IOException;
|
2010-07-07 05:20:42 -04:00
|
|
|
import java.net.HttpURLConnection;
|
2010-06-09 05:52:12 -04:00
|
|
|
import java.net.NoRouteToHostException;
|
|
|
|
import java.net.UnknownHostException;
|
2010-07-07 05:20:42 -04:00
|
|
|
import java.text.ParseException;
|
2010-07-27 09:19:28 -04:00
|
|
|
import java.text.SimpleDateFormat;
|
2010-06-10 16:47:55 -04:00
|
|
|
import java.util.*;
|
2010-06-02 04:46:46 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* EWS Exchange adapter.
|
|
|
|
* Compatible with Exchange 2007 and hopefully 2010.
|
|
|
|
*/
|
|
|
|
public class EwsExchangeSession extends ExchangeSession {
|
|
|
|
|
2010-06-08 06:44:47 -04:00
|
|
|
protected Map<String, String> folderIdMap;
|
2010-07-27 08:58:23 -04:00
|
|
|
protected String serverVersion;
|
2010-06-08 06:44:47 -04:00
|
|
|
|
2010-06-07 17:17:07 -04:00
|
|
|
protected class Folder extends ExchangeSession.Folder {
|
2010-06-07 05:07:31 -04:00
|
|
|
public FolderId folderId;
|
|
|
|
}
|
|
|
|
|
2010-06-30 17:36:13 -04:00
|
|
|
protected static class FolderPath {
|
2010-07-19 05:22:42 -04:00
|
|
|
protected final String parentPath;
|
|
|
|
protected final String folderName;
|
2010-06-29 10:15:50 -04:00
|
|
|
|
|
|
|
protected FolderPath(String folderPath) {
|
|
|
|
int slashIndex = folderPath.lastIndexOf('/');
|
|
|
|
if (slashIndex < 0) {
|
|
|
|
parentPath = "";
|
|
|
|
folderName = folderPath;
|
|
|
|
} else {
|
|
|
|
parentPath = folderPath.substring(0, slashIndex);
|
|
|
|
folderName = folderPath.substring(slashIndex + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-02 04:46:46 -04:00
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public EwsExchangeSession(String url, String userName, String password) throws IOException {
|
|
|
|
super(url, userName, password);
|
|
|
|
}
|
|
|
|
|
2010-06-09 05:52:12 -04:00
|
|
|
@Override
|
|
|
|
public boolean isExpired() throws NoRouteToHostException, UnknownHostException {
|
2010-06-10 16:47:55 -04:00
|
|
|
// TODO: implement
|
|
|
|
return false;
|
2010-06-09 05:52:12 -04:00
|
|
|
}
|
|
|
|
|
2010-06-02 04:46:46 -04:00
|
|
|
@Override
|
|
|
|
protected void buildSessionInfo(HttpMethod method) throws DavMailException {
|
|
|
|
// nothing to do, mailPath not used in EWS mode
|
2010-06-07 17:17:07 -04:00
|
|
|
// check EWS access
|
2010-07-27 06:26:19 -04:00
|
|
|
HttpMethod getMethod = new GetMethod("/ews/exchange.asmx");
|
2010-06-07 17:17:07 -04:00
|
|
|
try {
|
2010-07-27 06:26:19 -04:00
|
|
|
getMethod = DavGatewayHttpClientFacade.executeFollowRedirects(httpClient, getMethod);
|
|
|
|
if (getMethod.getStatusCode() != HttpStatus.SC_OK) {
|
|
|
|
throw DavGatewayHttpClientFacade.buildHttpException(getMethod);
|
2010-06-07 17:17:07 -04:00
|
|
|
}
|
|
|
|
} catch (IOException e) {
|
|
|
|
LOGGER.error(e.getMessage());
|
|
|
|
throw new DavMailAuthenticationException("EXCEPTION_EWS_NOT_AVAILABLE");
|
|
|
|
} finally {
|
2010-07-27 06:26:19 -04:00
|
|
|
getMethod.releaseConnection();
|
2010-06-07 17:17:07 -04:00
|
|
|
}
|
2010-06-08 06:44:47 -04:00
|
|
|
|
|
|
|
try {
|
|
|
|
folderIdMap = new HashMap<String, String>();
|
|
|
|
// load actual well known folder ids
|
2010-06-30 17:36:13 -04:00
|
|
|
folderIdMap.put(internalGetFolder(INBOX).folderId.value, INBOX);
|
|
|
|
folderIdMap.put(internalGetFolder(CALENDAR).folderId.value, CALENDAR);
|
|
|
|
folderIdMap.put(internalGetFolder(CONTACTS).folderId.value, CONTACTS);
|
|
|
|
folderIdMap.put(internalGetFolder(SENT).folderId.value, SENT);
|
|
|
|
folderIdMap.put(internalGetFolder(DRAFTS).folderId.value, DRAFTS);
|
|
|
|
folderIdMap.put(internalGetFolder(TRASH).folderId.value, TRASH);
|
|
|
|
folderIdMap.put(internalGetFolder(JUNK).folderId.value, JUNK);
|
|
|
|
folderIdMap.put(internalGetFolder(UNSENT).folderId.value, UNSENT);
|
2010-06-08 06:44:47 -04:00
|
|
|
} catch (IOException e) {
|
|
|
|
LOGGER.error(e.getMessage(), e);
|
|
|
|
throw new DavMailAuthenticationException("EXCEPTION_EWS_NOT_AVAILABLE");
|
|
|
|
}
|
2010-07-08 19:26:41 -04:00
|
|
|
|
|
|
|
// also need to retrieve email and alias
|
|
|
|
alias = getAliasFromOptions();
|
|
|
|
email = getEmailFromOptions();
|
2010-06-07 17:17:07 -04:00
|
|
|
}
|
|
|
|
|
2010-07-05 05:58:18 -04:00
|
|
|
class Message extends ExchangeSession.Message {
|
|
|
|
// message item id
|
|
|
|
ItemId itemId;
|
|
|
|
}
|
2010-06-09 05:52:12 -04:00
|
|
|
|
2010-07-05 05:58:18 -04:00
|
|
|
/**
|
|
|
|
* Message create/update properties
|
|
|
|
*
|
|
|
|
* @param properties flag values map
|
|
|
|
* @return field values
|
|
|
|
*/
|
|
|
|
protected Set<FieldUpdate> buildProperties(Map<String, String> properties) {
|
|
|
|
HashSet<FieldUpdate> list = new HashSet<FieldUpdate>();
|
|
|
|
for (Map.Entry<String, String> entry : properties.entrySet()) {
|
|
|
|
if ("read".equals(entry.getKey())) {
|
2010-07-09 08:52:45 -04:00
|
|
|
list.add(Field.createFieldUpdate("read", Boolean.toString("1".equals(entry.getValue()))));
|
2010-07-05 05:58:18 -04:00
|
|
|
} else if ("junk".equals(entry.getKey())) {
|
|
|
|
list.add(Field.createFieldUpdate("junk", entry.getValue()));
|
|
|
|
} else if ("flagged".equals(entry.getKey())) {
|
|
|
|
list.add(Field.createFieldUpdate("flagStatus", entry.getValue()));
|
|
|
|
} else if ("answered".equals(entry.getKey())) {
|
|
|
|
list.add(Field.createFieldUpdate("lastVerbExecuted", entry.getValue()));
|
|
|
|
if ("102".equals(entry.getValue())) {
|
|
|
|
list.add(Field.createFieldUpdate("iconIndex", "261"));
|
|
|
|
}
|
|
|
|
} else if ("forwarded".equals(entry.getKey())) {
|
|
|
|
list.add(Field.createFieldUpdate("lastVerbExecuted", entry.getValue()));
|
|
|
|
if ("104".equals(entry.getValue())) {
|
|
|
|
list.add(Field.createFieldUpdate("iconIndex", "262"));
|
|
|
|
}
|
|
|
|
} else if ("draft".equals(entry.getKey())) {
|
|
|
|
// note: draft is readonly after create
|
|
|
|
list.add(Field.createFieldUpdate("messageFlags", entry.getValue()));
|
|
|
|
} else if ("deleted".equals(entry.getKey())) {
|
|
|
|
list.add(Field.createFieldUpdate("deleted", entry.getValue()));
|
|
|
|
} else if ("datereceived".equals(entry.getKey())) {
|
|
|
|
list.add(Field.createFieldUpdate("datereceived", entry.getValue()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return list;
|
2010-06-09 05:52:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2010-07-12 12:35:46 -04:00
|
|
|
public void createMessage(String folderPath, String messageName, HashMap<String, String> properties, byte[] messageBody) throws IOException {
|
2010-07-05 05:58:18 -04:00
|
|
|
EWSMethod.Item item = new EWSMethod.Item();
|
|
|
|
item.type = "Message";
|
2010-07-12 12:35:46 -04:00
|
|
|
item.mimeContent = Base64.encodeBase64(messageBody);
|
2010-07-12 02:42:09 -04:00
|
|
|
|
2010-07-05 05:58:18 -04:00
|
|
|
Set<FieldUpdate> fieldUpdates = buildProperties(properties);
|
|
|
|
if (!properties.containsKey("draft")) {
|
|
|
|
// need to force draft flag to false
|
2010-07-05 09:48:43 -04:00
|
|
|
if (properties.containsKey("read")) {
|
|
|
|
fieldUpdates.add(Field.createFieldUpdate("messageFlags", "1"));
|
|
|
|
} else {
|
|
|
|
fieldUpdates.add(Field.createFieldUpdate("messageFlags", "0"));
|
|
|
|
}
|
2010-07-05 05:58:18 -04:00
|
|
|
}
|
2010-07-25 16:36:52 -04:00
|
|
|
fieldUpdates.add(Field.createFieldUpdate("urlcompname", messageName));
|
2010-07-05 05:58:18 -04:00
|
|
|
item.setFieldUpdates(fieldUpdates);
|
2010-07-05 09:48:43 -04:00
|
|
|
CreateItemMethod createItemMethod = new CreateItemMethod(MessageDisposition.SaveOnly, getFolderId(folderPath), item);
|
2010-07-05 05:58:18 -04:00
|
|
|
executeMethod(createItemMethod);
|
|
|
|
}
|
2010-06-09 05:52:12 -04:00
|
|
|
|
2010-07-05 05:58:18 -04:00
|
|
|
@Override
|
|
|
|
public void updateMessage(ExchangeSession.Message message, Map<String, String> properties) throws IOException {
|
2010-07-05 11:03:35 -04:00
|
|
|
UpdateItemMethod updateItemMethod = new UpdateItemMethod(MessageDisposition.SaveOnly,
|
|
|
|
ConflictResolution.AlwaysOverwrite,
|
2010-07-10 18:42:48 -04:00
|
|
|
SendMeetingInvitationsOrCancellations.SendToNone,
|
2010-07-05 11:03:35 -04:00
|
|
|
((EwsExchangeSession.Message) message).itemId, buildProperties(properties));
|
2010-07-05 05:58:18 -04:00
|
|
|
executeMethod(updateItemMethod);
|
2010-06-09 05:52:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2010-07-05 05:58:18 -04:00
|
|
|
public void deleteMessage(ExchangeSession.Message message) throws IOException {
|
2010-07-23 04:58:39 -04:00
|
|
|
LOGGER.debug("Delete " + message.permanentUrl);
|
2010-07-05 09:48:43 -04:00
|
|
|
DeleteItemMethod deleteItemMethod = new DeleteItemMethod(((EwsExchangeSession.Message) message).itemId, DeleteType.HardDelete);
|
|
|
|
executeMethod(deleteItemMethod);
|
2010-06-09 05:52:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2010-07-12 12:35:46 -04:00
|
|
|
public void sendMessage(byte[] messageBody) throws IOException {
|
2010-07-11 18:50:20 -04:00
|
|
|
EWSMethod.Item item = new EWSMethod.Item();
|
|
|
|
item.type = "Message";
|
2010-07-12 12:35:46 -04:00
|
|
|
item.mimeContent = Base64.encodeBase64(messageBody);
|
2010-07-12 02:21:31 -04:00
|
|
|
|
|
|
|
CreateItemMethod createItemMethod = new CreateItemMethod(MessageDisposition.SendAndSaveCopy, getFolderId(SENT), item);
|
2010-07-11 18:50:20 -04:00
|
|
|
executeMethod(createItemMethod);
|
2010-06-09 05:52:12 -04:00
|
|
|
}
|
|
|
|
|
2010-07-05 06:23:51 -04:00
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
@Override
|
|
|
|
protected byte[] getContent(ExchangeSession.Message message) throws IOException {
|
2010-07-07 05:20:42 -04:00
|
|
|
return getContent(((EwsExchangeSession.Message) message).itemId);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get item MIME content.
|
2010-07-09 17:25:18 -04:00
|
|
|
*
|
2010-07-09 08:52:45 -04:00
|
|
|
* @param itemId EWS item id
|
|
|
|
* @return item content as byte array
|
|
|
|
* @throws IOException on error
|
2010-07-07 05:20:42 -04:00
|
|
|
*/
|
|
|
|
protected byte[] getContent(ItemId itemId) throws IOException {
|
|
|
|
GetItemMethod getItemMethod = new GetItemMethod(BaseShape.ID_ONLY, itemId, true);
|
2010-07-05 06:23:51 -04:00
|
|
|
executeMethod(getItemMethod);
|
|
|
|
return getItemMethod.getMimeContent();
|
2010-06-09 05:52:12 -04:00
|
|
|
}
|
|
|
|
|
2010-07-22 07:54:18 -04:00
|
|
|
protected Message buildMessage(EWSMethod.Item response) throws DavMailException {
|
2010-07-01 12:12:57 -04:00
|
|
|
Message message = new Message();
|
|
|
|
|
2010-07-05 05:58:18 -04:00
|
|
|
// get item id
|
2010-07-07 08:55:13 -04:00
|
|
|
message.itemId = new ItemId(response);
|
2010-07-05 05:58:18 -04:00
|
|
|
|
2010-07-05 12:28:10 -04:00
|
|
|
message.permanentUrl = response.get(Field.get("permanenturl").getResponseName());
|
|
|
|
|
2010-07-05 05:58:18 -04:00
|
|
|
message.size = response.getInt(Field.get("messageSize").getResponseName());
|
|
|
|
message.uid = response.get(Field.get("uid").getResponseName());
|
|
|
|
message.imapUid = response.getLong(Field.get("imapUid").getResponseName());
|
|
|
|
message.read = response.getBoolean(Field.get("read").getResponseName());
|
|
|
|
message.junk = response.getBoolean(Field.get("junk").getResponseName());
|
|
|
|
message.flagged = "2".equals(response.get(Field.get("flagStatus").getResponseName()));
|
2010-07-27 06:54:00 -04:00
|
|
|
message.draft = (response.getInt(Field.get("messageFlags").getResponseName()) & 8) != 0;
|
2010-07-05 05:58:18 -04:00
|
|
|
String lastVerbExecuted = response.get(Field.get("lastVerbExecuted").getResponseName());
|
2010-07-01 12:12:57 -04:00
|
|
|
message.answered = "102".equals(lastVerbExecuted) || "103".equals(lastVerbExecuted);
|
|
|
|
message.forwarded = "104".equals(lastVerbExecuted);
|
2010-07-20 12:33:58 -04:00
|
|
|
message.date = convertDateFromExchange(response.get(Field.get("date").getResponseName()));
|
2010-07-05 05:58:18 -04:00
|
|
|
message.deleted = "1".equals(response.get(Field.get("deleted").getResponseName()));
|
2010-07-01 12:12:57 -04:00
|
|
|
|
|
|
|
if (LOGGER.isDebugEnabled()) {
|
|
|
|
StringBuilder buffer = new StringBuilder();
|
|
|
|
buffer.append("Message");
|
|
|
|
if (message.imapUid != 0) {
|
|
|
|
buffer.append(" IMAP uid: ").append(message.imapUid);
|
|
|
|
}
|
|
|
|
if (message.uid != null) {
|
|
|
|
buffer.append(" uid: ").append(message.uid);
|
|
|
|
}
|
2010-07-05 05:58:18 -04:00
|
|
|
buffer.append(" ItemId: ").append(message.itemId.id);
|
|
|
|
buffer.append(" ChangeKey: ").append(message.itemId.changeKey);
|
2010-07-01 12:12:57 -04:00
|
|
|
LOGGER.debug(buffer.toString());
|
|
|
|
}
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
2010-06-08 18:21:53 -04:00
|
|
|
@Override
|
2010-07-01 12:12:57 -04:00
|
|
|
public MessageList searchMessages(String folderPath, Set<String> attributes, Condition condition) throws IOException {
|
|
|
|
MessageList messages = new MessageList();
|
|
|
|
List<EWSMethod.Item> responses = searchItems(folderPath, attributes, condition, FolderQueryTraversal.SHALLOW);
|
|
|
|
|
|
|
|
for (EWSMethod.Item response : responses) {
|
|
|
|
Message message = buildMessage(response);
|
|
|
|
message.messageList = messages;
|
|
|
|
messages.add(message);
|
|
|
|
}
|
|
|
|
Collections.sort(messages);
|
|
|
|
return messages;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected List<EWSMethod.Item> searchItems(String folderPath, Set<String> attributes, Condition condition, FolderQueryTraversal folderQueryTraversal) throws IOException {
|
2010-07-05 05:58:18 -04:00
|
|
|
FindItemMethod findItemMethod = new FindItemMethod(folderQueryTraversal, BaseShape.ID_ONLY, getFolderId(folderPath));
|
2010-07-01 12:12:57 -04:00
|
|
|
for (String attribute : attributes) {
|
2010-07-05 05:58:18 -04:00
|
|
|
findItemMethod.addAdditionalProperty(Field.get(attribute));
|
2010-07-01 12:12:57 -04:00
|
|
|
}
|
2010-07-01 12:37:05 -04:00
|
|
|
if (condition != null && !condition.isEmpty()) {
|
|
|
|
findItemMethod.setSearchExpression((SearchExpression) condition);
|
|
|
|
}
|
2010-07-01 12:12:57 -04:00
|
|
|
executeMethod(findItemMethod);
|
|
|
|
return findItemMethod.getResponseItems();
|
2010-06-08 18:21:53 -04:00
|
|
|
}
|
|
|
|
|
2010-06-07 18:30:23 -04:00
|
|
|
protected static class MultiCondition extends ExchangeSession.MultiCondition implements SearchExpression {
|
2010-06-07 17:17:07 -04:00
|
|
|
protected MultiCondition(Operator operator, Condition... condition) {
|
|
|
|
super(operator, condition);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void appendTo(StringBuilder buffer) {
|
2010-07-01 12:37:05 -04:00
|
|
|
int actualConditionCount = 0;
|
2010-06-07 17:17:07 -04:00
|
|
|
for (Condition condition : conditions) {
|
2010-07-01 12:37:05 -04:00
|
|
|
if (!condition.isEmpty()) {
|
|
|
|
actualConditionCount++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (actualConditionCount > 0) {
|
|
|
|
if (actualConditionCount > 1) {
|
|
|
|
buffer.append("<t:").append(operator.toString()).append('>');
|
|
|
|
}
|
|
|
|
|
|
|
|
for (Condition condition : conditions) {
|
|
|
|
condition.appendTo(buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (actualConditionCount > 1) {
|
|
|
|
buffer.append("</t:").append(operator.toString()).append('>');
|
|
|
|
}
|
2010-06-07 17:17:07 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-07 18:30:23 -04:00
|
|
|
protected static class NotCondition extends ExchangeSession.NotCondition implements SearchExpression {
|
|
|
|
protected NotCondition(Condition condition) {
|
|
|
|
super(condition);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void appendTo(StringBuilder buffer) {
|
|
|
|
buffer.append("<t:Not>");
|
|
|
|
condition.appendTo(buffer);
|
|
|
|
buffer.append("</t:Not>");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-07 17:17:07 -04:00
|
|
|
|
2010-06-07 18:30:23 -04:00
|
|
|
protected static class AttributeCondition extends ExchangeSession.AttributeCondition implements SearchExpression {
|
2010-06-17 18:37:33 -04:00
|
|
|
protected ContainmentMode containmentMode;
|
|
|
|
protected ContainmentComparison containmentComparison;
|
|
|
|
|
2010-06-07 17:17:07 -04:00
|
|
|
protected AttributeCondition(String attributeName, Operator operator, String value) {
|
|
|
|
super(attributeName, operator, value);
|
|
|
|
}
|
|
|
|
|
2010-06-17 18:37:33 -04:00
|
|
|
protected AttributeCondition(String attributeName, Operator operator, String value,
|
|
|
|
ContainmentMode containmentMode, ContainmentComparison containmentComparison) {
|
|
|
|
super(attributeName, operator, value);
|
|
|
|
this.containmentMode = containmentMode;
|
|
|
|
this.containmentComparison = containmentComparison;
|
|
|
|
}
|
|
|
|
|
2010-06-08 18:21:53 -04:00
|
|
|
protected FieldURI getFieldURI(String attributeName) {
|
2010-07-05 05:58:18 -04:00
|
|
|
FieldURI fieldURI = Field.get(attributeName);
|
2010-06-08 18:21:53 -04:00
|
|
|
if (fieldURI == null) {
|
|
|
|
throw new IllegalArgumentException("Unknown field: " + attributeName);
|
|
|
|
}
|
|
|
|
return fieldURI;
|
|
|
|
}
|
|
|
|
|
2010-06-07 17:17:07 -04:00
|
|
|
public void appendTo(StringBuilder buffer) {
|
2010-06-17 18:37:33 -04:00
|
|
|
buffer.append("<t:").append(operator.toString());
|
|
|
|
if (containmentMode != null) {
|
|
|
|
containmentMode.appendTo(buffer);
|
|
|
|
}
|
|
|
|
if (containmentComparison != null) {
|
|
|
|
containmentComparison.appendTo(buffer);
|
|
|
|
}
|
|
|
|
buffer.append('>');
|
2010-07-25 10:36:27 -04:00
|
|
|
FieldURI fieldURI = getFieldURI(attributeName);
|
|
|
|
fieldURI.appendTo(buffer);
|
2010-06-07 17:17:07 -04:00
|
|
|
|
|
|
|
buffer.append("<t:FieldURIOrConstant><t:Constant Value=\"");
|
2010-07-25 10:36:27 -04:00
|
|
|
// encode urlcompname
|
|
|
|
if (fieldURI instanceof ExtendedFieldURI && "0x10f3".equals(((ExtendedFieldURI) fieldURI).propertyTag)) {
|
|
|
|
buffer.append(StringUtil.xmlEncode(StringUtil.encodeUrlcompname(value)));
|
|
|
|
} else {
|
|
|
|
buffer.append(StringUtil.xmlEncode(value));
|
|
|
|
}
|
2010-06-07 17:17:07 -04:00
|
|
|
buffer.append("\"/></t:FieldURIOrConstant>");
|
|
|
|
|
|
|
|
buffer.append("</t:").append(operator.toString()).append('>');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-08 18:21:53 -04:00
|
|
|
protected static class HeaderCondition extends AttributeCondition {
|
|
|
|
|
|
|
|
protected HeaderCondition(String attributeName, Operator operator, String value) {
|
|
|
|
super(attributeName, operator, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected FieldURI getFieldURI(String attributeName) {
|
|
|
|
return new ExtendedFieldURI(ExtendedFieldURI.DistinguishedPropertySetType.InternetHeaders, attributeName);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-06-30 17:36:13 -04:00
|
|
|
protected static class IsNullCondition implements ExchangeSession.Condition, SearchExpression {
|
2010-07-19 05:22:42 -04:00
|
|
|
protected final String attributeName;
|
2010-06-08 18:21:53 -04:00
|
|
|
|
2010-06-08 06:44:47 -04:00
|
|
|
protected IsNullCondition(String attributeName) {
|
2010-06-08 18:21:53 -04:00
|
|
|
this.attributeName = attributeName;
|
2010-06-08 06:44:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public void appendTo(StringBuilder buffer) {
|
|
|
|
buffer.append("<t:Not><t:Exists>");
|
2010-07-05 05:58:18 -04:00
|
|
|
Field.get(attributeName).appendTo(buffer);
|
2010-06-08 06:44:47 -04:00
|
|
|
buffer.append("</t:Exists></t:Not>");
|
|
|
|
}
|
2010-07-01 10:23:31 -04:00
|
|
|
|
|
|
|
public boolean isEmpty() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-06-08 06:44:47 -04:00
|
|
|
}
|
|
|
|
|
2010-06-07 17:17:07 -04:00
|
|
|
@Override
|
2010-06-30 17:36:13 -04:00
|
|
|
public ExchangeSession.MultiCondition and(Condition... condition) {
|
2010-06-07 17:17:07 -04:00
|
|
|
return new MultiCondition(Operator.And, condition);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2010-06-30 17:36:13 -04:00
|
|
|
public ExchangeSession.MultiCondition or(Condition... condition) {
|
2010-06-07 17:17:07 -04:00
|
|
|
return new MultiCondition(Operator.Or, condition);
|
|
|
|
}
|
|
|
|
|
2010-06-07 18:30:23 -04:00
|
|
|
@Override
|
2010-06-08 06:44:47 -04:00
|
|
|
public Condition not(Condition condition) {
|
2010-06-07 18:30:23 -04:00
|
|
|
return new NotCondition(condition);
|
|
|
|
}
|
|
|
|
|
2010-06-07 17:17:07 -04:00
|
|
|
@Override
|
2010-07-27 09:19:28 -04:00
|
|
|
public Condition isEqualTo(String attributeName, String value) {
|
2010-06-07 17:17:07 -04:00
|
|
|
return new AttributeCondition(attributeName, Operator.IsEqualTo, value);
|
|
|
|
}
|
|
|
|
|
2010-06-16 08:06:59 -04:00
|
|
|
@Override
|
2010-07-27 09:19:28 -04:00
|
|
|
public Condition isEqualTo(String attributeName, int value) {
|
2010-06-16 08:06:59 -04:00
|
|
|
return new AttributeCondition(attributeName, Operator.IsEqualTo, String.valueOf(value));
|
|
|
|
}
|
|
|
|
|
2010-06-08 18:21:53 -04:00
|
|
|
@Override
|
2010-07-27 09:19:28 -04:00
|
|
|
public Condition headerIsEqualTo(String headerName, String value) {
|
2010-06-08 18:21:53 -04:00
|
|
|
return new HeaderCondition(headerName, Operator.IsEqualTo, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Condition gte(String attributeName, String value) {
|
|
|
|
return new AttributeCondition(attributeName, Operator.IsGreaterThanOrEqualTo, value);
|
|
|
|
}
|
|
|
|
|
2010-07-22 19:10:24 -04:00
|
|
|
@Override
|
|
|
|
public Condition lte(String attributeName, String value) {
|
2010-07-25 15:55:51 -04:00
|
|
|
return new AttributeCondition(attributeName, Operator.IsLessThanOrEqualTo, value);
|
2010-07-22 19:10:24 -04:00
|
|
|
}
|
|
|
|
|
2010-06-08 18:21:53 -04:00
|
|
|
@Override
|
|
|
|
public Condition lt(String attributeName, String value) {
|
|
|
|
return new AttributeCondition(attributeName, Operator.IsLessThan, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Condition gt(String attributeName, String value) {
|
|
|
|
return new AttributeCondition(attributeName, Operator.IsGreaterThan, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2010-06-21 16:37:20 -04:00
|
|
|
public Condition contains(String attributeName, String value) {
|
2010-06-17 18:37:33 -04:00
|
|
|
return new AttributeCondition(attributeName, Operator.Contains, value, ContainmentMode.Substring, ContainmentComparison.IgnoreCase);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Condition startsWith(String attributeName, String value) {
|
|
|
|
return new AttributeCondition(attributeName, Operator.Contains, value, ContainmentMode.Prefixed, ContainmentComparison.IgnoreCase);
|
2010-06-08 18:21:53 -04:00
|
|
|
}
|
|
|
|
|
2010-06-08 06:44:47 -04:00
|
|
|
@Override
|
|
|
|
public Condition isNull(String attributeName) {
|
|
|
|
return new IsNullCondition(attributeName);
|
|
|
|
}
|
|
|
|
|
2010-06-08 18:21:53 -04:00
|
|
|
@Override
|
|
|
|
public Condition isTrue(String attributeName) {
|
2010-07-09 19:53:28 -04:00
|
|
|
return new AttributeCondition(attributeName, Operator.IsEqualTo, "true");
|
2010-06-08 18:21:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Condition isFalse(String attributeName) {
|
2010-07-09 19:53:28 -04:00
|
|
|
return new AttributeCondition(attributeName, Operator.IsEqualTo, "false");
|
2010-06-08 18:21:53 -04:00
|
|
|
}
|
|
|
|
|
2010-06-10 16:47:55 -04:00
|
|
|
protected static final HashSet<FieldURI> FOLDER_PROPERTIES = new HashSet<FieldURI>();
|
2010-06-15 10:51:49 -04:00
|
|
|
|
2010-06-10 16:47:55 -04:00
|
|
|
static {
|
2010-07-20 05:10:39 -04:00
|
|
|
FOLDER_PROPERTIES.add(Field.get("urlcompname"));
|
2010-07-27 06:39:53 -04:00
|
|
|
FOLDER_PROPERTIES.add(Field.get("folderDisplayName"));
|
2010-07-20 05:10:39 -04:00
|
|
|
FOLDER_PROPERTIES.add(Field.get("lastmodified"));
|
|
|
|
FOLDER_PROPERTIES.add(Field.get("folderclass"));
|
|
|
|
FOLDER_PROPERTIES.add(Field.get("ctag"));
|
|
|
|
FOLDER_PROPERTIES.add(Field.get("unread"));
|
|
|
|
FOLDER_PROPERTIES.add(Field.get("hassubs"));
|
2010-07-23 04:58:39 -04:00
|
|
|
FOLDER_PROPERTIES.add(Field.get("uidNext"));
|
|
|
|
FOLDER_PROPERTIES.add(Field.get("highestUid"));
|
2010-06-10 16:47:55 -04:00
|
|
|
}
|
|
|
|
|
2010-06-07 17:17:07 -04:00
|
|
|
protected Folder buildFolder(EWSMethod.Item item) {
|
|
|
|
Folder folder = new Folder();
|
2010-07-07 08:55:13 -04:00
|
|
|
folder.folderId = new FolderId(item);
|
2010-07-27 06:39:53 -04:00
|
|
|
folder.displayName = item.get(Field.get("folderDisplayName").getResponseName());
|
2010-07-20 05:10:39 -04:00
|
|
|
folder.folderClass = item.get(Field.get("folderclass").getResponseName());
|
|
|
|
folder.etag = item.get(Field.get("lastmodified").getResponseName());
|
|
|
|
folder.ctag = item.get(Field.get("ctag").getResponseName());
|
|
|
|
folder.unreadCount = item.getInt(Field.get("unread").getResponseName());
|
|
|
|
folder.hasChildren = item.getBoolean(Field.get("hassubs").getResponseName());
|
2010-06-07 17:17:07 -04:00
|
|
|
// noInferiors not implemented
|
2010-07-23 04:58:39 -04:00
|
|
|
folder.uidNext = item.getInt(Field.get("uidNext").getResponseName());
|
2010-06-07 17:17:07 -04:00
|
|
|
return folder;
|
2010-06-02 04:46:46 -04:00
|
|
|
}
|
|
|
|
|
2010-06-07 05:07:31 -04:00
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
@Override
|
2010-06-07 17:17:07 -04:00
|
|
|
public List<ExchangeSession.Folder> getSubFolders(String folderPath, Condition condition, boolean recursive) throws IOException {
|
2010-07-09 19:53:28 -04:00
|
|
|
String baseFolderPath = folderPath;
|
|
|
|
if (baseFolderPath.startsWith("/users/")) {
|
|
|
|
int index = baseFolderPath.indexOf('/', "/users/".length());
|
|
|
|
if (index >= 0) {
|
2010-07-12 02:21:31 -04:00
|
|
|
baseFolderPath = baseFolderPath.substring(index + 1);
|
2010-07-09 19:53:28 -04:00
|
|
|
}
|
|
|
|
}
|
2010-06-07 17:17:07 -04:00
|
|
|
List<ExchangeSession.Folder> folders = new ArrayList<ExchangeSession.Folder>();
|
2010-07-09 19:53:28 -04:00
|
|
|
appendSubFolders(folders, baseFolderPath, getFolderId(folderPath), condition, recursive);
|
2010-06-07 17:17:07 -04:00
|
|
|
return folders;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void appendSubFolders(List<ExchangeSession.Folder> folders,
|
|
|
|
String parentFolderPath, FolderId parentFolderId,
|
|
|
|
Condition condition, boolean recursive) throws IOException {
|
2010-06-10 16:47:55 -04:00
|
|
|
FindFolderMethod findFolderMethod = new FindFolderMethod(FolderQueryTraversal.SHALLOW,
|
2010-06-15 10:51:49 -04:00
|
|
|
BaseShape.ID_ONLY, parentFolderId, FOLDER_PROPERTIES, (SearchExpression) condition);
|
2010-06-29 10:15:50 -04:00
|
|
|
executeMethod(findFolderMethod);
|
2010-06-07 17:17:07 -04:00
|
|
|
for (EWSMethod.Item item : findFolderMethod.getResponseItems()) {
|
|
|
|
Folder folder = buildFolder(item);
|
|
|
|
if (parentFolderPath.length() > 0) {
|
2010-07-20 05:10:39 -04:00
|
|
|
folder.folderPath = parentFolderPath + '/' + item.get(Field.get("urlcompname").getResponseName());
|
2010-06-08 06:44:47 -04:00
|
|
|
} else if (folderIdMap.get(folder.folderId.value) != null) {
|
|
|
|
folder.folderPath = folderIdMap.get(folder.folderId.value);
|
2010-06-07 17:17:07 -04:00
|
|
|
} else {
|
2010-07-20 05:10:39 -04:00
|
|
|
folder.folderPath = item.get(Field.get("urlcompname").getResponseName());
|
2010-06-07 17:17:07 -04:00
|
|
|
}
|
|
|
|
folders.add(folder);
|
|
|
|
if (recursive && folder.hasChildren) {
|
|
|
|
appendSubFolders(folders, folder.folderPath, folder.folderId, condition, recursive);
|
|
|
|
}
|
|
|
|
}
|
2010-06-07 05:07:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
@Override
|
2010-06-30 17:36:13 -04:00
|
|
|
public ExchangeSession.Folder getFolder(String folderPath) throws IOException {
|
|
|
|
return internalGetFolder(folderPath);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get folder by path.
|
|
|
|
*
|
|
|
|
* @param folderPath folder path
|
|
|
|
* @return folder object
|
|
|
|
* @throws IOException on error
|
|
|
|
*/
|
|
|
|
protected EwsExchangeSession.Folder internalGetFolder(String folderPath) throws IOException {
|
2010-06-10 16:47:55 -04:00
|
|
|
GetFolderMethod getFolderMethod = new GetFolderMethod(BaseShape.ID_ONLY, getFolderId(folderPath), FOLDER_PROPERTIES);
|
2010-06-29 10:15:50 -04:00
|
|
|
executeMethod(getFolderMethod);
|
2010-06-07 05:07:31 -04:00
|
|
|
EWSMethod.Item item = getFolderMethod.getResponseItem();
|
2010-06-07 17:17:07 -04:00
|
|
|
Folder folder = null;
|
2010-06-07 05:07:31 -04:00
|
|
|
if (item != null) {
|
2010-06-07 17:17:07 -04:00
|
|
|
folder = buildFolder(item);
|
|
|
|
folder.folderPath = folderPath;
|
2010-06-07 05:07:31 -04:00
|
|
|
}
|
|
|
|
return folder;
|
|
|
|
}
|
|
|
|
|
2010-06-09 05:52:12 -04:00
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
@Override
|
2010-07-25 10:36:27 -04:00
|
|
|
public int createFolder(String folderPath, String folderClass, Map<String, String> properties) throws IOException {
|
2010-06-29 10:15:50 -04:00
|
|
|
FolderPath path = new FolderPath(folderPath);
|
|
|
|
EWSMethod.Item folder = new EWSMethod.Item();
|
|
|
|
folder.type = "Folder";
|
|
|
|
folder.put("DisplayName", path.folderName);
|
|
|
|
folder.put("FolderClass", folderClass);
|
2010-07-24 18:23:14 -04:00
|
|
|
// TODO: handle properties
|
2010-06-29 10:15:50 -04:00
|
|
|
CreateFolderMethod createFolderMethod = new CreateFolderMethod(getFolderId(path.parentPath), folder);
|
|
|
|
executeMethod(createFolderMethod);
|
2010-07-24 18:23:14 -04:00
|
|
|
return HttpStatus.SC_CREATED;
|
2010-06-09 05:52:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
@Override
|
2010-06-29 10:15:50 -04:00
|
|
|
public void deleteFolder(String folderPath) throws IOException {
|
|
|
|
FolderId folderId = getFolderIdIfExists(folderPath);
|
|
|
|
if (folderId != null) {
|
|
|
|
DeleteFolderMethod deleteFolderMethod = new DeleteFolderMethod(folderId);
|
|
|
|
executeMethod(deleteFolderMethod);
|
|
|
|
} else {
|
2010-06-30 17:36:13 -04:00
|
|
|
LOGGER.debug("Folder " + folderPath + " not found");
|
2010-06-29 10:15:50 -04:00
|
|
|
}
|
2010-06-09 05:52:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
@Override
|
2010-07-05 05:58:18 -04:00
|
|
|
public void copyMessage(ExchangeSession.Message message, String targetFolder) throws IOException {
|
2010-07-05 11:03:35 -04:00
|
|
|
CopyItemMethod copyItemMethod = new CopyItemMethod(((EwsExchangeSession.Message) message).itemId, getFolderId(targetFolder));
|
|
|
|
executeMethod(copyItemMethod);
|
2010-06-09 05:52:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
@Override
|
2010-06-29 10:15:50 -04:00
|
|
|
public void moveFolder(String folderPath, String targetFolderPath) throws IOException {
|
|
|
|
FolderPath path = new FolderPath(folderPath);
|
|
|
|
FolderPath targetPath = new FolderPath(targetFolderPath);
|
|
|
|
FolderId folderId = getFolderId(folderPath);
|
|
|
|
FolderId toFolderId = getFolderId(targetPath.parentPath);
|
|
|
|
toFolderId.changeKey = null;
|
|
|
|
// move folder
|
|
|
|
if (!path.parentPath.equals(targetPath.parentPath)) {
|
|
|
|
MoveFolderMethod moveFolderMethod = new MoveFolderMethod(folderId, toFolderId);
|
|
|
|
executeMethod(moveFolderMethod);
|
|
|
|
}
|
|
|
|
// rename folder
|
|
|
|
if (!path.folderName.equals(targetPath.folderName)) {
|
|
|
|
Set<FieldUpdate> updates = new HashSet<FieldUpdate>();
|
2010-07-20 05:10:39 -04:00
|
|
|
updates.add(new FieldUpdate(Field.get("folderDisplayName"), targetPath.folderName));
|
2010-06-29 10:15:50 -04:00
|
|
|
UpdateFolderMethod updateFolderMethod = new UpdateFolderMethod(folderId, updates);
|
|
|
|
executeMethod(updateFolderMethod);
|
|
|
|
}
|
2010-06-09 05:52:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
@Override
|
2010-07-05 05:58:18 -04:00
|
|
|
protected void moveToTrash(ExchangeSession.Message message) throws IOException {
|
2010-07-07 05:20:42 -04:00
|
|
|
MoveItemMethod moveItemMethod = new MoveItemMethod(((EwsExchangeSession.Message) message).itemId, getFolderId(TRASH));
|
|
|
|
executeMethod(moveItemMethod);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected class Contact extends ExchangeSession.Contact {
|
|
|
|
// item id
|
|
|
|
ItemId itemId;
|
|
|
|
|
2010-07-19 05:22:42 -04:00
|
|
|
protected Contact(EWSMethod.Item response) throws DavMailException {
|
2010-07-07 08:55:13 -04:00
|
|
|
itemId = new ItemId(response);
|
2010-07-07 05:20:42 -04:00
|
|
|
|
|
|
|
permanentUrl = response.get(Field.get("permanenturl").getResponseName());
|
|
|
|
etag = response.get(Field.get("etag").getResponseName());
|
|
|
|
displayName = response.get(Field.get("displayname").getResponseName());
|
2010-07-09 17:25:18 -04:00
|
|
|
itemName = response.get(Field.get("urlcompname").getResponseName());
|
2010-07-27 13:08:39 -04:00
|
|
|
// workaround for missing urlcompname in Exchange 2010
|
|
|
|
if (itemName == null) {
|
|
|
|
itemName = StringUtil.base64ToUrl(itemId.id) + ".EML";
|
|
|
|
}
|
2010-07-07 05:20:42 -04:00
|
|
|
for (String attributeName : CONTACT_ATTRIBUTES) {
|
2010-07-07 08:29:41 -04:00
|
|
|
String value = response.get(Field.get(attributeName).getResponseName());
|
2010-07-07 05:20:42 -04:00
|
|
|
if (value != null) {
|
2010-07-20 12:33:58 -04:00
|
|
|
if ("bday".equals(attributeName) || "anniversary".equals(attributeName) || "lastmodified".equals(attributeName) || "datereceived".equals(attributeName)) {
|
|
|
|
value = convertDateFromExchange(value);
|
2010-07-07 05:20:42 -04:00
|
|
|
}
|
|
|
|
put(attributeName, value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
2010-07-09 17:25:18 -04:00
|
|
|
protected Contact(String folderPath, String itemName, Map<String, String> properties, String etag, String noneMatch) {
|
2010-07-07 05:20:42 -04:00
|
|
|
super(folderPath, itemName, properties, etag, noneMatch);
|
|
|
|
}
|
|
|
|
|
2010-07-19 05:22:42 -04:00
|
|
|
protected Set<FieldUpdate> buildProperties() {
|
2010-07-07 05:20:42 -04:00
|
|
|
HashSet<FieldUpdate> list = new HashSet<FieldUpdate>();
|
|
|
|
for (Map.Entry<String, String> entry : entrySet()) {
|
2010-07-17 06:45:21 -04:00
|
|
|
if ("photo".equals(entry.getKey())) {
|
|
|
|
list.add(Field.createFieldUpdate("haspicture", "true"));
|
|
|
|
} else {
|
|
|
|
list.add(Field.createFieldUpdate(entry.getKey(), entry.getValue()));
|
|
|
|
}
|
2010-07-07 05:20:42 -04:00
|
|
|
}
|
2010-07-27 13:08:39 -04:00
|
|
|
// force urlcompname, only for DavMail created items
|
|
|
|
if (!isItemId(itemName)) {
|
|
|
|
list.add(Field.createFieldUpdate("urlcompname", convertItemNameToEML(itemName)));
|
|
|
|
}
|
2010-07-07 05:20:42 -04:00
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create or update contact
|
|
|
|
*
|
|
|
|
* @return action result
|
|
|
|
* @throws IOException on error
|
|
|
|
*/
|
|
|
|
public ItemResult createOrUpdate() throws IOException {
|
2010-07-17 06:45:21 -04:00
|
|
|
String photo = get("photo");
|
|
|
|
|
2010-07-09 08:52:45 -04:00
|
|
|
ItemResult itemResult = new ItemResult();
|
|
|
|
EWSMethod createOrUpdateItemMethod;
|
|
|
|
|
|
|
|
// first try to load existing event
|
|
|
|
String urlcompname = convertItemNameToEML(itemName);
|
|
|
|
String currentEtag = null;
|
|
|
|
ItemId currentItemId = null;
|
2010-07-18 19:36:25 -04:00
|
|
|
FileAttachment currentFileAttachment = null;
|
2010-07-27 13:08:39 -04:00
|
|
|
EWSMethod.Item currentItem = getEwsItem(folderPath, itemName);
|
|
|
|
if (currentItem != null) {
|
|
|
|
currentItemId = new ItemId(currentItem);
|
|
|
|
currentEtag = currentItem.get(Field.get("etag").getResponseName());
|
2010-07-18 19:36:25 -04:00
|
|
|
|
|
|
|
// load current picture
|
|
|
|
GetItemMethod getItemMethod = new GetItemMethod(BaseShape.ID_ONLY, currentItemId, false);
|
|
|
|
getItemMethod.addAdditionalProperty(Field.get("attachments"));
|
|
|
|
executeMethod(getItemMethod);
|
|
|
|
EWSMethod.Item item = getItemMethod.getResponseItem();
|
|
|
|
if (item != null) {
|
|
|
|
currentFileAttachment = item.getAttachmentByName("ContactPicture.jpg");
|
|
|
|
}
|
2010-07-09 08:52:45 -04:00
|
|
|
}
|
|
|
|
if ("*".equals(noneMatch)) {
|
|
|
|
// create requested
|
|
|
|
if (currentItemId != null) {
|
|
|
|
itemResult.status = HttpStatus.SC_PRECONDITION_FAILED;
|
|
|
|
return itemResult;
|
|
|
|
}
|
|
|
|
} else if (etag != null) {
|
|
|
|
// update requested
|
|
|
|
if (currentItemId == null || !etag.equals(currentEtag)) {
|
|
|
|
itemResult.status = HttpStatus.SC_PRECONDITION_FAILED;
|
|
|
|
return itemResult;
|
|
|
|
}
|
|
|
|
}
|
2010-07-07 05:20:42 -04:00
|
|
|
|
2010-07-09 08:52:45 -04:00
|
|
|
if (currentItemId != null) {
|
|
|
|
// update
|
|
|
|
createOrUpdateItemMethod = new UpdateItemMethod(MessageDisposition.SaveOnly,
|
|
|
|
ConflictResolution.AlwaysOverwrite,
|
2010-07-10 18:42:48 -04:00
|
|
|
SendMeetingInvitationsOrCancellations.SendToNone,
|
2010-07-09 08:52:45 -04:00
|
|
|
currentItemId, buildProperties());
|
|
|
|
} else {
|
|
|
|
// create
|
|
|
|
EWSMethod.Item newItem = new EWSMethod.Item();
|
|
|
|
newItem.type = "Contact";
|
|
|
|
newItem.setFieldUpdates(buildProperties());
|
|
|
|
createOrUpdateItemMethod = new CreateItemMethod(MessageDisposition.SaveOnly, getFolderId(folderPath), newItem);
|
|
|
|
}
|
|
|
|
executeMethod(createOrUpdateItemMethod);
|
2010-07-07 05:20:42 -04:00
|
|
|
|
2010-07-09 08:52:45 -04:00
|
|
|
itemResult.status = createOrUpdateItemMethod.getStatusCode();
|
|
|
|
if (itemResult.status == HttpURLConnection.HTTP_OK) {
|
2010-07-09 17:25:18 -04:00
|
|
|
//noinspection VariableNotUsedInsideIf
|
2010-07-10 18:42:48 -04:00
|
|
|
if (etag == null) {
|
2010-07-09 08:52:45 -04:00
|
|
|
itemResult.status = HttpStatus.SC_CREATED;
|
2010-07-20 09:25:15 -04:00
|
|
|
LOGGER.debug("Created contact " + getHref());
|
2010-07-07 05:20:42 -04:00
|
|
|
} else {
|
2010-07-20 09:25:15 -04:00
|
|
|
LOGGER.debug("Updated contact " + getHref());
|
2010-07-07 05:20:42 -04:00
|
|
|
}
|
2010-07-21 12:42:46 -04:00
|
|
|
} else {
|
|
|
|
return itemResult;
|
2010-07-07 05:20:42 -04:00
|
|
|
}
|
2010-07-09 08:52:45 -04:00
|
|
|
|
|
|
|
ItemId newItemId = new ItemId(createOrUpdateItemMethod.getResponseItem());
|
2010-07-17 06:45:21 -04:00
|
|
|
|
2010-07-18 19:36:25 -04:00
|
|
|
// first delete current picture
|
|
|
|
if (currentFileAttachment != null) {
|
|
|
|
DeleteAttachmentMethod deleteAttachmentMethod = new DeleteAttachmentMethod(currentFileAttachment.attachmentId);
|
|
|
|
executeMethod(deleteAttachmentMethod);
|
|
|
|
}
|
|
|
|
|
2010-07-17 06:45:21 -04:00
|
|
|
if (photo != null) {
|
2010-07-17 17:34:14 -04:00
|
|
|
// convert image to jpeg
|
2010-07-19 18:01:11 -04:00
|
|
|
byte[] resizedImageBytes = IOUtil.resizeImage(Base64.decodeBase64(photo.getBytes()), 90);
|
2010-07-17 17:34:14 -04:00
|
|
|
|
2010-07-19 18:01:11 -04:00
|
|
|
FileAttachment attachment = new FileAttachment("ContactPicture.jpg", "image/jpeg", new String(Base64.encodeBase64(resizedImageBytes)));
|
2010-07-27 08:58:23 -04:00
|
|
|
if ("Exchange2010".equals(serverVersion)) {
|
|
|
|
attachment.setIsContactPhoto(true);
|
|
|
|
}
|
2010-07-17 06:45:21 -04:00
|
|
|
// update photo attachment
|
|
|
|
CreateAttachmentMethod createAttachmentMethod = new CreateAttachmentMethod(newItemId, attachment);
|
|
|
|
executeMethod(createAttachmentMethod);
|
|
|
|
}
|
|
|
|
|
2010-07-09 08:52:45 -04:00
|
|
|
GetItemMethod getItemMethod = new GetItemMethod(BaseShape.ID_ONLY, newItemId, false);
|
2010-07-10 18:42:48 -04:00
|
|
|
getItemMethod.addAdditionalProperty(Field.get("etag"));
|
2010-07-09 08:52:45 -04:00
|
|
|
executeMethod(getItemMethod);
|
|
|
|
itemResult.etag = getItemMethod.getResponseItem().get(Field.get("etag").getResponseName());
|
2010-07-07 05:20:42 -04:00
|
|
|
|
|
|
|
return itemResult;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected class Event extends ExchangeSession.Event {
|
|
|
|
// item id
|
|
|
|
ItemId itemId;
|
|
|
|
|
2010-07-22 07:54:18 -04:00
|
|
|
protected Event(EWSMethod.Item response) {
|
2010-07-07 08:55:13 -04:00
|
|
|
itemId = new ItemId(response);
|
2010-07-07 05:20:42 -04:00
|
|
|
|
|
|
|
permanentUrl = response.get(Field.get("permanenturl").getResponseName());
|
|
|
|
etag = response.get(Field.get("etag").getResponseName());
|
|
|
|
displayName = response.get(Field.get("displayname").getResponseName());
|
2010-07-09 19:53:28 -04:00
|
|
|
itemName = response.get(Field.get("urlcompname").getResponseName());
|
2010-07-27 13:08:39 -04:00
|
|
|
// workaround for missing urlcompname in Exchange 2010
|
|
|
|
if (itemName == null) {
|
|
|
|
itemName = StringUtil.base64ToUrl(itemId.id) + ".EML";
|
|
|
|
}
|
2010-07-07 05:20:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
2010-07-09 17:25:18 -04:00
|
|
|
protected Event(String folderPath, String itemName, String contentClass, String itemBody, String etag, String noneMatch) {
|
2010-07-07 05:20:42 -04:00
|
|
|
super(folderPath, itemName, contentClass, itemBody, etag, noneMatch);
|
|
|
|
}
|
2010-07-07 08:55:13 -04:00
|
|
|
|
2010-07-10 18:42:48 -04:00
|
|
|
@Override
|
|
|
|
public ItemResult createOrUpdate() throws IOException {
|
|
|
|
return createOrUpdate(fixICS(itemBody, false).getBytes("UTF-8"));
|
|
|
|
}
|
|
|
|
|
2010-07-07 05:20:42 -04:00
|
|
|
|
|
|
|
@Override
|
2010-07-09 19:53:28 -04:00
|
|
|
protected ItemResult createOrUpdate(byte[] mimeContent) throws IOException {
|
|
|
|
ItemResult itemResult = new ItemResult();
|
|
|
|
EWSMethod createOrUpdateItemMethod;
|
|
|
|
|
|
|
|
// first try to load existing event
|
|
|
|
String urlcompname = convertItemNameToEML(itemName);
|
|
|
|
String currentEtag = null;
|
|
|
|
ItemId currentItemId = null;
|
2010-07-27 09:19:28 -04:00
|
|
|
List<EWSMethod.Item> responses = searchItems(folderPath, EVENT_REQUEST_PROPERTIES, EwsExchangeSession.this.isEqualTo("urlcompname", urlcompname), FolderQueryTraversal.SHALLOW);
|
2010-07-09 19:53:28 -04:00
|
|
|
if (!responses.isEmpty()) {
|
|
|
|
EWSMethod.Item response = responses.get(0);
|
|
|
|
currentItemId = new ItemId(response);
|
|
|
|
currentEtag = response.get(Field.get("etag").getResponseName());
|
|
|
|
}
|
|
|
|
if ("*".equals(noneMatch)) {
|
|
|
|
// create requested
|
|
|
|
if (currentItemId != null) {
|
|
|
|
itemResult.status = HttpStatus.SC_PRECONDITION_FAILED;
|
|
|
|
return itemResult;
|
|
|
|
}
|
|
|
|
} else if (etag != null) {
|
|
|
|
// update requested
|
|
|
|
if (currentItemId == null || !etag.equals(currentEtag)) {
|
|
|
|
itemResult.status = HttpStatus.SC_PRECONDITION_FAILED;
|
|
|
|
return itemResult;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (currentItemId != null) {
|
|
|
|
Set<FieldUpdate> updates = new HashSet<FieldUpdate>();
|
|
|
|
updates.add(new FieldUpdate(Field.get("mimeContent"), String.valueOf(Base64.encodeBase64(mimeContent))));
|
|
|
|
// update
|
|
|
|
createOrUpdateItemMethod = new UpdateItemMethod(MessageDisposition.SaveOnly,
|
|
|
|
ConflictResolution.AlwaysOverwrite,
|
2010-07-10 18:42:48 -04:00
|
|
|
SendMeetingInvitationsOrCancellations.SendToNone,
|
2010-07-09 19:53:28 -04:00
|
|
|
currentItemId, updates);
|
|
|
|
} else {
|
|
|
|
// create
|
|
|
|
EWSMethod.Item newItem = new EWSMethod.Item();
|
2010-07-10 18:42:48 -04:00
|
|
|
newItem.type = "CalendarItem";
|
2010-07-09 19:53:28 -04:00
|
|
|
newItem.mimeContent = Base64.encodeBase64(mimeContent);
|
2010-07-10 18:42:48 -04:00
|
|
|
HashSet<FieldUpdate> updates = new HashSet<FieldUpdate>();
|
|
|
|
// force urlcompname
|
|
|
|
updates.add(Field.createFieldUpdate("urlcompname", convertItemNameToEML(itemName)));
|
|
|
|
//updates.add(Field.createFieldUpdate("outlookmessageclass", "IPM.Appointment"));
|
|
|
|
newItem.setFieldUpdates(updates);
|
|
|
|
createOrUpdateItemMethod = new CreateItemMethod(MessageDisposition.SaveOnly, SendMeetingInvitations.SendToNone, getFolderId(folderPath), newItem);
|
2010-07-09 19:53:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
executeMethod(createOrUpdateItemMethod);
|
|
|
|
|
|
|
|
itemResult.status = createOrUpdateItemMethod.getStatusCode();
|
|
|
|
if (itemResult.status == HttpURLConnection.HTTP_OK) {
|
|
|
|
//noinspection VariableNotUsedInsideIf
|
2010-07-10 18:42:48 -04:00
|
|
|
if (etag == null) {
|
2010-07-09 19:53:28 -04:00
|
|
|
itemResult.status = HttpStatus.SC_CREATED;
|
2010-07-07 05:20:42 -04:00
|
|
|
LOGGER.debug("Updated event " + getHref());
|
|
|
|
} else {
|
|
|
|
LOGGER.warn("Overwritten event " + getHref());
|
|
|
|
}
|
|
|
|
}
|
2010-07-09 19:53:28 -04:00
|
|
|
|
|
|
|
ItemId newItemId = new ItemId(createOrUpdateItemMethod.getResponseItem());
|
|
|
|
GetItemMethod getItemMethod = new GetItemMethod(BaseShape.ID_ONLY, newItemId, false);
|
2010-07-10 18:42:48 -04:00
|
|
|
getItemMethod.addAdditionalProperty(Field.get("etag"));
|
2010-07-09 19:53:28 -04:00
|
|
|
executeMethod(getItemMethod);
|
|
|
|
itemResult.etag = getItemMethod.getResponseItem().get(Field.get("etag").getResponseName());
|
2010-07-07 05:20:42 -04:00
|
|
|
|
|
|
|
return itemResult;
|
2010-07-09 19:53:28 -04:00
|
|
|
|
2010-07-07 05:20:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getBody() throws HttpException {
|
|
|
|
String result;
|
|
|
|
LOGGER.debug("Get event: " + permanentUrl);
|
|
|
|
try {
|
|
|
|
byte[] content = getContent(itemId);
|
2010-07-10 18:42:48 -04:00
|
|
|
result = new String(content);
|
2010-07-07 05:20:42 -04:00
|
|
|
} catch (IOException e) {
|
|
|
|
throw buildHttpException(e);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2010-06-09 05:52:12 -04:00
|
|
|
}
|
|
|
|
|
2010-06-15 10:51:49 -04:00
|
|
|
@Override
|
2010-07-07 05:20:42 -04:00
|
|
|
public List<ExchangeSession.Contact> searchContacts(String folderPath, Set<String> attributes, Condition condition) throws IOException {
|
|
|
|
List<ExchangeSession.Contact> contacts = new ArrayList<ExchangeSession.Contact>();
|
2010-07-09 17:25:18 -04:00
|
|
|
List<EWSMethod.Item> responses = searchItems(folderPath, attributes, condition,
|
2010-07-07 05:20:42 -04:00
|
|
|
FolderQueryTraversal.SHALLOW);
|
|
|
|
|
|
|
|
for (EWSMethod.Item response : responses) {
|
|
|
|
contacts.add(new Contact(response));
|
|
|
|
}
|
|
|
|
return contacts;
|
2010-06-15 10:51:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2010-07-22 19:10:24 -04:00
|
|
|
public List<ExchangeSession.Event> searchEvents(String folderPath, Set<String> attributes, Condition condition) throws IOException {
|
2010-07-07 05:20:42 -04:00
|
|
|
List<ExchangeSession.Event> events = new ArrayList<ExchangeSession.Event>();
|
|
|
|
List<EWSMethod.Item> responses = searchItems(folderPath, attributes,
|
|
|
|
condition,
|
|
|
|
FolderQueryTraversal.SHALLOW);
|
|
|
|
for (EWSMethod.Item response : responses) {
|
|
|
|
events.add(new Event(response));
|
|
|
|
}
|
|
|
|
|
|
|
|
return events;
|
2010-06-15 10:51:49 -04:00
|
|
|
}
|
|
|
|
|
2010-07-07 08:29:41 -04:00
|
|
|
protected static final HashSet<String> EVENT_REQUEST_PROPERTIES = new HashSet<String>();
|
|
|
|
|
|
|
|
static {
|
|
|
|
EVENT_REQUEST_PROPERTIES.add("permanenturl");
|
|
|
|
EVENT_REQUEST_PROPERTIES.add("etag");
|
|
|
|
EVENT_REQUEST_PROPERTIES.add("displayname");
|
2010-07-08 19:26:41 -04:00
|
|
|
EVENT_REQUEST_PROPERTIES.add("urlcompname");
|
2010-07-07 08:29:41 -04:00
|
|
|
}
|
|
|
|
|
2010-07-27 13:08:39 -04:00
|
|
|
protected EWSMethod.Item getEwsItem(String folderPath, String itemName) throws IOException {
|
|
|
|
EWSMethod.Item item = null;
|
|
|
|
String urlcompname = convertItemNameToEML(itemName);
|
|
|
|
// workaround for missing urlcompname in Exchange 2010
|
|
|
|
if (isItemId(urlcompname)) {
|
|
|
|
ItemId itemId = new ItemId(StringUtil.urlToBase64(urlcompname.substring(0, 152)));
|
|
|
|
GetItemMethod getItemMethod = new GetItemMethod(BaseShape.ID_ONLY, itemId, false);
|
|
|
|
for (String attribute : EVENT_REQUEST_PROPERTIES) {
|
|
|
|
getItemMethod.addAdditionalProperty(Field.get(attribute));
|
|
|
|
}
|
|
|
|
executeMethod(getItemMethod);
|
|
|
|
item = getItemMethod.getResponseItem();
|
|
|
|
} else {
|
|
|
|
List<EWSMethod.Item> responses = searchItems(folderPath, EVENT_REQUEST_PROPERTIES, isEqualTo("urlcompname", urlcompname), FolderQueryTraversal.SHALLOW);
|
|
|
|
if (!responses.isEmpty()) {
|
|
|
|
item = responses.get(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
|
2010-07-07 08:29:41 -04:00
|
|
|
|
2010-06-15 10:51:49 -04:00
|
|
|
@Override
|
|
|
|
public Item getItem(String folderPath, String itemName) throws IOException {
|
2010-07-27 13:08:39 -04:00
|
|
|
EWSMethod.Item item = getEwsItem(folderPath, itemName);
|
|
|
|
if (item == null) {
|
2010-07-19 06:36:37 -04:00
|
|
|
throw new DavMailException("EXCEPTION_ITEM_NOT_FOUND");
|
2010-07-07 08:29:41 -04:00
|
|
|
}
|
2010-07-27 13:08:39 -04:00
|
|
|
|
|
|
|
String itemType = item.type;
|
2010-07-07 08:29:41 -04:00
|
|
|
if ("Contact".equals(itemType)) {
|
|
|
|
// retrieve Contact properties
|
2010-07-27 13:08:39 -04:00
|
|
|
ItemId itemId = new ItemId(item);
|
|
|
|
GetItemMethod getItemMethod = new GetItemMethod(BaseShape.ID_ONLY, itemId, false);
|
|
|
|
for (String attribute : CONTACT_ATTRIBUTES) {
|
|
|
|
getItemMethod.addAdditionalProperty(Field.get(attribute));
|
|
|
|
}
|
|
|
|
executeMethod(getItemMethod);
|
|
|
|
item = getItemMethod.getResponseItem();
|
|
|
|
if (item == null) {
|
2010-07-22 07:54:18 -04:00
|
|
|
throw new DavMailException("EXCEPTION_ITEM_NOT_FOUND");
|
2010-07-20 09:25:15 -04:00
|
|
|
}
|
2010-07-27 13:08:39 -04:00
|
|
|
return new Contact(item);
|
2010-07-07 08:29:41 -04:00
|
|
|
} else if ("CalendarItem".equals(itemType)
|
|
|
|
|| "MeetingRequest".equals(itemType)) {
|
2010-07-27 13:08:39 -04:00
|
|
|
return new Event(item);
|
2010-07-07 08:29:41 -04:00
|
|
|
} else {
|
2010-07-19 06:36:37 -04:00
|
|
|
throw new DavMailException("EXCEPTION_ITEM_NOT_FOUND");
|
2010-07-07 08:29:41 -04:00
|
|
|
}
|
2010-07-27 13:08:39 -04:00
|
|
|
|
2010-06-15 10:51:49 -04:00
|
|
|
}
|
|
|
|
|
2010-07-07 05:20:42 -04:00
|
|
|
@Override
|
|
|
|
public ContactPhoto getContactPhoto(ExchangeSession.Contact contact) throws IOException {
|
2010-07-17 06:45:21 -04:00
|
|
|
ContactPhoto contactPhoto = null;
|
|
|
|
|
2010-07-17 17:34:14 -04:00
|
|
|
GetItemMethod getItemMethod = new GetItemMethod(BaseShape.ID_ONLY, ((EwsExchangeSession.Contact) contact).itemId, false);
|
2010-07-17 06:45:21 -04:00
|
|
|
getItemMethod.addAdditionalProperty(Field.get("attachments"));
|
|
|
|
executeMethod(getItemMethod);
|
|
|
|
EWSMethod.Item item = getItemMethod.getResponseItem();
|
|
|
|
if (item != null) {
|
|
|
|
FileAttachment attachment = item.getAttachmentByName("ContactPicture.jpg");
|
|
|
|
if (attachment != null) {
|
|
|
|
// get attachment content
|
|
|
|
GetAttachmentMethod getAttachmentMethod = new GetAttachmentMethod(attachment.attachmentId);
|
|
|
|
executeMethod(getAttachmentMethod);
|
|
|
|
|
|
|
|
contactPhoto = new ContactPhoto();
|
|
|
|
contactPhoto.content = getAttachmentMethod.getResponseItem().get("Content");
|
2010-07-23 04:58:39 -04:00
|
|
|
if (attachment.contentType == null) {
|
|
|
|
contactPhoto.contentType = "image/jpeg";
|
|
|
|
} else {
|
|
|
|
contactPhoto.contentType = attachment.contentType;
|
|
|
|
}
|
|
|
|
|
2010-07-17 06:45:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return contactPhoto;
|
2010-07-07 05:20:42 -04:00
|
|
|
}
|
|
|
|
|
2010-06-16 09:30:36 -04:00
|
|
|
@Override
|
2010-07-20 05:10:39 -04:00
|
|
|
public void deleteItem(String folderPath, String itemName) throws IOException {
|
2010-07-08 19:26:41 -04:00
|
|
|
String urlcompname = convertItemNameToEML(itemName);
|
2010-07-27 09:19:28 -04:00
|
|
|
List<EWSMethod.Item> responses = searchItems(folderPath, EVENT_REQUEST_PROPERTIES, isEqualTo("urlcompname", urlcompname), FolderQueryTraversal.SHALLOW);
|
2010-07-07 08:55:13 -04:00
|
|
|
if (!responses.isEmpty()) {
|
|
|
|
DeleteItemMethod deleteItemMethod = new DeleteItemMethod(new ItemId(responses.get(0)), DeleteType.HardDelete);
|
|
|
|
executeMethod(deleteItemMethod);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2010-07-20 05:10:39 -04:00
|
|
|
public void processItem(String folderPath, String itemName) throws IOException {
|
2010-07-08 19:26:41 -04:00
|
|
|
String urlcompname = convertItemNameToEML(itemName);
|
2010-07-27 09:19:28 -04:00
|
|
|
List<EWSMethod.Item> responses = searchItems(folderPath, EVENT_REQUEST_PROPERTIES, isEqualTo("urlcompname", urlcompname), FolderQueryTraversal.SHALLOW);
|
2010-07-07 08:55:13 -04:00
|
|
|
if (!responses.isEmpty()) {
|
|
|
|
HashMap<String, String> localProperties = new HashMap<String, String>();
|
|
|
|
localProperties.put("processed", "1");
|
|
|
|
localProperties.put("read", "1");
|
|
|
|
UpdateItemMethod updateItemMethod = new UpdateItemMethod(MessageDisposition.SaveOnly,
|
|
|
|
ConflictResolution.AlwaysOverwrite,
|
2010-07-10 18:42:48 -04:00
|
|
|
SendMeetingInvitationsOrCancellations.SendToNone,
|
2010-07-07 08:55:13 -04:00
|
|
|
new ItemId(responses.get(0)), buildProperties(localProperties));
|
|
|
|
executeMethod(updateItemMethod);
|
|
|
|
}
|
2010-06-16 09:30:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int sendEvent(String icsBody) throws IOException {
|
|
|
|
throw new UnsupportedOperationException();
|
|
|
|
}
|
|
|
|
|
2010-06-15 10:51:49 -04:00
|
|
|
@Override
|
2010-07-06 05:46:55 -04:00
|
|
|
protected ItemResult internalCreateOrUpdateContact(String folderPath, String itemName, Map<String, String> properties, String etag, String noneMatch) throws IOException {
|
2010-07-07 05:20:42 -04:00
|
|
|
return new Contact(folderPath, itemName, properties, etag, noneMatch).createOrUpdate();
|
2010-06-15 10:51:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2010-07-06 05:46:55 -04:00
|
|
|
protected ItemResult internalCreateOrUpdateEvent(String folderPath, String itemName, String contentClass, String icsBody, String etag, String noneMatch) throws IOException {
|
2010-07-07 05:20:42 -04:00
|
|
|
return new Event(folderPath, itemName, contentClass, icsBody, etag, noneMatch).createOrUpdate();
|
2010-06-15 10:51:49 -04:00
|
|
|
}
|
|
|
|
|
2010-06-19 17:35:09 -04:00
|
|
|
@Override
|
2010-06-21 09:52:09 -04:00
|
|
|
public boolean isSharedFolder(String folderPath) {
|
2010-07-08 19:26:41 -04:00
|
|
|
// TODO
|
|
|
|
return false;
|
2010-06-19 17:35:09 -04:00
|
|
|
}
|
|
|
|
|
2010-06-16 17:43:11 -04:00
|
|
|
@Override
|
|
|
|
protected void loadVtimezone() {
|
|
|
|
throw new UnsupportedOperationException();
|
|
|
|
}
|
|
|
|
|
2010-06-07 05:07:31 -04:00
|
|
|
|
|
|
|
private FolderId getFolderId(String folderPath) throws IOException {
|
2010-06-29 10:15:50 -04:00
|
|
|
FolderId folderId = getFolderIdIfExists(folderPath);
|
|
|
|
if (folderId == null) {
|
2010-07-22 07:54:18 -04:00
|
|
|
throw new HttpNotFoundException("Folder '" + folderPath + "' not found");
|
2010-06-29 10:15:50 -04:00
|
|
|
}
|
|
|
|
return folderId;
|
|
|
|
}
|
|
|
|
|
|
|
|
private FolderId getFolderIdIfExists(String folderPath) throws IOException {
|
2010-06-07 18:30:23 -04:00
|
|
|
String[] folderNames;
|
|
|
|
FolderId currentFolderId;
|
2010-07-27 13:08:39 -04:00
|
|
|
String lowerCaseFolderPath = folderPath.toLowerCase();
|
|
|
|
if (email != null) {
|
|
|
|
String currentMailboxPath = "/users/" + email.toLowerCase();
|
|
|
|
if (currentMailboxPath.equals(lowerCaseFolderPath)) {
|
|
|
|
return DistinguishedFolderId.MSGFOLDERROOT;
|
|
|
|
} else if (lowerCaseFolderPath.startsWith(currentMailboxPath + '/')) {
|
|
|
|
return getFolderIdIfExists(folderPath.substring(currentMailboxPath.length() + 1));
|
|
|
|
}
|
2010-07-09 17:25:18 -04:00
|
|
|
}
|
|
|
|
if (folderPath.startsWith(PUBLIC_ROOT)) {
|
2010-06-08 06:44:47 -04:00
|
|
|
currentFolderId = DistinguishedFolderId.PUBLICFOLDERSROOT;
|
2010-06-07 18:30:23 -04:00
|
|
|
folderNames = folderPath.substring(PUBLIC_ROOT.length()).split("/");
|
2010-07-08 19:26:41 -04:00
|
|
|
} else if (folderPath.startsWith(INBOX) || folderPath.startsWith(LOWER_CASE_INBOX)) {
|
2010-06-08 06:44:47 -04:00
|
|
|
currentFolderId = DistinguishedFolderId.INBOX;
|
|
|
|
folderNames = folderPath.substring(INBOX.length()).split("/");
|
|
|
|
} else if (folderPath.startsWith(CALENDAR)) {
|
|
|
|
currentFolderId = DistinguishedFolderId.CALENDAR;
|
|
|
|
folderNames = folderPath.substring(CALENDAR.length()).split("/");
|
|
|
|
} else if (folderPath.startsWith(CONTACTS)) {
|
|
|
|
currentFolderId = DistinguishedFolderId.CONTACTS;
|
|
|
|
folderNames = folderPath.substring(CONTACTS.length()).split("/");
|
|
|
|
} else if (folderPath.startsWith(SENT)) {
|
|
|
|
currentFolderId = DistinguishedFolderId.SENTITEMS;
|
|
|
|
folderNames = folderPath.substring(SENT.length()).split("/");
|
|
|
|
} else if (folderPath.startsWith(DRAFTS)) {
|
|
|
|
currentFolderId = DistinguishedFolderId.DRAFTS;
|
|
|
|
folderNames = folderPath.substring(DRAFTS.length()).split("/");
|
|
|
|
} else if (folderPath.startsWith(TRASH)) {
|
|
|
|
currentFolderId = DistinguishedFolderId.DELETEDITEMS;
|
|
|
|
folderNames = folderPath.substring(TRASH.length()).split("/");
|
|
|
|
} else if (folderPath.startsWith(JUNK)) {
|
|
|
|
currentFolderId = DistinguishedFolderId.JUNKEMAIL;
|
|
|
|
folderNames = folderPath.substring(JUNK.length()).split("/");
|
|
|
|
} else if (folderPath.startsWith(UNSENT)) {
|
|
|
|
currentFolderId = DistinguishedFolderId.OUTBOX;
|
|
|
|
folderNames = folderPath.substring(UNSENT.length()).split("/");
|
2010-06-07 18:30:23 -04:00
|
|
|
} else {
|
2010-06-08 06:44:47 -04:00
|
|
|
currentFolderId = DistinguishedFolderId.MSGFOLDERROOT;
|
|
|
|
folderNames = folderPath.split("/");
|
2010-06-07 18:30:23 -04:00
|
|
|
}
|
2010-06-07 05:07:31 -04:00
|
|
|
for (String folderName : folderNames) {
|
2010-06-08 06:44:47 -04:00
|
|
|
if (folderName.length() > 0) {
|
2010-06-07 05:07:31 -04:00
|
|
|
currentFolderId = getSubFolderByName(currentFolderId, folderName);
|
2010-06-29 10:15:50 -04:00
|
|
|
if (currentFolderId == null) {
|
|
|
|
break;
|
|
|
|
}
|
2010-06-07 05:07:31 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return currentFolderId;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected FolderId getSubFolderByName(FolderId parentFolderId, String folderName) throws IOException {
|
2010-06-29 10:15:50 -04:00
|
|
|
FolderId folderId = null;
|
2010-06-07 05:07:31 -04:00
|
|
|
FindFolderMethod findFolderMethod = new FindFolderMethod(
|
|
|
|
FolderQueryTraversal.SHALLOW,
|
|
|
|
BaseShape.ID_ONLY,
|
|
|
|
parentFolderId,
|
2010-06-10 16:47:55 -04:00
|
|
|
FOLDER_PROPERTIES,
|
2010-06-07 05:07:31 -04:00
|
|
|
new TwoOperandExpression(TwoOperandExpression.Operator.IsEqualTo,
|
2010-07-27 06:39:53 -04:00
|
|
|
Field.get("folderDisplayName"), folderName)
|
2010-06-07 05:07:31 -04:00
|
|
|
);
|
2010-06-29 10:15:50 -04:00
|
|
|
executeMethod(findFolderMethod);
|
|
|
|
EWSMethod.Item item = findFolderMethod.getResponseItem();
|
|
|
|
if (item != null) {
|
2010-07-07 08:55:13 -04:00
|
|
|
folderId = new FolderId(item);
|
2010-06-29 10:15:50 -04:00
|
|
|
}
|
|
|
|
return folderId;
|
|
|
|
}
|
|
|
|
|
2010-07-20 05:10:39 -04:00
|
|
|
protected void executeMethod(EWSMethod ewsMethod) throws IOException {
|
2010-06-07 17:17:07 -04:00
|
|
|
try {
|
2010-07-27 08:58:23 -04:00
|
|
|
ewsMethod.setServerVersion(serverVersion);
|
2010-07-20 05:10:39 -04:00
|
|
|
httpClient.executeMethod(ewsMethod);
|
2010-07-27 08:58:23 -04:00
|
|
|
if (serverVersion == null) {
|
|
|
|
serverVersion = ewsMethod.getServerVersion();
|
|
|
|
}
|
2010-06-29 10:15:50 -04:00
|
|
|
ewsMethod.checkSuccess();
|
2010-06-07 17:17:07 -04:00
|
|
|
} finally {
|
2010-06-29 10:15:50 -04:00
|
|
|
ewsMethod.releaseConnection();
|
2010-06-08 06:44:47 -04:00
|
|
|
}
|
2010-06-07 05:07:31 -04:00
|
|
|
}
|
|
|
|
|
2010-07-20 12:33:58 -04:00
|
|
|
protected String convertDateFromExchange(String exchangeDateValue) throws DavMailException {
|
2010-07-22 07:54:18 -04:00
|
|
|
String zuluDateValue = null;
|
|
|
|
if (exchangeDateValue != null) {
|
|
|
|
try {
|
|
|
|
zuluDateValue = getZuluDateFormat().format(getExchangeZuluDateFormat().parse(exchangeDateValue));
|
|
|
|
} catch (ParseException e) {
|
|
|
|
throw new DavMailException("EXCEPTION_INVALID_DATE", exchangeDateValue);
|
|
|
|
}
|
2010-07-09 17:25:18 -04:00
|
|
|
}
|
|
|
|
return zuluDateValue;
|
|
|
|
}
|
|
|
|
|
2010-07-27 09:19:28 -04:00
|
|
|
/**
|
|
|
|
* Format date to exchange search format.
|
|
|
|
*
|
|
|
|
* @param date date object
|
|
|
|
* @return formatted search date
|
|
|
|
*/
|
|
|
|
@Override
|
|
|
|
public String formatSearchDate(Date date) {
|
|
|
|
SimpleDateFormat dateFormatter = new SimpleDateFormat(YYYY_MM_DD_T_HHMMSS_Z, Locale.ENGLISH);
|
|
|
|
dateFormatter.setTimeZone(GMT_TIMEZONE);
|
|
|
|
return dateFormatter.format(date);
|
|
|
|
}
|
|
|
|
|
2010-07-27 13:08:39 -04:00
|
|
|
protected static boolean isItemId(String itemName) {
|
|
|
|
return itemName.length() == 156;
|
|
|
|
}
|
2010-06-02 04:46:46 -04:00
|
|
|
}
|
2010-07-07 05:20:42 -04:00
|
|
|
|