use of com.zimbra.cs.dav.resource.CalendarCollection in project zm-mailbox by Zimbra.
the class MkCalendar method handle.
// valid return codes:
// 201 Created, 207 Multi-Status (403, 409, 423, 424, 507),
// 403 Forbidden, 409 Conflict, 415 Unsupported Media Type,
// 507 Insufficient Storage
@Override
public void handle(DavContext ctxt) throws DavException, IOException {
String user = ctxt.getUser();
String name = ctxt.getItem();
if (user == null || name == null)
throw new DavException("invalid uri", HttpServletResponse.SC_FORBIDDEN, null);
Element top = null;
if (ctxt.hasRequestMessage()) {
Document doc = ctxt.getRequestMessage();
top = doc.getRootElement();
if (!top.getName().equals(DavElements.P_MKCALENDAR))
throw new DavException("msg " + top.getName() + " not allowed in MKCALENDAR", HttpServletResponse.SC_BAD_REQUEST, null);
}
Collection col = UrlNamespace.getCollectionAtUrl(ctxt, ctxt.getPath());
if (col instanceof CalendarCollection)
throw new DavException("can't create calendar under another calendar", HttpServletResponse.SC_FORBIDDEN, null);
Collection newone = col.mkCol(ctxt, name, MailItem.Type.APPOINTMENT);
boolean success = false;
try {
PropPatch.handlePropertyUpdate(ctxt, top, newone, true, MKCALENDAR);
success = true;
} finally {
if (!success)
newone.delete(ctxt);
}
ctxt.setStatus(HttpServletResponse.SC_CREATED);
ctxt.getResponse().addHeader(DavProtocol.HEADER_CACHE_CONTROL, DavProtocol.NO_CACHE);
}
use of com.zimbra.cs.dav.resource.CalendarCollection in project zm-mailbox by Zimbra.
the class CalendarQuery method handle.
@Override
public void handle(DavContext ctxt) throws DavException, ServiceException {
Element query = ctxt.getRequestMessage().getRootElement();
if (!query.getQName().equals(DavElements.E_CALENDAR_QUERY)) {
throw new DavException("msg " + query.getName() + " is not calendar-query", HttpServletResponse.SC_BAD_REQUEST, null);
}
RequestProp reqProp = ctxt.getRequestProp();
QueryContext qctxt = new QueryContext(ctxt, query, reqProp);
if (qctxt.componentFilter == null) {
throw new DavException("missing filter element in the request", HttpServletResponse.SC_BAD_REQUEST, null);
}
DavResource rsc = ctxt.getRequestedResource();
if (!(rsc instanceof CalendarCollection)) {
throw new DavException("not a calendar resource", HttpServletResponse.SC_BAD_REQUEST, null);
}
CalendarCollection cal = (CalendarCollection) rsc;
TimeRange tr = qctxt.componentFilter.getTimeRange();
if (tr == null) {
tr = new TimeRange(rsc.getOwner());
}
/**
* Even if there are no matching items, we should return a DAV:multistatus report
* http://tools.ietf.org/html/rfc4791#section-7.8 CALDAV:calendar-query REPORT
* The response body for a successful request MUST be a DAV:multistatus XML element (i.e., the response uses
* the same format as the response for PROPFIND). In the case where there are no response elements, the
* returned DAV:multistatus XML element is empty.
*/
qctxt.davCtxt.setStatus(DavProtocol.STATUS_MULTI_STATUS);
DavResponse resp = qctxt.davCtxt.getDavResponse();
resp.getTop(DavElements.E_MULTISTATUS);
for (DavResource calItem : cal.getChildren(ctxt, tr)) {
handleCalendarItem(qctxt, calItem);
}
}
use of com.zimbra.cs.dav.resource.CalendarCollection in project zm-mailbox by Zimbra.
the class FreeBusyQuery method handle.
public void handle(DavContext ctxt) throws DavException, IOException, ServiceException {
Element query = ctxt.getRequestMessage().getRootElement();
if (!query.getQName().equals(DavElements.E_FREE_BUSY_QUERY))
throw new DavException("msg " + query.getName() + " is not free-busy-query", HttpServletResponse.SC_BAD_REQUEST, null);
Element trElem = query.element(DavElements.E_TIME_RANGE);
if (trElem == null)
throw new DavException("need time-range", HttpServletResponse.SC_BAD_REQUEST, null);
TimeRange timeRange = new TimeRange(trElem);
DavResource rs = ctxt.getRequestedResource();
if (!(rs instanceof CalendarCollection))
throw new DavException("not a calendar collection", HttpServletResponse.SC_BAD_REQUEST, null);
try {
String freebusy = ((CalendarCollection) rs).getFreeBusyReport(ctxt, timeRange);
HttpServletResponse resp = ctxt.getResponse();
resp.setContentType(MimeConstants.CT_TEXT_CALENDAR);
resp.getOutputStream().write(freebusy.getBytes("UTF-8"));
ctxt.responseSent();
} catch (ServiceException se) {
throw new DavException("can't get freebusy report", HttpServletResponse.SC_INTERNAL_SERVER_ERROR, se);
}
}
use of com.zimbra.cs.dav.resource.CalendarCollection in project zm-mailbox by Zimbra.
the class CalendarMultiget method handle.
public void handle(DavContext ctxt) throws ServiceException, DavException {
Element query = ctxt.getRequestMessage().getRootElement();
if (!query.getQName().equals(DavElements.E_CALENDAR_MULTIGET))
throw new DavException("msg " + query.getName() + " is not calendar-multiget", HttpServletResponse.SC_BAD_REQUEST, null);
DavResponse resp = ctxt.getDavResponse();
ArrayList<String> hrefs = new ArrayList<String>();
for (Object obj : query.elements(DavElements.E_HREF)) if (obj instanceof Element)
hrefs.add(((Element) obj).getText());
long ts = System.currentTimeMillis();
DavResource reqResource = ctxt.getRequestedResource();
if (!(reqResource instanceof CalendarCollection))
throw new DavException("requested resource is not a calendar collection", HttpServletResponse.SC_BAD_REQUEST, null);
CalendarCollection calResource = (CalendarCollection) reqResource;
long now = System.currentTimeMillis();
ZimbraLog.dav.debug("GetRequestedResource: " + (now - ts) + "ms");
RequestProp reqProp = ctxt.getRequestProp();
for (DavResource rs : calResource.getAppointmentsByUids(ctxt, hrefs)) resp.addResource(ctxt, rs, reqProp, false);
ts = now;
now = System.currentTimeMillis();
ZimbraLog.dav.debug("multiget: " + (now - ts) + "ms");
}
Aggregations