]> git.openstreetmap.org Git - rails.git/blob - app/helpers/user_blocks_helper.rb
Remove inline javascript from id views
[rails.git] / app / helpers / user_blocks_helper.rb
1 module UserBlocksHelper
2   ##
3   # returns a translated string representing the status of the
4   # user block (i.e: whether it's active, what the expiry time is)
5   def block_status(block)
6     if block.active?
7       # if the block hasn't expired yet show the date, if the user just needs to login show that
8       if block.needs_view?
9         if block.ends_at > Time.now.getutc
10           I18n.t("user_block.helper.time_future_and_until_login", :time => friendly_date(block.ends_at)).html_safe
11         else
12           I18n.t("user_block.helper.until_login")
13         end
14       else
15         I18n.t("user_block.helper.time_future", :time => friendly_date(block.ends_at)).html_safe
16       end
17     else
18       # the max of the last update time or the ends_at time is when this block finished
19       # either because the user viewed the block (updated_at) or it expired or was
20       # revoked (ends_at)
21       last_time = [block.ends_at, block.updated_at].max
22       I18n.t("user_block.helper.time_past", :time => friendly_date(last_time)).html_safe
23     end
24   end
25 end