]> git.openstreetmap.org Git - rails.git/blob - app/models/user_block.rb
23e1bcab6c26de4afd1e85019102ae64adc58b41
[rails.git] / app / models / user_block.rb
1 class UserBlock < ActiveRecord::Base
2   validate :moderator_permissions
3
4   belongs_to :user, :class_name => "User", :foreign_key => :user_id
5   belongs_to :creator, :class_name => "User", :foreign_key => :creator_id
6   belongs_to :revoker, :class_name => "User", :foreign_key => :revoker_id
7   
8   PERIODS = APP_CONFIG['user_block_periods']
9
10   ##
11   # returns true if the block is currently active (i.e: the user can't
12   # use the API).
13   def active?
14     needs_view or ends_at > Time.now.getutc
15   end
16
17   ##
18   # revokes the block, allowing the user to use the API again. the argument
19   # is the user object who is revoking the ban.
20   def revoke!(revoker)
21     update_attributes({ :ends_at => Time.now.getutc(),
22                         :revoker_id => revoker.id,
23                         :needs_view => false })
24   end
25
26   private
27   ##
28   # validate that only moderators are allowed to change the
29   # block. this should be caught and dealt with in the controller,
30   # but i've also included it here just in case.
31   def moderator_permissions
32     errors.add_to_base(I18n.t('user_block.model.non_moderator_update')) if creator_id_changed? and !creator.moderator?
33     errors.add_to_base(I18n.t('user_block.model.non_moderator_revoke')) unless revoker_id.nil? or revoker.moderator?
34   end
35 end