-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Permission Set management (#203)
* chore: refactor permissions to permission * feat: ls permission sets * feat: cat, import, rm permission sets * fix: forgot to update unit test. * fix: display sub-subcommands in help properly
- Loading branch information
1 parent
c702a64
commit ef7355c
Showing
15 changed files
with
533 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
# The MIT License (MIT) | ||
|
||
# Copyright (c) 2023 Mike DeAngelo Google, Inc. | ||
|
||
# Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
# this software and associated documentation files (the "Software"), to deal in | ||
# the Software without restriction, including without limitation the rights to | ||
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | ||
# the Software, and to permit persons to whom the Software is furnished to do so, | ||
# subject to the following conditions: | ||
|
||
# The above copyright notice and this permission notice shall be included in all | ||
# copies or substantial portions of the Software. | ||
|
||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS | ||
# FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR | ||
# COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | ||
# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
|
||
# frozen_string_literal: true | ||
|
||
require_relative '../subcommandbase' | ||
|
||
module Gzr | ||
module Commands | ||
class Permission | ||
class Set < SubCommandBase | ||
|
||
namespace :'permission set' | ||
|
||
desc 'ls', 'List the permission sets in this server.' | ||
method_option :help, aliases: '-h', type: :boolean, | ||
desc: 'Display usage information' | ||
method_option :fields, type: :string, default: 'id,name,permissions,built_in,all_access', | ||
desc: 'Fields to display' | ||
method_option :plain, type: :boolean, default: false, | ||
desc: 'print without any extra formatting' | ||
method_option :csv, type: :boolean, default: false, | ||
desc: 'output in csv format per RFC4180' | ||
def ls(*) | ||
if options[:help] | ||
invoke :help, ['ls'] | ||
else | ||
require_relative 'set/ls' | ||
Gzr::Commands::Permission::Set::Ls.new(options).execute | ||
end | ||
end | ||
|
||
desc 'cat PERMISSION_SET_ID', 'Output json information about a permission set to screen or file' | ||
method_option :help, aliases: '-h', type: :boolean, | ||
desc: 'Display usage information' | ||
method_option :dir, type: :string, | ||
desc: 'Directory to store output file' | ||
method_option :trim, type: :boolean, | ||
desc: 'Trim output to minimal set of fields for later import' | ||
def cat(permission_set_id) | ||
if options[:help] | ||
invoke :help, ['cat'] | ||
else | ||
require_relative 'set/cat' | ||
Gzr::Commands::Permission::Set::Cat.new(permission_set_id,options).execute | ||
end | ||
end | ||
|
||
desc 'import FILE', 'Import a permission set from a file' | ||
method_option :help, aliases: '-h', type: :boolean, | ||
desc: 'Display usage information' | ||
method_option :force, type: :boolean, | ||
desc: 'Overwrite an existing permission set' | ||
method_option :plain, type: :boolean, default: false, | ||
desc: 'print without any extra formatting' | ||
def import(file) | ||
if options[:help] | ||
invoke :help, ['import'] | ||
else | ||
require_relative 'set/import' | ||
Gzr::Commands::Permission::Set::Import.new(file, options).execute | ||
end | ||
end | ||
|
||
desc 'rm PERMISSION_SET_ID', 'Delete the permission_set given by PERMISSION_SET_ID' | ||
method_option :help, aliases: '-h', type: :boolean, | ||
desc: 'Display usage information' | ||
def rm(permission_set_id) | ||
if options[:help] | ||
invoke :help, ['delete'] | ||
else | ||
require_relative 'set/rm' | ||
Gzr::Commands::Permission::Set::Delete.new(permission_set_id,options).execute | ||
end | ||
end | ||
|
||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# The MIT License (MIT) | ||
|
||
# Copyright (c) 2023 Mike DeAngelo Google, Inc. | ||
|
||
# Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
# this software and associated documentation files (the "Software"), to deal in | ||
# the Software without restriction, including without limitation the rights to | ||
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | ||
# the Software, and to permit persons to whom the Software is furnished to do so, | ||
# subject to the following conditions: | ||
|
||
# The above copyright notice and this permission notice shall be included in all | ||
# copies or substantial portions of the Software. | ||
|
||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS | ||
# FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR | ||
# COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | ||
# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
|
||
# frozen_string_literal: true | ||
|
||
require_relative '../../../command' | ||
require_relative '../../../modules/permission/set' | ||
require_relative '../../../modules/filehelper' | ||
|
||
module Gzr | ||
module Commands | ||
class Permission | ||
class Set | ||
class Cat < Gzr::Command | ||
include Gzr::Permission::Set | ||
include Gzr::FileHelper | ||
def initialize(permission_set_id,options) | ||
super() | ||
@permission_set_id = permission_set_id | ||
@options = options | ||
end | ||
|
||
def execute(input: $stdin, output: $stdout) | ||
say_warning(@options) if @options[:debug] | ||
with_session do | ||
data = cat_permission_set(@permission_set_id) | ||
if data.nil? | ||
say_warning "Permission Set #{permission_set_id} not found" | ||
return | ||
end | ||
data = trim_permission_set(data) if @options[:trim] | ||
|
||
write_file(@options[:dir] ? "Permission_Set_#{data[:name]}.json" : nil, @options[:dir],nil, output) do |f| | ||
f.puts JSON.pretty_generate(data) | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
# The MIT License (MIT) | ||
|
||
# Copyright (c) 2023 Mike DeAngelo Google, Inc. | ||
|
||
# Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
# this software and associated documentation files (the "Software"), to deal in | ||
# the Software without restriction, including without limitation the rights to | ||
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | ||
# the Software, and to permit persons to whom the Software is furnished to do so, | ||
# subject to the following conditions: | ||
|
||
# The above copyright notice and this permission notice shall be included in all | ||
# copies or substantial portions of the Software. | ||
|
||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS | ||
# FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR | ||
# COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | ||
# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
|
||
# frozen_string_literal: true | ||
|
||
require_relative '../../../../gzr' | ||
require_relative '../../../command' | ||
require_relative '../../../modules/permission/set' | ||
require_relative '../../../modules/filehelper' | ||
|
||
module Gzr | ||
module Commands | ||
class Permission | ||
class Set | ||
class Import < Gzr::Command | ||
include Gzr::Permission::Set | ||
include Gzr::FileHelper | ||
def initialize(file, options) | ||
super() | ||
@file = file | ||
@options = options | ||
end | ||
|
||
def execute(input: $stdin, output: $stdout) | ||
say_warning("options: #{@options.inspect}", output: output) if @options[:debug] | ||
with_session do | ||
permission_set = nil | ||
|
||
read_file(@file) do |data| | ||
search_results = search_permission_sets(name: data[:name]) | ||
if search_results && search_results.length == 1 | ||
name = data[:name] | ||
if !@options[:force] | ||
raise Gzr::CLI::Error, "Permission Set #{name} already exists\nUse --force if you want to overwrite it" | ||
end | ||
data.select! do |k,v| | ||
keys_to_keep('update_permission_set').include? k | ||
end | ||
permission_set = update_permission_set(search_results.first[:id], data) | ||
else | ||
data.select! do |k,v| | ||
keys_to_keep('create_permission_set').include? k | ||
end | ||
permission_set = create_permission_set(data) | ||
end | ||
output.puts "Imported permission set #{permission_set[:id]}" unless @options[:plain] | ||
output.puts permission_set[:id] if @options[:name] | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end |
Oops, something went wrong.