class KnifeSpork::Plugins::Slack
Public Instance Methods
after_databagcreate()
click to toggle source
# File lib/knife-spork/plugins/slack.rb, line 58 def after_databagcreate slack "#{organization}#{current_user} created data bag #{object_name}" end
after_databagdelete()
click to toggle source
# File lib/knife-spork/plugins/slack.rb, line 62 def after_databagdelete slack "#{organization}#{current_user} deleted data bag item #{object_name}" end
after_databagedit()
click to toggle source
# File lib/knife-spork/plugins/slack.rb, line 54 def after_databagedit slack "#{organization}#{current_user} edited data bag item #{object_name}:#{object_secondary_name}" end
after_databagfromfile()
click to toggle source
# File lib/knife-spork/plugins/slack.rb, line 70 def after_databagfromfile slack "#{organization}#{current_user} uploaded data bag item #{object_name}:#{object_secondary_name}" end
after_databagitemdelete()
click to toggle source
# File lib/knife-spork/plugins/slack.rb, line 66 def after_databagitemdelete slack "#{organization}#{current_user} deleted data bag item #{object_name}:#{object_secondary_name}" end
after_delete()
click to toggle source
# File lib/knife-spork/plugins/slack.rb, line 14 def after_delete slack "#{organization}#{current_user} deleted the following cookbooks: #{misc_output}" end
after_environmentcreate()
click to toggle source
# File lib/knife-spork/plugins/slack.rb, line 30 def after_environmentcreate slack "#{organization}#{current_user} created environment #{object_name}" end
after_environmentdelete()
click to toggle source
# File lib/knife-spork/plugins/slack.rb, line 34 def after_environmentdelete slack "#{organization}#{current_user} deleted environment #{object_name}" end
after_environmentedit()
click to toggle source
# File lib/knife-spork/plugins/slack.rb, line 26 def after_environmentedit slack "#{organization}#{current_user} edited environment #{object_name}" end
after_environmentfromfile()
click to toggle source
# File lib/knife-spork/plugins/slack.rb, line 22 def after_environmentfromfile slack "#{organization}#{current_user} uploaded environment #{object_name}" end
after_nodecreate()
click to toggle source
# File lib/knife-spork/plugins/slack.rb, line 82 def after_nodecreate slack "#{organization}#{current_user} created node #{object_name}" end
after_nodedelete()
click to toggle source
# File lib/knife-spork/plugins/slack.rb, line 78 def after_nodedelete slack "#{organization}#{current_user} deleted node #{object_name}" end
after_nodeedit()
click to toggle source
# File lib/knife-spork/plugins/slack.rb, line 74 def after_nodeedit slack "#{organization}#{current_user} edited node #{object_name}" end
after_nodefromfile()
click to toggle source
# File lib/knife-spork/plugins/slack.rb, line 86 def after_nodefromfile slack "#{organization}#{current_user} uploaded node #{object_name}" end
after_noderunlistadd()
click to toggle source
# File lib/knife-spork/plugins/slack.rb, line 90 def after_noderunlistadd slack "#{organization}#{current_user} added run_list items to #{object_name}: #{object_secondary_name}" end
after_noderunlistremove()
click to toggle source
# File lib/knife-spork/plugins/slack.rb, line 94 def after_noderunlistremove slack "#{organization}#{current_user} removed run_list items from #{object_name}: #{object_secondary_name}" end
after_noderunlistset()
click to toggle source
# File lib/knife-spork/plugins/slack.rb, line 98 def after_noderunlistset slack "#{organization}#{current_user} set the run_list for #{object_name} to #{object_secondary_name}" end
after_promote_remote()
click to toggle source
# File lib/knife-spork/plugins/slack.rb, line 18 def after_promote_remote slack "#{organization}#{current_user} promoted the following cookbooks:\n#{cookbooks.collect{ |c| " #{c.name}@#{c.version}" }.join("\n")} to #{environments.collect{ |e| "#{e.name}" }.join(", ")}" end
after_rolecreate()
click to toggle source
# File lib/knife-spork/plugins/slack.rb, line 46 def after_rolecreate slack "#{organization}#{current_user} created role #{object_name}" end
after_roledelete()
click to toggle source
# File lib/knife-spork/plugins/slack.rb, line 50 def after_roledelete slack "#{organization}#{current_user} deleted role #{object_name}" end
after_roleedit()
click to toggle source
# File lib/knife-spork/plugins/slack.rb, line 42 def after_roleedit slack "#{organization}#{current_user} edited role #{object_name}" end
after_rolefromfile()
click to toggle source
# File lib/knife-spork/plugins/slack.rb, line 38 def after_rolefromfile slack "#{organization}#{current_user} uploaded role #{object_name}" end
after_upload()
click to toggle source
# File lib/knife-spork/plugins/slack.rb, line 10 def after_upload slack "#{organization}#{current_user} uploaded the following cookbooks:\n#{cookbooks.collect{ |c| " #{c.name}@#{c.version}" }.join("\n")}" end
perform()
click to toggle source
# File lib/knife-spork/plugins/slack.rb, line 8 def perform; end
Private Instance Methods
channel()
click to toggle source
# File lib/knife-spork/plugins/slack.rb, line 115 def channel config.channel || '#random' end
slack(message)
click to toggle source
# File lib/knife-spork/plugins/slack.rb, line 104 def slack(message) safe_require 'slack-notifier' begin notifier = ::Slack::Notifier.new( config.webhook_url, channel: channel, username: username, icon_url: config.icon_url) notifier.ping message rescue Exception => e ui.error 'Something went wrong sending to Slack.' ui.error e.to_s end end
username()
click to toggle source
# File lib/knife-spork/plugins/slack.rb, line 119 def username config.username || 'KnifeSpork' end