2011-08-21 05:58:55 +04:00
|
|
|
# Redmine - project management software
|
2013-01-12 13:29:31 +04:00
|
|
|
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
2006-12-03 22:55:45 +03:00
|
|
|
#
|
|
|
|
# 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.
|
2011-08-21 05:58:55 +04:00
|
|
|
#
|
2006-12-03 22:55:45 +03:00
|
|
|
# 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.
|
2011-08-21 05:58:55 +04:00
|
|
|
#
|
2006-12-03 22:55:45 +03:00
|
|
|
# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
|
|
|
class UserPreference < ActiveRecord::Base
|
|
|
|
belongs_to :user
|
2007-01-25 21:25:57 +03:00
|
|
|
serialize :others
|
2011-08-21 05:58:55 +04:00
|
|
|
|
2012-03-07 00:57:33 +04:00
|
|
|
attr_protected :others, :user_id
|
2011-08-21 05:58:55 +04:00
|
|
|
|
2011-12-04 10:44:39 +04:00
|
|
|
before_save :set_others_hash
|
2013-03-20 12:48:03 +04:00
|
|
|
|
2011-12-18 17:26:20 +04:00
|
|
|
def initialize(attributes=nil, *args)
|
2006-12-03 22:55:45 +03:00
|
|
|
super
|
|
|
|
self.others ||= {}
|
|
|
|
end
|
2011-08-21 05:58:55 +04:00
|
|
|
|
2011-12-04 10:44:39 +04:00
|
|
|
def set_others_hash
|
2007-04-25 19:06:20 +04:00
|
|
|
self.others ||= {}
|
|
|
|
end
|
2011-08-21 05:58:55 +04:00
|
|
|
|
2006-12-03 22:55:45 +03:00
|
|
|
def [](attr_name)
|
|
|
|
if attribute_present? attr_name
|
|
|
|
super
|
|
|
|
else
|
2007-04-25 19:06:20 +04:00
|
|
|
others ? others[attr_name] : nil
|
2006-12-03 22:55:45 +03:00
|
|
|
end
|
|
|
|
end
|
2011-08-21 05:58:55 +04:00
|
|
|
|
2006-12-03 22:55:45 +03:00
|
|
|
def []=(attr_name, value)
|
|
|
|
if attribute_present? attr_name
|
|
|
|
super
|
|
|
|
else
|
2012-09-22 10:16:53 +04:00
|
|
|
h = (read_attribute(:others) || {}).dup
|
2008-07-04 21:58:14 +04:00
|
|
|
h.update(attr_name => value)
|
|
|
|
write_attribute(:others, h)
|
|
|
|
value
|
2006-12-03 22:55:45 +03:00
|
|
|
end
|
|
|
|
end
|
2011-08-21 05:58:55 +04:00
|
|
|
|
2008-03-05 18:41:54 +03:00
|
|
|
def comments_sorting; self[:comments_sorting] end
|
|
|
|
def comments_sorting=(order); self[:comments_sorting]=order end
|
2011-08-21 05:58:55 +04:00
|
|
|
|
2011-02-21 12:53:29 +03:00
|
|
|
def warn_on_leaving_unsaved; self[:warn_on_leaving_unsaved] || '1'; end
|
|
|
|
def warn_on_leaving_unsaved=(value); self[:warn_on_leaving_unsaved]=value; end
|
2006-12-03 22:55:45 +03:00
|
|
|
end
|