-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCalendarPersist.js
130 lines (102 loc) · 3.97 KB
/
CalendarPersist.js
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
ObjC.import('EventKit')
function persist_calalert(title, target, delay, frequency, interval, end, uid) {
store = $.EKEventStore.alloc.initWithAccessToEntityTypes($.EKEntityMaskEvent)
event = $.EKEvent.eventWithEventStore(store)
event.availability = $.EKEventAvailabilityFree
event.startDate = $.NSDate.alloc.initWithTimeIntervalSinceNow(delay)
event.endDate = $.NSDate.alloc.initWithTimeIntervalSinceNow(delay + 60)
event.title = title
event.calendar = store.calendarWithIdentifier(uid)
path = target
target = $.NSURL.alloc.initWithString("file:///" + target)
error = $.NSError
bookmark = target.bookmarkDataWithOptionsIncludingResourceValuesForKeysRelativeToURLError(
$.NSURLBookmarkCreationMinimalBookmark,
[],
$.NSURL.alloc.initWithString("file:////"),
error
)
if (error.description != undefined) {
return error.description.js
}
alarm = $.EKAlarm.procedureAlarmWithBookmark(bookmark)
event.addAlarm(alarm)
recurFreqMap = {
"daily": $.EKRecurrenceFrequencyDaily,
"weekly": $.EKRecurrenceFrequencyWeekly,
"monthly": $.EKRecurrenceFrequencyMonthly,
"yearly": $.EKrecurrenceFrequencyYearly
}
recur = $.EKRecurrenceRule.alloc.initRecurrenceWithFrequencyIntervalEnd(
recurFreqMap[frequency],
interval,
$.EKRecurrenceEnd.recurrenceEndWithOccurrenceCount(end)
)
event.addRecurrenceRule(recur)
error = $.NSError
store.saveEventSpanError(event, $.EKSpanThisEvent, error)
if (error.description != undefined) {
return error.description.js
}
var output = ""
output += "Calendar Event Created: \n\tTitle: " + ObjC.unwrap(event.title) +
"\n\tCalendar: " + ObjC.unwrap(event.calendar.title) + "(" +
ObjC.unwrap(event.calendar.type) + ")" + " " + ObjC.unwrap(event.calendar.calendarIdentifier) +
"\n\tStart Date: " + ObjC.unwrap(event.startDate) +
"\n\tFrequency: " + frequency +
"\n\tInterval: " + interval +
"\n\tNumber of Events: " + end +
"\n\tApplication to be Executed: " + path
return output
}
function list_calendars() {
store = $.EKEventStore.alloc.initWithAccessToEntityTypes($.EKEntityMaskEvent)
eventCalendars = store.calendarsForEntityType($.EKEntityTypeEvent)
var output = ""
for (var i = 0; i < eventCalendars.count; i++) {
var calendar = eventCalendars.objectAtIndex(i)
output += ObjC.unwrap(calendar.title) + "(" + ObjC.unwrap(calendar.type) + "): " + ObjC.unwrap(calendar.calendarIdentifier)
output += "\n"
}
return output
}
function hide_calendar(uid) {
var app = Application.currentApplication();
app.includeStandardAdditions = true;
return app.doShellScript("defaults write com.apple.iCal DisabledCalendars -dict MainWindow '(" + uid + ")'");
}
function list_calendar_events(hoursInFuture) {
store = $.EKEventStore.alloc.initWithAccessToEntityTypes($.EKEntityMaskEvent)
predicateStart = $.NSDate.alloc.initWithTimeIntervalSinceNow(1)
predicateEnd = $.NSDate.alloc.initWithTimeIntervalSinceNow(60*60*hoursInFuture)
predicate = store.predicateForEventsWithStartDateEndDateCalendars(predicateStart, predicateEnd, [])
events = store.eventsMatchingPredicate(predicate)
var output = ""
for (var i = 0; i < events.count; i++) {
var event = events.objectAtIndex(i)
output += ObjC.unwrap(event.title) + ", " + ObjC.unwrap(event.startDate) + ", " + ObjC.unwrap(event.eventIdentifier) + "\n"
}
return output
}
function persist_calalert_existing(uid, target) {
store = $.EKEventStore.alloc.initWithAccessToEntityTypes($.EKEntityMaskEvent)
event = store.eventWithIdentifier(uid)
target = $.NSURL.alloc.initWithString("file:///" + target)
error = $.NSError
bookmark = target.bookmarkDataWithOptionsIncludingResourceValuesForKeysRelativeToURLError(
$.NSURLBookmarkCreationMinimalBookmark,
[],
$.NSURL.alloc.initWithString("file:////"),
error
)
if (error.description != undefined) {
return error.description.js
}
alarm = $.EKAlarm.procedureAlarmWithBookmark(bookmark)
event.addAlarm(alarm)
error = $.NSError
store.saveEventSpanError(event, $.EKSpanThisEvent, error)
if (error.description != undefined) {
return error.description.js
}
}