2005-12-21 02:18:18 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
|
|
|
# Copyright (C) 2000-2005 Donald N. Allingham
|
|
|
|
#
|
|
|
|
# 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-02-24 19:25:55 +05:30
|
|
|
PrivacyBase Object class for GRAMPS.
|
2005-12-21 02:18:18 +05:30
|
|
|
"""
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# PrivacyBase Object
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2009-05-21 22:49:50 +05:30
|
|
|
class PrivacyBase(object):
|
2005-12-21 02:18:18 +05:30
|
|
|
"""
|
|
|
|
Base class for privacy-aware objects.
|
|
|
|
"""
|
|
|
|
|
2007-01-08 07:19:33 +05:30
|
|
|
def __init__(self, source=None):
|
2005-12-21 02:18:18 +05:30
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Initialize a PrivacyBase.
|
|
|
|
|
|
|
|
If the source is not None, then object is initialized from values of
|
|
|
|
the source object.
|
2005-12-21 02:18:18 +05:30
|
|
|
|
2009-06-25 03:26:07 +05:30
|
|
|
:param source: Object used to initialize the new object
|
|
|
|
:type source: PrivacyBase
|
2005-12-21 02:18:18 +05:30
|
|
|
"""
|
|
|
|
|
|
|
|
if source:
|
|
|
|
self.private = source.private
|
|
|
|
else:
|
|
|
|
self.private = False
|
|
|
|
|
2006-04-13 08:45:22 +05:30
|
|
|
def serialize(self):
|
2007-01-08 07:19:33 +05:30
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Convert the object to a serialized tuple of data.
|
2007-01-08 07:19:33 +05:30
|
|
|
"""
|
2006-04-13 08:45:22 +05:30
|
|
|
return self.private
|
|
|
|
|
2007-01-08 07:19:33 +05:30
|
|
|
def unserialize(self, data):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Convert a serialized tuple of data to an object.
|
2007-01-08 07:19:33 +05:30
|
|
|
"""
|
2006-04-13 08:45:22 +05:30
|
|
|
self.private = data
|
|
|
|
return self
|
|
|
|
|
2007-01-08 07:19:33 +05:30
|
|
|
def set_privacy(self, val):
|
2005-12-21 02:18:18 +05:30
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Set or clears the privacy flag of the data.
|
2005-12-21 02:18:18 +05:30
|
|
|
|
2009-06-25 03:26:07 +05:30
|
|
|
:param val: value to assign to the privacy flag. True indicates that
|
2008-02-24 19:25:55 +05:30
|
|
|
the record is private, False indicates that it is public.
|
2009-06-25 03:26:07 +05:30
|
|
|
:type val: bool
|
2005-12-21 02:18:18 +05:30
|
|
|
"""
|
|
|
|
self.private = val
|
|
|
|
|
|
|
|
def get_privacy(self):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Return the privacy level of the data.
|
2005-12-21 02:18:18 +05:30
|
|
|
|
2009-06-25 03:26:07 +05:30
|
|
|
:returns: True indicates that the record is private
|
|
|
|
:rtype: bool
|
2005-12-21 02:18:18 +05:30
|
|
|
"""
|
|
|
|
return self.private
|