Allow authentication with micro.blog

This commit is contained in:
2023-12-02 10:34:03 +11:00
parent 67c1c0a43c
commit 45cafa2b04
2 changed files with 13 additions and 2 deletions

View File

@@ -53,6 +53,8 @@ module Adamantium
setting :micropub_authorization_endpoint
setting :micropub_token_endpoint
setting :microblog_auth_endpoint, default: nil
setting :mastodon_token, default: nil
setting :mastodon_server, default: nil

View File

@@ -66,6 +66,7 @@ module Micropub
return %i[create update delete undelete media] if settings.shortcut_key == access_token
return %i[create update delete undelete media] if Hanami.env == :development || Hanami.env == :test
# Verify with IndieAuth
resp = HTTParty.get(settings.micropub_token_endpoint, {
headers: {
"Accept" => "application/x-www-form-urlencoded",
@@ -73,10 +74,18 @@ module Micropub
}
})
decoded_response = URI.decode_www_form(resp.body).to_h.transform_keys(&:to_sym)
indie_auth_verified = (decoded_response.include? :scope) && (decoded_response.include? :me)
logger.info({log: "verify_response", msg: decoded_response.inspect, token: access_token})
# Verify with micro.blog
micro_blog_verified = if settings.microblog_auth_endpoint
resp = HTTParty.post(settings.microblog_auth_endpoint, body: {
token: access_token
})
decoded_response = JSON.parse(resp.body).transform_keys(&:to_sym)
!decoded_response.include? :error
end
halt 401 unless (decoded_response.include? :scope) && (decoded_response.include? :me)
halt 401 unless indie_auth_verified || micro_blog_verified
decoded_response[:scope].gsub("post", "create").split.map(&:to_sym)
end