]> git.openstreetmap.org Git - rails.git/blob - app/controllers/user_blocks_controller.rb
Rename api controller test files
[rails.git] / app / controllers / user_blocks_controller.rb
1 class UserBlocksController < ApplicationController
2   layout "site"
3
4   before_action :authorize_web
5   before_action :set_locale
6
7   authorize_resource
8
9   before_action :lookup_user, :only => [:new, :create, :blocks_on, :blocks_by]
10   before_action :lookup_user_block, :only => [:show, :edit, :update, :revoke]
11   before_action :require_valid_params, :only => [:create, :update]
12   before_action :check_database_readable
13   before_action :check_database_writable, :only => [:create, :update, :revoke]
14
15   def index
16     @params = params.permit
17     @user_blocks_pages, @user_blocks = paginate(:user_blocks,
18                                                 :include => [:user, :creator, :revoker],
19                                                 :order => "user_blocks.ends_at DESC",
20                                                 :per_page => 20)
21   end
22
23   def show
24     if current_user && current_user == @user_block.user
25       @user_block.needs_view = false
26       @user_block.save!
27     end
28   end
29
30   def new
31     @user_block = UserBlock.new
32   end
33
34   def edit
35     params[:user_block_period] = ((@user_block.ends_at - Time.now.getutc) / 1.hour).ceil.to_s
36   end
37
38   def create
39     if @valid_params
40       @user_block = UserBlock.new(
41         :user => @user,
42         :creator => current_user,
43         :reason => params[:user_block][:reason],
44         :ends_at => Time.now.getutc + @block_period.hours,
45         :needs_view => params[:user_block][:needs_view]
46       )
47
48       if @user_block.save
49         flash[:notice] = t(".flash", :name => @user.display_name)
50         redirect_to @user_block
51       else
52         render :action => "new"
53       end
54     else
55       redirect_to new_user_block_path(:display_name => params[:display_name])
56     end
57   end
58
59   def update
60     if @valid_params
61       if @user_block.creator != current_user
62         flash[:error] = t(".only_creator_can_edit")
63         redirect_to :action => "edit"
64       elsif @user_block.update(
65         :ends_at => Time.now.getutc + @block_period.hours,
66         :reason => params[:user_block][:reason],
67         :needs_view => params[:user_block][:needs_view]
68       )
69         flash[:notice] = t(".success")
70         redirect_to(@user_block)
71       else
72         render :action => "edit"
73       end
74     else
75       redirect_to edit_user_block_path(:id => params[:id])
76     end
77   end
78
79   ##
80   # revokes the block, setting the end_time to now
81   def revoke
82     if params[:confirm]
83       if @user_block.revoke! current_user
84         flash[:notice] = t ".flash"
85         redirect_to(@user_block)
86       end
87     end
88   end
89
90   ##
91   # shows a list of all the blocks on the given user
92   def blocks_on
93     @params = params.permit(:display_name)
94     @user_blocks_pages, @user_blocks = paginate(:user_blocks,
95                                                 :include => [:user, :creator, :revoker],
96                                                 :conditions => { :user_id => @user.id },
97                                                 :order => "user_blocks.ends_at DESC",
98                                                 :per_page => 20)
99   end
100
101   ##
102   # shows a list of all the blocks by the given user.
103   def blocks_by
104     @params = params.permit(:display_name)
105     @user_blocks_pages, @user_blocks = paginate(:user_blocks,
106                                                 :include => [:user, :creator, :revoker],
107                                                 :conditions => { :creator_id => @user.id },
108                                                 :order => "user_blocks.ends_at DESC",
109                                                 :per_page => 20)
110   end
111
112   private
113
114   ##
115   # ensure that there is a "user_block" instance variable
116   def lookup_user_block
117     @user_block = UserBlock.find(params[:id])
118   rescue ActiveRecord::RecordNotFound
119     render :action => "not_found", :status => :not_found
120   end
121
122   ##
123   # check that the input parameters are valid, setting an instance
124   # variable if not. note that this doesn't do any redirection, as it's
125   # called before two different actions, each of which should redirect
126   # to a different place.
127   def require_valid_params
128     @block_period = params[:user_block_period].to_i
129     @valid_params = false
130
131     if !UserBlock::PERIODS.include?(@block_period)
132       flash[:error] = t("user_blocks.filter.block_period")
133
134     elsif @user_block && !@user_block.active?
135       flash[:error] = t("user_blocks.filter.block_expired")
136
137     else
138       @valid_params = true
139     end
140   end
141 end