gitlab-org--gitlab-foss/lib/mattermost/session.rb

161 lines
3.9 KiB
Ruby
Raw Normal View History

2016-12-12 08:31:48 +00:00
module Mattermost
2016-12-21 10:53:44 +00:00
class NoSessionError < Mattermost::Error
def message
2016-12-20 18:11:53 +00:00
'No session could be set up, is Mattermost configured with Single Sign On?'
end
end
ConnectionError = Class.new(Mattermost::Error)
2016-12-20 11:02:37 +00:00
2016-12-12 08:31:48 +00:00
# This class' prime objective is to obtain a session token on a Mattermost
# instance with SSO configured where this GitLab instance is the provider.
#
# The process depends on OAuth, but skips a step in the authentication cycle.
# For example, usually a user would click the 'login in GitLab' button on
# Mattermost, which would yield a 302 status code and redirects you to GitLab
# to approve the use of your account on Mattermost. Which would trigger a
# callback so Mattermost knows this request is approved and gets the required
# data to create the user account etc.
#
# This class however skips the button click, and also the approval phase to
# speed up the process and keep it without manual action and get a session
# going.
2016-12-15 13:32:50 +00:00
class Session
2016-12-12 08:31:48 +00:00
include Doorkeeper::Helpers::Controller
include HTTParty
2016-12-20 19:01:48 +00:00
LEASE_TIMEOUT = 60
2016-12-16 11:20:42 +00:00
base_uri Settings.mattermost.host
2016-12-12 08:31:48 +00:00
2016-12-16 11:20:42 +00:00
attr_accessor :current_resource_owner, :token
2016-12-12 08:31:48 +00:00
2016-12-16 11:20:42 +00:00
def initialize(current_user)
2016-12-12 08:31:48 +00:00
@current_resource_owner = current_user
end
def with_session
2016-12-20 19:01:48 +00:00
with_lease do
2016-12-21 10:53:44 +00:00
raise Mattermost::NoSessionError unless create
2016-12-20 19:01:48 +00:00
begin
yield self
rescue Errno::ECONNREFUSED
2016-12-21 10:53:44 +00:00
raise Mattermost::NoSessionError
2016-12-20 19:01:48 +00:00
ensure
destroy
end
2016-12-15 20:06:17 +00:00
end
2016-12-12 08:31:48 +00:00
end
# Next methods are needed for Doorkeeper
def pre_auth
@pre_auth ||= Doorkeeper::OAuth::PreAuthorization.new(
Doorkeeper.configuration, server.client_via_uid, params)
end
def authorization
@authorization ||= strategy.request
end
def strategy
@strategy ||= server.authorization_request(pre_auth.response_type)
end
def request
@request ||= OpenStruct.new(parameters: params)
end
def params
2016-12-16 12:43:01 +00:00
Rack::Utils.parse_query(oauth_uri.query).symbolize_keys
end
def get(path, options = {})
2016-12-21 10:53:44 +00:00
handle_exceptions do
self.class.get(path, options.merge(headers: @headers))
end
2016-12-16 12:43:01 +00:00
end
def post(path, options = {})
2016-12-21 10:53:44 +00:00
handle_exceptions do
self.class.post(path, options.merge(headers: @headers))
end
2016-12-12 08:31:48 +00:00
end
private
def create
return unless oauth_uri
return unless token_uri
2016-12-16 12:43:01 +00:00
@token = request_token
2016-12-16 11:20:42 +00:00
@headers = {
2016-12-16 12:43:01 +00:00
Authorization: "Bearer #{@token}"
2016-12-16 11:20:42 +00:00
}
2016-12-12 08:31:48 +00:00
2016-12-16 12:43:01 +00:00
@token
2016-12-12 08:31:48 +00:00
end
def destroy
2016-12-12 08:31:48 +00:00
post('/api/v3/users/logout')
2016-12-12 08:31:48 +00:00
end
def oauth_uri
2016-12-16 12:43:01 +00:00
return @oauth_uri if defined?(@oauth_uri)
@oauth_uri = nil
2016-12-12 08:31:48 +00:00
response = get("/api/v3/oauth/gitlab/login", follow_redirects: false)
2016-12-12 08:31:48 +00:00
return unless 300 <= response.code && response.code < 400
redirect_uri = response.headers['location']
return unless redirect_uri
2016-12-16 12:43:01 +00:00
@oauth_uri = URI.parse(redirect_uri)
2016-12-12 08:31:48 +00:00
end
def token_uri
2016-12-16 10:31:26 +00:00
@token_uri ||=
2016-12-16 12:43:01 +00:00
if oauth_uri
2016-12-16 10:31:26 +00:00
authorization.authorize.redirect_uri if pre_auth.authorizable?
end
2016-12-12 08:31:48 +00:00
end
def request_token
2016-12-16 12:43:01 +00:00
response = get(token_uri, follow_redirects: false)
2016-12-12 08:31:48 +00:00
2016-12-16 10:31:26 +00:00
if 200 <= response.code && response.code < 400
response.headers['token']
end
end
2016-12-20 19:01:48 +00:00
def with_lease
lease_uuid = lease_try_obtain
raise NoSessionError unless lease_uuid
begin
yield
ensure
Gitlab::ExclusiveLease.cancel(lease_key, lease_uuid)
end
end
def lease_key
"mattermost:session"
end
def lease_try_obtain
lease = ::Gitlab::ExclusiveLease.new(lease_key, timeout: LEASE_TIMEOUT)
lease.try_obtain
end
2016-12-21 10:53:44 +00:00
def handle_exceptions
yield
rescue HTTParty::Error => e
raise Mattermost::ConnectionError.new(e.message)
2017-02-02 14:04:02 +00:00
rescue Errno::ECONNREFUSED => e
2016-12-21 10:53:44 +00:00
raise Mattermost::ConnectionError.new(e.message)
end
2016-12-12 08:31:48 +00:00
end
end