summaryrefslogtreecommitdiff
path: root/lib/chef/knife/data_bag_edit.rb
blob: ba39207db12efe558c772e9ad127cdcfb3b07749 (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
#
# Author:: Adam Jacob (<adam@chef.io>)
# Author:: Seth Falcon (<seth@chef.io>)
# Copyright:: Copyright 2009-2016, 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.
#

require "chef/knife"
require "chef/knife/data_bag_secret_options"

class Chef
  class Knife
    class DataBagEdit < Knife
      include DataBagSecretOptions

      deps do
        require "chef/data_bag_item"
        require "chef/encrypted_data_bag_item"
      end

      banner "knife data bag edit BAG ITEM (options)"
      category "data bag"

      def load_item(bag, item_name)
        item = Chef::DataBagItem.load(bag, item_name)
        if encrypted?(item.raw_data)
          if encryption_secret_provided_ignore_encrypt_flag?
            return Chef::EncryptedDataBagItem.new(item, read_secret).to_hash, true
          else
            ui.fatal("You cannot edit an encrypted data bag without providing the secret.")
            exit(1)
          end
        else
          return item, false
        end
      end

      def run
        if @name_args.length != 2
          stdout.puts "You must supply the data bag and an item to edit!"
          stdout.puts opt_parser
          exit 1
        end

        item, was_encrypted = load_item(@name_args[0], @name_args[1])
        edited_item = edit_data(item)

        if was_encrypted || encryption_secret_provided?
          ui.info("Encrypting data bag using provided secret.")
          item_to_save = Chef::EncryptedDataBagItem.encrypt_data_bag_item(edited_item, read_secret)
        else
          ui.info("Saving data bag unencrypted.  To encrypt it, provide an appropriate secret.")
          item_to_save = edited_item
        end

        rest.put("data/#{@name_args[0]}/#{@name_args[1]}", item_to_save)
        stdout.puts("Saved data_bag_item[#{@name_args[1]}]")
        ui.output(edited_item) if config[:print_after]
      end
    end
  end
end