Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bwinf
medal
Commits
be961c3a
Commit
be961c3a
authored
Mar 13, 2020
by
Robert Czechowski
Browse files
Simplify contest grade and contest time checks
parent
37ad2fb5
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/core.rs
View file @
be961c3a
...
...
@@ -229,8 +229,6 @@ pub fn show_contest<T: MedalConnection>(conn: &T, contest_id: i32, session_token
let
mut
data
=
json_val
::
Map
::
new
();
data
.insert
(
"contest"
.to_string
(),
to_json
(
&
ci
));
data
.insert
(
"logged_in"
.to_string
(),
to_json
(
&
false
));
// TODO: cant we just drop these two?
data
.insert
(
"can_start"
.to_string
(),
to_json
(
&
false
));
if
session
.is_logged_in
()
{
data
.insert
(
"logged_in"
.to_string
(),
to_json
(
&
true
));
data
.insert
(
"username"
.to_string
(),
to_json
(
&
session
.username
));
...
...
@@ -239,43 +237,43 @@ pub fn show_contest<T: MedalConnection>(conn: &T, contest_id: i32, session_token
data
.insert
(
"teacher"
.to_string
(),
to_json
(
&
session
.is_teacher
));
data
.insert
(
"csrf_token"
.to_string
(),
to_json
(
&
session
.csrf_token
));
}
if
c
.duration
==
0
||
session
.is_logged_in
()
{
data
.insert
(
"can_start"
.to_string
(),
to_json
(
&
true
));
if
let
Some
(
start_date
)
=
c
.start
{
if
time
::
get_time
()
<
start_date
{
data
.insert
(
"can_start"
.to_string
(),
to_json
(
&
false
));
}
}
if
let
Some
(
end_date
)
=
c
.end
{
if
time
::
get_time
()
>
end_date
{
data
.insert
(
"can_start"
.to_string
(),
to_json
(
&
false
));
}
}
let
student_grade
=
session
.grade
%
100
-
if
session
.grade
/
100
==
1
{
1
}
else
{
0
};
if
c
.min_grade
.map
(|
ming
|
student_grade
<
ming
)
.unwrap_or
(
false
)
{
data
.insert
(
"can_start"
.to_string
(),
to_json
(
&
false
));
data
.insert
(
"grade_too_low"
.to_string
(),
to_json
(
&
true
));
}
if
c
.max_grade
.map
(|
maxg
|
student_grade
>
maxg
)
.unwrap_or
(
false
)
{
data
.insert
(
"can_start"
.to_string
(),
to_json
(
&
false
));
data
.insert
(
"grade_too_high"
.to_string
(),
to_json
(
&
true
));
}
}
if
let
Some
(
start_date
)
=
c
.start
{
if
time
::
get_time
()
<
start_date
{
data
.insert
(
"can_start"
.to_string
(),
to_json
(
&
false
));
let
time_until
=
start_date
-
time
::
get_time
();
data
.insert
(
"time_until_d"
.to_string
(),
to_json
(
&
(
time_until
.num_days
())));
data
.insert
(
"time_until_h"
.to_string
(),
to_json
(
&
(
time_until
.num_hours
()
%
24
)));
data
.insert
(
"time_until_m"
.to_string
(),
to_json
(
&
(
time_until
.num_minutes
()
%
60
)));
}
}
let
now
=
time
::
get_time
();
let
student_grade
=
session
.grade
%
100
-
if
session
.grade
/
100
==
1
{
1
}
else
{
0
};
let
contest_not_yet
=
c
.start
.map
(|
start
|
now
<
start
)
.unwrap_or
(
false
);
let
contest_no_more
=
c
.end
.map
(|
end
|
now
>
end
)
.unwrap_or
(
false
);
let
grade_too_low
=
c
.min_grade
.map
(|
min_grade
|
student_grade
<
min_grade
)
.unwrap_or
(
false
);
let
grade_too_high
=
c
.max_grade
.map
(|
max_grade
|
student_grade
>
max_grade
)
.unwrap_or
(
false
);
let
contest_running
=
!
contest_not_yet
&&
!
contest_no_more
;
let
matching_grade
=
!
grade_too_low
&&
!
grade_too_high
;
let
can_start
=
session
.is_logged_in
()
&&
contest_running
&&
matching_grade
;
c
.start
.map
(|
start
|
{
if
now
<
start
{
let
time_until
=
start
-
now
;
data
.insert
(
"time_until_start_d"
.to_string
(),
to_json
(
&
(
time_until
.num_days
())));
data
.insert
(
"time_until_start_h"
.to_string
(),
to_json
(
&
(
time_until
.num_hours
()
%
24
)));
data
.insert
(
"time_until_start_m"
.to_string
(),
to_json
(
&
(
time_until
.num_minutes
()
%
60
)));
}
});
c
.end
.map
(|
end
|
{
if
now
<
end
{
let
time_until
=
end
-
now
;
data
.insert
(
"time_until_end_d"
.to_string
(),
to_json
(
&
(
time_until
.num_days
())));
data
.insert
(
"time_until_end_h"
.to_string
(),
to_json
(
&
(
time_until
.num_hours
()
%
24
)));
data
.insert
(
"time_until_end_m"
.to_string
(),
to_json
(
&
(
time_until
.num_minutes
()
%
60
)));
}
});
data
.insert
(
"can_start"
.to_string
(),
to_json
(
&
can_start
));
data
.insert
(
"grade_too_high"
.to_string
(),
to_json
(
&
grade_too_high
));
data
.insert
(
"grade_too_low"
.to_string
(),
to_json
(
&
grade_too_low
));
data
.insert
(
"contest_not_yet"
.to_string
(),
to_json
(
&
contest_not_yet
));
data
.insert
(
"contest_no_more"
.to_string
(),
to_json
(
&
contest_no_more
));
// This only checks if a query string is existent, so any query string will
// lead to the assumption that a bare page is requested. This is useful to
...
...
templates/jwinf/contest.hbs
View file @
be961c3a
...
...
@@ -156,8 +156,8 @@
{{/if}}
{{else}}
<p>
Du kannst diesen Wettbewerb nicht starten.
</p>
{{#if
time_until_d
}}
<p>
Der Wettbewerb wird geöffnet in:
{{
time_until_d
}}
Tagen,
{{
time_until_h
}}
Stunden,
{{
time_until_m
}}
Minuten.
{{#if
time_until_
start_
d
}}
<p>
Der Wettbewerb wird geöffnet in:
{{
time_until_
start_
d
}}
Tagen,
{{
time_until_
start_
h
}}
Stunden,
{{
time_until_
start_
m
}}
Minuten.
{{else}}
{{#if
logged_in
}}
{{#if
grade_too_low
}}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment