privilege.py 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. #
  2. # Copyright 2019 The FATE Authors. All Rights Reserved.
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. #
  16. import click
  17. from flow_client.flow_cli.utils import cli_args
  18. from flow_client.flow_cli.utils.cli_utils import preprocess, access_server
  19. @click.group(short_help="Privilege Operations")
  20. @click.pass_context
  21. def privilege(ctx):
  22. """
  23. \b
  24. Provides numbers of privilege operational commands, including grant, query and delete.
  25. For more details, please check out the help text.
  26. """
  27. pass
  28. @privilege.command("grant", short_help="Grant Privilege Command")
  29. @cli_args.CONF_PATH
  30. @click.pass_context
  31. def grant(ctx, **kwargs):
  32. """
  33. - DESCRIPTION:
  34. \b
  35. grant component | dataset privilege
  36. \b
  37. - USAGE:
  38. flow privilege grant -c fateflow/examples/permission/grant.json
  39. """
  40. config_data, dsl_data = preprocess(**kwargs)
  41. access_server('post', ctx, 'permission/grant', config_data)
  42. @privilege.command("delete", short_help="Delete Privilege Command")
  43. @cli_args.CONF_PATH
  44. @click.pass_context
  45. def delete(ctx, **kwargs):
  46. """
  47. - DESCRIPTION:
  48. \b
  49. delete component | dataset privilege
  50. \b
  51. - USAGE:
  52. flow privilege delete -c fateflow/examples/permission/delete.json
  53. """
  54. config_data, dsl_data = preprocess(**kwargs)
  55. access_server('post', ctx, 'permission/delete', config_data)
  56. @privilege.command("query", short_help="Query Privilege Command")
  57. @cli_args.PARTYID_REQUIRED
  58. @click.pass_context
  59. def query(ctx, **kwargs):
  60. """
  61. - DESCRIPTION:
  62. \b
  63. query component | dataset privilege
  64. \b
  65. - USAGE:
  66. flow privilege query -p 10000
  67. """
  68. config_data, dsl_data = preprocess(**kwargs)
  69. access_server('post', ctx, 'permission/query', config_data)