summaryrefslogtreecommitdiff
path: root/knife/lib/chef/knife/org_user_remove.rb
blob: 7d9322b5af2cb4b875d2facb44e229cf581e58d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
#
# Author:: Marc Paradise (<marc@getchef.com>)
# Copyright:: Copyright (c) Chef Software Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

class Chef
  class Knife
    class OrgUserRemove < Knife
      category "CHEF ORGANIZATION MANAGEMENT"
      banner "knife org user remove ORG_NAME USER_NAME"
      attr_accessor :org_name, :username

      option :force_remove_from_admins,
        long: "--force",
        short: "-f",
        description: "Force removal of user from the organization's admins and billing-admins group."

      deps do
        require "chef/org" unless defined?(Chef::Org)
        require "chef/json_compat" unless defined?(Chef::JSONCompat)
      end

      def run
        @org_name, @username = @name_args

        if !org_name || !username
          ui.fatal "You must specify an ORG_NAME and USER_NAME"
          show_usage
          exit 1
        end

        org = Chef::Org.new(@org_name)

        if config[:force_remove_from_admins]
          if org.actor_delete_would_leave_admins_empty?
            failure_error_message(org_name, username)
            ui.msg <<~EOF
              You ran with --force which force removes the user from the admins and billing-admins groups.
              However, removing #{username} from the admins group would leave it empty, which breaks the org.
              Please add another user to org #{org_name} admins group and try again.
            EOF
            exit 1
          end
          remove_user_from_admin_group(org, org_name, username, "admins")
          remove_user_from_admin_group(org, org_name, username, "billing-admins")
        end

        begin
          org.dissociate_user(@username)
        rescue Net::HTTPClientException => e
          if e.response.code == "404"
            ui.msg "User #{username} is not associated with organization #{org_name}"
            exit 1
          elsif e.response.code == "403"
            body = Chef::JSONCompat.from_json(e.response.body)
            if body.key?("error") && body["error"] == "Please remove #{username} from this organization's admins group before removing him or her from the organization."
              failure_error_message(org_name, username)
              ui.msg <<~EOF
                User #{username} is in the organization's admin group. Removing users from an organization without removing them from the admins group is not allowed.
                Re-run this command with --force to remove this user from the admins prior to removing it from the organization.
              EOF
              exit 1
            else
              raise e
            end
          else
            raise e
          end
        end
      end

      def failure_error_message(org_name, username)
        ui.error "Error removing user #{username} from organization #{org_name}."
      end

      def remove_user_from_admin_group(org, org_name, username, admin_group_string)
        org.remove_user_from_group(admin_group_string, username)
      rescue Net::HTTPClientException => e
        if e.response.code == "404"
          ui.warn <<~EOF
            User #{username} is not in the #{admin_group_string} group for organization #{org_name}.
            You probably don't need to pass --force.
          EOF
        else
          raise e
        end
      end
    end
  end
end