Commit c9610e0a authored by Kamil Trzcinski's avatar Kamil Trzcinski Committed by Z.J. van de Weg

Fix rubocop failures

parent e6637259
...@@ -265,8 +265,8 @@ Settings.lfs['storage_path'] = File.expand_path(Settings.lfs['storage_path'] || ...@@ -265,8 +265,8 @@ Settings.lfs['storage_path'] = File.expand_path(Settings.lfs['storage_path'] ||
# Mattermost # Mattermost
# #
Settings['mattermost'] ||= Settingslogic.new({}) Settings['mattermost'] ||= Settingslogic.new({})
Settings.mattermost['enabled'] = false if Settings.mattermost['enabled'].nil? Settings.mattermost['enabled'] = false if Settings.mattermost['enabled'].nil?
Settings.mattermost['host'] = nil unless Settings.mattermost.enabled Settings.mattermost['host'] = nil unless Settings.mattermost.enabled
# #
# Gravatar # Gravatar
......
...@@ -54,7 +54,15 @@ module Mattermost ...@@ -54,7 +54,15 @@ module Mattermost
end end
def params def params
Rack::Utils.parse_query(@oauth_uri.query).symbolize_keys Rack::Utils.parse_query(oauth_uri.query).symbolize_keys
end
def get(path, options = {})
self.class.get(path, options.merge(headers: @headers))
end
def post(path, options = {})
self.class.post(path, options.merge(headers: @headers))
end end
private private
...@@ -63,11 +71,12 @@ module Mattermost ...@@ -63,11 +71,12 @@ module Mattermost
return unless oauth_uri return unless oauth_uri
return unless token_uri return unless token_uri
self.token = request_token @token = request_token
@headers = { @headers = {
"Authorization": "Bearer #{self.token}" Authorization: "Bearer #{@token}"
} }
self.token
@token
end end
def destroy def destroy
...@@ -75,35 +84,32 @@ module Mattermost ...@@ -75,35 +84,32 @@ module Mattermost
end end
def oauth_uri def oauth_uri
return @oauth_uri if defined?(@oauth_uri)
@oauth_uri = nil
response = get("/api/v3/oauth/gitlab/login", follow_redirects: false) response = get("/api/v3/oauth/gitlab/login", follow_redirects: false)
return unless 300 <= response.code && response.code < 400 return unless 300 <= response.code && response.code < 400
redirect_uri = response.headers['location'] redirect_uri = response.headers['location']
return unless redirect_uri return unless redirect_uri
@oauth_uri ||= URI.parse(redirect_uri) @oauth_uri = URI.parse(redirect_uri)
end end
def token_uri def token_uri
@token_uri ||= @token_uri ||=
if @oauth_uri if oauth_uri
authorization.authorize.redirect_uri if pre_auth.authorizable? authorization.authorize.redirect_uri if pre_auth.authorizable?
end end
end end
def request_token def request_token
response = get(@token_uri, follow_redirects: false) response = get(token_uri, follow_redirects: false)
if 200 <= response.code && response.code < 400 if 200 <= response.code && response.code < 400
response.headers['token'] response.headers['token']
end end
end end
def get(path, options = {})
self.class.get(path, options.merge(headers: @headers))
end
def post(path, options = {})
self.class.post(path, options.merge(headers: @headers))
end
end end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment