default.rb 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. #
  2. # Author:: Noah Kantrowitz <noah@opscode.com>
  3. # Cookbook Name:: application
  4. # Resource:: default
  5. #
  6. # Copyright:: 2011, Opscode, Inc <legal@opscode.com>
  7. #
  8. # Licensed under the Apache License, Version 2.0 (the "License");
  9. # you may not use this file except in compliance with the License.
  10. # You may obtain a copy of the License at
  11. #
  12. # http://www.apache.org/licenses/LICENSE-2.0
  13. #
  14. # Unless required by applicable law or agreed to in writing, software
  15. # distributed under the License is distributed on an "AS IS" BASIS,
  16. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  17. # See the License for the specific language governing permissions and
  18. # limitations under the License.
  19. #
  20. require 'weakref'
  21. include Chef::Mixin::RecipeDefinitionDSLCore
  22. def initialize(*args)
  23. super
  24. @action = :deploy
  25. @sub_resources = []
  26. end
  27. actions :deploy, :remove
  28. attribute :id, :kind_of => String, :name_attribute => true
  29. attribute :environment_name, :kind_of => String, :default => (node.chef_environment =~ /_default/ ? "production" : node.chef_environment)
  30. attribute :path, :kind_of => String
  31. attribute :owner, :kind_of => String
  32. attribute :group, :kind_of => String
  33. attribute :strategy, :kind_of => [String, Symbol], :default => :deploy_revision
  34. attribute :revision, :kind_of => String
  35. attribute :repository, :kind_of => String
  36. attribute :environment, :kind_of => Hash, :default => {}
  37. attribute :deploy_key, :kind_of => [String, NilClass], :default => nil
  38. attribute :force, :kind_of => [TrueClass, FalseClass], :default => false
  39. attribute :purge_before_symlink, :kind_of => Array, :default => []
  40. attribute :create_dirs_before_symlink, :kind_of => Array, :default => []
  41. attribute :symlinks, :kind_of => Hash, :default => {}
  42. attribute :symlink_before_migrate, :kind_of => Hash, :default => {}
  43. attribute :migrate, :kind_of => [TrueClass, FalseClass], :default => false
  44. attribute :migration_command, :kind_of => [String, NilClass], :default => nil
  45. attribute :restart_command, :kind_of => [String, NilClass], :default => nil
  46. attribute :packages, :kind_of => [Array, Hash], :default => []
  47. attr_reader :sub_resources
  48. # Callback fires before deploy is started.
  49. def before_deploy(arg=nil, &block)
  50. arg ||= block
  51. set_or_return(:before_deploy, arg, :kind_of => [Proc, String])
  52. end
  53. # Callback fires before migration is run.
  54. def before_migrate(arg=nil, &block)
  55. arg ||= block
  56. set_or_return(:before_migrate, arg, :kind_of => [Proc, String])
  57. end
  58. # Callback fires before symlinking
  59. def before_symlink(arg=nil, &block)
  60. arg ||= block
  61. set_or_return(:before_symlink, arg, :kind_of => [Proc, String])
  62. end
  63. # Callback fires before restart
  64. def before_restart(arg=nil, &block)
  65. arg ||= block
  66. set_or_return(:before_restart, arg, :kind_of => [Proc, String])
  67. end
  68. # Callback fires after restart
  69. def after_restart(arg=nil, &block)
  70. arg ||= block
  71. set_or_return(:after_restart, arg, :kind_of => [Proc, String])
  72. end
  73. def method_missing(name, &block)
  74. begin
  75. resource = super("application_#{name.to_s}", id, &block)
  76. rescue NoMethodError
  77. resource = super(name, id, &block)
  78. end
  79. # Enforce action :nothing in case people forget
  80. resource.action :nothing
  81. # Make this a weakref to prevent a cycle between the application resource and the sub resources
  82. resource.application WeakRef.new(self)
  83. @sub_resources << resource
  84. resource
  85. end