]> git.openstreetmap.org Git - rails.git/blob - app/models/user_block.rb
Specify the username when generating a URL for a trace
[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 = 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({
22       :ends_at => Time.now.getutc(),
23       :revoker_id => revoker.id,
24       :needs_view => false
25     }, :without_protection => true)
26   end
27
28   private
29   ##
30   # validate that only moderators are allowed to change the
31   # block. this should be caught and dealt with in the controller,
32   # but i've also included it here just in case.
33   def moderator_permissions
34     errors.add(:base, I18n.t('user_block.model.non_moderator_update')) if creator_id_changed? and !creator.moderator?
35     errors.add(:base, I18n.t('user_block.model.non_moderator_revoke')) unless revoker_id.nil? or revoker.moderator?
36   end
37 end