2005-03-17 18:21:14 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
|
|
|
# Copyright (C) 2004 Martin Hawlisch
|
2008-01-15 14:46:45 +05:30
|
|
|
# Copyright (C) 2005-2006, 2008 Donald N. Allingham
|
2008-05-19 00:54:28 +05:30
|
|
|
# Copyright (C) 2008 Brian G. Matherly
|
2010-05-01 09:42:42 +05:30
|
|
|
# Copyright (C) 2010 Jakim Friant
|
2005-03-17 18:21:14 +05:30
|
|
|
#
|
|
|
|
# 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 2 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, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
|
2008-01-17 03:12:05 +05:30
|
|
|
"Export Events to vCalendar."
|
2005-03-17 18:21:14 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Standard Python Modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import os
|
2008-01-29 23:48:45 +05:30
|
|
|
import sys
|
2005-12-06 12:08:09 +05:30
|
|
|
from time import localtime
|
2010-01-18 10:12:17 +05:30
|
|
|
from gen.ggettext import gettext as _
|
2005-03-17 18:21:14 +05:30
|
|
|
|
2006-03-05 10:01:24 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Set up logging
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
import logging
|
|
|
|
log = logging.getLogger(".ExportVCal")
|
|
|
|
|
2005-03-17 18:21:14 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GRAMPS modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2010-05-30 09:37:50 +05:30
|
|
|
from ExportOptions import WriterOptionBox
|
2009-04-17 00:59:40 +05:30
|
|
|
from Filters import GenericFilter, Rules, build_filter_model
|
2005-03-17 18:21:14 +05:30
|
|
|
import Utils
|
2007-10-08 22:11:39 +05:30
|
|
|
from gen.lib import Date, EventType
|
2005-03-17 18:21:14 +05:30
|
|
|
import Errors
|
2009-05-15 01:45:59 +05:30
|
|
|
from glade import Glade
|
2005-03-17 18:21:14 +05:30
|
|
|
|
2009-05-21 22:49:50 +05:30
|
|
|
class CalendarWriter(object):
|
2010-05-30 09:37:50 +05:30
|
|
|
def __init__(self, database, filename, msg_callback, option_box=None,
|
2008-01-15 14:46:45 +05:30
|
|
|
callback=None):
|
2005-03-17 18:21:14 +05:30
|
|
|
self.db = database
|
|
|
|
self.filename = filename
|
2010-05-01 09:42:42 +05:30
|
|
|
self.msg_callback = msg_callback
|
2010-05-30 09:37:50 +05:30
|
|
|
self.option_box = option_box
|
|
|
|
self.callback = callback
|
2008-07-14 21:17:15 +05:30
|
|
|
if callable(self.callback): # callback is really callable
|
2006-05-10 01:24:23 +05:30
|
|
|
self.update = self.update_real
|
|
|
|
else:
|
|
|
|
self.update = self.update_empty
|
2005-03-17 18:21:14 +05:30
|
|
|
|
|
|
|
self.plist = {}
|
|
|
|
self.flist = {}
|
|
|
|
|
2008-01-30 14:33:20 +05:30
|
|
|
self.count = 0
|
|
|
|
self.oldval = 0
|
|
|
|
|
2005-03-17 18:21:14 +05:30
|
|
|
self.persons_details_done = []
|
|
|
|
self.persons_notes_done = []
|
|
|
|
self.person_ids = {}
|
|
|
|
|
2010-05-30 09:37:50 +05:30
|
|
|
if option_box:
|
2005-03-17 18:21:14 +05:30
|
|
|
self.option_box.parse_options()
|
2010-05-30 09:37:50 +05:30
|
|
|
self.db = option_box.get_filtered_database(self.db)
|
2005-03-17 18:21:14 +05:30
|
|
|
|
2006-05-10 01:24:23 +05:30
|
|
|
def update_empty(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def update_real(self):
|
|
|
|
self.count += 1
|
2008-01-30 14:33:20 +05:30
|
|
|
newval = int(100 * self.count / self.total)
|
2006-05-10 01:24:23 +05:30
|
|
|
if newval != self.oldval:
|
|
|
|
self.callback(newval)
|
|
|
|
self.oldval = newval
|
|
|
|
|
2008-01-15 14:46:45 +05:30
|
|
|
def writeln(self, text):
|
2008-01-29 23:48:45 +05:30
|
|
|
#self.g.write('%s\n' % (text.encode('iso-8859-1')))
|
|
|
|
self.g.write('%s\n' % (text.encode(sys.getfilesystemencoding())))
|
2005-03-17 18:21:14 +05:30
|
|
|
|
2008-01-15 14:46:45 +05:30
|
|
|
def export_data(self, filename):
|
2005-03-17 18:21:14 +05:30
|
|
|
|
|
|
|
self.dirname = os.path.dirname (filename)
|
|
|
|
try:
|
|
|
|
self.g = open(filename,"w")
|
|
|
|
except IOError,msg:
|
|
|
|
msg2 = _("Could not create %s") % filename
|
2010-05-01 09:42:42 +05:30
|
|
|
self.msg_callback(msg2, str(msg))
|
2008-01-15 14:46:45 +05:30
|
|
|
return False
|
2005-03-17 18:21:14 +05:30
|
|
|
except:
|
2010-05-01 09:42:42 +05:30
|
|
|
self.msg_callback(_("Could not create %s") % filename)
|
2008-01-15 14:46:45 +05:30
|
|
|
return False
|
2005-03-17 18:21:14 +05:30
|
|
|
|
2008-01-30 14:33:20 +05:30
|
|
|
self.writeln("BEGIN:VCALENDAR")
|
|
|
|
self.writeln("PRODID:-//GNU//Gramps//EN")
|
|
|
|
self.writeln("VERSION:1.0")
|
2006-05-10 01:24:23 +05:30
|
|
|
|
2010-05-30 09:37:50 +05:30
|
|
|
self.total = (len([x for x in self.db.iter_person_handles()]) +
|
|
|
|
len([x for x in self.db.iter_family_handles()]))
|
|
|
|
for key in self.db.iter_person_handles():
|
2005-03-17 18:21:14 +05:30
|
|
|
self.write_person(key)
|
2006-05-10 01:24:23 +05:30
|
|
|
self.update()
|
2005-03-17 18:21:14 +05:30
|
|
|
|
2010-05-30 09:37:50 +05:30
|
|
|
for key in self.db.iter_family_handles():
|
2005-03-17 18:21:14 +05:30
|
|
|
self.write_family(key)
|
2006-05-10 01:24:23 +05:30
|
|
|
self.update()
|
2005-03-17 18:21:14 +05:30
|
|
|
|
2008-01-30 14:33:20 +05:30
|
|
|
self.writeln("")
|
|
|
|
self.writeln("END:VCALENDAR")
|
2005-03-17 18:21:14 +05:30
|
|
|
|
|
|
|
self.g.close()
|
2008-01-15 14:46:45 +05:30
|
|
|
return True
|
2005-03-17 18:21:14 +05:30
|
|
|
|
2008-01-15 14:46:45 +05:30
|
|
|
def write_family(self, family_handle):
|
2005-03-17 18:21:14 +05:30
|
|
|
family = self.db.get_family_from_handle(family_handle)
|
|
|
|
if family:
|
2006-03-31 09:49:06 +05:30
|
|
|
for event_ref in family.get_event_ref_list():
|
|
|
|
event = self.db.get_event_from_handle(event_ref.ref)
|
2006-05-10 01:24:23 +05:30
|
|
|
if event.get_type() == EventType.MARRIAGE:
|
2005-03-17 18:21:14 +05:30
|
|
|
m_date = event.get_date_object()
|
|
|
|
place_handle = event.get_place_handle()
|
2008-01-15 14:46:45 +05:30
|
|
|
text = _("Marriage of %s") % Utils.family_name(family,
|
|
|
|
self.db)
|
2005-03-17 18:21:14 +05:30
|
|
|
if place_handle:
|
|
|
|
place = self.db.get_place_from_handle(place_handle)
|
2005-04-26 21:34:21 +05:30
|
|
|
self.write_vevent( text, m_date, place.get_title())
|
2005-03-17 18:21:14 +05:30
|
|
|
else:
|
2005-04-26 21:34:21 +05:30
|
|
|
self.write_vevent( text, m_date)
|
2005-03-17 18:21:14 +05:30
|
|
|
|
|
|
|
def write_person(self, person_handle):
|
|
|
|
person = self.db.get_person_from_handle(person_handle)
|
|
|
|
if person:
|
2006-03-31 09:49:06 +05:30
|
|
|
birth_ref = person.get_birth_ref()
|
|
|
|
if birth_ref:
|
|
|
|
birth = self.db.get_event_from_handle(birth_ref.ref)
|
2005-03-17 18:21:14 +05:30
|
|
|
if birth:
|
|
|
|
b_date = birth.get_date_object()
|
|
|
|
place_handle = birth.get_place_handle()
|
|
|
|
if place_handle:
|
|
|
|
place = self.db.get_place_from_handle(place_handle)
|
2009-04-17 00:59:40 +05:30
|
|
|
self.write_vevent(_("Birth of %s") %
|
|
|
|
person.get_primary_name().get_name(),
|
|
|
|
b_date, place.get_title())
|
2005-03-17 18:21:14 +05:30
|
|
|
else:
|
2009-04-17 00:59:40 +05:30
|
|
|
self.write_vevent(_("Birth of %s") %
|
|
|
|
person.get_primary_name().get_name(),
|
|
|
|
b_date)
|
2006-03-31 09:49:06 +05:30
|
|
|
|
|
|
|
death_ref = person.get_death_ref()
|
|
|
|
if death_ref:
|
|
|
|
death = self.db.get_event_from_handle(death_ref.ref)
|
2005-03-17 18:21:14 +05:30
|
|
|
if death:
|
|
|
|
d_date = death.get_date_object()
|
|
|
|
place_handle = death.get_place_handle()
|
|
|
|
if place_handle:
|
|
|
|
place = self.db.get_place_from_handle(place_handle)
|
2009-04-17 00:59:40 +05:30
|
|
|
self.write_vevent(_("Death of %s") %
|
|
|
|
person.get_primary_name().get_name(),
|
|
|
|
d_date,
|
|
|
|
place.get_title())
|
2005-03-17 18:21:14 +05:30
|
|
|
else:
|
2009-04-17 00:59:40 +05:30
|
|
|
self.write_vevent(_("Death of %s") %
|
|
|
|
person.get_primary_name().get_name(),
|
|
|
|
d_date)
|
2005-03-17 18:21:14 +05:30
|
|
|
|
|
|
|
|
2008-01-15 14:46:45 +05:30
|
|
|
def format_single_date(self, subdate, thisyear, cal):
|
2005-03-17 18:21:14 +05:30
|
|
|
retval = ""
|
2008-01-15 14:46:45 +05:30
|
|
|
(day, month, year, sl) = subdate
|
2005-03-17 18:21:14 +05:30
|
|
|
|
|
|
|
if thisyear:
|
2005-04-26 21:34:21 +05:30
|
|
|
year = localtime().tm_year
|
2005-03-17 18:21:14 +05:30
|
|
|
|
|
|
|
if not cal == Date.CAL_GREGORIAN:
|
2005-04-26 21:34:21 +05:30
|
|
|
return ""
|
2005-03-17 18:21:14 +05:30
|
|
|
|
|
|
|
if year > 0:
|
|
|
|
if month > 0:
|
|
|
|
if day > 0:
|
|
|
|
retval = "%s%02d%02d" % (year, month, day)
|
|
|
|
return retval
|
|
|
|
|
|
|
|
|
2008-01-15 14:46:45 +05:30
|
|
|
def format_date(self, date, thisyear=0):
|
2005-03-17 18:21:14 +05:30
|
|
|
retval = ""
|
2007-12-20 10:40:24 +05:30
|
|
|
if date.get_modifier() == Date.MOD_TEXTONLY:
|
2005-03-17 18:21:14 +05:30
|
|
|
return ""
|
|
|
|
elif not date.is_empty():
|
|
|
|
mod = date.get_modifier()
|
|
|
|
cal = cal = date.get_calendar()
|
|
|
|
if mod == Date.MOD_SPAN or mod == Date.MOD_RANGE:
|
2008-01-15 14:46:45 +05:30
|
|
|
start = self.format_single_date(date.get_start_date(),
|
|
|
|
thisyear, cal)
|
|
|
|
end = self.format_single_date(date.get_stop_date(),
|
|
|
|
thisyear, cal)
|
2005-03-17 18:21:14 +05:30
|
|
|
if start and end:
|
2008-01-15 14:46:45 +05:30
|
|
|
retval = "DTSTART:%sT000001\nDTEND:%sT235959" % (start,
|
|
|
|
end)
|
2005-03-17 18:21:14 +05:30
|
|
|
elif mod == Date.MOD_NONE:
|
2008-01-15 14:46:45 +05:30
|
|
|
start = self.format_single_date(date.get_start_date(),
|
|
|
|
thisyear, cal)
|
2005-03-17 18:21:14 +05:30
|
|
|
if start:
|
2008-01-15 14:46:45 +05:30
|
|
|
retval = "DTSTART:%sT000001\nDTEND:%sT235959" % (start,
|
|
|
|
start)
|
2005-03-17 18:21:14 +05:30
|
|
|
return retval
|
|
|
|
|
|
|
|
def write_vevent(self, event_text, date, location=""):
|
|
|
|
date_string = self.format_date(date)
|
|
|
|
if date_string is not "":
|
2008-01-30 14:33:20 +05:30
|
|
|
self.writeln("")
|
|
|
|
self.writeln("BEGIN:VEVENT")
|
|
|
|
self.writeln("SUMMARY:%s" % event_text)
|
2005-03-17 18:21:14 +05:30
|
|
|
if location:
|
2008-01-30 14:33:20 +05:30
|
|
|
self.writeln("LOCATION:%s" % location)
|
2005-03-17 18:21:14 +05:30
|
|
|
self.writeln(date_string)
|
2008-01-30 14:33:20 +05:30
|
|
|
self.writeln("END:VEVENT")
|
2005-03-17 18:21:14 +05:30
|
|
|
|
2008-01-15 14:46:45 +05:30
|
|
|
date_string = self.format_date(date, 1)
|
2008-01-30 14:33:20 +05:30
|
|
|
self.writeln("")
|
|
|
|
self.writeln("BEGIN:VEVENT")
|
|
|
|
self.writeln("SUMMARY:"+_("Anniversary: %s") % event_text)
|
2005-03-17 18:21:14 +05:30
|
|
|
if location:
|
2008-01-30 14:33:20 +05:30
|
|
|
self.writeln("LOCATION:%s" % location)
|
2005-03-17 18:21:14 +05:30
|
|
|
self.writeln("RRULE:YD1 #0")
|
|
|
|
self.writeln(date_string)
|
2008-01-30 14:33:20 +05:30
|
|
|
self.writeln("END:VEVENT")
|
2005-03-17 18:21:14 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2010-05-30 09:37:50 +05:30
|
|
|
def exportData(database, filename, msg_callback, option_box=None, callback=None):
|
2008-11-04 09:42:51 +05:30
|
|
|
cw = CalendarWriter(database, 0, filename, option_box, callback)
|
2008-01-15 14:46:45 +05:30
|
|
|
return cw.export_data(filename)
|