Description:
fix user profile, add test
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
r759:6c24fe0db627 - - 7 files changed: 64 inserted, 43 deleted
@@ -1,219 +1,226 | |||
|
1 | 1 | require 'net/smtp' |
|
2 | 2 | |
|
3 | 3 | class UsersController < ApplicationController |
|
4 | 4 | |
|
5 | 5 | include MailHelperMethods |
|
6 | 6 | |
|
7 | 7 | before_action :check_valid_login, :except => [:new, |
|
8 | 8 | :register, |
|
9 | 9 | :confirm, |
|
10 | 10 | :forget, |
|
11 | 11 | :retrieve_password] |
|
12 | 12 | |
|
13 | 13 | before_action :verify_online_registration, :only => [:new, |
|
14 | 14 | :register, |
|
15 | 15 | :forget, |
|
16 | 16 | :retrieve_password] |
|
17 | - before_action :check_valid_login, :profile_authorization, only: [:profile] | |
|
18 | 17 | |
|
19 | 18 | before_action :admin_authorization, only: [:stat, :toggle_activate, :toggle_enable] |
|
20 | 19 | |
|
21 | 20 | |
|
22 | 21 | #in_place_edit_for :user, :alias_for_editing |
|
23 | 22 | #in_place_edit_for :user, :email_for_editing |
|
24 | 23 | |
|
25 | 24 | def index |
|
26 | 25 | if !GraderConfiguration['system.user_setting_enabled'] |
|
27 | 26 | redirect_to :controller => 'main', :action => 'list' |
|
28 | 27 | else |
|
29 | 28 | @user = User.find(session[:user_id]) |
|
30 | 29 | end |
|
31 | 30 | end |
|
32 | 31 | |
|
32 | + # edit logged in user profile | |
|
33 | + def profile | |
|
34 | + if !GraderConfiguration['system.user_setting_enabled'] | |
|
35 | + redirect_to :controller => 'main', :action => 'list' | |
|
36 | + else | |
|
37 | + @user = current_user; | |
|
38 | + end | |
|
39 | + end | |
|
40 | + | |
|
33 | 41 | def chg_passwd |
|
34 | 42 | user = User.find(session[:user_id]) |
|
35 | - user.password = params[:passwd] | |
|
36 |
- user.password_confirmation = params[:passw |
|
|
43 | + user.password = params[:password] | |
|
44 | + user.password_confirmation = params[:password_confirmation] | |
|
37 | 45 | if user.save |
|
38 | 46 | flash[:notice] = 'password changed' |
|
39 | 47 | else |
|
40 | 48 | flash[:notice] = 'Error: password changing failed' |
|
41 | 49 | end |
|
42 |
- redirect_to :action => ' |
|
|
50 | + redirect_to :action => 'profile' | |
|
43 | 51 | end |
|
44 | 52 | |
|
45 | 53 | def new |
|
46 | 54 | @user = User.new |
|
47 | 55 | render :action => 'new', :layout => 'empty' |
|
48 | 56 | end |
|
49 | 57 | |
|
50 | 58 | def register |
|
51 | 59 | if(params[:cancel]) |
|
52 | 60 | redirect_to :controller => 'main', :action => 'login' |
|
53 | 61 | return |
|
54 | 62 | end |
|
55 | 63 | @user = User.new(user_params) |
|
56 | 64 | @user.password_confirmation = @user.password = User.random_password |
|
57 | 65 | @user.activated = false |
|
58 | 66 | if (@user.valid?) and (@user.save) |
|
59 | 67 | if send_confirmation_email(@user) |
|
60 | 68 | render :action => 'new_splash', :layout => 'empty' |
|
61 | 69 | else |
|
62 | 70 | @admin_email = GraderConfiguration['system.admin_email'] |
|
63 | 71 | render :action => 'email_error', :layout => 'empty' |
|
64 | 72 | end |
|
65 | 73 | else |
|
66 | 74 | @user.errors.add(:base,"Email cannot be blank") if @user.email=='' |
|
67 | 75 | render :action => 'new', :layout => 'empty' |
|
68 | 76 | end |
|
69 | 77 | end |
|
70 | 78 | |
|
71 | 79 | def confirm |
|
72 | 80 | login = params[:login] |
|
73 | 81 | key = params[:activation] |
|
74 | 82 | @user = User.find_by_login(login) |
|
75 | 83 | if (@user) and (@user.verify_activation_key(key)) |
|
76 | 84 | if @user.valid? # check uniquenss of email |
|
77 | 85 | @user.activated = true |
|
78 | 86 | @user.save |
|
79 | 87 | @result = :successful |
|
80 | 88 | else |
|
81 | 89 | @result = :email_used |
|
82 | 90 | end |
|
83 | 91 | else |
|
84 | 92 | @result = :failed |
|
85 | 93 | end |
|
86 | 94 | render :action => 'confirm', :layout => 'empty' |
|
87 | 95 | end |
|
88 | 96 | |
|
89 | 97 | def forget |
|
90 | 98 | render :action => 'forget', :layout => 'empty' |
|
91 | 99 | end |
|
92 | 100 | |
|
93 | 101 | def retrieve_password |
|
94 | 102 | email = params[:email] |
|
95 | 103 | user = User.find_by_email(email) |
|
96 | 104 | if user |
|
97 | 105 | last_updated_time = user.updated_at || user.created_at || (Time.now.gmtime - 1.hour) |
|
98 | 106 | if last_updated_time > Time.now.gmtime - 5.minutes |
|
99 | 107 | flash[:notice] = 'The account has recently created or new password has recently been requested. Please wait for 5 minutes' |
|
100 | 108 | else |
|
101 | 109 | user.password = user.password_confirmation = User.random_password |
|
102 | 110 | user.save |
|
103 | 111 | send_new_password_email(user) |
|
104 | 112 | flash[:notice] = 'New password has been mailed to you.' |
|
105 | 113 | end |
|
106 | 114 | else |
|
107 | 115 | flash[:notice] = I18n.t 'registration.password_retrieval.no_email' |
|
108 | 116 | end |
|
109 | 117 | redirect_to :action => 'forget' |
|
110 | 118 | end |
|
111 | 119 | |
|
112 | 120 | def stat |
|
113 | 121 | @user = User.find(params[:id]) |
|
114 | 122 | @submission = Submission.joins(:problem).where(user_id: params[:id]) |
|
115 | 123 | @submission = @submission.where('problems.available = true') unless current_user.admin? |
|
116 | 124 | |
|
117 | 125 | range = 120 |
|
118 | 126 | @histogram = { data: Array.new(range,0), summary: {} } |
|
119 | 127 | @summary = {count: 0, solve: 0, attempt: 0} |
|
120 | 128 | problem = Hash.new(0) |
|
121 | 129 | |
|
122 | 130 | @submission.find_each do |sub| |
|
123 | 131 | #histogram |
|
124 | 132 | d = (DateTime.now.in_time_zone - sub.submitted_at) / 24 / 60 / 60 |
|
125 | 133 | @histogram[:data][d.to_i] += 1 if d < range |
|
126 | 134 | |
|
127 | 135 | @summary[:count] += 1 |
|
128 | 136 | next unless sub.problem |
|
129 | 137 | problem[sub.problem] = [problem[sub.problem], ( (sub.try(:points) || 0) >= sub.problem.full_score) ? 1 : 0].max |
|
130 | 138 | end |
|
131 | 139 | |
|
132 | 140 | @histogram[:summary][:max] = [@histogram[:data].max,1].max |
|
133 | 141 | @summary[:attempt] = problem.count |
|
134 | 142 | problem.each_value { |v| @summary[:solve] += 1 if v == 1 } |
|
135 | 143 | end |
|
136 | 144 | |
|
137 | 145 | def toggle_activate |
|
138 | 146 | @user = User.find(params[:id]) |
|
139 | 147 | @user.update_attributes( activated: !@user.activated? ) |
|
140 | 148 | respond_to do |format| |
|
141 | 149 | format.js { render partial: 'toggle_button', |
|
142 | 150 | locals: {button_id: "#toggle_activate_user_#{@user.id}",button_on: @user.activated? } } |
|
143 | 151 | end |
|
144 | 152 | end |
|
145 | 153 | |
|
146 | 154 | def toggle_enable |
|
147 | 155 | @user = User.find(params[:id]) |
|
148 | 156 | @user.update_attributes( enabled: !@user.enabled? ) |
|
149 | 157 | respond_to do |format| |
|
150 | 158 | format.js { render partial: 'toggle_button', |
|
151 | 159 | locals: {button_id: "#toggle_enable_user_#{@user.id}",button_on: @user.enabled? } } |
|
152 | 160 | end |
|
153 | 161 | end |
|
154 | 162 | |
|
155 | 163 | protected |
|
156 | 164 | |
|
157 | 165 | def verify_online_registration |
|
158 | 166 | if !GraderConfiguration['system.online_registration'] |
|
159 | 167 | redirect_to :controller => 'main', :action => 'login' |
|
160 | 168 | end |
|
161 | 169 | end |
|
162 | 170 | |
|
163 | 171 | def send_confirmation_email(user) |
|
164 | 172 | contest_name = GraderConfiguration['contest.name'] |
|
165 | 173 | activation_url = url_for(:action => 'confirm', |
|
166 | 174 | :login => user.login, |
|
167 | 175 | :activation => user.activation_key) |
|
168 | 176 | home_url = url_for(:controller => 'main', :action => 'index') |
|
169 | 177 | mail_subject = "[#{contest_name}] Confirmation" |
|
170 | 178 | mail_body = t('registration.email_body', { |
|
171 | 179 | :full_name => user.full_name, |
|
172 | 180 | :contest_name => contest_name, |
|
173 | 181 | :login => user.login, |
|
174 | 182 | :password => user.password, |
|
175 | 183 | :activation_url => activation_url, |
|
176 | 184 | :admin_email => GraderConfiguration['system.admin_email'] |
|
177 | 185 | }) |
|
178 | 186 | |
|
179 | 187 | logger.info mail_body |
|
180 | 188 | |
|
181 | 189 | send_mail(user.email, mail_subject, mail_body) |
|
182 | 190 | end |
|
183 | 191 | |
|
184 | 192 | def send_new_password_email(user) |
|
185 | 193 | contest_name = GraderConfiguration['contest.name'] |
|
186 | 194 | mail_subject = "[#{contest_name}] Password recovery" |
|
187 | 195 | mail_body = t('registration.password_retrieval.email_body', { |
|
188 | 196 | :full_name => user.full_name, |
|
189 | 197 | :contest_name => contest_name, |
|
190 | 198 | :login => user.login, |
|
191 | 199 | :password => user.password, |
|
192 | 200 | :admin_email => GraderConfiguration['system.admin_email'] |
|
193 | 201 | }) |
|
194 | 202 | |
|
195 | 203 | logger.info mail_body |
|
196 | 204 | |
|
197 | 205 | send_mail(user.email, mail_subject, mail_body) |
|
198 | 206 | end |
|
199 | 207 | |
|
200 | 208 | # allow viewing of regular user profile only when options allow so |
|
201 | 209 | # only admins can view admins profile |
|
202 | 210 | def profile_authorization |
|
203 | 211 | #if view admins' profile, allow only admin |
|
204 | 212 | return false unless(params[:id]) |
|
205 | 213 | user = User.find(params[:id]) |
|
206 | 214 | return false unless user |
|
207 | 215 | return admin_authorization if user.admin? |
|
208 | 216 | return true if GraderConfiguration["right.user_view_submission"] |
|
209 | 217 | |
|
210 | 218 | #finally, we allow only admin |
|
211 | 219 | admin_authorization |
|
212 | 220 | end |
|
213 | 221 | |
|
214 | 222 | private |
|
215 | 223 | def user_params |
|
216 | 224 | params.require(:user).permit(:login, :full_name, :email) |
|
217 | 225 | end |
|
218 | - | |
|
219 | 226 | end |
@@ -1,95 +1,95 | |||
|
1 | 1 | %header.navbar.navbar-default.navbar-fixed-top |
|
2 | 2 | %nav |
|
3 | 3 | .container-fluid |
|
4 | 4 | .navbar-header |
|
5 | 5 | %button.navbar-toggle.collapsed{ data: {toggle: 'collapse', target: '#navbar-collapse'} } |
|
6 | 6 | %span.sr-only Togggle Navigation |
|
7 | 7 | %span.icon-bar |
|
8 | 8 | %span.icon-bar |
|
9 | 9 | %span.icon-bar |
|
10 | 10 | %a.navbar-brand{href: list_main_path} |
|
11 | 11 | %span.glyphicon.glyphicon-home |
|
12 | 12 | MAIN |
|
13 | 13 | .collapse.navbar-collapse#navbar-collapse |
|
14 | 14 | %ul.nav.navbar-nav |
|
15 | 15 | / submission |
|
16 | 16 | - if (@current_user!=nil) and (GraderConfiguration.show_tasks_to?(@current_user)) |
|
17 | 17 | %li.dropdown |
|
18 | 18 | %a.dropdown-toggle{href: '#', data: {toggle:'dropdown'}, aria: {haspopup:"true", expanded:"false"}, role: "button"} |
|
19 | 19 | = "#{I18n.t 'menu.submissions'}" |
|
20 | 20 | %span.caret |
|
21 | 21 | %ul.dropdown-menu |
|
22 | 22 | = add_menu("View", 'submissions', 'index') |
|
23 | 23 | = add_menu("Self Test", 'test', 'index') |
|
24 | 24 | / hall of fame |
|
25 | 25 | - if GraderConfiguration['right.user_hall_of_fame'] |
|
26 | 26 | = add_menu("#{I18n.t 'menu.hall_of_fame'}", 'report', 'problem_hof') |
|
27 | 27 | / display MODE button (with countdown in contest mode) |
|
28 | 28 | - if GraderConfiguration.analysis_mode? |
|
29 | 29 | %div.navbar-btn.btn.btn-success#countdown= "ANALYSIS MODE" |
|
30 | 30 | - elsif GraderConfiguration.time_limit_mode? |
|
31 | 31 | - if @current_user.contest_finished? |
|
32 | 32 | %div.navbar-btn.btn.btn-danger#countdown= "Contest is over" |
|
33 | 33 | - elsif !@current_user.contest_started? |
|
34 | 34 | %div.navbar-btn.btn.btn-primary#countdown= (t 'title_bar.contest_not_started') |
|
35 | 35 | - else |
|
36 | 36 | %div.navbar-btn.btn.btn-primary#countdown asdf |
|
37 | 37 | :javascript |
|
38 | 38 | $("#countdown").countdown({until: "+#{@current_user.contest_time_left.to_i}s", layout: 'Time left: {hnn}:{mnn}:{snn}'}); |
|
39 | 39 | / admin section |
|
40 | 40 | - if (@current_user!=nil) and (session[:admin]) |
|
41 | 41 | / management |
|
42 | 42 | %li.dropdown |
|
43 | 43 | %a.dropdown-toggle{href: '#', data: {toggle:'dropdown'}, aria: {haspopup:"true", expanded:"false"}, role: "button"} |
|
44 | 44 | Manage |
|
45 | 45 | %span.caret |
|
46 | 46 | %ul.dropdown-menu |
|
47 | 47 | = add_menu( 'Announcements', 'announcements', 'index') |
|
48 | 48 | = add_menu( 'Problems', 'problems', 'index') |
|
49 | 49 | = add_menu( 'Tags', 'tags', 'index') |
|
50 | 50 | = add_menu( 'Users', 'user_admin', 'index') |
|
51 | 51 | = add_menu( 'User Groups', 'groups', 'index') |
|
52 | 52 | = add_menu( 'Graders', 'graders', 'list') |
|
53 | 53 | = add_menu( 'Message ', 'messages', 'console') |
|
54 | 54 | %li.divider{role: 'separator'} |
|
55 | 55 | = add_menu( 'System config', 'configurations', 'index') |
|
56 | 56 | %li.divider{role: 'separator'} |
|
57 | 57 | = add_menu( 'Sites', 'sites', 'index') |
|
58 | 58 | = add_menu( 'Contests', 'contest_management', 'index') |
|
59 | 59 | / report |
|
60 | 60 | %li.dropdown |
|
61 | 61 | %a.dropdown-toggle{href: '#', data: {toggle:'dropdown'}, aria: {haspopup:"true", expanded:"false"}, role: "button"} |
|
62 | 62 | Report |
|
63 | 63 | %span.caret |
|
64 | 64 | %ul.dropdown-menu |
|
65 | 65 | = add_menu( 'Current Score', 'report', 'current_score') |
|
66 | 66 | = add_menu( 'Score Report', 'report', 'max_score') |
|
67 | 67 | = add_menu( 'Report', 'report', 'multiple_login') |
|
68 | 68 | - if (ungraded = Submission.where('graded_at is null').where('submitted_at < ?', 1.minutes.ago).count) > 0 |
|
69 | 69 | =link_to "#{ungraded} backlogs!", |
|
70 | 70 | grader_list_path, |
|
71 | 71 | class: 'navbar-btn btn btn-default btn-warning', data: {toggle: 'tooltip'},title: 'Number of ungraded submission' |
|
72 | 72 | |
|
73 | 73 | %ul.nav.navbar-nav.navbar-right |
|
74 | 74 | = add_menu("#{content_tag(:span,'',class: 'glyphicon glyphicon-question-sign')}".html_safe, 'main', 'help') |
|
75 | 75 | = add_menu("#{content_tag(:span,'',class: 'glyphicon glyphicon-comment')}".html_safe, 'messages', 'index', {title: I18n.t('menu.messages'), data: {toggle: 'tooltip'}}) |
|
76 | 76 | - if GraderConfiguration['system.user_setting_enabled'] |
|
77 |
- = add_menu("#{content_tag(:span,'',class: 'glyphicon glyphicon-cog')}".html_safe, 'users', ' |
|
|
77 | + = add_menu("#{content_tag(:span,'',class: 'glyphicon glyphicon-cog', id: 'user_profile')}".html_safe, 'users', 'profile', {title: I18n.t('menu.settings'), data: {toggle: 'tooltip'}}) | |
|
78 | 78 | = add_menu("#{content_tag(:span,'',class: 'glyphicon glyphicon-log-out')} #{@current_user.full_name}".html_safe, 'main', 'login', {title: I18n.t('menu.log_out'), data: {toggle: 'tooltip'}}) |
|
79 | 79 | |
|
80 | 80 | / |
|
81 | 81 | - if (@current_user!=nil) and (session[:admin]) |
|
82 | 82 | %nav.navbar.navbar-fixed-top.navbar-inverse.secondnavbar |
|
83 | 83 | .container-fluid |
|
84 | 84 | .collapse.navbar-collapse |
|
85 | 85 | %ul.nav.navbar-nav |
|
86 | 86 | = add_menu( '[Announcements]', 'announcements', 'index') |
|
87 | 87 | = add_menu( '[Msg console]', 'messages', 'console') |
|
88 | 88 | = add_menu( '[Problems]', 'problems', 'index') |
|
89 | 89 | = add_menu( '[Users]', 'user_admin', 'index') |
|
90 | 90 | = add_menu( '[Results]', 'user_admin', 'user_stat') |
|
91 | 91 | = add_menu( '[Report]', 'report', 'multiple_login') |
|
92 | 92 | = add_menu( '[Graders]', 'graders', 'list') |
|
93 | 93 | = add_menu( '[Contests]', 'contest_management', 'index') |
|
94 | 94 | = add_menu( '[Sites]', 'sites', 'index') |
|
95 | 95 | = add_menu( '[System config]', 'configurations', 'index') |
@@ -1,14 +1,12 | |||
|
1 | 1 | = simple_form_for(@user) do |f| |
|
2 | 2 | = f.error_notification |
|
3 | - .row | |
|
4 | - .col-md-6.col-md-offset-2 | |
|
5 | 3 |
|
|
6 | 4 |
|
|
7 | 5 |
|
|
8 | 6 |
|
|
9 | 7 |
|
|
10 | 8 |
|
|
11 | 9 |
|
|
12 |
- |
|
|
10 | + = f.button :submit, class: 'btn btn-primary' | |
|
13 | 11 |
|
|
14 | 12 |
@@ -1,4 +1,9 | |||
|
1 | + .container-fluid | |
|
2 | + .row | |
|
3 | + .col-md-6 | |
|
1 | 4 | %h1 Editing user |
|
5 | + .row | |
|
6 | + .col-md-6 | |
|
2 | 7 | = simple_form_for @user, url: user_admin_path(@user) do |f| |
|
3 | 8 | = render partial: 'form', local: f |
|
4 | 9 |
@@ -1,36 +1,24 | |||
|
1 | - = user_title_bar(@user) | |
|
2 | - | |
|
3 | - %h1 Your account settings | |
|
4 | - | |
|
5 | - -#%p | |
|
6 | - -#You can edit your alias and e-mails. Just click on the text and edit it. | |
|
7 | 1 |
|
|
8 | - %table.table.table-bordered{:style => "width:30%"} | |
|
9 | - %tr | |
|
10 | - %th Login | |
|
11 | - %td= @user.login | |
|
12 | - %tr | |
|
13 | - %th Full name | |
|
14 | - %td= @user.full_name | |
|
15 | - -#%tr | |
|
16 | - -#%th.uinfo Alias | |
|
17 | - -#%td.uinfo= in_place_editor_field :user, 'alias_for_editing', {}, :rows => 1 | |
|
18 | - -#%tr | |
|
19 | - -#%th.uinfo E-mail | |
|
20 | - -#%td.uinfo= in_place_editor_field :user, 'email_for_editing', {}, :rows => 1 | |
|
21 | - %tr | |
|
22 | - %th Password | |
|
23 | - %td | |
|
2 | + .container-fluid | |
|
24 | 3 |
|
|
25 | - %table | |
|
26 | - %tr | |
|
27 | - %td | |
|
28 | - %input{:type => "password", :class => "form-control", :name => "passwd", :id => "passwd"} | |
|
29 | - %td (new) | |
|
30 |
- |
|
|
31 | - %td | |
|
32 | - %input{:type => "password", :class => "form-control", :name => "passwd_verify", :id => "passwd_verify"} | |
|
33 | - %td (verify) | |
|
34 | - %tr | |
|
35 | - %td{:colspan => "2"} | |
|
36 | - %input{:type => "button", :class => "btn btn-default", :name => "commit", :value => "Change Password"} | |
|
4 | + .row | |
|
5 | + .col-md-6 | |
|
6 | + %h1 Your account settings | |
|
7 | + .form-group | |
|
8 | + %label{:for => "login"} Login | |
|
9 | + =@user.login | |
|
10 | + .form-group | |
|
11 | + %label{:for => "full_name"} Full name | |
|
12 | + =@user.full_name | |
|
13 | + .form-group | |
|
14 | + %label{:for => "password"} Password | |
|
15 | + =password_field_tag :password, nil, class: 'form-control' | |
|
16 | + .form-group | |
|
17 | + %label{:for => "password_confirmation"} Password confirmation | |
|
18 | + =password_field_tag :password_confirmation, nil, class: 'form-control' | |
|
19 | + .row | |
|
20 | + .col-md-6 | |
|
21 | + =submit_tag 'Edit', class: 'btn btn-primary' | |
|
22 | + | |
|
23 | + | |
|
24 | + |
@@ -1,170 +1,174 | |||
|
1 | 1 | Rails.application.routes.draw do |
|
2 | 2 | resources :tags |
|
3 | 3 | get "sources/direct_edit" |
|
4 | 4 | |
|
5 | 5 | root :to => 'main#login' |
|
6 | 6 | |
|
7 | 7 | #logins |
|
8 | 8 | match 'login/login', to: 'login#login', via: [:get,:post] |
|
9 | 9 | |
|
10 | 10 | resources :contests |
|
11 | 11 | resources :sites |
|
12 | 12 | resources :test |
|
13 | 13 | |
|
14 | 14 | resources :messages do |
|
15 | 15 | collection do |
|
16 | 16 | get 'console' |
|
17 | 17 | end |
|
18 | 18 | end |
|
19 | 19 | |
|
20 | 20 | resources :announcements do |
|
21 | 21 | member do |
|
22 | 22 | get 'toggle','toggle_front' |
|
23 | 23 | end |
|
24 | 24 | end |
|
25 | 25 | |
|
26 | 26 | resources :problems do |
|
27 | 27 | member do |
|
28 | 28 | get 'toggle' |
|
29 | 29 | get 'toggle_test' |
|
30 | 30 | get 'toggle_view_testcase' |
|
31 | 31 | get 'stat' |
|
32 | 32 | end |
|
33 | 33 | collection do |
|
34 | 34 | get 'turn_all_off' |
|
35 | 35 | get 'turn_all_on' |
|
36 | 36 | get 'import' |
|
37 | 37 | get 'manage' |
|
38 | 38 | get 'quick_create' |
|
39 | 39 | post 'do_manage' |
|
40 | 40 | post 'do_import' |
|
41 | 41 | end |
|
42 | 42 | end |
|
43 | 43 | |
|
44 | 44 | resources :groups do |
|
45 | 45 | member do |
|
46 | 46 | post 'add_user', to: 'groups#add_user', as: 'add_user' |
|
47 | 47 | delete 'remove_user/:user_id', to: 'groups#remove_user', as: 'remove_user' |
|
48 | 48 | delete 'remove_all_user', to: 'groups#remove_all_user', as: 'remove_all_user' |
|
49 | 49 | post 'add_problem', to: 'groups#add_problem', as: 'add_problem' |
|
50 | 50 | delete 'remove_problem/:problem_id', to: 'groups#remove_problem', as: 'remove_problem' |
|
51 | 51 | delete 'remove_all_problem', to: 'groups#remove_all_problem', as: 'remove_all_problem' |
|
52 | 52 | end |
|
53 | 53 | collection do |
|
54 | 54 | |
|
55 | 55 | end |
|
56 | 56 | end |
|
57 | 57 | |
|
58 | 58 | resources :testcases, only: [] do |
|
59 | 59 | member do |
|
60 | 60 | get 'download_input' |
|
61 | 61 | get 'download_sol' |
|
62 | 62 | end |
|
63 | 63 | collection do |
|
64 | 64 | get 'show_problem/:problem_id(/:test_num)' => 'testcases#show_problem', as: 'show_problem' |
|
65 | 65 | end |
|
66 | 66 | end |
|
67 | 67 | |
|
68 | 68 | resources :grader_configuration, controller: 'configurations' |
|
69 | 69 | |
|
70 | 70 | resources :users do |
|
71 | 71 | member do |
|
72 | 72 | get 'toggle_activate', 'toggle_enable' |
|
73 | 73 | get 'stat' |
|
74 | 74 | end |
|
75 | + collection do | |
|
76 | + get 'profile' | |
|
77 | + post 'chg_passwd' | |
|
78 | + end | |
|
75 | 79 | end |
|
76 | 80 | |
|
77 | 81 | resources :submissions do |
|
78 | 82 | member do |
|
79 | 83 | get 'download' |
|
80 | 84 | get 'compiler_msg' |
|
81 | 85 | get 'rejudge' |
|
82 | 86 | get 'source' |
|
83 | 87 | end |
|
84 | 88 | collection do |
|
85 | 89 | get 'prob/:problem_id', to: 'submissions#index', as: 'problem' |
|
86 | 90 | get 'direct_edit_problem/:problem_id(/:user_id)', to: 'submissions#direct_edit_problem', as: 'direct_edit_problem' |
|
87 | 91 | get 'get_latest_submission_status/:uid/:pid', to: 'submissions#get_latest_submission_status', as: 'get_latest_submission_status' |
|
88 | 92 | end |
|
89 | 93 | end |
|
90 | 94 | |
|
91 | 95 | |
|
92 | 96 | #user admin |
|
93 | 97 | resources :user_admin do |
|
94 | 98 | collection do |
|
95 | 99 | match 'bulk_manage', via: [:get, :post] |
|
96 | 100 | get 'bulk_mail' |
|
97 | 101 | get 'user_stat' |
|
98 | 102 | get 'import' |
|
99 | 103 | get 'new_list' |
|
100 | 104 | get 'admin' |
|
101 | 105 | get 'active' |
|
102 | 106 | get 'mass_mailing' |
|
103 | 107 | get 'revoke_admin' |
|
104 | 108 | post 'grant_admin' |
|
105 | 109 | match 'create_from_list', via: [:get, :post] |
|
106 | 110 | match 'random_all_passwords', via: [:get, :post] |
|
107 | 111 | end |
|
108 | 112 | member do |
|
109 | 113 | get 'clear_last_ip' |
|
110 | 114 | end |
|
111 | 115 | end |
|
112 | 116 | |
|
113 | 117 | resources :contest_management, only: [:index] do |
|
114 | 118 | collection do |
|
115 | 119 | get 'user_stat' |
|
116 | 120 | get 'clear_stat' |
|
117 | 121 | get 'clear_all_stat' |
|
118 | 122 | get 'change_contest_mode' |
|
119 | 123 | end |
|
120 | 124 | end |
|
121 | 125 | |
|
122 | 126 | #get 'user_admin', to: 'user_admin#index' |
|
123 | 127 | #get 'user_admin/bulk_manage', to: 'user_admin#bulk_manage', as: 'bulk_manage_user_admin' |
|
124 | 128 | #post 'user_admin', to: 'user_admin#create' |
|
125 | 129 | #delete 'user_admin/:id', to: 'user_admin#destroy', as: 'user_admin_destroy' |
|
126 | 130 | |
|
127 | 131 | #singular resource |
|
128 | 132 | #---- BEWARE ---- singular resource maps to plural controller by default, we can override by provide controller name directly |
|
129 | 133 | #report |
|
130 | 134 | resource :report, only: [], controller: 'report' do |
|
131 | 135 | get 'login' |
|
132 | 136 | get 'multiple_login' |
|
133 | 137 | get 'problem_hof/:id', action: 'problem_hof' |
|
134 | 138 | get 'current_score' |
|
135 | 139 | get 'max_score' |
|
136 | 140 | post 'show_max_score' |
|
137 | 141 | end |
|
138 | 142 | #get 'report/current_score', to: 'report#current_score', as: 'report_current_score' |
|
139 | 143 | #get 'report/problem_hof(/:id)', to: 'report#problem_hof', as: 'report_problem_hof' |
|
140 | 144 | #get "report/login" |
|
141 | 145 | #get 'report/max_score', to: 'report#max_score', as: 'report_max_score' |
|
142 | 146 | #post 'report/show_max_score', to: 'report#show_max_score', as: 'report_show_max_score' |
|
143 | 147 | |
|
144 | 148 | resource :main, only: [], controller: 'main' do |
|
145 | 149 | get 'login' |
|
146 | 150 | get 'logout' |
|
147 | 151 | get 'list' |
|
148 | 152 | get 'submission(/:id)', action: 'submission', as: 'main_submission' |
|
149 | 153 | get 'announcements' |
|
150 | 154 | get 'help' |
|
151 | 155 | post 'submit' |
|
152 | 156 | end |
|
153 | 157 | #main |
|
154 | 158 | #get "main/list" |
|
155 | 159 | #get 'main/submission(/:id)', to: 'main#submission', as: 'main_submission' |
|
156 | 160 | #post 'main/submit', to: 'main#submit' |
|
157 | 161 | #get 'main/announcements', to: 'main#announcements' |
|
158 | 162 | |
|
159 | 163 | |
|
160 | 164 | # |
|
161 | 165 | get 'tasks/view/:file.:ext' => 'tasks#view' |
|
162 | 166 | get 'tasks/download/:id/:file.:ext' => 'tasks#download' |
|
163 | 167 | get 'heartbeat/:id/edit' => 'heartbeat#edit' |
|
164 | 168 | |
|
165 | 169 | #grader |
|
166 | 170 | get 'graders/list', to: 'graders#list', as: 'grader_list' |
|
167 | 171 | |
|
168 | 172 | |
|
169 | 173 | # See how all your routes lay out with "rake routes" |
|
170 | 174 |
@@ -1,102 +1,121 | |||
|
1 | 1 | require "application_system_test_case" |
|
2 | 2 | |
|
3 | 3 | class UsersTest < ApplicationSystemTestCase |
|
4 | 4 | # test "visiting the index" do |
|
5 | 5 | # visit users_url |
|
6 | 6 | # |
|
7 | 7 | # assert_selector "h1", text: "User" |
|
8 | 8 | # end |
|
9 | 9 | |
|
10 | 10 | test "add new user and edit" do |
|
11 | 11 | login('admin','admin') |
|
12 | 12 | within 'header' do |
|
13 | 13 | click_on 'Manage' |
|
14 | 14 | click_on 'Users', match: :first |
|
15 | 15 | end |
|
16 | 16 | |
|
17 | 17 | assert_text "Users" |
|
18 | 18 | assert_text "New user" |
|
19 | 19 | |
|
20 | 20 | click_on "New user", match: :first |
|
21 | 21 | fill_in 'Login', with: 'test1' |
|
22 | 22 | fill_in 'Full name', with: 'test1 McTestface' |
|
23 | 23 | fill_in 'e-mail', with: 'a@a.com' |
|
24 | 24 | fill_in 'Password', with: 'abcdef' |
|
25 | 25 | fill_in 'Password confirmation', with: 'abcdef' |
|
26 | 26 | |
|
27 | 27 | click_on 'Create' |
|
28 | 28 | |
|
29 | 29 | assert_text 'User was successfully created' |
|
30 | 30 | assert_text 'a@a.com' |
|
31 | 31 | assert_text 'test1 McTestface' |
|
32 | 32 | |
|
33 | 33 | within('tr', text: 'McTestface') do |
|
34 | 34 | click_on 'Edit' |
|
35 | 35 | end |
|
36 | 36 | |
|
37 | 37 | fill_in 'Alias', with: 'hahaha' |
|
38 | 38 | fill_in 'Remark', with: 'section 2' |
|
39 | 39 | click_on 'Update User' |
|
40 | 40 | |
|
41 | 41 | assert_text 'section 2' |
|
42 | 42 | end |
|
43 | 43 | |
|
44 | 44 | test "add multiple users" do |
|
45 | 45 | login 'admin', 'admin' |
|
46 | 46 | within 'header' do |
|
47 | 47 | click_on 'Manage' |
|
48 | 48 | click_on 'Users', match: :first |
|
49 | 49 | end |
|
50 | 50 | |
|
51 | 51 | click_on 'New list of users', match: :first |
|
52 | 52 | find(:css, 'textarea').fill_in with:"abc1,Boaty McBoatface,abcdef,alias1,remark1,\nabc2,Boaty2 McSecond,acbdef123,aias2,remark2" |
|
53 | 53 | click_on 'create users' |
|
54 | 54 | |
|
55 | 55 | assert_text('remark1') |
|
56 | 56 | assert_text('remark2') |
|
57 | 57 | end |
|
58 | 58 | |
|
59 | 59 | test "grant admin right" do |
|
60 | 60 | login 'admin', 'admin' |
|
61 | 61 | within 'header' do |
|
62 | 62 | click_on 'Manage' |
|
63 | 63 | click_on 'Users', match: :first |
|
64 | 64 | end |
|
65 | 65 | |
|
66 | 66 | click_on "View administrator" |
|
67 | 67 | fill_in 'login', with: 'john' |
|
68 | 68 | click_on "Grant" |
|
69 | 69 | |
|
70 | 70 | visit logout_main_path |
|
71 | 71 | login 'john','hello' |
|
72 | 72 | within 'header' do |
|
73 | 73 | click_on 'Manage' |
|
74 | 74 | click_on 'Problem', match: :first |
|
75 | 75 | end |
|
76 | 76 | assert_text "Turn off all problems" |
|
77 | 77 | end |
|
78 | 78 | |
|
79 | 79 | test "try using admin from normal user" do |
|
80 | 80 | login 'admin','admin' |
|
81 | 81 | visit bulk_manage_user_admin_index_path |
|
82 | 82 | assert_current_path bulk_manage_user_admin_index_path |
|
83 | 83 | visit logout_main_path |
|
84 | 84 | |
|
85 | 85 | login 'jack','morning' |
|
86 | 86 | visit bulk_manage_user_admin_index_path |
|
87 | 87 | assert_text 'You are not authorized' |
|
88 | 88 | assert_current_path login_main_path |
|
89 | 89 | |
|
90 | 90 | login 'james','morning' |
|
91 | 91 | visit new_list_user_admin_index_path |
|
92 | 92 | assert_text 'You are not authorized' |
|
93 | 93 | assert_current_path login_main_path |
|
94 | 94 | end |
|
95 | 95 | |
|
96 | + test "login then change password" do | |
|
97 | + newpassword = '1234asdf' | |
|
98 | + login 'john', 'hello' | |
|
99 | + visit profile_users_path | |
|
100 | + | |
|
101 | + fill_in 'password', with: newpassword | |
|
102 | + fill_in 'password_confirmation', with: newpassword | |
|
103 | + | |
|
104 | + click_on 'Edit' | |
|
105 | + | |
|
106 | + visit logout_main_path | |
|
107 | + login 'john', 'hello' | |
|
108 | + assert_text 'Wrong password' | |
|
109 | + | |
|
110 | + login 'john', newpassword | |
|
111 | + assert_text "MAIN" | |
|
112 | + assert_text "Submission" | |
|
113 | + end | |
|
114 | + | |
|
96 | 115 | def login(username,password) |
|
97 | 116 | visit root_path |
|
98 | 117 | fill_in "Login", with: username |
|
99 | 118 | fill_in "Password", with: password |
|
100 | 119 | click_on "Login" |
|
101 | 120 | end |
|
102 | 121 | end |
You need to be logged in to leave comments.
Login now