default.rb 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. #
  2. # Author:: Noah Kantrowitz <noah@opscode.com>
  3. # Cookbook Name:: application
  4. # Resource:: default
  5. #
  6. # Copyright:: 2011-2012, 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, :force_deploy
  28. attribute :name, :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 :scm_provider, :kind_of => [Class, String, Symbol]
  35. attribute :revision, :kind_of => String
  36. attribute :repository, :kind_of => String
  37. attribute :enable_submodules, :kind_of => [TrueClass, FalseClass], :default => false
  38. attribute :environment, :kind_of => Hash, :default => {}
  39. attribute :deploy_key, :kind_of => [String, NilClass], :default => nil
  40. attribute :shallow_clone, :kind_of => [TrueClass, FalseClass], :default => true
  41. attribute :force, :kind_of => [TrueClass, FalseClass], :default => false
  42. attribute :rollback_on_error, :kind_of => [TrueClass, FalseClass], :default => true
  43. attribute :purge_before_symlink, :kind_of => Array, :default => []
  44. attribute :create_dirs_before_symlink, :kind_of => Array, :default => []
  45. attribute :symlinks, :kind_of => Hash, :default => {}
  46. attribute :symlink_before_migrate, :kind_of => Hash, :default => {}
  47. attribute :migrate, :kind_of => [TrueClass, FalseClass], :default => false
  48. attribute :migration_command, :kind_of => [String, NilClass], :default => nil
  49. attribute :restart_command, :kind_of => [String, NilClass], :default => nil
  50. attribute :packages, :kind_of => [Array, Hash], :default => []
  51. attribute :application_provider
  52. attr_reader :sub_resources
  53. # Callback fires before deploy is started.
  54. def before_deploy(arg=nil, &block)
  55. arg ||= block
  56. set_or_return(:before_deploy, arg, :kind_of => [Proc, String])
  57. end
  58. # Callback fires before migration is run.
  59. def before_migrate(arg=nil, &block)
  60. arg ||= block
  61. set_or_return(:before_migrate, arg, :kind_of => [Proc, String])
  62. end
  63. # Callback fires before symlinking
  64. def before_symlink(arg=nil, &block)
  65. arg ||= block
  66. set_or_return(:before_symlink, arg, :kind_of => [Proc, String])
  67. end
  68. # Callback fires before restart
  69. def before_restart(arg=nil, &block)
  70. arg ||= block
  71. set_or_return(:before_restart, arg, :kind_of => [Proc, String])
  72. end
  73. # Callback fires after restart
  74. def after_restart(arg=nil, &block)
  75. arg ||= block
  76. set_or_return(:after_restart, arg, :kind_of => [Proc, String])
  77. end
  78. def release_path
  79. application_provider.release_path
  80. end
  81. def shared_path
  82. application_provider.shared_path
  83. end
  84. def method_missing(name, *args, &block)
  85. # Build the set of names to check for a valid resource
  86. lookup_path = ["application_#{name}"]
  87. run_context.cookbook_collection.each do |cookbook_name, cookbook_ver|
  88. if cookbook_name.start_with?("application_")
  89. lookup_path << "#{cookbook_name}_#{name}"
  90. end
  91. end
  92. lookup_path << name
  93. resource = nil
  94. # Try to find our resource
  95. lookup_path.each do |resource_name|
  96. begin
  97. Chef::Log.debug "Trying to load application resource #{resource_name} for #{name}"
  98. resource = super(resource_name.to_sym, self.name, &block)
  99. break
  100. rescue NameError => e
  101. # Works on any MRI ruby
  102. if e.name == resource_name.to_sym || e.inspect =~ /\b#{resource_name}\b/
  103. next
  104. else
  105. raise e
  106. end
  107. end
  108. end
  109. raise NameError, "No resource found for #{name}. Tried #{lookup_path.join(', ')}" unless resource
  110. # Enforce action :nothing in case people forget
  111. resource.action :nothing
  112. # Make this a weakref to prevent a cycle between the application resource and the sub resources
  113. resource.application WeakRef.new(self)
  114. resource.type name
  115. @sub_resources << resource
  116. resource
  117. end
  118. def do_i_respond_to?(*args)
  119. name = args.first.to_s
  120. # Build the set of names to check for a valid resource
  121. lookup_path = ["application_#{name}"]
  122. run_context.cookbook_collection.each do |cookbook_name, cookbook_ver|
  123. if cookbook_name.start_with?("application_")
  124. lookup_path << "#{cookbook_name}_#{name}"
  125. end
  126. end
  127. lookup_path << name
  128. found = false
  129. # Try to find our resource
  130. lookup_path.each do |resource_name|
  131. begin
  132. Chef::Log.debug "Looking for application resource #{resource_name} for #{name}"
  133. Chef::Resource.resource_for_node(resource_name.to_sym, node)
  134. found = true
  135. break
  136. rescue NameError => e
  137. # Keep calm and carry on
  138. end
  139. end
  140. found
  141. end
  142. # If we are using a current version of ruby, use respond_to_missing?
  143. # instead of respond_to? so we provide proper behavior
  144. if(Gem::Version.new(RUBY_VERSION.dup) >= Gem::Version.new('1.9.1'))
  145. def respond_to_missing?(*args)
  146. super || do_i_respond_to?(*args)
  147. end
  148. else
  149. def respond_to?(*args)
  150. super || do_i_respond_to?(*args)
  151. end
  152. end
  153. def to_ary
  154. nil
  155. end
  156. alias :to_a :to_ary