Description:
lists users in each contest. individual user contest management moved to each contest user list page
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
r297:2abed488d02c - - 4 files changed: 92 inserted, 19 deleted
@@ -0,0 +1,65 | |||||
|
|
1 | + <h1> | ||
|
|
2 | + List users in <% if @contest %><%= @contest.title %> | ||
|
|
3 | + <% else %>Users not in any contests<% end %> | ||
|
|
4 | + </h1> | ||
|
|
5 | + | ||
|
|
6 | + <div class="submitbox"> | ||
|
|
7 | + <%= link_to '[View all users]', :action => 'list' %> | ||
|
|
8 | + <% if Configuration.multicontests? %> | ||
|
|
9 | + <%= link_to '[Manage bulk users in contests]', :action => 'contest_management' %> | ||
|
|
10 | + <br/> | ||
|
|
11 | + View users in: | ||
|
|
12 | + <% @contests.each do |contest| %> | ||
|
|
13 | + <%= link_to "[#{contest.name}]", :action => 'contests', :id => contest.id %> | ||
|
|
14 | + <% end %> | ||
|
|
15 | + <%= link_to "[no contest]", :action => 'contests', :id => 'none' %> | ||
|
|
16 | + <% end %> | ||
|
|
17 | + </div> | ||
|
|
18 | + | ||
|
|
19 | + <table class="info"> | ||
|
|
20 | + <tr class="info-head"> | ||
|
|
21 | + <th>Login</th> | ||
|
|
22 | + <th>Full name</th> | ||
|
|
23 | + <th>Email</th> | ||
|
|
24 | + <th>Activated?</th> | ||
|
|
25 | + <th></th> | ||
|
|
26 | + <th></th> | ||
|
|
27 | + <th></th> | ||
|
|
28 | + <% if Configuration.multicontests? %> | ||
|
|
29 | + <th>Contests</th> | ||
|
|
30 | + <th>Other enabled contests</th> | ||
|
|
31 | + <% end %> | ||
|
|
32 | + </tr> | ||
|
|
33 | + | ||
|
|
34 | + <% for user in @users %> | ||
|
|
35 | + <tr class="info-<%= cycle("odd","even") %>"> | ||
|
|
36 | + <td><%=h user.login %></td> | ||
|
|
37 | + <td><%=h user.full_name %></td> | ||
|
|
38 | + <td><%=h user.email %></td> | ||
|
|
39 | + <td><%=h user.activated %></td> | ||
|
|
40 | + <td><%= link_to 'Show', :action => 'show', :id => user %></td> | ||
|
|
41 | + <td><%= link_to 'Edit', :action => 'edit', :id => user %></td> | ||
|
|
42 | + <td><%= link_to 'Destroy', { :action => 'destroy', :id => user }, :confirm => 'Are you sure?', :method => :post %></td> | ||
|
|
43 | + <% if Configuration.multicontests? %> | ||
|
|
44 | + <td> | ||
|
|
45 | + <% user.contests.each do |contest| %> | ||
|
|
46 | + <%= contest.name %> [<%= link_to 'x', :action => 'remove_from_contest', :id => user.id, :contest_id => contest.id %>] | ||
|
|
47 | + <% end %> | ||
|
|
48 | + </td> | ||
|
|
49 | + <td> | ||
|
|
50 | + <% @contests.each do |contest| %> | ||
|
|
51 | + <% if not user.contests.all.find {|c| c.id==contest.id } %> | ||
|
|
52 | + <%= contest.name %> [<%= link_to '+', :action => 'add_to_contest', :id => user.id, :contest_id => contest.id %>] | ||
|
|
53 | + <% end %> | ||
|
|
54 | + <% end %> | ||
|
|
55 | + </td> | ||
|
|
56 | + <% end %> | ||
|
|
57 | + </tr> | ||
|
|
58 | + <% end %> | ||
|
|
59 | + </table> | ||
|
|
60 | + | ||
|
|
61 | + | ||
|
|
62 | + <br /> | ||
|
|
63 | + | ||
|
|
64 | + <%= link_to 'New user', :action => 'new' %> | ||
|
|
65 | + <%= link_to 'New list of users', :action => 'new_list' %> |
@@ -1,45 +1,45 | |||||
|
1 | class UserAdminController < ApplicationController |
|
1 | class UserAdminController < ApplicationController |
|
2 |
|
2 | ||
|
3 | include MailHelperMethods |
|
3 | include MailHelperMethods |
|
4 |
|
4 | ||
|
5 | before_filter :admin_authorization |
|
5 | before_filter :admin_authorization |
|
6 |
|
6 | ||
|
7 | def index |
|
7 | def index |
|
8 | list |
|
8 | list |
|
9 | render :action => 'list' |
|
9 | render :action => 'list' |
|
10 | end |
|
10 | end |
|
11 |
|
11 | ||
|
12 | # GETs should be safe (see http://www.w3.org/2001/tag/doc/whenToUseGet.html) |
|
12 | # GETs should be safe (see http://www.w3.org/2001/tag/doc/whenToUseGet.html) |
|
13 | verify :method => :post, :only => [ :destroy, |
|
13 | verify :method => :post, :only => [ :destroy, |
|
14 | :create, :create_from_list, |
|
14 | :create, :create_from_list, |
|
15 | :update ], |
|
15 | :update ], |
|
16 | :redirect_to => { :action => :list } |
|
16 | :redirect_to => { :action => :list } |
|
17 |
|
17 | ||
|
18 | def list |
|
18 | def list |
|
19 | @users = User.find(:all) |
|
19 | @users = User.find(:all) |
|
20 | @hidden_columns = ['hashed_password', 'salt', 'created_at', 'updated_at'] |
|
20 | @hidden_columns = ['hashed_password', 'salt', 'created_at', 'updated_at'] |
|
21 |
- @contests = Contest. |
|
21 | + @contests = Contest.enabled |
|
22 | end |
|
22 | end |
|
23 |
|
23 | ||
|
24 | def active |
|
24 | def active |
|
25 | sessions = ActiveRecord::SessionStore::Session.find(:all, :conditions => ["updated_at >= ?", 60.minutes.ago]) |
|
25 | sessions = ActiveRecord::SessionStore::Session.find(:all, :conditions => ["updated_at >= ?", 60.minutes.ago]) |
|
26 | @users = [] |
|
26 | @users = [] |
|
27 | sessions.each do |session| |
|
27 | sessions.each do |session| |
|
28 | if session.data[:user_id] |
|
28 | if session.data[:user_id] |
|
29 | @users << User.find(session.data[:user_id]) |
|
29 | @users << User.find(session.data[:user_id]) |
|
30 | end |
|
30 | end |
|
31 | end |
|
31 | end |
|
32 | end |
|
32 | end |
|
33 |
|
33 | ||
|
34 | def show |
|
34 | def show |
|
35 | @user = User.find(params[:id]) |
|
35 | @user = User.find(params[:id]) |
|
36 | end |
|
36 | end |
|
37 |
|
37 | ||
|
38 | def new |
|
38 | def new |
|
39 | @user = User.new |
|
39 | @user = User.new |
|
40 | end |
|
40 | end |
|
41 |
|
41 | ||
|
42 | def create |
|
42 | def create |
|
43 | @user = User.new(params[:user]) |
|
43 | @user = User.new(params[:user]) |
|
44 | @user.activated = true |
|
44 | @user.activated = true |
|
45 | if @user.save |
|
45 | if @user.save |
@@ -135,48 +135,62 | |||||
|
135 | flash[:notice] = 'Error importing no file' |
|
135 | flash[:notice] = 'Error importing no file' |
|
136 | redirect_to :action => 'list' and return |
|
136 | redirect_to :action => 'list' and return |
|
137 | end |
|
137 | end |
|
138 | import_from_file(params[:file]) |
|
138 | import_from_file(params[:file]) |
|
139 | end |
|
139 | end |
|
140 |
|
140 | ||
|
141 | def random_all_passwords |
|
141 | def random_all_passwords |
|
142 | users = User.find(:all) |
|
142 | users = User.find(:all) |
|
143 | @prefix = params[:prefix] || '' |
|
143 | @prefix = params[:prefix] || '' |
|
144 | @non_admin_users = User.find_non_admin_with_prefix(@prefix) |
|
144 | @non_admin_users = User.find_non_admin_with_prefix(@prefix) |
|
145 | @changed = false |
|
145 | @changed = false |
|
146 | if request.request_method == :post |
|
146 | if request.request_method == :post |
|
147 | @non_admin_users.each do |user| |
|
147 | @non_admin_users.each do |user| |
|
148 | password = random_password |
|
148 | password = random_password |
|
149 | user.password = password |
|
149 | user.password = password |
|
150 | user.password_confirmation = password |
|
150 | user.password_confirmation = password |
|
151 | user.save |
|
151 | user.save |
|
152 | end |
|
152 | end |
|
153 | @changed = true |
|
153 | @changed = true |
|
154 | end |
|
154 | end |
|
155 | end |
|
155 | end |
|
156 |
|
156 | ||
|
157 | # contest management |
|
157 | # contest management |
|
158 |
|
158 | ||
|
|
159 | + def contests | ||
|
|
160 | + if params[:id]!='none' | ||
|
|
161 | + @contest = Contest.find(params[:id]) | ||
|
|
162 | + else | ||
|
|
163 | + @contest = nil | ||
|
|
164 | + end | ||
|
|
165 | + if @contest | ||
|
|
166 | + @users = @contest.users | ||
|
|
167 | + else | ||
|
|
168 | + @users = User.find_users_with_no_contest | ||
|
|
169 | + end | ||
|
|
170 | + @contests = Contest.enabled | ||
|
|
171 | + end | ||
|
|
172 | + | ||
|
159 | def add_to_contest |
|
173 | def add_to_contest |
|
160 | user = User.find(params[:id]) |
|
174 | user = User.find(params[:id]) |
|
161 | contest = Contest.find(params[:contest_id]) |
|
175 | contest = Contest.find(params[:contest_id]) |
|
162 | if user and contest |
|
176 | if user and contest |
|
163 | user.contests << contest |
|
177 | user.contests << contest |
|
164 | end |
|
178 | end |
|
165 | redirect_to :action => 'list' |
|
179 | redirect_to :action => 'list' |
|
166 | end |
|
180 | end |
|
167 |
|
181 | ||
|
168 | def remove_from_contest |
|
182 | def remove_from_contest |
|
169 | user = User.find(params[:id]) |
|
183 | user = User.find(params[:id]) |
|
170 | contest = Contest.find(params[:contest_id]) |
|
184 | contest = Contest.find(params[:contest_id]) |
|
171 | if user and contest |
|
185 | if user and contest |
|
172 | user.contests.delete(contest) |
|
186 | user.contests.delete(contest) |
|
173 | end |
|
187 | end |
|
174 | redirect_to :action => 'list' |
|
188 | redirect_to :action => 'list' |
|
175 | end |
|
189 | end |
|
176 |
|
190 | ||
|
177 | def contest_management |
|
191 | def contest_management |
|
178 | end |
|
192 | end |
|
179 |
|
193 | ||
|
180 | def manage_contest |
|
194 | def manage_contest |
|
181 | contest = Contest.find(params[:contest][:id]) |
|
195 | contest = Contest.find(params[:contest][:id]) |
|
182 | if !contest |
|
196 | if !contest |
@@ -103,48 +103,54 | |||||
|
103 | if self.hashed_password==nil |
|
103 | if self.hashed_password==nil |
|
104 | encrypt_new_password |
|
104 | encrypt_new_password |
|
105 | end |
|
105 | end |
|
106 | Digest::SHA1.hexdigest(self.hashed_password)[0..7] |
|
106 | Digest::SHA1.hexdigest(self.hashed_password)[0..7] |
|
107 | end |
|
107 | end |
|
108 |
|
108 | ||
|
109 | def verify_activation_key(key) |
|
109 | def verify_activation_key(key) |
|
110 | key == activation_key |
|
110 | key == activation_key |
|
111 | end |
|
111 | end |
|
112 |
|
112 | ||
|
113 | def self.random_password(length=5) |
|
113 | def self.random_password(length=5) |
|
114 | chars = 'abcdefghjkmnopqrstuvwxyz' |
|
114 | chars = 'abcdefghjkmnopqrstuvwxyz' |
|
115 | password = '' |
|
115 | password = '' |
|
116 | length.times { password << chars[rand(chars.length - 1)] } |
|
116 | length.times { password << chars[rand(chars.length - 1)] } |
|
117 | password |
|
117 | password |
|
118 | end |
|
118 | end |
|
119 |
|
119 | ||
|
120 | def self.find_non_admin_with_prefix(prefix='') |
|
120 | def self.find_non_admin_with_prefix(prefix='') |
|
121 | users = User.find(:all) |
|
121 | users = User.find(:all) |
|
122 | return users.find_all { |u| !(u.admin?) and u.login.index(prefix)==0 } |
|
122 | return users.find_all { |u| !(u.admin?) and u.login.index(prefix)==0 } |
|
123 | end |
|
123 | end |
|
124 |
|
124 | ||
|
125 | # Contest information |
|
125 | # Contest information |
|
126 |
|
126 | ||
|
|
127 | + def self.find_users_with_no_contest() | ||
|
|
128 | + users = User.find(:all) | ||
|
|
129 | + return users.find_all { |u| u.contests.length == 0 } | ||
|
|
130 | + end | ||
|
|
131 | + | ||
|
|
132 | + | ||
|
127 | def contest_time_left |
|
133 | def contest_time_left |
|
128 | if Configuration.contest_mode? |
|
134 | if Configuration.contest_mode? |
|
129 | return nil if site==nil |
|
135 | return nil if site==nil |
|
130 | return site.time_left |
|
136 | return site.time_left |
|
131 | elsif Configuration.indv_contest_mode? |
|
137 | elsif Configuration.indv_contest_mode? |
|
132 | time_limit = Configuration.contest_time_limit |
|
138 | time_limit = Configuration.contest_time_limit |
|
133 | if time_limit == nil |
|
139 | if time_limit == nil |
|
134 | return nil |
|
140 | return nil |
|
135 | end |
|
141 | end |
|
136 | if contest_stat==nil or contest_stat.started_at==nil |
|
142 | if contest_stat==nil or contest_stat.started_at==nil |
|
137 | return (Time.now.gmtime + time_limit) - Time.now.gmtime |
|
143 | return (Time.now.gmtime + time_limit) - Time.now.gmtime |
|
138 | else |
|
144 | else |
|
139 | finish_time = contest_stat.started_at + time_limit |
|
145 | finish_time = contest_stat.started_at + time_limit |
|
140 | current_time = Time.now.gmtime |
|
146 | current_time = Time.now.gmtime |
|
141 | if current_time > finish_time |
|
147 | if current_time > finish_time |
|
142 | return 0 |
|
148 | return 0 |
|
143 | else |
|
149 | else |
|
144 | return finish_time - current_time |
|
150 | return finish_time - current_time |
|
145 | end |
|
151 | end |
|
146 | end |
|
152 | end |
|
147 | else |
|
153 | else |
|
148 | return nil |
|
154 | return nil |
|
149 | end |
|
155 | end |
|
150 | end |
|
156 | end |
@@ -13,77 +13,65 | |||||
|
13 | </tr> |
|
13 | </tr> |
|
14 | <tr> |
|
14 | <tr> |
|
15 | <td><%= text_field 'user', 'login', :size => 10 %></td> |
|
15 | <td><%= text_field 'user', 'login', :size => 10 %></td> |
|
16 | <td><%= text_field 'user', 'full_name', :size => 30 %></td> |
|
16 | <td><%= text_field 'user', 'full_name', :size => 30 %></td> |
|
17 | <td><%= password_field 'user', 'password', :size => 10 %></td> |
|
17 | <td><%= password_field 'user', 'password', :size => 10 %></td> |
|
18 | <td><%= password_field 'user', 'password_confirmation', :size => 10 %></td> |
|
18 | <td><%= password_field 'user', 'password_confirmation', :size => 10 %></td> |
|
19 | <td><%= text_field 'user', 'email', :size => 15 %></td> |
|
19 | <td><%= text_field 'user', 'email', :size => 15 %></td> |
|
20 | <td><%= submit_tag "Create" %></td> |
|
20 | <td><%= submit_tag "Create" %></td> |
|
21 | </tr> |
|
21 | </tr> |
|
22 | </table> |
|
22 | </table> |
|
23 | <% end %> |
|
23 | <% end %> |
|
24 | <br/> |
|
24 | <br/> |
|
25 | <b>Import from site management</b> |
|
25 | <b>Import from site management</b> |
|
26 | <% form_tag({:action => 'import'}, :multipart => true) do %> |
|
26 | <% form_tag({:action => 'import'}, :multipart => true) do %> |
|
27 | File: <%= file_field_tag 'file' %> <%= submit_tag 'Import' %> |
|
27 | File: <%= file_field_tag 'file' %> <%= submit_tag 'Import' %> |
|
28 | <% end %> |
|
28 | <% end %> |
|
29 | <br/> |
|
29 | <br/> |
|
30 | <b>What else: </b> |
|
30 | <b>What else: </b> |
|
31 | <%= link_to '[New user]', :action => 'new' %> |
|
31 | <%= link_to '[New user]', :action => 'new' %> |
|
32 | <%= link_to '[New list of users]', :action => 'new_list' %> |
|
32 | <%= link_to '[New list of users]', :action => 'new_list' %> |
|
33 | <%= link_to '[View administrators]', :action => 'admin' %> |
|
33 | <%= link_to '[View administrators]', :action => 'admin' %> |
|
34 | <%= link_to '[Random passwords]', :action => 'random_all_passwords' %> |
|
34 | <%= link_to '[Random passwords]', :action => 'random_all_passwords' %> |
|
35 | <%= link_to '[View active users]', :action => 'active' %> |
|
35 | <%= link_to '[View active users]', :action => 'active' %> |
|
36 | <% if Configuration.multicontests? %> |
|
36 | <% if Configuration.multicontests? %> |
|
|
37 | + <br/><b>Multi-contest:</b> | ||
|
37 | <%= link_to '[Manage bulk users in contests]', :action => 'contest_management' %> |
|
38 | <%= link_to '[Manage bulk users in contests]', :action => 'contest_management' %> |
|
|
39 | + View users in: | ||
|
|
40 | + <% @contests.each do |contest| %> | ||
|
|
41 | + <%= link_to "[#{contest.name}]", :action => 'contests', :id => contest.id %> | ||
|
|
42 | + <% end %> | ||
|
|
43 | + <%= link_to "[no contest]", :action => 'contests', :id => 'none' %> | ||
|
38 | <% end %> |
|
44 | <% end %> |
|
39 | </div> |
|
45 | </div> |
|
40 |
|
46 | ||
|
41 | <table class="info"> |
|
47 | <table class="info"> |
|
42 | <tr class="info-head"> |
|
48 | <tr class="info-head"> |
|
43 | <% for column in User.content_columns %> |
|
49 | <% for column in User.content_columns %> |
|
44 | <% if !@hidden_columns.index(column.name) %> |
|
50 | <% if !@hidden_columns.index(column.name) %> |
|
45 | <th><%= column.human_name %></th> |
|
51 | <th><%= column.human_name %></th> |
|
46 | <% end %> |
|
52 | <% end %> |
|
47 | <% end %> |
|
53 | <% end %> |
|
48 | <th></th> |
|
54 | <th></th> |
|
49 | <th></th> |
|
55 | <th></th> |
|
50 | <th></th> |
|
56 | <th></th> |
|
51 | - <% if Configuration.multicontests? %> |
|
||
|
52 | - <th>Contests</th> |
|
||
|
53 | - <th>Other enabled contests</th> |
|
||
|
54 | - <% end %> |
|
||
|
55 | </tr> |
|
57 | </tr> |
|
56 |
|
58 | ||
|
57 | <% for user in @users %> |
|
59 | <% for user in @users %> |
|
58 | <tr class="info-<%= cycle("odd","even") %>"> |
|
60 | <tr class="info-<%= cycle("odd","even") %>"> |
|
59 | <% for column in User.content_columns %> |
|
61 | <% for column in User.content_columns %> |
|
60 | <% if !@hidden_columns.index(column.name) %> |
|
62 | <% if !@hidden_columns.index(column.name) %> |
|
61 | <td><%=h user.send(column.name) %></td> |
|
63 | <td><%=h user.send(column.name) %></td> |
|
62 | <% end %> |
|
64 | <% end %> |
|
63 | <% end %> |
|
65 | <% end %> |
|
64 | <td><%= link_to 'Show', :action => 'show', :id => user %></td> |
|
66 | <td><%= link_to 'Show', :action => 'show', :id => user %></td> |
|
65 | <td><%= link_to 'Edit', :action => 'edit', :id => user %></td> |
|
67 | <td><%= link_to 'Edit', :action => 'edit', :id => user %></td> |
|
66 | <td><%= link_to 'Destroy', { :action => 'destroy', :id => user }, :confirm => 'Are you sure?', :method => :post %></td> |
|
68 | <td><%= link_to 'Destroy', { :action => 'destroy', :id => user }, :confirm => 'Are you sure?', :method => :post %></td> |
|
67 | - <% if Configuration.multicontests? %> |
|
||
|
68 | - <td> |
|
||
|
69 | - <% user.contests.each do |contest| %> |
|
||
|
70 | - <%= contest.name %> [<%= link_to 'x', :action => 'remove_from_contest', :id => user.id, :contest_id => contest.id %>] |
|
||
|
71 | - <% end %> |
|
||
|
72 | - </td> |
|
||
|
73 | - <td> |
|
||
|
74 | - <% @contests.each do |contest| %> |
|
||
|
75 | - <% if not user.contests.all.find {|c| c.id==contest.id } %> |
|
||
|
76 | - <%= contest.name %> [<%= link_to '+', :action => 'add_to_contest', :id => user.id, :contest_id => contest.id %>] |
|
||
|
77 | - <% end %> |
|
||
|
78 | - <% end %> |
|
||
|
79 | - </td> |
|
||
|
80 | - <% end %> |
|
||
|
81 | </tr> |
|
69 | </tr> |
|
82 | <% end %> |
|
70 | <% end %> |
|
83 | </table> |
|
71 | </table> |
|
84 |
|
72 | ||
|
85 |
|
73 | ||
|
86 | <br /> |
|
74 | <br /> |
|
87 |
|
75 | ||
|
88 | <%= link_to 'New user', :action => 'new' %> |
|
76 | <%= link_to 'New user', :action => 'new' %> |
|
89 | <%= link_to 'New list of users', :action => 'new_list' %> |
|
77 | <%= link_to 'New list of users', :action => 'new_list' %> |
You need to be logged in to leave comments.
Login now