Skip to content

Instantly share code, notes, and snippets.

@guddl
Last active July 20, 2016 10:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guddl/807589d3f460df2dc020e32a50c36f9d to your computer and use it in GitHub Desktop.
Save guddl/807589d3f460df2dc020e32a50c36f9d to your computer and use it in GitHub Desktop.
Modified ics2owncloud.py with disabled SSL verify // Original source: https://github.com/buzz/ics2owncloud.py
#!/usr/bin/env python2.7
from __future__ import print_function
import string
import random
import ConfigParser
from os.path import expanduser, join
import sys
import requests
from icalendar.cal import Calendar
CALDAVURL = '%sremote.php/dav/calendars/%s/%s'
def do_import(username, password, calendar, server, ics_url):
base_url = CALDAVURL % (server, username, calendar)
# fetch events from target cal
target_fetch_url = '%s?export' % base_url
r = requests.get(target_fetch_url, auth=(username, password), verify=False)
r.raise_for_status()
try:
target_cal = Calendar.from_ical(r.text)
except ValueError as e:
print('Warning: Could not parse iCal (%s)' % target_fetch_url,
file=sys.stderr)
print(e, file=sys.stderr)
return
existing_uids = [e['UID'].to_ical() for e in target_cal.walk('VEVENT')]
# fetch webcal
c = Calendar.from_ical(requests.get(ics_url, verify=False).text)
# import webcal
imported_uids = []
for e in c.walk('VEVENT'):
uid = e['UID'].to_ical()
cal = Calendar()
cal.add_component(e)
r = requests.put('%s/%s.ics' % (base_url, uid),
data=cal.to_ical(),
auth=(username, password),
headers={'content-type':'text/calendar; charset=UTF-8'}
)
if r.status_code == 500 and 'Sabre\VObject\Recur\NoInstancesException' in r.text:
# ignore the NoInstancesException
print('Warning: No valid instances: %s' % uid, file=sys.stdout)
elif r.status_code == 201 or r.status_code == 204:
print('Imported: %s (%d)' % (uid, r.status_code), file=sys.stdout)
imported_uids.append(uid)
else:
r.raise_for_status()
# remove events not in webcal
for uid in existing_uids:
if not uid in imported_uids:
r = requests.delete('%s/%s.ics' % (base_url, uid),
auth=(username, password))
if r.status_code == 204:
print('Deleted %s' % uid, file=sys.stdout)
# ignore 404 - not found (seems to be a manually created event)
elif r.status_code == 404:
pass
else:
r.raise_for_status()
if __name__ == '__main__':
Config = ConfigParser.ConfigParser()
Config.read(join(expanduser('~'), '.ics2owncloud.ini'))
for key in Config.sections():
try:
do_import(Config.get(key, 'username'),
Config.get(key, 'password'),
Config.get(key, 'calendar'),
Config.get(key, 'server'),
Config.get(key, 'ics_url'),
)
except Exception as e:
import traceback
traceback.print_exc(file=sys.stderr)
@Happyfeet01
Copy link

I mean this

File "./ics2owncloud.py", line 42
data=cal.to_ical(),
^
IndentationError: unexpected indent

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment