Description:
[web] added mode + access control, when sites started/finished git-svn-id: http://theory.cpe.ku.ac.th/grader/web/trunk@250 6386c4cd-e34a-4fa8-8920-d93eb39b512e
Commit status:
[Not Reviewed]
References:
Comments:
0 Commit comments 0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
Add another comment

r122:dfa0387efb1e - - 9 files changed: 188 inserted, 84 deleted

@@ -0,0 +1,17
1 + class AddModeToConfigurations < ActiveRecord::Migration
2 + def self.up
3 +
4 + # Configuration['system.mode']:
5 + # * 'standard' mode
6 + # * 'contest' mode (check site start time/stop time)
7 + # * 'analysis' mode (show results, no new submissions)
8 +
9 + Configuration.create(:key => 'system.mode',
10 + :value_type => 'string',
11 + :value => 'standard')
12 + end
13 +
14 + def self.down
15 + Configuration.find_by_key('system.mode').destroy
16 + end
17 + end
@@ -1,6 +1,9
1 1 class MainController < ApplicationController
2 2
3 + SYSTEM_MODE_CONF_KEY = 'system.mode'
4 +
3 5 before_filter :authenticate, :except => [:index, :login]
6 + before_filter :check_viewability
4 7
5 8 #
6 9 # COMMENT OUT: filter in each action instead
@@ -43,7 +46,8
43 46 end
44 47 @submission.submitted_at = Time.new.gmtime
45 48
46 - if user.site!=nil and user.site.finished?
49 + if Configuration[SYSTEM_MODE_CONF_KEY]=='contest' and
50 + user.site!=nil and user.site.finished?
47 51 @submission.errors.add_to_base "The contest is over."
48 52 prepare_list_information
49 53 render :action => 'list' and return
@@ -125,5 +129,13
125 129 :order => "created_at DESC")
126 130 end
127 131
132 + def check_viewability
133 + user = User.find(session[:user_id])
134 + if (!Configuration.show_tasks_to?(user)) and
135 + ((action_name=='submission') or (action_name=='submit'))
136 + redirect_to :action => 'list' and return
137 + end
138 + end
139 +
128 140 end
129 141
@@ -1,7 +1,6
1 1 class TasksController < ApplicationController
2 2
3 - before_filter :authenticate
4 -
3 + before_filter :authenticate, :check_viewability
5 4
6 5 def index
7 6 redirect_to :action => 'list'
@@ -12,4 +11,14
12 11 @user = User.find(session[:user_id])
13 12 end
14 13
14 + protected
15 +
16 + def check_viewability
17 + user = User.find(session[:user_id])
18 + if user==nil or !Configuration.show_tasks_to?(user)
19 + redirect_to :controller => 'main', :action => 'list'
20 + return false
21 + end
22 + end
23 +
15 24 end
@@ -1,6 +1,8
1 1 class TestController < ApplicationController
2 2
3 - before_filter :authenticate
3 + SYSTEM_MODE_CONF_KEY = 'system.mode'
4 +
5 + before_filter :authenticate, :check_viewability
4 6
5 7 #
6 8 # COMMENT OUT: filter in each action instead
@@ -24,7 +26,8
24 26 render :action => 'index' and return
25 27 end
26 28
27 - if @user.site!=nil and @user.site.finished?
29 + if Configuration[SYSTEM_MODE_CONF_KEY]=='contest' and
30 + @user.site!=nil and @user.site.finished?
28 31 @submitted_test_request.errors.add_to_base('Contest is over.')
29 32 prepare_index_information
30 33 render :action => 'index' and return
@@ -92,4 +95,14
92 95 @test_requests = @user.test_requests
93 96 end
94 97
98 + def check_viewability
99 + user = User.find(session[:user_id])
100 + if !Configuration.show_tasks_to?(user)
101 + redirect_to :controller => 'main', :action => 'list'
102 + end
103 + if (!Configuration.show_submitbox_to?(user)) and (action_name=='submit')
104 + redirect_to :controller => 'test', :action => 'index'
105 + end
106 + end
107 +
95 108 end
@@ -1,6 +1,8
1 1 # Methods added to this helper will be available to all templates in the application.
2 2 module ApplicationHelper
3 3
4 + SYSTEM_MODE_CONF_KEY = 'system.mode'
5 +
4 6 def user_header
5 7 menu_items = ''
6 8 user = User.find(session[:user_id])
@@ -21,9 +23,12
21 23 # main page
22 24 append_to menu_items, '[Main]', 'main', 'list'
23 25 append_to menu_items, '[Messages]', 'messages', 'list'
24 - append_to menu_items, '[Tasks]', 'tasks', 'list'
25 - append_to menu_items, '[Submissions]', 'main', 'submission'
26 - append_to menu_items, '[Test]', 'test', 'index'
26 +
27 + if (user!=nil) and (Configuration.show_tasks_to?(user))
28 + append_to menu_items, '[Tasks]', 'tasks', 'list'
29 + append_to menu_items, '[Submissions]', 'main', 'submission'
30 + append_to menu_items, '[Test]', 'test', 'index'
31 + end
27 32 append_to menu_items, '[Help]', 'main', 'help'
28 33 #append_to menu_items, '[Settings]', 'users', 'index'
29 34 append_to menu_items, '[Log out]', 'main', 'login'
@@ -48,19 +53,44
48 53 st + time.strftime("%X")
49 54 end
50 55
56 + def read_textfile(fname,max_size=2048)
57 + begin
58 + File.open(fname).read(max_size)
59 + rescue
60 + nil
61 + end
62 + end
51 63
52 64 def user_title_bar(user)
53 - if user.site!=nil and user.site.finished?
54 - contest_over_string = <<CONTEST_OVER
65 + header = ''
66 +
67 + #
68 + # if the contest is over
69 + if Configuration[SYSTEM_MODE_CONF_KEY]=='contest' and
70 + user.site!=nil and user.site.finished?
71 + header = <<CONTEST_OVER
55 72 <tr><td colspan="2" align="center">
56 73 <span class="contest-over-msg">THE CONTEST IS OVER</span>
57 74 </td></tr>
58 75 CONTEST_OVER
59 76 end
77 +
78 + #
79 + # if the contest is in the anaysis mode
80 + if Configuration[SYSTEM_MODE_CONF_KEY]=='analysis'
81 + header = <<ANALYSISMODE
82 + <tr><td colspan="2" align="center">
83 + <span class="contest-over-msg">ANALYSIS MODE</span>
84 + </td></tr>
85 + ANALYSISMODE
86 + end
87 +
88 + #
89 + # build real title bar
60 90 <<TITLEBAR
61 91 <div class="title">
62 92 <table>
63 - #{contest_over_string}
93 + #{header}
64 94 <tr>
65 95 <td class="left-col">
66 96 #{user.full_name}<br/>
@@ -73,12 +103,4
73 103 TITLEBAR
74 104 end
75 105
76 - def read_textfile(fname,max_size=2048)
77 - begin
78 - File.open(fname).read(max_size)
79 - rescue
80 - nil
81 - end
82 - end
83 -
84 106 end
@@ -1,5 +1,10
1 + #
2 + # This class also contains various login of the system.
3 + #
1 4 class Configuration < ActiveRecord::Base
2 5
6 + SYSTEM_MODE_CONF_KEY = 'system.mode'
7 +
3 8 @@configurations = nil
4 9
5 10 def self.get(key)
@@ -21,6 +26,28
21 26 @@configurations = nil
22 27 end
23 28
29 + #
30 + # View decision
31 + #
32 + def self.show_submitbox_to?(user)
33 + mode = get(SYSTEM_MODE_CONF_KEY)
34 + return false if mode=='analysis'
35 + if (mode=='contest')
36 + return false if (user.site!=nil) and
37 + ((user.site.started==false) or (user.site.finished?))
38 + end
39 + return true
40 + end
41 +
42 + def self.show_tasks_to?(user)
43 + mode = get(SYSTEM_MODE_CONF_KEY)
44 + if (mode=='contest')
45 + return false if (user.site!=nil) and (user.site.started==false)
46 + end
47 + return true
48 + end
49 +
50 +
24 51 protected
25 52 def self.read_config
26 53 @@configurations = {}
@@ -6,20 +6,22
6 6 Announcements
7 7 = render :partial => 'announcement', :collection => @announcements
8 8
9 - .submitbox
10 - = error_messages_for 'submission'
11 - = render :partial => 'submission_box'
9 + - if Configuration.show_submitbox_to?(@user)
10 + .submitbox
11 + = error_messages_for 'submission'
12 + = render :partial => 'submission_box'
12 13
13 14
14 15 %hr/
15 16
16 - %table.info
17 - %tr.info-head
18 - %th
19 - %th Tasks
20 - %th # of sub(s)
21 - %th Results
22 - = render :partial => 'problem', :collection => @problems
17 + - if Configuration.show_tasks_to?(@user)
18 + %table.info
19 + %tr.info-head
20 + %th
21 + %th Tasks
22 + %th # of sub(s)
23 + %th Results
24 + = render :partial => 'problem', :collection => @problems
23 25
24 26 %hr/
25 27
@@ -30,61 +30,63
30 30 }
31 31 </script>
32 32
33 - <div class="submitbox">
34 - <%= error_messages_for 'submitted_test_request' %>
35 - <% form_for :test_request, nil,
36 - :url => { :action => 'submit'},
37 - :html => { :multipart => true } do |f| %>
38 - <table>
39 - <tr>
40 - <td>Task:</td>
41 - <td>
42 - <%= select(:test_request,
43 - :problem_id,
44 - @problems.collect {|p| [p.name, p.id]}, {},
45 - { :onclick => "updateSubmissionList();" }) %>
46 - </td>
47 - </tr>
48 - <tr>
49 - <td>Submission:</td>
50 - <td>
51 - <%= select(:test_request,
52 - :submission_number,
53 - ((1..@submissions[0].number).collect {|n| [n,n]}).reverse) %>
54 - </td>
55 - </tr>
56 - <tr>
57 - <td>Input data:</td>
58 - <td>
59 - <%= f.file_field :input_file %>
60 - </td>
61 - <td>
62 - (combined size should not exceed 2MB)
63 - </td>
64 - </tr>
65 - <tr>
66 - <td>
67 - Additional file<sup><span style="color:red">*</span></sup>:
68 - </td>
69 - <td>
70 - <%= f.file_field :additional_file %>
71 - </td>
72 - <td>
73 - <small>
74 - * This option works <u>only</u> for task max.
75 - You can use this to submit <tt>questions.txt</tt>.<br/>
76 - The file shall be copied to the execution directory before your program runs.
77 - </small>
78 - </td>
79 - </tr>
80 - <tr>
81 - <td colspan="2">
82 - <%= submit_tag 'submit' %>
83 - </td>
84 - </tr>
85 - </table>
33 + <% if Configuration.show_submitbox_to?(@user) %>
34 + <div class="submitbox">
35 + <%= error_messages_for 'submitted_test_request' %>
36 + <% form_for :test_request, nil,
37 + :url => { :action => 'submit'},
38 + :html => { :multipart => true } do |f| %>
39 + <table>
40 + <tr>
41 + <td>Task:</td>
42 + <td>
43 + <%= select(:test_request,
44 + :problem_id,
45 + @problems.collect {|p| [p.name, p.id]}, {},
46 + { :onclick => "updateSubmissionList();" }) %>
47 + </td>
48 + </tr>
49 + <tr>
50 + <td>Submission:</td>
51 + <td>
52 + <%= select(:test_request,
53 + :submission_number,
54 + ((1..@submissions[0].number).collect {|n| [n,n]}).reverse) %>
55 + </td>
56 + </tr>
57 + <tr>
58 + <td>Input data:</td>
59 + <td>
60 + <%= f.file_field :input_file %>
61 + </td>
62 + <td>
63 + (combined size should not exceed 2MB)
64 + </td>
65 + </tr>
66 + <tr>
67 + <td>
68 + Additional file<sup><span style="color:red">*</span></sup>:
69 + </td>
70 + <td>
71 + <%= f.file_field :additional_file %>
72 + </td>
73 + <td>
74 + <small>
75 + * This option works <u>only</u> for task max.
76 + You can use this to submit <tt>questions.txt</tt>.<br/>
77 + The file shall be copied to the execution directory before your program runs.
78 + </small>
79 + </td>
80 + </tr>
81 + <tr>
82 + <td colspan="2">
83 + <%= submit_tag 'submit' %>
84 + </td>
85 + </tr>
86 + </table>
87 + <% end %>
88 + </div>
86 89 <% end %>
87 - </div>
88 90
89 91 <h3>Previous requests</h3>
90 92
@@ -9,7 +9,7
9 9 #
10 10 # It's strongly recommended to check this file into your version control system.
11 11
12 - ActiveRecord::Schema.define(:version => 35) do
12 + ActiveRecord::Schema.define(:version => 36) do
13 13
14 14 create_table "announcements", :force => true do |t|
15 15 t.string "author"
You need to be logged in to leave comments. Login now