forked from instructure/canvas-lms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauthentication_methods.rb
360 lines (316 loc) · 12.5 KB
/
authentication_methods.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
#
# Copyright (C) 2011 - 2013 Instructure, Inc.
#
# This file is part of Canvas.
#
# Canvas is free software: you can redistribute it and/or modify it under
# the terms of the GNU Affero General Public License as published by the Free
# Software Foundation, version 3 of the License.
#
# Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
# A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
# details.
#
# You should have received a copy of the GNU Affero General Public License along
# with this program. If not, see <http://www.gnu.org/licenses/>.
#
module AuthenticationMethods
def authorized(*groups)
authorized_roles = groups
return true
end
def authorized_roles
@authorized_roles ||= []
end
def consume_authorized_roles
authorized_roles = []
end
def load_pseudonym_from_policy
if (policy_encoded = params['Policy']) &&
(signature = params['Signature']) &&
signature == Base64.encode64(OpenSSL::HMAC.digest(OpenSSL::Digest.new('sha1'), Attachment.shared_secret, policy_encoded)).gsub(/\n/, '') &&
(policy = JSON.parse(Base64.decode64(policy_encoded)) rescue nil) &&
policy['conditions'] &&
(credential = policy['conditions'].detect{ |cond| cond.is_a?(Hash) && cond.has_key?("pseudonym_id") })
@policy_pseudonym_id = credential['pseudonym_id']
# so that we don't have to explicitly skip verify_authenticity_token
params[self.class.request_forgery_protection_token] ||= form_authenticity_token
end
yield if block_given?
end
class AccessTokenError < Exception
end
class LoggedOutError < Exception
end
def self.access_token(request, params_method = :params)
auth_header = CANVAS_RAILS2 ? ActionController::HttpAuthentication::Basic.authorization(request) : request.authorization
if auth_header.present? && (header_parts = auth_header.split(' ', 2)) && header_parts[0] == 'Bearer'
header_parts[1]
else
request.send(params_method)['access_token'].presence
end
end
def self.user_id(request)
request.session[:user_id]
end
def load_pseudonym_from_access_token
return unless api_request? || params[:action] == 'oauth2_logout'
token_string = AuthenticationMethods.access_token(request)
if token_string
@access_token = AccessToken.authenticate(token_string)
if !@access_token
raise AccessTokenError
end
@current_user = @access_token.user
@current_pseudonym = @current_user.find_pseudonym_for_account(@domain_root_account, true)
unless @current_user && @current_pseudonym
raise AccessTokenError
end
@access_token.used!
end
end
def load_user
@current_user = @current_pseudonym = nil
load_pseudonym_from_access_token
if !@current_pseudonym
if @policy_pseudonym_id
@current_pseudonym = Pseudonym.find_by_id(@policy_pseudonym_id)
elsif @pseudonym_session = PseudonymSession.find
@current_pseudonym = @pseudonym_session.record
# if the session was created before the last time the user explicitly
# logged out (of any session for any of their pseudonyms), invalidate
# this session
invalid_before = @current_pseudonym.user.last_logged_out
# they logged out in the future?!? something's busted; just ignore it -
# either my clock is off or whoever set this value's clock is off
invalid_before = nil if invalid_before && invalid_before > Time.now.utc
if invalid_before &&
(session_refreshed_at = request.env['encrypted_cookie_store.session_refreshed_at']) &&
session_refreshed_at < invalid_before
destroy_session
@current_pseudonym = nil
if api_request? || request.format.json?
raise LoggedOutError
end
end
end
if params[:login_success] == '1' && !@current_pseudonym
# they just logged in successfully, but we can't find the pseudonym now?
# sounds like somebody hates cookies.
return redirect_to(login_url(:needs_cookies => '1'))
end
@current_user = @current_pseudonym && @current_pseudonym.user
if api_request?
# only allow api_key to be used if basic auth was sent, not if they're
# just using an app session
# this basic auth support is deprecated and marked for removal in 2012
if @pseudonym_session.try(:used_basic_auth?) && params[:api_key].present?
Shard.birth.activate { @developer_key = DeveloperKey.find_by_api_key(params[:api_key]) }
end
@developer_key ||
request.get? ||
!allow_forgery_protection ||
CanvasBreachMitigation::MaskingSecrets.valid_authenticity_token?(session, form_authenticity_param) ||
CanvasBreachMitigation::MaskingSecrets.valid_authenticity_token?(session, request.headers['X-CSRF-Token']) ||
raise(AccessTokenError)
end
end
if @current_user && @current_user.unavailable?
@current_pseudonym = nil
@current_user = nil
end
# required by the user throttling middleware
session[:user_id] = @current_user.global_id if @current_user
if @current_user && %w(become_user_id me become_teacher become_student).any? { |k| params.key?(k) }
request_become_user = nil
if params[:become_user_id]
request_become_user = User.find_by_id(params[:become_user_id])
elsif params.keys.include?('me')
request_become_user = @current_user
elsif params.keys.include?('become_teacher')
course = Course.find(params[:course_id] || params[:id]) rescue nil
teacher = course.teachers.first if course
if teacher
request_become_user = teacher
else
flash[:error] = I18n.t('lib.auth.errors.teacher_not_found', "No teacher found")
end
elsif params.keys.include?('become_student')
course = Course.find(params[:course_id] || params[:id]) rescue nil
student = course.students.first if course
if student
request_become_user = student
else
flash[:error] = I18n.t('lib.auth.errors.student_not_found', "No student found")
end
end
if request_become_user && request_become_user.id != session[:become_user_id].to_i && request_become_user.can_masquerade?(@current_user, @domain_root_account)
params_without_become = params.dup
params_without_become.delete_if {|k,v| [ 'become_user_id', 'become_teacher', 'become_student', 'me' ].include? k }
params_without_become[:only_path] = true
session[:masquerade_return_to] = url_for(params_without_become)
return redirect_to user_masquerade_url(request_become_user.id)
end
end
as_user_id = api_request? && params[:as_user_id].presence
as_user_id ||= session[:become_user_id]
if as_user_id
begin
user = api_find(User, as_user_id)
rescue ActiveRecord::RecordNotFound
end
if user && user.can_masquerade?(@current_user, @domain_root_account)
@real_current_user = @current_user
@current_user = user
@real_current_pseudonym = @current_pseudonym
@current_pseudonym = @current_user.find_pseudonym_for_account(@domain_root_account, true)
logger.warn "#{@real_current_user.name}(#{@real_current_user.id}) impersonating #{@current_user.name} on page #{request.url}"
elsif api_request?
# fail silently for UI, but not for API
render :json => {:errors => "Invalid as_user_id"}, :status => :unauthorized
return false
end
end
@current_user
end
private :load_user
def require_user
if @current_user && @current_pseudonym
true
else
redirect_to_login
false
end
end
protected :require_user
def clean_return_to(url)
return nil if url.blank?
begin
uri = URI.parse(url)
rescue URI::InvalidURIError
return nil
end
return nil unless uri.path[0] == ?/
return "#{request.protocol}#{request.host_with_port}#{uri.path}#{uri.query && "?#{uri.query}"}#{uri.fragment && "##{uri.fragment}"}"
end
def return_to(url, fallback)
url = clean_return_to(url) || clean_return_to(fallback)
redirect_to url
end
def store_location(uri=nil, overwrite=true)
if overwrite || !session[:return_to]
uri ||= request.get? ? request.fullpath : request.referrer
session[:return_to] = clean_return_to(uri)
end
end
protected :store_location
def redirect_back_or_default(default)
redirect_to(session[:return_to] || default)
session.delete(:return_to)
end
protected :redirect_back_or_default
def redirect_to_referrer_or_default(default)
redirect_to(:back)
rescue ActionController::RedirectBackError
redirect_to(default)
end
def redirect_to_login
respond_to do |format|
format.html {
store_location
flash[:warning] = I18n.t('lib.auth.errors.not_authenticated', "You must be logged in to access this page") unless request.path == '/'
opts = {}
opts[:canvas_login] = 1 if params[:canvas_login]
redirect_to login_url(opts) # should this have :no_auto => 'true' ?
}
format.json { render_json_unauthorized }
end
end
def render_json_unauthorized
add_www_authenticate_header if api_request? && !@current_user
if @current_user
render :json => {
:status => I18n.t('lib.auth.status_unauthorized', 'unauthorized'),
:errors => [{ :message => I18n.t('lib.auth.not_authorized', "user not authorized to perform that action") }]
},
:status => :unauthorized
else
render :json => {
:status => I18n.t('lib.auth.status_unauthenticated', 'unauthenticated'),
:errors => [{ :message => I18n.t('lib.auth.authentication_required', "user authorization required") }]
},
:status => :unauthorized
end
end
def add_www_authenticate_header
response['WWW-Authenticate'] = %{Bearer realm="canvas-lms"}
end
# Reset the session, and copy the specified keys over to the new session.
# Please consider the security implications of any keys you copy over.
def reset_session_saving_keys(*keys)
# can't use slice, because session has a different ctor than a normal hash
saved = {}
keys.each { |k| saved[k] = session[k] if session[k] }
reset_session
saved.each_pair { |k, v| session[k] = v }
end
def reset_session_for_login
reset_session_saving_keys(:return_to, :oauth2, :confirm, :enrollment, :expected_user_id, :masquerade_return_to)
end
def initiate_delegated_login(current_host=nil)
if cookies['canvas_sa_delegated'] && !params[:canvas_login]
@domain_root_account = Account.site_admin
end
is_delegated = @domain_root_account.delegated_authentication? && !params[:canvas_login]
is_cas = is_delegated && @domain_root_account.cas_authentication?
is_saml = is_delegated && @domain_root_account.saml_authentication?
if is_cas
initiate_cas_login
return true
elsif is_saml
if @domain_root_account.auth_discovery_url
redirect_to @domain_root_account.auth_discovery_url
else
initiate_saml_login(current_host)
end
return true
end
false
end
def cas_client(account = @domain_root_account)
@cas_client ||= CASClient::Client.new(
cas_base_url: account.account_authorization_config.auth_base,
encode_extra_attributes_as: :raw
)
end
def initiate_cas_login(client = nil)
reset_session_for_login
client ||= cas_client
delegated_auth_redirect(client.add_service_to_login_url(cas_login_url))
end
def initiate_saml_login(current_host=nil, aac=nil)
increment_saml_stat("login_attempt")
reset_session_for_login
aac ||= @domain_root_account.account_authorization_config
settings = aac.saml_settings(current_host)
request = Onelogin::Saml::AuthRequest.new(settings)
forward_url = request.generate_request
if aac.debugging? && !aac.debug_get(:request_id)
aac.debug_set(:request_id, request.id)
aac.debug_set(:to_idp_url, forward_url)
aac.debug_set(:to_idp_xml, request.request_xml)
aac.debug_set(:debugging, "Forwarding user to IdP for authentication")
end
delegated_auth_redirect(forward_url)
end
def delegated_auth_redirect(uri)
redirect_to(delegated_auth_redirect_uri(uri))
end
def delegated_auth_redirect_uri(uri)
uri
end
def increment_saml_stat(key)
CanvasStatsd::Statsd.increment("saml.#{CanvasStatsd::Statsd.escape(request.host)}.#{key}")
end
end