| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- # -*- coding: utf-8 -*-
- #
- # This file is part of Radicale Server - Calendar Server
- # Copyright © 2008-2010 Guillaume Ayoub
- # Copyright © 2008 Nicolas Kandel
- # Copyright © 2008 Pascal Halter
- #
- # This library 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 3 of the License, or
- # (at your option) any later version.
- #
- # This library 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 Radicale. If not, see <http://www.gnu.org/licenses/>.
- # TODO: Manage errors (see xmlutils)
- import posixpath
- try:
- from http import client, server
- except ImportError:
- import httplib as client
- import BaseHTTPServer as server
- from radicale import config, support, xmlutils
- class CalendarHandler(server.BaseHTTPRequestHandler):
- """HTTP requests handler for calendars."""
- def _parse_path(self):
- path = self.path.strip("/").split("/")
- if len(path) >= 2:
- cal = "%s/%s" % (path[0], path[1])
- self.calendar = calendar.Calendar("radicale", cal)
- def do_GET(self):
- """Manage GET ``request``."""
- self._parse_path()
- answer = self.calendar.vcalendar().encode(config.get("encoding", "request"))
- self.send_response(client.OK)
- self.send_header("Content-Length", len(answer))
- self.end_headers()
- self.wfile.write(answer)
- def do_DELETE(self):
- """Manage DELETE ``request``."""
- self._parse_path()
- obj = self.headers.get("if-match", None)
- answer = xmlutils.delete(obj, self.calendar, self.path)
- self.send_response(client.NO_CONTENT)
- self.send_header("Content-Length", len(answer))
- self.end_headers()
- self.wfile.write(answer)
- def do_OPTIONS(self):
- """Manage OPTIONS ``request``."""
- self.send_response(client.OK)
- self.send_header("Allow", "DELETE, GET, OPTIONS, PROPFIND, PUT, REPORT")
- self.send_header("DAV", "1, calendar-access")
- self.end_headers()
- def do_PROPFIND(self):
- """Manage PROPFIND ``request``."""
- self._parse_path()
- xml_request = self.rfile.read(int(self.headers["Content-Length"]))
- answer = xmlutils.propfind(xml_request, self.calendar, self.path)
- self.send_response(client.MULTI_STATUS)
- self.send_header("DAV", "1, calendar-access")
- self.send_header("Content-Length", len(answer))
- self.end_headers()
- self.wfile.write(answer)
- def do_PUT(self):
- """Manage PUT ``request``."""
- # TODO: Improve charset detection
- self._parse_path()
- contentType = self.headers["content-type"]
- if contentType and "charset=" in contentType:
- charset = contentType.split("charset=")[1].strip()
- else:
- charset = config.get("encoding", "request")
- ical_request = self.rfile.read(int(self.headers["Content-Length"])).decode(charset)
- obj = self.headers.get("if-match", None)
- xmlutils.put(ical_request, self.calendar, self.path, obj)
- self.send_response(client.CREATED)
- def do_REPORT(self):
- """Manage REPORT ``request``."""
- self._parse_path()
- xml_request = self.rfile.read(int(self.headers["Content-Length"]))
- answer = xmlutils.report(xml_request, self.calendar, self.path)
- self.send_response(client.MULTI_STATUS)
- self.send_header("Content-Length", len(answer))
- self.end_headers()
- self.wfile.write(answer)
|