]> git.openstreetmap.org Git - rails.git/blob - app/views/users/show.html.erb
Convert various moderator? tests to use cancancan permissions checks
[rails.git] / app / views / users / show.html.erb
1 <% content_for :heading do %>
2   <div id='userinformation'>
3     <%= user_image @user %>
4     <div class='userinformation-inner'>
5       <h1><%= @user.display_name %><%= role_icons(@user) %></h1>
6       <% if current_user and @user.id == current_user.id %>
7         <!-- Displaying user's own profile page to themself -->
8         <ul class='secondary-actions clearfix'>
9           <li>
10             <%= link_to t(".my edits"), :controller => "changesets", :action => "index", :display_name => current_user.display_name %>
11             <span class='count-number'><%= number_with_delimiter(current_user.changesets.size) %></span>
12           </li>
13           <li>
14             <%= link_to t(".my notes"), :controller => "notes", :action => "mine" %>
15           </li>
16           <li>
17             <%= link_to t(".my traces"), :controller => "traces", :action => "mine" %>
18             <span class='count-number'><%= number_with_delimiter(current_user.traces.size) %></span>
19           </li>
20           <li>
21             <%= link_to t(".my diary"), :controller => "diary_entries", :action => "index", :display_name => current_user.display_name %>
22             <span class='count-number'><%= number_with_delimiter(current_user.diary_entries.size) %></span>
23           </li>
24           <li>
25             <%= link_to t(".my comments"), :controller => "diary_entries", :action => "comments", :display_name => current_user.display_name %>
26           </li>
27           <li>
28             <%= link_to t(".my settings"), :controller => "users", :action => "account", :display_name => current_user.display_name %>
29           </li>
30
31           <% if current_user.blocks.exists? %>
32             <li>
33               <%= link_to t(".blocks on me"), :controller => "user_blocks", :action => "blocks_on", :display_name => current_user.display_name %>
34               <span class='count-number'><%= number_with_delimiter(current_user.blocks.active.size) %></span>
35             </li>
36           <% end %>
37
38           <% if can?(:create, UserBlock) and current_user.blocks_created.exists? %>
39             <li>
40               <%= link_to t(".blocks by me"), :controller => "user_blocks", :action => "blocks_by", :display_name => current_user.display_name %>
41               <span class='count-number'><%= number_with_delimiter(current_user.blocks_created.active.size) %></span>
42             </li>
43           <% end %>
44
45         </ul>
46
47         <% else %>
48         <!-- Displaying user profile page to the public -->
49         <ul class='secondary-actions clearfix'>
50
51           <li>
52             <%= link_to t(".edits"), :controller => "changesets", :action => "index", :display_name => @user.display_name %>
53             <span class='count-number'><%= number_with_delimiter(@user.changesets.size) %></span>
54           </li>
55           <li>
56             <%= link_to t(".notes"), :controller => "notes", :action => "mine" %>
57           </li>
58           <li>
59             <%= link_to t(".traces"), :controller => "traces", :action => "index", :display_name => @user.display_name %>
60             <span class='count-number'><%= number_with_delimiter(@user.traces.size) %></span>
61           </li>
62
63           <!-- Displaying another user's profile page -->
64
65           <li>
66             <%= link_to t(".send message"), new_message_path(@user) %>
67           </li>
68           <li>
69             <%= link_to t(".diary"), :controller => "diary_entries", :action => "index", :display_name => @user.display_name %>
70             <span class='count-number'><%= number_with_delimiter(@user.diary_entries.size) %></span>
71           </li>
72           <li>
73             <%= link_to t(".comments"), :controller => "diary_entries", :action => "comments", :display_name => @user.display_name %>
74           </li>
75           <li>
76             <% if current_user and current_user.is_friends_with?(@user) %>
77               <%= link_to t(".remove as friend"), remove_friend_path(:display_name => @user.display_name), :method => :post %>
78             <% elsif current_user %>
79               <%= link_to t(".add as friend"), make_friend_path(:display_name => @user.display_name), :method => :post %>
80             <% else %>
81               <%= link_to t(".add as friend"), make_friend_path(:display_name => @user.display_name) %>
82             <% end %>
83           </li>
84
85           <% if @user.blocks.exists? %>
86             <li>
87               <%= link_to t(".block_history"), :controller => "user_blocks", :action => "blocks_on", :display_name => @user.display_name %>
88               <span class='count-number'><%= number_with_delimiter(@user.blocks.active.size) %></span>
89             </li>
90           <% end %>
91
92           <% if @user.moderator? and @user.blocks_created.exists? %>
93             <li>
94               <%= link_to t(".moderator_history"), :controller => "user_blocks", :action => "blocks_by", :display_name => @user.display_name %>
95               <span class='count-number'><%= number_with_delimiter(@user.blocks_created.active.size) %></span>
96             </li>
97           <% end %>
98
99           <% if can?(:create, UserBlock) %>
100             <li>
101             <%= link_to t(".create_block"), :controller => "user_blocks", :action => "new", :display_name => @user.display_name %>
102             </li>
103           <% end %>
104
105           <% if current_user and @user.id != current_user.id %>
106             <li>
107               <%= report_link(t(".report"), @user) %>
108             </li>
109           <% end %>
110         </ul>
111
112       <% end %>
113
114       <% if can?(:set_status, User) || can?(:delete, User) %>
115
116         <ul class='secondary-actions clearfix'>
117           <% if can? :set_status, User %>
118             <% if ["active", "confirmed"].include? @user.status %>
119               <li>
120                 <%= link_to t(".deactivate_user"), set_status_user_path(:status => "pending", :display_name => @user.display_name), :data => { :confirm => t(".confirm") } %>
121               </li>
122             <% elsif ["pending"].include? @user.status %>
123               <li>
124                 <%= link_to t(".activate_user"), set_status_user_path(:status => "active", :display_name => @user.display_name), :data => { :confirm => t(".confirm") } %>
125               </li>
126             <% end %>
127
128             <% if ["active", "suspended"].include? @user.status %>
129               <li>
130                 <%= link_to t(".confirm_user"), set_status_user_path(:status => "confirmed", :display_name => @user.display_name), :data => { :confirm => t(".confirm") } %>
131               </li>
132             <% end %>
133               <li>
134                 <% if ["pending", "active", "confirmed", "suspended"].include? @user.status %>
135                   <%= link_to t(".hide_user"), set_status_user_path(:status => "deleted", :display_name => @user.display_name), :data => { :confirm => t(".confirm") } %>
136               <% else %>
137                 <%= link_to t(".unhide_user"), set_status_user_path(:status => "active", :display_name => @user.display_name), :data => { :confirm => t(".confirm") } %>
138               </li>
139             <% end %>
140           <% end %>
141           <% if can? :delete, User %>
142             <li>
143               <%= link_to t(".delete_user"), delete_user_path(:display_name => @user.display_name), :data => { :confirm => t(".confirm") } %>
144             </li>
145           <% end %>
146         </ul>
147
148         <% end %>
149
150       <p class='deemphasize'>
151         <small>
152           <%= t ".mapper since" %> <%= l @user.creation_time.to_date, :format => :long %>
153           <% unless @user.terms_agreed %>
154             |
155             <%= t ".ct status" %>
156             <% if @user.terms_seen? -%>
157               <%= t ".ct declined" %>
158             <% else -%>
159               <%= t ".ct undecided" %>
160             <% end -%>
161           <% end -%>
162         </small>
163       </p>
164     </div>
165
166     <div class="user-description richtext"><%= @user.description.to_html %></div>
167
168   </div>
169
170   <% if current_user and current_user.administrator? -%>
171     <div class='admin-user-info deemphasize'>
172       <small><b><%= t ".email address" %></b> <%= @user.email %></small>
173       <% unless @user.creation_ip.nil? -%>
174         <small><b><%= t ".created from" %></b> <%= @user.creation_ip %></small>
175       <% end -%>
176       <small><b><%= t ".status" %></b> <%= @user.status.capitalize %></small>
177       <small><b><%= t ".spam score" %></b> <%= @user.spam_score %></small>
178     </div>
179   <% end -%>
180
181 <% end %>
182
183   <% if current_user and @user.id == current_user.id %>
184     <% if @user.home_lat.nil? or @user.home_lon.nil? %>
185       <div id="map" class="content_map">
186         <p id="no_home_location"><%= raw(t(".if set location", :settings_link => (link_to t(".settings_link_text"), :controller => "users", :action => "account", :display_name => current_user.display_name))) %></p>
187       </div>
188     <% else %>
189       <% content_for :head do %>
190         <%= javascript_include_tag "user" %>
191       <% end %>
192       <% user_data = {
193            :lon => current_user.home_lon,
194            :lat => current_user.home_lat,
195            :icon => image_path("marker-red.png"),
196            :description => render(:partial => "popup", :object => current_user, :locals => { :type => "your location" })
197          } %>
198       <%= content_tag "div", "", :id => "map", :class => "content_map", :data => { :user => user_data } %>
199     <% end %>
200
201     <% friends = @user.friends %>
202     <% nearby = @user.nearby - friends %>
203
204   <div class="activity-block column-1">
205     <h3><%= t ".my friends" %></h3>
206
207     <% if friends.empty? %>
208       <%= t ".no friends" %>
209     <% else %>
210       <ul class='secondary-actions clearfix'>
211         <li><%= link_to t(".friends_changesets"), friend_changesets_path %></li>
212         <li><%= link_to t(".friends_diaries"), friends_diary_entries_path %></li>
213       </ul>
214       <div id="friends-container">
215         <%= render :partial => "contact", :collection => friends, :locals => { :type => "friend" } %>
216       </div>
217     <% end %>
218   </div>
219
220   <div class="activity-block column-1">
221     <h3><%= t ".nearby users" %></h3>
222
223     <% if nearby.empty? %>
224       <%= t ".no nearby users" %>
225     <% else %>
226       <ul class='secondary-actions clearfix'>
227         <li><%= link_to t(".nearby_changesets"), nearby_changesets_path %></li>
228         <li><%= link_to t(".nearby_diaries"), nearby_diary_entries_path %></li>
229       </ul>
230       <div id="nearbyusers">
231         <%= render :partial => "contact", :collection => nearby, :locals => { :type => "nearby mapper" } %>
232       </div>
233     <% end %>
234   </div>
235 <% end %>