2022-03-01 15:48:58 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ScopeParser < Parslet::Parser
|
2023-07-04 16:58:23 +00:00
|
|
|
rule(:term) { match('[a-z_]').repeat(1).as(:term) }
|
2022-03-01 15:48:58 +00:00
|
|
|
rule(:colon) { str(':') }
|
|
|
|
rule(:access) { (str('write') | str('read')).as(:access) }
|
|
|
|
rule(:namespace) { str('admin').as(:namespace) }
|
|
|
|
rule(:scope) { ((namespace >> colon).maybe >> ((access >> colon >> term) | access | term)).as(:scope) }
|
|
|
|
root(:scope)
|
|
|
|
end
|