Description:
merge with upstream
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
r779:df983f8fc960 - - 8 files changed: 76 inserted, 13 deleted
@@ -0,0 +1,33 | |||||
|
|
1 | + # Authentication and user imports through programming.in.th web request | ||
|
|
2 | + require 'net/http' | ||
|
|
3 | + require 'uri' | ||
|
|
4 | + require 'json' | ||
|
|
5 | + | ||
|
|
6 | + class ProgrammingAuthenticator | ||
|
|
7 | + PROGRAMMING_AUTHEN_URL = "https://programming.in.th/authen.php" | ||
|
|
8 | + | ||
|
|
9 | + def find_or_create_user(result) | ||
|
|
10 | + user = User.find_by(login: result['username']) | ||
|
|
11 | + if not user | ||
|
|
12 | + user = User.new(login: result['username'], | ||
|
|
13 | + full_name: result['firstname'] + ' ' + result['surname'], | ||
|
|
14 | + alias: result['display'], | ||
|
|
15 | + email: result['email']) | ||
|
|
16 | + user.password = User.random_password | ||
|
|
17 | + user.save | ||
|
|
18 | + end | ||
|
|
19 | + return user | ||
|
|
20 | + end | ||
|
|
21 | + | ||
|
|
22 | + def authenticate(login, password) | ||
|
|
23 | + uri = URI(PROGRAMMING_AUTHEN_URL) | ||
|
|
24 | + result = Net::HTTP.post_form(uri, 'username' => login, 'password' => password) | ||
|
|
25 | + request_result = JSON.parse(result.body) | ||
|
|
26 | + | ||
|
|
27 | + if request_result.fetch('status', 'incorrect') == 'OK' | ||
|
|
28 | + return find_or_create_user(request_result) | ||
|
|
29 | + else | ||
|
|
30 | + return nil | ||
|
|
31 | + end | ||
|
|
32 | + end | ||
|
|
33 | + end |
@@ -1,16 +1,18 | |||||
|
1 | class LoginController < ApplicationController |
|
1 | class LoginController < ApplicationController |
|
2 |
|
2 | ||
|
|
3 | + @@authenticators = [] | ||
|
|
4 | + | ||
|
3 | def index |
|
5 | def index |
|
4 | # show login screen |
|
6 | # show login screen |
|
5 | reset_session |
|
7 | reset_session |
|
6 | redirect_to :controller => 'main', :action => 'login' |
|
8 | redirect_to :controller => 'main', :action => 'login' |
|
7 | end |
|
9 | end |
|
8 |
|
10 | ||
|
9 | def login |
|
11 | def login |
|
10 |
- user = |
|
12 | + user = get_authenticated_user(params[:login], params[:password]) |
|
11 | unless user |
|
13 | unless user |
|
12 | flash[:notice] = 'Wrong password' |
|
14 | flash[:notice] = 'Wrong password' |
|
13 | redirect_to :controller => 'main', :action => 'login' |
|
15 | redirect_to :controller => 'main', :action => 'login' |
|
14 | return |
|
16 | return |
|
15 | end |
|
17 | end |
|
16 |
|
18 | ||
@@ -61,7 +63,27 | |||||
|
61 | end |
|
63 | end |
|
62 |
|
64 | ||
|
63 | def logout |
|
65 | def logout |
|
64 | redirect_to root_path |
|
66 | redirect_to root_path |
|
65 | end |
|
67 | end |
|
66 |
|
68 | ||
|
|
69 | + def self.add_authenticator(authenticator) | ||
|
|
70 | + @@authenticators << authenticator | ||
|
|
71 | + end | ||
|
|
72 | + | ||
|
|
73 | + protected | ||
|
|
74 | + | ||
|
|
75 | + def get_authenticated_user(login, password) | ||
|
|
76 | + if @@authenticators.empty? | ||
|
|
77 | + return User.authenticate(login, password) | ||
|
|
78 | + else | ||
|
|
79 | + user = User.authenticate(login, password) | ||
|
|
80 | + @@authenticators.each do |authenticator| | ||
|
|
81 | + if not user | ||
|
|
82 | + user = authenticator.authenticate(login, password) | ||
|
|
83 | + end | ||
|
|
84 | + end | ||
|
|
85 | + return user | ||
|
|
86 | + end | ||
|
|
87 | + end | ||
|
|
88 | + | ||
|
67 | end |
|
89 | end |
@@ -1,14 +1,10 | |||||
|
1 | class ProblemsController < ApplicationController |
|
1 | class ProblemsController < ApplicationController |
|
2 |
|
2 | ||
|
3 | before_action :admin_authorization |
|
3 | before_action :admin_authorization |
|
4 |
|
4 | ||
|
5 | - #NOTE: ghost from the past? |
|
||
|
6 | - #before_action :testcase_authorization, only: [:show_testcase] |
|
||
|
7 | - |
|
||
|
8 | - |
|
||
|
9 | in_place_edit_for :problem, :name |
|
5 | in_place_edit_for :problem, :name |
|
10 | in_place_edit_for :problem, :full_name |
|
6 | in_place_edit_for :problem, :full_name |
|
11 | in_place_edit_for :problem, :full_score |
|
7 | in_place_edit_for :problem, :full_score |
|
12 |
|
8 | ||
|
13 | def index |
|
9 | def index |
|
14 | @problems = Problem.order(date_added: :desc) |
|
10 | @problems = Problem.order(date_added: :desc) |
@@ -23,13 +19,13 | |||||
|
23 | @problem = Problem.new |
|
19 | @problem = Problem.new |
|
24 | @description = nil |
|
20 | @description = nil |
|
25 | end |
|
21 | end |
|
26 |
|
22 | ||
|
27 | def create |
|
23 | def create |
|
28 | @problem = Problem.new(problem_params) |
|
24 | @problem = Problem.new(problem_params) |
|
29 |
- @description = Description.new( |
|
25 | + @description = Description.new(description_params) |
|
30 | if @description.body!='' |
|
26 | if @description.body!='' |
|
31 | if !@description.save |
|
27 | if !@description.save |
|
32 | render :action => new and return |
|
28 | render :action => new and return |
|
33 | end |
|
29 | end |
|
34 | else |
|
30 | else |
|
35 | @description = nil |
|
31 | @description = nil |
@@ -302,10 +298,10 | |||||
|
302 |
|
298 | ||
|
303 | def problem_params |
|
299 | def problem_params |
|
304 | params.require(:problem).permit(:name, :full_name, :full_score, :change_date_added, :date_added, :available, :test_allowed,:output_only, :url, :description, tag_ids:[]) |
|
300 | params.require(:problem).permit(:name, :full_name, :full_score, :change_date_added, :date_added, :available, :test_allowed,:output_only, :url, :description, tag_ids:[]) |
|
305 | end |
|
301 | end |
|
306 |
|
302 | ||
|
307 | def description_params |
|
303 | def description_params |
|
308 | - params.require(:description).permit(:body, :markdown) |
|
304 | + params.require(:description).permit(:body, :markdowned) |
|
309 | end |
|
305 | end |
|
310 |
|
306 | ||
|
311 | end |
|
307 | end |
@@ -124,25 +124,27 | |||||
|
124 | self.problem = Submission.find_problem_in_source(self.source, |
|
124 | self.problem = Submission.find_problem_in_source(self.source, |
|
125 | self.source_filename) |
|
125 | self.source_filename) |
|
126 | end |
|
126 | end |
|
127 | end |
|
127 | end |
|
128 |
|
128 | ||
|
129 | def assign_language |
|
129 | def assign_language |
|
130 | - self.language = Submission.find_language_in_source(self.source, |
|
130 | + if self.language == nil |
|
131 | - self.source_filename) |
|
131 | + self.language = Submission.find_language_in_source(self.source, |
|
|
132 | + self.source_filename) | ||
|
|
133 | + end | ||
|
132 | end |
|
134 | end |
|
133 |
|
135 | ||
|
134 | # validation codes |
|
136 | # validation codes |
|
135 | def must_specify_language |
|
137 | def must_specify_language |
|
136 | return if self.source==nil |
|
138 | return if self.source==nil |
|
137 |
|
139 | ||
|
138 | # for output_only tasks |
|
140 | # for output_only tasks |
|
139 | return if self.problem!=nil and self.problem.output_only |
|
141 | return if self.problem!=nil and self.problem.output_only |
|
140 |
|
142 | ||
|
141 | - if self.language==nil |
|
143 | + if self.language == nil |
|
142 |
- errors.add('source',"Cannot detect language. Did you submit a correct source file?") |
|
144 | + errors.add('source',"Cannot detect language. Did you submit a correct source file?") |
|
143 | end |
|
145 | end |
|
144 | end |
|
146 | end |
|
145 |
|
147 | ||
|
146 | def must_have_valid_problem |
|
148 | def must_have_valid_problem |
|
147 | return if self.source==nil |
|
149 | return if self.source==nil |
|
148 | if self.problem==nil |
|
150 | if self.problem==nil |
@@ -37,13 +37,13 | |||||
|
37 | validates_length_of :login, :within => 3..30 |
|
37 | validates_length_of :login, :within => 3..30 |
|
38 |
|
38 | ||
|
39 | validates_presence_of :full_name |
|
39 | validates_presence_of :full_name |
|
40 | validates_length_of :full_name, :minimum => 1 |
|
40 | validates_length_of :full_name, :minimum => 1 |
|
41 |
|
41 | ||
|
42 | validates_presence_of :password, :if => :password_required? |
|
42 | validates_presence_of :password, :if => :password_required? |
|
43 |
- validates_length_of :password, :within => 4.. |
|
43 | + validates_length_of :password, :within => 4..50, :if => :password_required? |
|
44 | validates_confirmation_of :password, :if => :password_required? |
|
44 | validates_confirmation_of :password, :if => :password_required? |
|
45 |
|
45 | ||
|
46 | validates_format_of :email, |
|
46 | validates_format_of :email, |
|
47 | :with => /\A([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\Z/i, |
|
47 | :with => /\A([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\Z/i, |
|
48 | :if => :email_validation? |
|
48 | :if => :email_validation? |
|
49 | validate :uniqueness_of_email_from_activated_users, |
|
49 | validate :uniqueness_of_email_from_activated_users, |
@@ -25,6 +25,9 | |||||
|
25 | # Uncomment so that Apache X-Sendfile is used when delivering files |
|
25 | # Uncomment so that Apache X-Sendfile is used when delivering files |
|
26 | # (e.g., in /tasks/view). |
|
26 | # (e.g., in /tasks/view). |
|
27 | # USE_APACHE_XSENDFILE = true |
|
27 | # USE_APACHE_XSENDFILE = true |
|
28 |
|
28 | ||
|
29 | # Uncomment so that configuration is read only once when the server is loaded |
|
29 | # Uncomment so that configuration is read only once when the server is loaded |
|
30 | # CONFIGURATION_CACHE_ENABLED = true |
|
30 | # CONFIGURATION_CACHE_ENABLED = true |
|
|
31 | + | ||
|
|
32 | + # Uncomment to allow authentication and user import from programming.in.th | ||
|
|
33 | + # LoginController.add_authenticator(ProgrammingAuthenticator.new) |
@@ -99,12 +99,20 | |||||
|
99 | { |
|
99 | { |
|
100 | :key => 'right.view_testcase', |
|
100 | :key => 'right.view_testcase', |
|
101 | :value_type => 'boolean', |
|
101 | :value_type => 'boolean', |
|
102 | :default_value => 'false', |
|
102 | :default_value => 'false', |
|
103 | :description => 'When true, any user can view/download test data' |
|
103 | :description => 'When true, any user can view/download test data' |
|
104 | }, |
|
104 | }, |
|
|
105 | + | ||
|
|
106 | + { | ||
|
|
107 | + :key => 'system.online_registration', | ||
|
|
108 | + :value_type => 'boolean', | ||
|
|
109 | + :default_value => 'false', | ||
|
|
110 | + :description => 'This option enables online registration.' | ||
|
|
111 | + }, | ||
|
|
112 | + | ||
|
105 | # If Configuration['system.online_registration'] is true, the |
|
113 | # If Configuration['system.online_registration'] is true, the |
|
106 | # system allows online registration, and will use these |
|
114 | # system allows online registration, and will use these |
|
107 | # information for sending confirmation emails. |
|
115 | # information for sending confirmation emails. |
|
108 | { |
|
116 | { |
|
109 | :key => 'system.online_registration.smtp', |
|
117 | :key => 'system.online_registration.smtp', |
|
110 | :value_type => 'string', |
|
118 | :value_type => 'string', |
You need to be logged in to leave comments.
Login now