Fix all day events from OWA to client

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@225 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2008-12-09 15:06:52 +00:00
parent 3a627568d4
commit 399da671ae
1 changed files with 32 additions and 3 deletions

View File

@ -840,7 +840,7 @@ public class ExchangeSession {
}
method.releaseConnection();
}
return buffer.toString();
return fixICS(buffer.toString());
}
public String getPath() throws URIException {
@ -930,10 +930,11 @@ public class ExchangeSession {
return event;
}
protected String fixICSToExchange(String icsBody) throws IOException {
protected String fixICS(String icsBody) throws IOException {
// first pass : detect
boolean isAllDay = false;
boolean hasCdoAllDay = false;
boolean isCdoAllDay = false;
BufferedReader reader = null;
try {
reader = new BufferedReader(new StringReader(icsBody));
@ -947,6 +948,7 @@ public class ExchangeSession {
isAllDay = true;
} else if ("X-MICROSOFT-CDO-ALLDAYEVENT".equals(key)) {
hasCdoAllDay = true;
isCdoAllDay = "TRUE".equals(value);
}
}
}
@ -967,6 +969,10 @@ public class ExchangeSession {
result.append("X-MICROSOFT-CDO-ALLDAYEVENT:TRUE").append((char) 13).append((char) 10);
} else if (!isAllDay && "X-MICROSOFT-CDO-ALLDAYEVENT:TRUE".equals(line)) {
line = "X-MICROSOFT-CDO-ALLDAYEVENT:FALSE";
} else if (isCdoAllDay && line.startsWith("DTSTART;TZID")) {
line = getAllDayLine(line);
} else if (isCdoAllDay && line.startsWith("DTEND;TZID")) {
line = getAllDayLine(line);
}
result.append(line).append((char) 13).append((char) 10);
}
@ -977,6 +983,29 @@ public class ExchangeSession {
return result.toString();
}
protected String getAllDayLine(String line) throws IOException {
int keyIndex = line.indexOf(';');
int valueIndex = line.lastIndexOf(':');
int valueEndIndex = line.lastIndexOf('T');
if (keyIndex < 0 || valueIndex < 0|| valueEndIndex < 0) {
throw new IOException("Invalid ICS line: " + line);
}
String dateValue = line.substring(valueIndex + 1);
String key = line.substring(0, keyIndex);
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyyMMdd");
dateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
Date date;
try {
date = dateFormat.parse(dateValue);
} catch (ParseException e) {
throw new IOException("Invalid ICS line: " + line);
}
if ("DTEND".equals(key)) {
date.setTime(date.getTime() - 1);
}
return line.substring(0, keyIndex) + ";VALUE=DATE:" + line.substring(valueIndex+1, valueEndIndex);
}
public int createOrUpdateEvent(String path, String icsBody, String etag) throws IOException {
String messageUrl = URIUtil.encodePathQuery(calendarUrl + "/" + URIUtil.decode(path));
String uid = path.substring(0, path.lastIndexOf("."));
@ -1002,7 +1031,7 @@ public class ExchangeSession {
"\tmethod=REQUEST;\n" +
"\tcharset=\"utf-8\"\n" +
"Content-Transfer-Encoding: 8bit\n\n");
body.append(new String(fixICSToExchange(icsBody).getBytes("UTF-8"), "ISO-8859-1"));
body.append(new String(fixICS(icsBody).getBytes("UTF-8"), "ISO-8859-1"));
body.append("------=_NextPart_").append(uid).append("--\n");
putmethod.setRequestBody(body.toString());
int status;