-
Notifications
You must be signed in to change notification settings - Fork 102
/
calfw-ical.el
285 lines (247 loc) · 10 KB
/
calfw-ical.el
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
;;; calfw-ical.el --- calendar view for ical format
;; Copyright (C) 2011 SAKURAI Masashi
;; Author: SAKURAI Masashi <m.sakurai at kiwanami.net>
;; Keywords: calendar
;; 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 3 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, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; A bridge from ical to calfw.
;; The API and interfaces have not been confirmed yet.
;;; Installation:
;; Here is a minimum sample code:
;; (require 'calfw-ical)
;; To open a calendar buffer, execute the following function.
;; (cfw:open-ical-calendar "http://www.google.com/calendar/ical/.../basic.ics")
;; Executing the following command, this program clears caches to refresh the ICS data.
;; (cfw:ical-data-cache-clear-all)
;;; Code:
(require 'calfw)
(require 'icalendar)
(require 'url)
(defun cfw:decode-to-calendar (dec)
(cfw:date
(nth 4 dec) (nth 3 dec) (nth 5 dec)))
(defun cfw:ical-event-get-dates (event)
"Return date-time information from iCalendar event object:
period event (list 'period start-date end-date), time span
event (list 'time date start-time end-time). The period includes
end-date. This function is copied from
`icalendar--convert-ical-to-diary' and modified. Recursive
events have not been supported yet."
(let*
((dtstart (icalendar--get-event-property event 'DTSTART))
(dtstart-zone (icalendar--find-time-zone
(icalendar--get-event-property-attributes event 'DTSTART) zone-map))
(dtstart-dec (icalendar--decode-isodatetime dtstart nil dtstart-zone))
(start-d (cfw:decode-to-calendar dtstart-dec))
(start-t (cfw:time (nth 2 dtstart-dec) (nth 1 dtstart-dec)))
(dtend (icalendar--get-event-property event 'DTEND))
(dtend-zone (icalendar--find-time-zone
(icalendar--get-event-property-attributes event 'DTEND) zone-map))
(dtend-dec (icalendar--decode-isodatetime dtend nil dtend-zone))
(dtend-1-dec (icalendar--decode-isodatetime dtend -1 dtend-zone))
(duration (icalendar--get-event-property event 'DURATION))
end-d end-1-d end-t)
(when (and dtstart
(string=
(cadr (icalendar--get-event-property-attributes
event 'DTSTART))
"DATE"))
(setq start-t nil))
(when duration
(let ((dtend-dec-d (icalendar--add-decoded-times
dtstart-dec
(icalendar--decode-isoduration duration)))
(dtend-1-dec-d (icalendar--add-decoded-times
dtstart-dec
(icalendar--decode-isoduration duration t))))
(if (and dtend-dec (not (eq dtend-dec dtend-dec-d)))
(message "Inconsistent endtime and duration for %s" dtend-dec))
(setq dtend-dec dtend-dec-d)
(setq dtend-1-dec dtend-1-dec-d)))
(setq end-d (if dtend-dec
(cfw:decode-to-calendar dtend-dec)
start-d))
(setq end-1-d (if dtend-1-dec
(cfw:decode-to-calendar dtend-1-dec)
start-d))
(setq end-t (if (and
dtend-dec
(not (string=
(cadr
(icalendar--get-event-property-attributes
event 'DTEND))
"DATE")))
(cfw:time (nth 2 dtend-dec) (nth 1 dtend-dec))
start-t))
(cond
((and start-t (equal start-d end-d))
(list 'time start-d start-t end-t))
((equal start-d end-1-d)
(list 'time start-d nil nil))
(t
(list 'period start-d nil end-1-d)))))
(defun cfw:ical-sanitize-string (string)
(when (and string
(> (length string) 0))
(replace-regexp-in-string "\\\\n" "\n"
(replace-regexp-in-string "\\\\," "," string))))
(defun cfw:ical-convert-event (event)
(destructuring-bind (dtag date start end) (cfw:ical-event-get-dates event)
(make-cfw:event
:start-date date
:start-time start
:end-date (when (equal dtag 'period) end)
:end-time (when (equal dtag 'time) end)
:title (cfw:ical-sanitize-string
(icalendar--get-event-property event 'SUMMARY))
:location (cfw:ical-sanitize-string
(icalendar--get-event-property event 'LOCATION))
:description (cfw:ical-sanitize-string
(icalendar--get-event-property event 'DESCRIPTION)))))
(defun cfw:ical-convert-ical-to-calfw (ical-list)
(loop with zone-map = (icalendar--convert-all-timezones ical-list)
for e in (icalendar--all-events ical-list)
for event = (cfw:ical-convert-event e)
if event
if (cfw:event-end-date event)
collect event into periods
else
collect event into contents
else do
(progn
(message "Ignoring event \"%s\"" e)
(message "Cannot handle this event, tag: %s" e))
finally (return `((periods ,periods) ,@contents))))
(defun cfw:ical-debug (f)
(interactive)
(let ((buf (cfw:ical-url-to-buffer f)))
(unwind-protect
(pp-display-expression
(with-current-buffer buf
(cfw:ical-normalize-buffer)
(cfw:ical-convert-ical-to-calfw
(icalendar--read-element nil nil)))
"*ical-debug*")
(kill-buffer buf))))
(defvar cfw:ical-calendar-external-shell-command "wget -q -O - ")
(defvar cfw:ical-calendar-tmpbuf " *calfw-tmp*")
(defvar cfw:ical-url-to-buffer-get 'cfw:ical-url-to-buffer-internal)
(defun cfw:ical-url-to-buffer-external (url)
"Retrieve ICS file with an external command."
(let ((buf (get-buffer-create cfw:ical-calendar-tmpbuf)))
(buffer-disable-undo buf)
(with-current-buffer buf
(erase-buffer))
(call-process-shell-command
cfw:ical-calendar-external-shell-command nil buf nil url)
buf))
(defun cfw:ical-url-to-buffer-internal (url)
"Retrieve ICS file with the url package."
(let ((buf (url-retrieve-synchronously url))
(dbuf (get-buffer-create cfw:ical-calendar-tmpbuf))
pos)
(unwind-protect
(when (setq pos (url-http-symbol-value-in-buffer
'url-http-end-of-headers buf))
(with-current-buffer dbuf
(erase-buffer)
(decode-coding-string
(with-current-buffer buf
(buffer-substring (1+ pos) (point-max)))
'utf-8 nil dbuf)))
(kill-buffer buf))
dbuf))
(defun cfw:ical-url-to-buffer (url)
(let* ((url-code (url-generic-parse-url url))
(type (url-type url-code)))
(cond
(type
(funcall cfw:ical-url-to-buffer-get url))
(t ; assume local file
(let ((buf (find-file-noselect (expand-file-name url) t)))
(with-current-buffer buf (set-visited-file-name nil))
buf)))))
(defmacro cfw:ical-with-buffer (url &rest body)
(let (($buf (gensym)))
`(let ((,$buf (cfw:ical-url-to-buffer ,url)))
(unwind-protect
(with-current-buffer ,$buf
(goto-char (point-min))
,@body)
(kill-buffer ,$buf)))))
(put 'cfw:ical-with-buffer 'lisp-indent-function 1)
(defun cfw:ical-normalize-buffer ()
(save-excursion
(goto-char (point-min))
(while (re-search-forward "\n " nil t)
(replace-match "")))
(save-excursion
(goto-char (point-min))
(while (re-search-forward "DT\\(START\\|END\\);VALUE=DATE:" nil t)
(replace-match "DT\\1:")))
(set-buffer-modified-p nil))
(defvar cfw:ical-data-cache nil "a list of (url . ics-data)")
(defun cfw:ical-data-cache-clear (url)
(setq cfw:ical-data-cache
(loop for i in cfw:ical-data-cache
for (u . d) = i
unless (equal u url)
collect i)))
(defun cfw:ical-data-cache-clear-all ()
(interactive)
(setq cfw:ical-data-cache nil))
(defun cfw:ical-get-data (url)
(let ((data (assoc url cfw:ical-data-cache)))
(unless data
(setq data (let ((cal-list
(cfw:ical-with-buffer url
(cfw:ical-normalize-buffer)
(cfw:ical-convert-ical-to-calfw
(icalendar--read-element nil nil)))))
(cons url cal-list)))
(push data cfw:ical-data-cache))
(cdr data)))
(defun cfw:ical-to-calendar (url begin end)
(loop for event in (cfw:ical-get-data url)
if (and (listp event)
(equal 'periods (car event)))
collect
(cons
'periods
(loop for evt in (cadr event)
if (and
(cfw:date-less-equal-p begin (cfw:event-end-date evt))
(cfw:date-less-equal-p (cfw:event-start-date evt) end))
collect evt))
else if (cfw:date-between begin end (cfw:event-start-date event))
collect event))
(defun cfw:ical-create-source (name url color)
(lexical-let ((url url))
(make-cfw:source
:name (concat "iCal:" name)
:color color
:update (lambda () (cfw:ical-data-cache-clear url))
:data (lambda (begin end)
(cfw:ical-to-calendar url begin end)))))
(defun cfw:open-ical-calendar (url)
"Simple calendar interface. This command displays just one
calendar source."
(interactive)
(save-excursion
(let ((cp (cfw:create-calendar-component-buffer
:view 'month
:contents-sources
(list (cfw:ical-create-source "ical" url "#2952a3")))))
(switch-to-buffer (cfw:cp-get-buffer cp)))))
;; (progn (eval-current-buffer) (cfw:open-ical-calendar "./ics/test.ics"))
(provide 'calfw-ical)
;;; calfw-ical.el ends here