Description:
fig bugs in login report
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
r859:d7fa5bf1aeba - - 2 files changed: 7 inserted, 6 deleted
@@ -27,98 +27,96 | |||
|
27 | 27 | |
|
28 | 28 | def nav_announcement |
|
29 | 29 | @nav_announcement = Announcement.where(on_nav_bar: true) |
|
30 | 30 | end |
|
31 | 31 | |
|
32 | 32 | def admin_authorization |
|
33 | 33 | return false unless check_valid_login |
|
34 | 34 | user = User.includes(:roles).find(session[:user_id]) |
|
35 | 35 | unless user.admin? |
|
36 | 36 | unauthorized_redirect |
|
37 | 37 | return false |
|
38 | 38 | end |
|
39 | 39 | return true |
|
40 | 40 | end |
|
41 | 41 | |
|
42 | 42 | #admin always count as every roles |
|
43 | 43 | def role_authorization(roles) |
|
44 | 44 | return false unless check_valid_login |
|
45 | 45 | user = User.find(session[:user_id]) |
|
46 | 46 | return true if user.admin? |
|
47 | 47 | roles.each do |r| |
|
48 | 48 | return true if user.has_role?(r) |
|
49 | 49 | end |
|
50 | 50 | unauthorized_redirect |
|
51 | 51 | end |
|
52 | 52 | |
|
53 | 53 | def authorization_by_roles(allowed_roles) |
|
54 | 54 | return false unless check_valid_login |
|
55 | 55 | unless @current_user.roles.detect { |role| allowed_roles.member?(role.name) } |
|
56 | 56 | unauthorized_redirect |
|
57 | 57 | return false |
|
58 | 58 | end |
|
59 | 59 | end |
|
60 | 60 | |
|
61 | 61 | def testcase_authorization |
|
62 | 62 | #admin always has privileged |
|
63 | 63 | if @current_user.admin? |
|
64 | 64 | return true |
|
65 | 65 | end |
|
66 | 66 | |
|
67 | 67 | unauthorized_redirect unless GraderConfiguration["right.view_testcase"] |
|
68 | 68 | end |
|
69 | 69 | |
|
70 | 70 | def unique_visitor_id |
|
71 | 71 | unless cookies.encrypted[:uuid] |
|
72 | 72 | value = SecureRandom.uuid |
|
73 | 73 | cookies.encrypted[:uuid] = { value: value, expires: 20.year } |
|
74 | 74 | end |
|
75 | - puts "encrypt " + cookies.encrypted[:uuid] | |
|
76 | - puts cookies[:uuid] | |
|
77 | 75 | end |
|
78 | 76 | |
|
79 | 77 | protected |
|
80 | 78 | |
|
81 | 79 | #redirect to root (and also force logout) |
|
82 | 80 | #if the user is not logged_in or the system is in "ADMIN ONLY" mode |
|
83 | 81 | def check_valid_login |
|
84 | 82 | #check if logged in |
|
85 | 83 | unless session[:user_id] |
|
86 | 84 | if GraderConfiguration[SINGLE_USER_MODE_CONF_KEY] |
|
87 | 85 | unauthorized_redirect('You need to login but you cannot log in at this time') |
|
88 | 86 | else |
|
89 | 87 | unauthorized_redirect('You need to login') |
|
90 | 88 | end |
|
91 | 89 | return false |
|
92 | 90 | end |
|
93 | 91 | |
|
94 | 92 | # check if run in single user mode |
|
95 | 93 | if GraderConfiguration[SINGLE_USER_MODE_CONF_KEY] |
|
96 | 94 | if @current_user==nil || (!@current_user.admin?) |
|
97 | 95 | unauthorized_redirect('You cannot log in at this time') |
|
98 | 96 | return false |
|
99 | 97 | end |
|
100 | 98 | end |
|
101 | 99 | |
|
102 | 100 | # check if the user is enabled |
|
103 | 101 | unless @current_user.enabled? || @current_user.admin? |
|
104 | 102 | unauthorized_redirect 'Your account is disabled' |
|
105 | 103 | return false |
|
106 | 104 | end |
|
107 | 105 | |
|
108 | 106 | # check if user ip is allowed |
|
109 | 107 | unless @current_user.admin? || GraderConfiguration[WHITELIST_IGNORE_CONF_KEY] |
|
110 | 108 | unless is_request_ip_allowed? |
|
111 | 109 | unauthorized_redirect 'Your IP is not allowed to login at this time.' |
|
112 | 110 | return false |
|
113 | 111 | end |
|
114 | 112 | end |
|
115 | 113 | |
|
116 | 114 | if GraderConfiguration.multicontests? |
|
117 | 115 | return true if @current_user.admin? |
|
118 | 116 | begin |
|
119 | 117 | if @current_user.contest_stat(true).forced_logout |
|
120 | 118 | flash[:notice] = 'You have been automatically logged out.' |
|
121 | 119 | redirect_to :controller => 'main', :action => 'index' |
|
122 | 120 | end |
|
123 | 121 | rescue |
|
124 | 122 | end |
@@ -74,140 +74,143 | |||
|
74 | 74 | else |
|
75 | 75 | #render template: 'user_admin/user_stat' |
|
76 | 76 | render 'max_score' |
|
77 | 77 | end |
|
78 | 78 | |
|
79 | 79 | end |
|
80 | 80 | |
|
81 | 81 | def score |
|
82 | 82 | if params[:commit] == 'download csv' |
|
83 | 83 | @problems = Problem.all |
|
84 | 84 | else |
|
85 | 85 | @problems = Problem.available_problems |
|
86 | 86 | end |
|
87 | 87 | @users = User.includes(:contests, :contest_stat).where(enabled: true) |
|
88 | 88 | @scorearray = Array.new |
|
89 | 89 | @users.each do |u| |
|
90 | 90 | ustat = Array.new |
|
91 | 91 | ustat[0] = u |
|
92 | 92 | @problems.each do |p| |
|
93 | 93 | sub = Submission.find_last_by_user_and_problem(u.id,p.id) |
|
94 | 94 | if (sub!=nil) and (sub.points!=nil) and p and p.full_score |
|
95 | 95 | ustat << [(sub.points.to_f*100/p.full_score).round, (sub.points>=p.full_score)] |
|
96 | 96 | else |
|
97 | 97 | ustat << [0,false] |
|
98 | 98 | end |
|
99 | 99 | end |
|
100 | 100 | @scorearray << ustat |
|
101 | 101 | end |
|
102 | 102 | if params[:commit] == 'download csv' then |
|
103 | 103 | csv = gen_csv_from_scorearray(@scorearray,@problems) |
|
104 | 104 | send_data csv, filename: 'last_score.csv' |
|
105 | 105 | else |
|
106 | 106 | render template: 'user_admin/user_stat' |
|
107 | 107 | end |
|
108 | 108 | |
|
109 | 109 | end |
|
110 | 110 | |
|
111 | 111 | def login |
|
112 | 112 | end |
|
113 | 113 | |
|
114 | 114 | def login_summary_query |
|
115 | 115 | @users = Array.new |
|
116 | 116 | |
|
117 | 117 | date_and_time = '%Y-%m-%d %H:%M' |
|
118 | 118 | begin |
|
119 | 119 | md = params[:since_datetime].match(/(\d+)-(\d+)-(\d+) (\d+):(\d+)/) |
|
120 | 120 | @since_time = Time.zone.local(md[1].to_i,md[2].to_i,md[3].to_i,md[4].to_i,md[5].to_i) |
|
121 | 121 | rescue |
|
122 |
- @since_time = |
|
|
122 | + @since_time = Time.zone.now | |
|
123 | 123 | end |
|
124 | + puts @since_time | |
|
124 | 125 | begin |
|
125 | 126 | md = params[:until_datetime].match(/(\d+)-(\d+)-(\d+) (\d+):(\d+)/) |
|
126 | 127 | @until_time = Time.zone.local(md[1].to_i,md[2].to_i,md[3].to_i,md[4].to_i,md[5].to_i) |
|
127 | 128 | rescue |
|
128 | 129 | @until_time = DateTime.new(3000,1,1) |
|
129 | 130 | end |
|
130 | 131 | |
|
131 | 132 | record = User |
|
132 | 133 | .left_outer_joins(:logins).group('users.id') |
|
133 | 134 | .where("logins.created_at >= ? AND logins.created_at <= ?",@since_time, @until_time) |
|
134 | 135 | case params[:users] |
|
135 | 136 | when 'enabled' |
|
136 | 137 | record = record.where(enabled: true) |
|
137 | 138 | when 'group' |
|
138 | 139 | record = record.joins(:groups).where(groups: {id: params[:groups]}) if params[:groups] |
|
139 | 140 | end |
|
140 | 141 | |
|
141 | 142 | record = record.pluck("users.id,users.login,users.full_name,count(logins.created_at),min(logins.created_at),max(logins.created_at)") |
|
142 | 143 | record.each do |user| |
|
143 | 144 | x = Login.where("user_id = ? AND created_at >= ? AND created_at <= ?", |
|
144 | 145 | user[0],@since_time,@until_time) |
|
145 | 146 | .pluck(:ip_address).uniq |
|
147 | + puts user[4] | |
|
148 | + puts user[5] | |
|
146 | 149 | @users << { id: user[0], |
|
147 | 150 | login: user[1], |
|
148 | 151 | full_name: user[2], |
|
149 | 152 | count: user[3], |
|
150 | - min: user[4], | |
|
151 | - max: user[5], | |
|
153 | + min: user[4].in_time_zone, | |
|
154 | + max: user[5].in_time_zone, | |
|
152 | 155 | ip: x |
|
153 | 156 | } |
|
154 | 157 | end |
|
155 | 158 | end |
|
156 | 159 | |
|
157 | 160 | def login_detail_query |
|
158 | 161 | @logins = Array.new |
|
159 | 162 | |
|
160 | 163 | date_and_time = '%Y-%m-%d %H:%M' |
|
161 | 164 | begin |
|
162 | 165 | md = params[:since_datetime].match(/(\d+)-(\d+)-(\d+) (\d+):(\d+)/) |
|
163 | 166 | @since_time = Time.zone.local(md[1].to_i,md[2].to_i,md[3].to_i,md[4].to_i,md[5].to_i) |
|
164 | 167 | rescue |
|
165 |
- @since_time = |
|
|
168 | + @since_time = Time.zone.now | |
|
166 | 169 | end |
|
167 | 170 | begin |
|
168 | 171 | md = params[:until_datetime].match(/(\d+)-(\d+)-(\d+) (\d+):(\d+)/) |
|
169 | 172 | @until_time = Time.zone.local(md[1].to_i,md[2].to_i,md[3].to_i,md[4].to_i,md[5].to_i) |
|
170 | 173 | rescue |
|
171 | 174 | @until_time = DateTime.new(3000,1,1) |
|
172 | 175 | end |
|
173 | 176 | |
|
174 | 177 | @logins = Login.includes(:user).where("logins.created_at >= ? AND logins.created_at <= ?",@since_time, @until_time) |
|
175 | 178 | case params[:users] |
|
176 | 179 | when 'enabled' |
|
177 | 180 | @logins = @logins.where(users: {enabled: true}) |
|
178 | 181 | when 'group' |
|
179 | 182 | @logins = @logins.joins(user: :groups).where(user: {groups: {id: params[:groups]}}) if params[:groups] |
|
180 | 183 | end |
|
181 | 184 | end |
|
182 | 185 | |
|
183 | 186 | def submission |
|
184 | 187 | end |
|
185 | 188 | |
|
186 | 189 | def submission_query |
|
187 | 190 | @submissions = Submission |
|
188 | 191 | .includes(:problem).includes(:user).includes(:language) |
|
189 | 192 | |
|
190 | 193 | case params[:users] |
|
191 | 194 | when 'enabled' |
|
192 | 195 | @submissions = @submissions.where(users: {enabled: true}) |
|
193 | 196 | when 'group' |
|
194 | 197 | @submissions = @submissions.joins(user: :groups).where(user: {groups: {id: params[:groups]}}) if params[:groups] |
|
195 | 198 | end |
|
196 | 199 | |
|
197 | 200 | case params[:problems] |
|
198 | 201 | when 'enabled' |
|
199 | 202 | @submissions = @submissions.where(problems: {available: true}) |
|
200 | 203 | when 'selected' |
|
201 | 204 | @submissions = @submissions.where(problem_id: params[:problem_id]) |
|
202 | 205 | end |
|
203 | 206 | |
|
204 | 207 | #set default |
|
205 | 208 | params[:since_datetime] = Date.today.to_s if params[:since_datetime].blank? |
|
206 | 209 | |
|
207 | 210 | @submissions, @recordsTotal, @recordsFiltered = process_query_record( @submissions, |
|
208 | 211 | global_search: ['user.login','user.full_name','problem.name','problem.full_name','points'], |
|
209 | 212 | date_filter: 'submitted_at', |
|
210 | 213 | date_param_since: 'since_datetime', |
|
211 | 214 | date_param_until: 'until_datetime', |
|
212 | 215 | hard_limit: 100_000 |
|
213 | 216 | ) |
You need to be logged in to leave comments.
Login now