openstreetmap-website/lib/oauth.rb
2025-02-15 19:20:09 +03:00

27 lines
661 B
Ruby

module Oauth
SCOPES = %w[
read_prefs write_prefs write_diary
write_api write_changeset_comments read_gpx write_gpx write_notes write_redactions write_blocks
consume_messages send_messages openid
].freeze
PRIVILEGED_SCOPES = %w[read_email skip_authorization].freeze
MODERATOR_SCOPES = %w[write_redactions write_blocks].freeze
class Scope
attr_reader :name
def initialize(name)
@name = name
end
def description
I18n.t("oauth.scopes.#{name}")
end
end
def self.scopes(privileged: false)
scopes = SCOPES
scopes += PRIVILEGED_SCOPES if privileged
scopes.collect { |s| Scope.new(s) }
end
end