1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
|
The high-level framework
========================
Overview
--------
The high level iCal feed-generating is supplied by the
:class:`ICalFeed <django_ical.views.ICalFeed>` class.
To create a feed, write a :class:`ICalFeed <django_ical.views.ICalFeed>`
class and point to an instance of it in your
`URLconf <https://docs.djangoproject.com/en/1.9/topics/http/urls/>`_.
With RSS feeds, the items in the feed represent articles or simple web pages.
The :class:`ICalFeed <django_ical.views.ICalFeed>` class represents an
iCalendar calendar. Calendars contain items which are events.
Example
-------
Let's look at a simple example. Here the item_start_datetime is a django-ical
extension that supplies the start time of the event.
.. code-block:: python
from django_ical.views import ICalFeed
from examplecom.models import Event
class EventFeed(ICalFeed):
"""
A simple event calender
"""
product_id = '-//example.com//Example//EN'
timezone = 'UTC'
file_name = "event.ics"
def items(self):
return Event.objects.all().order_by('-start_datetime')
def item_title(self, item):
return item.title
def item_description(self, item):
return item.description
def item_start_datetime(self, item):
return item.start_datetime
To connect a URL to this calendar, put an instance of the EventFeed object in
your URLconf. For example:
.. code-block:: python
from django.conf.urls import patterns, url, include
from myproject.feeds import EventFeed
urlpatterns = patterns('',
# ...
(r'^latest/feed.ics$', EventFeed()),
# ...
)
Example how recurrences are built using the django-recurrence_ package:
.. code-block:: python
from django_ical.utils import build_rrule_from_recurrences_rrule
from django_ical.views import ICalFeed
from examplecom.models import Event
class EventFeed(ICalFeed):
"""
A simple event calender
"""
# ...
def item_rrule(self, item):
"""Adapt Event recurrence to Feed Entry rrule."""
if item.recurrences:
rules = []
for rule in item.recurrences.rrules:
rules.append(build_rrule_from_recurrences_rrule(rule))
return rules
def item_exrule(self, item):
"""Adapt Event recurrence to Feed Entry exrule."""
if item.recurrences:
rules = []
for rule in item.recurrences.exrules:
rules.append(build_rrule_from_recurrences_rrule(rule))
return rules
def item_rdate(self, item):
"""Adapt Event recurrence to Feed Entry rdate."""
if item.recurrences:
return item.recurrences.rdates
def item_exdate(self, item):
"""Adapt Event recurrence to Feed Entry exdate."""
if item.recurrences:
return item.recurrences.exdates
Note that in ``django_ical.utils`` are also convienience methods to build ``rrules`` from
scratch, from string (serialized iCal) and ``dateutil.rrule``.
File Downloads
--------------
The `file_name` parameter is an optional used as base name when generating the file. By
default django-ical will not set the Content-Disposition header of the response. By setting
the file_name parameter you can cause django_ical to set the Content-Disposition header
and set the file name. In the example below, it will be called "event.ics".
.. code-block:: python
class EventFeed(ICalFeed):
"""
A simple event calender
"""
product_id = '-//example.com//Example//EN'
timezone = 'UTC'
file_name = "event.ics"
# ...
The `file_name` parameter can be a method like other properties. Here we can set
the file name to include the id of the object returned by `get_object()`.
.. code-block:: python
class EventFeed(ICalFeed):
"""
A simple event calender
"""
product_id = '-//example.com//Example//EN'
timezone = 'UTC'
def file_name(self, obj):
return "feed_%s.ics" % obj.id
# ...
Alarms
------
Alarms must be `icalendar.Alarm` objects, a list is expected as the return value for
`item_valarm`.
.. code-block:: python
from icalendar import Alarm
from datetime import timedelta
def item_valarm(self, item):
valarm = Alarm()
valarm.add('action', 'display')
valarm.add('description', 'Your message text')
valarm.add('trigger', timedelta(days=-1))
return [valarm]
Property Reference and Extensions
---------------------------------
django-ical adds a number of extensions to the base syndication framework in
order to support iCalendar feeds and ignores many fields used in RSS feeds.
Here is a table of all of the fields that django-ical supports.
+-----------------------+-----------------------+-----------------------------+
| Property name | iCalendar field name | Description |
+=======================+=======================+=============================+
| product_id | `PRODID`_ | The calendar product ID |
+-----------------------+-----------------------+-----------------------------+
| timezone | `X-WR-TIMEZONE`_ | The calendar timezone |
+-----------------------+-----------------------+-----------------------------+
| title | `X-WR-CALNAME`_ | The calendar name/title |
+-----------------------+-----------------------+-----------------------------+
| description | `X-WR-CALDESC`_ | The calendar description |
+-----------------------+-----------------------+-----------------------------+
| method | `METHOD`_ | The calendar method such as |
| | | meeting requests. |
+-----------------------+-----------------------+-----------------------------+
| item_guid | `UID`_ | The event's unique id. |
| | | This id should be |
| | | *globally* unique so you |
| | | should add an |
| | | @<domain_name> to your id. |
+-----------------------+-----------------------+-----------------------------+
| item_title | `SUMMARY`_ | The event name/title |
+-----------------------+-----------------------+-----------------------------+
| item_description | `DESCRIPTION`_ | The event description |
+-----------------------+-----------------------+-----------------------------+
| item_link | `URL`_ | The event url |
+-----------------------+-----------------------+-----------------------------+
| item_class | `CLASS`_ | The event class |
| | | (e.g. PUBLIC, PRIVATE, |
| | | CONFIDENTIAL) |
+-----------------------+-----------------------+-----------------------------+
| item_created | `CREATED`_ | The event create time |
+-----------------------+-----------------------+-----------------------------+
| item_updateddate | `LAST-MODIFIED`_ | The event modified time |
+-----------------------+-----------------------+-----------------------------+
| item_start_datetime | `DTSTART`_ | The event start time |
+-----------------------+-----------------------+-----------------------------+
| item_end_datetime | `DTEND`_ | The event end time |
+-----------------------+-----------------------+-----------------------------+
| item_location | `LOCATION`_ | The event location |
+-----------------------+-----------------------+-----------------------------+
| item_geolocation | `GEO`_ | The latitude and longitude |
| | | of the event. The value |
| | | returned by this property |
| | | should be a two-tuple |
| | | containing the latitude and |
| | | longitude as float values. |
| | | semicolon. Ex: |
| | | *(37.386013, -122.082932)* |
+-----------------------+-----------------------+-----------------------------+
| item_transparency | `TRANSP`_ | The event transparency. |
| | | Defines whether the event |
| | | shows up in busy searches. |
| | | (e.g. OPAQUE, TRANSPARENT) |
+-----------------------+-----------------------+-----------------------------+
| item_organizer | `ORGANIZER`_ | The event organizer. |
| | | Expected to be a |
| | | vCalAddress object. See |
| | | `iCalendar`_ documentation |
| | | or tests to know how to |
| | | build them. |
+-----------------------+-----------------------+-----------------------------+
| item_attendee | `ATTENDEE`_ | The event attendees. |
| | | Expected to be a list of |
| | | vCalAddress objects. See |
| | | `iCalendar`_ documentation |
| | | or tests to know how to |
| | | build them. |
+-----------------------+-----------------------+-----------------------------+
| item_rrule | `RRULE`_ | The recurrence rule for |
| | | repeating events. |
| | | See `iCalendar`_ |
| | | documentation or tests to |
| | | know how to build them. |
+-----------------------+-----------------------+-----------------------------+
| item_rdate | `RDATE`_ | The recurring dates/times |
| | | for a repeating event. |
| | | See `iCalendar`_ |
| | | documentation or tests to |
| | | know how to build them. |
+-----------------------+-----------------------+-----------------------------+
| item_exdate | `EXDATE`_ | The dates/times for |
| | | exceptions of a recurring |
| | | event. |
| | | See `iCalendar`_ |
| | | documentation or tests to |
| | | know how to build them. |
+-----------------------+-----------------------+-----------------------------+
| item_valarm | `VALARM`_ | Alarms for the event, must |
| | | be a list of Alarm objects. |
| | | See `iCalendar`_ |
| | | documentation or tests to |
| | | know how to build them. |
+-----------------------+-----------------------+-----------------------------+
| item_status | `STATUS`_ | The status of an event. |
| | | Can be CONFIRMED, CANCELLED |
| | | or TENTATIVE. |
+-----------------------+-----------------------+-----------------------------+
.. note::
django-ical does not use the ``link`` property required by the Django
syndication framework.
The low-level framework
========================
Behind the scenes, the high-level iCalendar framework uses a lower-level
framework for generating feeds' ical data. This framework lives in a single
module: :mod:`django_ical.feedgenerator`.
You use this framework on your own, for lower-level feed generation. You can
also create custom feed generator subclasses for use with the feed_type
option.
See: `The syndication feed framework: Specifying the type of feed <https://docs.djangoproject.com/en/1.9/ref/contrib/syndication/#specifying-the-type-of-feed>`_
.. _PRODID: http://www.kanzaki.com/docs/ical/prodid.html
.. _METHOD: http://www.kanzaki.com/docs/ical/method.html
.. _SUMMARY: http://www.kanzaki.com/docs/ical/summary.html
.. _DESCRIPTION: http://www.kanzaki.com/docs/ical/description.html
.. _UID: http://www.kanzaki.com/docs/ical/uid.html
.. _CLASS: http://www.kanzaki.com/docs/ical/class.html
.. _CREATED: http://www.kanzaki.com/docs/ical/created.html
.. _LAST-MODIFIED: http://www.kanzaki.com/docs/ical/lastModified.html
.. _DTSTART: http://www.kanzaki.com/docs/ical/dtstart.html
.. _DTEND: http://www.kanzaki.com/docs/ical/dtend.html
.. _GEO: http://www.kanzaki.com/docs/ical/geo.html
.. _LOCATION: http://www.kanzaki.com/docs/ical/location.html
.. _TRANSP: http://www.kanzaki.com/docs/ical/transp.html
.. _URL: http://www.kanzaki.com/docs/ical/url.html
.. _ORGANIZER: http://www.kanzaki.com/docs/ical/organizer.html
.. _ATTENDEE: https://www.kanzaki.com/docs/ical/attendee.html
.. _RRULE: https://www.kanzaki.com/docs/ical/rrule.html
.. _EXRULE: https://www.kanzaki.com/docs/ical/exrule.html
.. _RDATE: https://www.kanzaki.com/docs/ical/rdate.html
.. _EXDATE: https://www.kanzaki.com/docs/ical/exdate.html
.. _STATUS: https://www.kanzaki.com/docs/ical/status.html
.. _VALARM: https://www.kanzaki.com/docs/ical/valarm.html
.. _X-WR-CALNAME: http://en.wikipedia.org/wiki/ICalendar#Calendar_extensions
.. _X-WR-CALDESC: http://en.wikipedia.org/wiki/ICalendar#Calendar_extensions
.. _X-WR-TIMEZONE: http://en.wikipedia.org/wiki/ICalendar#Calendar_extensions
.. _iCalendar: http://icalendar.readthedocs.org/en/latest/index.html
.. _CATEGORIES: https://www.kanzaki.com/docs/ical/categories.html
.. _django-recurrence: https://github.com/django-recurrence/django-recurrence
|