omnibus 3.2.2 → 4.0.0.beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (302) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +140 -10
  3. data/CHANGELOG.md +181 -8
  4. data/README.md +63 -35
  5. data/Rakefile +1 -1
  6. data/docs/omnibus-build-cache.md b/data/docs/Build → Cache.md +0 -0
  7. data/docs/Building on Debian.md +59 -0
  8. data/docs/Building on OSX.md +61 -35
  9. data/docs/Building on RHEL.md +74 -0
  10. data/docs/Building on Windows.md +40 -81
  11. data/features/commands/build.feature +1 -2
  12. data/features/commands/clean.feature +1 -1
  13. data/lib/omnibus.rb +111 -204
  14. data/lib/omnibus/build_version.rb +3 -20
  15. data/lib/omnibus/build_version_dsl.rb +2 -3
  16. data/lib/omnibus/builder.rb +103 -211
  17. data/lib/omnibus/cleaner.rb +5 -7
  18. data/lib/omnibus/cli.rb +1 -4
  19. data/lib/omnibus/cli/base.rb +9 -16
  20. data/lib/omnibus/compressor.rb +60 -0
  21. data/{spec/data/complicated/config/software/version-manifest.rb → lib/omnibus/compressors/base.rb} +17 -12
  22. data/lib/omnibus/compressors/dmg.rb +312 -0
  23. data/lib/omnibus/{null_builder.rb → compressors/null.rb} +10 -4
  24. data/lib/omnibus/compressors/tgz.rb +141 -0
  25. data/lib/omnibus/config.rb +89 -83
  26. data/lib/omnibus/core_extensions.rb +1 -0
  27. data/lib/omnibus/core_extensions/open_uri.rb +58 -0
  28. data/lib/omnibus/digestable.rb +9 -3
  29. data/lib/omnibus/exceptions.rb +116 -175
  30. data/lib/omnibus/fetcher.rb +97 -138
  31. data/lib/omnibus/fetchers/git_fetcher.rb +130 -165
  32. data/lib/omnibus/fetchers/net_fetcher.rb +205 -164
  33. data/lib/omnibus/fetchers/{s3_cache_fetcher.rb → null_fetcher.rb} +27 -17
  34. data/lib/omnibus/fetchers/path_fetcher.rb +74 -32
  35. data/lib/omnibus/file_syncer.rb +149 -0
  36. data/lib/omnibus/generator.rb +103 -32
  37. data/lib/omnibus/generator_files/.kitchen.yml.erb +5 -1
  38. data/lib/omnibus/generator_files/Gemfile.erb +13 -7
  39. data/lib/omnibus/generator_files/config/projects/project.rb.erb +28 -0
  40. data/lib/omnibus/generator_files/config/software/zlib.rb.erb +55 -0
  41. data/lib/omnibus/generator_files/omnibus.rb.erb +5 -7
  42. data/lib/omnibus/git_cache.rb +11 -13
  43. data/lib/omnibus/logger.rb +76 -22
  44. data/lib/omnibus/logging.rb +1 -1
  45. data/lib/omnibus/metadata.rb +264 -0
  46. data/lib/omnibus/ohai.rb +0 -51
  47. data/lib/omnibus/package.rb +4 -228
  48. data/lib/omnibus/packager.rb +71 -0
  49. data/lib/omnibus/packagers/base.rb +118 -176
  50. data/lib/omnibus/packagers/bff.rb +136 -0
  51. data/lib/omnibus/packagers/deb.rb +389 -0
  52. data/lib/omnibus/packagers/makeself.rb +114 -0
  53. data/lib/omnibus/packagers/msi.rb +346 -0
  54. data/lib/omnibus/packagers/pkg.rb +278 -0
  55. data/lib/omnibus/packagers/rpm.rb +438 -0
  56. data/lib/omnibus/packagers/solaris.rb +110 -0
  57. data/lib/omnibus/project.rb +263 -666
  58. data/lib/omnibus/publisher.rb +3 -3
  59. data/lib/omnibus/s3_cache.rb +21 -30
  60. data/lib/omnibus/software.rb +132 -271
  61. data/lib/omnibus/templating.rb +66 -0
  62. data/lib/omnibus/thread_pool.rb +109 -0
  63. data/lib/omnibus/util.rb +137 -15
  64. data/lib/omnibus/version.rb +1 -1
  65. data/omnibus.gemspec +2 -2
  66. data/resources/bff/gen.template.erb +22 -0
  67. data/resources/bff/postinstall.sh +0 -0
  68. data/resources/bff/unpostinstall.sh +0 -0
  69. data/resources/deb/conffiles.erb +3 -0
  70. data/resources/deb/control.erb +25 -0
  71. data/resources/deb/md5sums.erb +3 -0
  72. data/{lib/omnibus/generator_files/mac_dmg → resources/dmg}/background.png +0 -0
  73. data/resources/dmg/create_dmg.osascript.erb +17 -0
  74. data/{lib/omnibus/generator_files/mac_dmg → resources/dmg}/icon.png +0 -0
  75. data/{bin → resources/makeself}/makeself-header.sh +0 -0
  76. data/{bin → resources/makeself}/makeself.sh +0 -0
  77. data/{lib/omnibus/generator_files/package_scripts/makeselfinst.erb → resources/makeself/post_extract.sh.erb} +4 -4
  78. data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/LICENSE.rtf +0 -0
  79. data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/banner_background.bmp +0 -0
  80. data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/dialog_background.bmp +0 -0
  81. data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/project.ico +0 -0
  82. data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/project_16x16.ico +0 -0
  83. data/{lib/omnibus/generator_files/windows_msi → resources/msi}/assets/project_32x32.ico +0 -0
  84. data/{spec/fixtures/sample/files/windows_msi/Resources/localization-en-us.wxl → resources/msi/localization-en-us.wxl.erb} +3 -4
  85. data/resources/msi/parameters.wxi.erb +9 -0
  86. data/{lib/omnibus/generator_files/windows_msi → resources/msi}/source.wxs.erb +14 -15
  87. data/{lib/omnibus/generator_files/mac_pkg → resources/pkg}/background.png +0 -0
  88. data/resources/pkg/distribution.xml.erb +21 -0
  89. data/resources/pkg/license.html.erb +3 -0
  90. data/resources/pkg/welcome.html.erb +7 -0
  91. data/resources/rpm/rpmmacros.erb +3 -0
  92. data/resources/rpm/signing.erb +40 -0
  93. data/resources/rpm/spec.erb +70 -0
  94. data/spec/functional/builder_spec.rb +90 -111
  95. data/spec/functional/fetchers/git_fetcher_spec.rb +130 -0
  96. data/spec/functional/fetchers/net_fetcher_spec.rb +110 -0
  97. data/spec/functional/fetchers/path_fetcher_spec.rb +97 -0
  98. data/spec/functional/file_syncer_spec.rb +206 -0
  99. data/spec/functional/templating_spec.rb +73 -0
  100. data/spec/spec_helper.rb +31 -94
  101. data/spec/support/env_helpers.rb +20 -0
  102. data/spec/support/examples.rb +56 -0
  103. data/spec/support/file_helpers.rb +46 -0
  104. data/spec/support/git_helpers.rb +107 -0
  105. data/spec/support/logging_helpers.rb +33 -0
  106. data/spec/support/matchers.rb +36 -0
  107. data/spec/support/ohai_helpers.rb +22 -0
  108. data/spec/support/path_helpers.rb +19 -0
  109. data/spec/support/shell_helpers.rb +14 -0
  110. data/spec/unit/build_version_dsl_spec.rb +0 -17
  111. data/spec/unit/build_version_spec.rb +1 -19
  112. data/spec/unit/builder_spec.rb +158 -46
  113. data/spec/unit/compressor_spec.rb +45 -0
  114. data/spec/unit/compressors/base_spec.rb +26 -0
  115. data/spec/unit/compressors/dmg_spec.rb +291 -0
  116. data/spec/unit/compressors/null_spec.rb +23 -0
  117. data/spec/unit/compressors/tgz_spec.rb +67 -0
  118. data/spec/unit/config_spec.rb +27 -34
  119. data/spec/unit/digestable_spec.rb +4 -4
  120. data/spec/unit/fetchers/git_fetcher_spec.rb +110 -39
  121. data/spec/unit/fetchers/net_fetcher_spec.rb +182 -72
  122. data/spec/unit/fetchers/path_fetcher_spec.rb +111 -0
  123. data/spec/unit/generator_spec.rb +137 -0
  124. data/spec/unit/git_cache_spec.rb +24 -34
  125. data/spec/unit/library_spec.rb +21 -82
  126. data/spec/unit/metadata_spec.rb +207 -0
  127. data/spec/unit/ohai_spec.rb +0 -7
  128. data/spec/unit/omnibus_spec.rb +41 -36
  129. data/spec/unit/package_spec.rb +1 -216
  130. data/spec/unit/packagers/base_spec.rb +76 -190
  131. data/spec/unit/packagers/bff_spec.rb +160 -0
  132. data/spec/unit/packagers/deb_spec.rb +324 -0
  133. data/spec/unit/packagers/makeself_spec.rb +80 -0
  134. data/spec/unit/packagers/msi_spec.rb +267 -0
  135. data/spec/unit/packagers/pkg_spec.rb +219 -0
  136. data/spec/unit/packagers/rpm_spec.rb +328 -0
  137. data/spec/unit/project_spec.rb +217 -80
  138. data/spec/unit/publisher_spec.rb +6 -2
  139. data/spec/unit/publishers/artifactory_publisher_spec.rb +1 -1
  140. data/spec/unit/publishers/s3_publisher_spec.rb +1 -1
  141. data/spec/unit/s3_cacher_spec.rb +22 -5
  142. data/spec/unit/software_spec.rb +89 -232
  143. data/spec/unit/util_spec.rb +188 -0
  144. metadata +159 -402
  145. data/features/commands/_deprecated.feature +0 -84
  146. data/lib/omnibus/cleanroom.rb +0 -141
  147. data/lib/omnibus/cli/deprecated.rb +0 -132
  148. data/lib/omnibus/generator_files/mac_pkg/license.html.erb +0 -1
  149. data/lib/omnibus/generator_files/mac_pkg/welcome.html.erb +0 -9
  150. data/lib/omnibus/generator_files/project.rb.erb +0 -20
  151. data/lib/omnibus/generator_files/software/c-example.rb.erb +0 -42
  152. data/lib/omnibus/generator_files/software/erlang-example.rb.erb +0 -38
  153. data/lib/omnibus/generator_files/software/ruby-example.rb.erb +0 -24
  154. data/lib/omnibus/generator_files/windows_msi/localization-en-us.wxl.erb +0 -20
  155. data/lib/omnibus/generator_files/windows_msi/parameters.wxi.erb +0 -9
  156. data/lib/omnibus/packagers/mac_dmg.rb +0 -235
  157. data/lib/omnibus/packagers/mac_pkg.rb +0 -176
  158. data/lib/omnibus/packagers/windows_msi.rb +0 -109
  159. data/spec/data/complicated/config/patches/bzip2/makefile_take_env_vars.patch +0 -15
  160. data/spec/data/complicated/config/patches/couchdb/patch_for_couchjs_stack.patch +0 -19
  161. data/spec/data/complicated/config/patches/gd/gd-2.0.33-configure-libpng.patch +0 -100
  162. data/spec/data/complicated/config/patches/keepalived/keepalived-1.2.9_opscode_centos_5.patch +0 -15
  163. data/spec/data/complicated/config/patches/libedit/freebsd-vi-fix.patch +0 -24
  164. data/spec/data/complicated/config/patches/libiconv/libiconv-1.14_srclib_stdio.in.h-remove-gets-declarations.patch +0 -29
  165. data/spec/data/complicated/config/patches/libwrap/tcp_wrappers-7.6-makefile-dest-fix.patch +0 -35
  166. data/spec/data/complicated/config/patches/libwrap/tcp_wrappers-7.6-malloc-fix.patch +0 -13
  167. data/spec/data/complicated/config/patches/libwrap/tcp_wrappers-7.6-shared_lib_plus_plus-1.patch +0 -1035
  168. data/spec/data/complicated/config/patches/logrotate/logrotate_basedir_override.patch +0 -12
  169. data/spec/data/complicated/config/patches/ncurses/ncurses-5.9-solaris-xopen_source_extended-detection.patch +0 -11
  170. data/spec/data/complicated/config/patches/ncurses/ncurses-clang.patch +0 -42
  171. data/spec/data/complicated/config/patches/ncurses/patch-aa +0 -23
  172. data/spec/data/complicated/config/patches/ncurses/patch-ab +0 -44
  173. data/spec/data/complicated/config/patches/ncurses/patch-ac +0 -40
  174. data/spec/data/complicated/config/patches/ncurses/patch-ad +0 -12
  175. data/spec/data/complicated/config/patches/ncurses/patch-aix-configure +0 -23
  176. data/spec/data/complicated/config/patches/ncurses/patch-cxx_cursesf.h +0 -22
  177. data/spec/data/complicated/config/patches/ncurses/patch-cxx_cursesm.h +0 -22
  178. data/spec/data/complicated/config/patches/nrpe/fix_for_runit.patch +0 -64
  179. data/spec/data/complicated/config/patches/openssl/openssl-1.0.1f-do-not-build-docs.patch +0 -101
  180. data/spec/data/complicated/config/patches/postgresql/postgresql-9.1.2-configure-ncurses-fix.patch +0 -12
  181. data/spec/data/complicated/config/patches/ruby/patch-configure +0 -103
  182. data/spec/data/complicated/config/patches/ruby/ruby-aix-configure.patch +0 -10
  183. data/spec/data/complicated/config/patches/ruby/ruby-openssl-1.0.1c.patch +0 -42
  184. data/spec/data/complicated/config/patches/ruby/ruby_aix_1_9_3_448_ssl_EAGAIN.patch +0 -57
  185. data/spec/data/complicated/config/patches/ruby/rvm-cflags.patch +0 -27
  186. data/spec/data/complicated/config/projects/angrychef.rb +0 -32
  187. data/spec/data/complicated/config/projects/chef-windows.rb +0 -32
  188. data/spec/data/complicated/config/projects/chef.rb +0 -32
  189. data/spec/data/complicated/config/projects/chefdk-windows.rb +0 -41
  190. data/spec/data/complicated/config/projects/chefdk.rb +0 -44
  191. data/spec/data/complicated/config/software/appbundler.rb +0 -25
  192. data/spec/data/complicated/config/software/autoconf.rb +0 -35
  193. data/spec/data/complicated/config/software/automake.rb +0 -39
  194. data/spec/data/complicated/config/software/berkshelf.rb +0 -44
  195. data/spec/data/complicated/config/software/bundler.rb +0 -25
  196. data/spec/data/complicated/config/software/bzip2.rb +0 -46
  197. data/spec/data/complicated/config/software/cacerts.rb +0 -44
  198. data/spec/data/complicated/config/software/chef-client-msi.rb +0 -87
  199. data/spec/data/complicated/config/software/chef-gem.rb +0 -26
  200. data/spec/data/complicated/config/software/chef-vault.rb +0 -43
  201. data/spec/data/complicated/config/software/chef-windows.rb +0 -158
  202. data/spec/data/complicated/config/software/chef.rb +0 -170
  203. data/spec/data/complicated/config/software/chefdk.rb +0 -103
  204. data/spec/data/complicated/config/software/couchdb.rb +0 -53
  205. data/spec/data/complicated/config/software/curl.rb +0 -48
  206. data/spec/data/complicated/config/software/erlang.rb +0 -65
  207. data/spec/data/complicated/config/software/expat.rb +0 -21
  208. data/spec/data/complicated/config/software/fcgi.rb +0 -56
  209. data/spec/data/complicated/config/software/fcgiwrap.rb +0 -41
  210. data/spec/data/complicated/config/software/gd.rb +0 -56
  211. data/spec/data/complicated/config/software/gdbm.rb +0 -40
  212. data/spec/data/complicated/config/software/gecode.rb +0 -48
  213. data/spec/data/complicated/config/software/git.rb +0 -40
  214. data/spec/data/complicated/config/software/help2man.rb +0 -30
  215. data/spec/data/complicated/config/software/icu.rb +0 -40
  216. data/spec/data/complicated/config/software/jre.rb +0 -48
  217. data/spec/data/complicated/config/software/keepalived.rb +0 -43
  218. data/spec/data/complicated/config/software/libarchive.rb +0 -50
  219. data/spec/data/complicated/config/software/libedit.rb +0 -69
  220. data/spec/data/complicated/config/software/libffi.rb +0 -71
  221. data/spec/data/complicated/config/software/libgcc.rb +0 -39
  222. data/spec/data/complicated/config/software/libiconv.rb +0 -55
  223. data/spec/data/complicated/config/software/libjpeg.rb +0 -39
  224. data/spec/data/complicated/config/software/libpng.rb +0 -38
  225. data/spec/data/complicated/config/software/libtool.rb +0 -52
  226. data/spec/data/complicated/config/software/libwrap.rb +0 -50
  227. data/spec/data/complicated/config/software/libxml2.rb +0 -51
  228. data/spec/data/complicated/config/software/libxslt.rb +0 -52
  229. data/spec/data/complicated/config/software/libyaml-windows.rb +0 -43
  230. data/spec/data/complicated/config/software/libyaml.rb +0 -62
  231. data/spec/data/complicated/config/software/logrotate.rb +0 -41
  232. data/spec/data/complicated/config/software/makedepend.rb +0 -73
  233. data/spec/data/complicated/config/software/mysql2.rb +0 -42
  234. data/spec/data/complicated/config/software/nagios-plugins.rb +0 -53
  235. data/spec/data/complicated/config/software/nagios.rb +0 -66
  236. data/spec/data/complicated/config/software/ncurses.rb +0 -149
  237. data/spec/data/complicated/config/software/nginx.rb +0 -40
  238. data/spec/data/complicated/config/software/nodejs.rb +0 -44
  239. data/spec/data/complicated/config/software/nokogiri.rb +0 -55
  240. data/spec/data/complicated/config/software/nrpe.rb +0 -61
  241. data/spec/data/complicated/config/software/ohai.rb +0 -64
  242. data/spec/data/complicated/config/software/omnibus-ctl.rb +0 -34
  243. data/spec/data/complicated/config/software/openresty.rb +0 -67
  244. data/spec/data/complicated/config/software/openssl.rb +0 -158
  245. data/spec/data/complicated/config/software/pcre.rb +0 -42
  246. data/spec/data/complicated/config/software/perl-extutils-embed.rb +0 -15
  247. data/spec/data/complicated/config/software/perl-extutils-makemaker.rb +0 -15
  248. data/spec/data/complicated/config/software/perl.rb +0 -48
  249. data/spec/data/complicated/config/software/perl_pg_driver.rb +0 -12
  250. data/spec/data/complicated/config/software/php.rb +0 -41
  251. data/spec/data/complicated/config/software/pip.rb +0 -30
  252. data/spec/data/complicated/config/software/pkg-config.rb +0 -66
  253. data/spec/data/complicated/config/software/popt.rb +0 -47
  254. data/spec/data/complicated/config/software/postgresql.rb +0 -51
  255. data/spec/data/complicated/config/software/preparation.rb +0 -30
  256. data/spec/data/complicated/config/software/pygments.rb +0 -25
  257. data/spec/data/complicated/config/software/python.rb +0 -49
  258. data/spec/data/complicated/config/software/rabbitmq.rb +0 -36
  259. data/spec/data/complicated/config/software/rebar.rb +0 -36
  260. data/spec/data/complicated/config/software/redis.rb +0 -33
  261. data/spec/data/complicated/config/software/rsync.rb +0 -48
  262. data/spec/data/complicated/config/software/ruby-windows-devkit.rb +0 -30
  263. data/spec/data/complicated/config/software/ruby-windows.rb +0 -30
  264. data/spec/data/complicated/config/software/ruby.rb +0 -162
  265. data/spec/data/complicated/config/software/rubygems-customization.rb +0 -57
  266. data/spec/data/complicated/config/software/rubygems.rb +0 -37
  267. data/spec/data/complicated/config/software/runit.rb +0 -118
  268. data/spec/data/complicated/config/software/server-jre.rb +0 -46
  269. data/spec/data/complicated/config/software/setuptools.rb +0 -30
  270. data/spec/data/complicated/config/software/spawn-fcgi.rb +0 -40
  271. data/spec/data/complicated/config/software/sphinx.rb +0 -26
  272. data/spec/data/complicated/config/software/spidermonkey.rb +0 -60
  273. data/spec/data/complicated/config/software/sqitch.rb +0 -24
  274. data/spec/data/complicated/config/software/test-kitchen.rb +0 -39
  275. data/spec/data/complicated/config/software/unicorn.rb +0 -27
  276. data/spec/data/complicated/config/software/util-macros.rb +0 -46
  277. data/spec/data/complicated/config/software/xproto.rb +0 -46
  278. data/spec/data/complicated/config/software/yajl.rb +0 -30
  279. data/spec/data/complicated/config/software/zlib.rb +0 -67
  280. data/spec/data/overrides/bad_line.overrides +0 -3
  281. data/spec/data/overrides/good.overrides +0 -5
  282. data/spec/data/overrides/with_dupes.overrides +0 -4
  283. data/spec/data/projects/chefdk.rb +0 -41
  284. data/spec/data/projects/sample.rb +0 -13
  285. data/spec/data/software/erchef.rb +0 -42
  286. data/spec/data/software/zlib.rb +0 -67
  287. data/spec/fixtures/sample/files/mac_dmg/Resources/background.png +0 -0
  288. data/spec/fixtures/sample/files/mac_dmg/Resources/icon.png +0 -0
  289. data/spec/fixtures/sample/files/mac_pkg/Resources/background.png +0 -0
  290. data/spec/fixtures/sample/files/mac_pkg/Resources/license.html +0 -1
  291. data/spec/fixtures/sample/files/mac_pkg/Resources/welcome.html +0 -9
  292. data/spec/fixtures/sample/files/windows_msi/Resources/assets/LICENSE.rtf +0 -8
  293. data/spec/fixtures/sample/files/windows_msi/Resources/assets/banner_background.bmp +0 -0
  294. data/spec/fixtures/sample/files/windows_msi/Resources/assets/dialog_background.bmp +0 -0
  295. data/spec/fixtures/sample/files/windows_msi/Resources/assets/project.ico +0 -0
  296. data/spec/fixtures/sample/files/windows_msi/Resources/assets/project_16x16.ico +0 -0
  297. data/spec/fixtures/sample/files/windows_msi/Resources/assets/project_32x32.ico +0 -0
  298. data/spec/fixtures/sample/files/windows_msi/Resources/parameters.wxi.erb +0 -9
  299. data/spec/fixtures/sample/files/windows_msi/Resources/source.wxs +0 -74
  300. data/spec/integration/packagers/mac_spec.rb +0 -58
  301. data/spec/integration/packagers/windows_spec.rb +0 -70
  302. data/spec/unit/packagers/mac_pkg_spec.rb +0 -151
@@ -14,219 +14,260 @@
14
14
  # limitations under the License.
15
15
  #
16
16
 
17
- require 'net/http'
18
- require 'net/https'
19
- require 'net/ftp'
17
+ require 'fileutils'
18
+ require 'open-uri'
20
19
 
21
20
  module Omnibus
22
- class UnsupportedURIScheme < ArgumentError
23
- end
24
-
25
- class InvalidSourceFile < RuntimeError
26
- end
27
-
28
- # Fetcher Implementation for HTTP and FTP hosted tarballs
29
21
  class NetFetcher < Fetcher
30
- attr_reader :name
31
- attr_reader :project_file
32
- attr_reader :source
33
- attr_reader :source_uri
34
- attr_reader :project_dir
35
-
36
22
  # Use 7-zip to extract 7z/zip for Windows
37
23
  WIN_7Z_EXTENSIONS = %w(.7z .zip)
38
24
 
39
25
  # tar probably has compression scheme linked in, otherwise for tarballs
40
26
  TAR_EXTENSIONS = %w(.tar .tar.gz .tgz .bz2 .tar.xz .txz)
41
27
 
42
- def initialize(software)
43
- @name = software.name
44
- @checksum = software.checksum
45
- @source = software.source
46
- @project_file = software.project_file
47
- @source_uri = software.source_uri
48
- @project_dir = software.project_dir
49
- super
50
- end
51
-
52
- def description
53
- <<-EOH.gsub(/^ {8}/, '').strip
54
- source URI: #{source_uri}
55
- checksum: #{@checksum}
56
- local location: #{@project_file}
57
- EOH
28
+ #
29
+ # A fetch is required if the downloaded_file (such as a tarball) does not
30
+ # exist on disk, or if the checksum of the downloaded file is different
31
+ # than the given checksum.
32
+ #
33
+ # @return [true, false]
34
+ #
35
+ def fetch_required?
36
+ !(File.exist?(downloaded_file) && digest(downloaded_file, :md5) == checksum)
58
37
  end
59
38
 
39
+ #
40
+ # The version identifier for this remote location. This is computed using
41
+ # the name of the software, the version of the software, and the checksum.
42
+ #
43
+ # @return [String]
44
+ #
60
45
  def version_guid
61
- "md5:#{@checksum}"
62
- end
63
-
64
- def fetch_required?
65
- !File.exist?(project_file) || Digest::MD5.file(project_file) != @checksum
46
+ "md5:#{checksum}"
66
47
  end
67
48
 
49
+ #
50
+ # Clean the project directory by removing the contents from disk.
51
+ #
52
+ # @return [true, false]
53
+ # true if the project directory was removed, false otherwise
54
+ #
68
55
  def clean
69
56
  if File.exist?(project_dir)
70
- log.info(log_key) { "Cleaning existing build from #{project_dir}" }
71
-
57
+ log.info(log_key) { "Cleaning project directory `#{project_dir}'" }
72
58
  FileUtils.rm_rf(project_dir)
59
+ extract
60
+ true
61
+ else
62
+ extract
63
+ false
73
64
  end
74
- extract
75
65
  end
76
66
 
67
+ #
68
+ # Fetch the given software definition. This method **always** fetches the
69
+ # file, even if it already exists on disk! You should use {#fetch_required?}
70
+ # to guard against this check in your implementation.
71
+ #
72
+ # @return [void]
73
+ #
77
74
  def fetch
78
- if fetch_required?
79
- download
80
- verify_checksum!
81
- else
82
- log.debug(log_key) { 'Cached copy of source tarball up to date' }
83
- end
75
+ log.info(log_key) { "Downloading from `#{download_url}'" }
76
+
77
+ create_required_directories
78
+ download
79
+ verify_checksum!
80
+ extract
84
81
  end
85
82
 
86
- def get_with_redirect(url, headers, limit = 10)
87
- raise ArgumentError, 'HTTP redirect too deep' if limit == 0
88
- log.info(log_key) { "Getting from #{url} with #{limit} redirects left" }
83
+ #
84
+ # The version for this item in the cache. The is the md5 of downloaded file
85
+ # and the URL where it was downloaded from.
86
+ #
87
+ # @return [String]
88
+ #
89
+ def version_for_cache
90
+ "download_url:#{source[:url]}|md5:#{source[:md5]}"
91
+ end
89
92
 
90
- url = URI.parse(url) unless url.kind_of?(URI)
93
+ #
94
+ # The path on disk to the downloaded asset. This method requires the
95
+ # presence of a +source_uri+.
96
+ #
97
+ # @return [String]
98
+ #
99
+ def downloaded_file
100
+ filename = File.basename(source[:url], '?*')
101
+ File.join(Config.cache_dir, filename)
102
+ end
91
103
 
92
- req = Net::HTTP::Get.new(url.request_uri, headers)
104
+ #
105
+ # The checksum (+md5+) as defined by the user in the software definition.
106
+ #
107
+ # @return [String]
108
+ #
109
+ def checksum
110
+ source[:md5]
111
+ end
93
112
 
94
- http_client = if http_proxy && !excluded_from_proxy?(url.host)
95
- Net::HTTP::Proxy(http_proxy.host, http_proxy.port, http_proxy.user, http_proxy.password).new(url.host, url.port)
96
- else
97
- Net::HTTP.new(url.host, url.port)
98
- end
99
- http_client.use_ssl = (url.scheme == 'https')
113
+ private
100
114
 
101
- response = http_client.start { |http| http.request(req) }
102
- case response
103
- when Net::HTTPSuccess
104
- open(project_file, 'wb') do |f|
105
- f.write(response.body)
106
- end
107
- when Net::HTTPRedirection
108
- get_with_redirect(response['location'], headers, limit - 1)
115
+ #
116
+ # The URL from which to download the software - this comes from the
117
+ # software's +source :url+ value.
118
+ #
119
+ # If S3 caching is enabled, this is the download URL for the software from
120
+ # the S3 bucket as defined in the {Config}.
121
+ #
122
+ # @return [String]
123
+ #
124
+ def download_url
125
+ if Config.use_s3_caching
126
+ "http://#{Config.s3_bucket}.s3.amazonaws.com/#{S3Cache.key_for(software)}"
109
127
  else
110
- response.error!
128
+ source[:url]
111
129
  end
112
130
  end
113
131
 
114
- # search environment variable as given, all lowercase and all upper case
115
- def get_env(name)
116
- ENV[name] || ENV[name.downcase] || ENV[name.upcase] || nil
117
- end
132
+ #
133
+ # Download the given file using Ruby's +OpenURI+ implementation. This method
134
+ # may emit warnings as defined in software definitions using the +:warning+
135
+ # key.
136
+ #
137
+ # @return [void]
138
+ #
139
+ def download
140
+ log.warn(log_key) { source[:warning] } if source.key?(:warning)
118
141
 
119
- # constructs a http_proxy uri from HTTP_PROXY* env vars
120
- def http_proxy
121
- @http_proxy ||= begin
122
- proxy = get_env('HTTP_PROXY') || return
123
- proxy = "http://#{proxy}" unless proxy =~ /^https?:/
124
- uri = URI.parse(proxy)
125
- uri.user ||= get_env('HTTP_PROXY_USER')
126
- uri.password ||= get_env('HTTP_PROXY_PASS')
127
- uri
142
+ headers = download_headers
143
+
144
+ if source[:unsafe]
145
+ log.warn(log_key) { "Permitting unsafe redirects!" }
146
+ headers[:allow_unsafe_redirects] = true
128
147
  end
129
- end
130
148
 
131
- # return true if the host is excluded from proxying via the no_proxy directive.
132
- # the 'no_proxy' variable contains a list of host suffixes separated by comma
133
- # example: example.com,www.examle.org,localhost
134
- def excluded_from_proxy?(host)
135
- no_proxy = get_env('no_proxy') || ''
136
- no_proxy.split(/\s*,\s*/).any? { |pattern| host.end_with? pattern }
149
+ file = open(download_url, headers)
150
+ FileUtils.cp(file.path, downloaded_file)
151
+ file.close
152
+ rescue SocketError,
153
+ Errno::ECONNREFUSED,
154
+ Errno::ECONNRESET,
155
+ Errno::ENETUNREACH,
156
+ OpenURI::HTTPError => e
157
+ log.error(log_key) { "Download failed - #{e.class}!" }
158
+ raise
137
159
  end
138
160
 
139
- def download
140
- tries = 5
141
- begin
142
- log.warn(log_key) { source[:warning] } if source.key?(:warning)
143
- log.info(log_key) { "Fetching #{project_file} from #{source_uri}" }
144
-
145
- case source_uri.scheme
146
- when /https?/
147
- headers = {
148
- 'accept-encoding' => '',
149
- }
150
- if source.key?(:cookie)
151
- headers['Cookie'] = source[:cookie]
152
- end
153
- get_with_redirect(source_uri, headers)
154
- when 'ftp'
155
- Net::FTP.open(source_uri.host) do |ftp|
156
- ftp.passive = true
157
- ftp.login
158
- ftp.getbinaryfile(source_uri.path, project_file)
159
- ftp.close
160
- end
161
- else
162
- raise UnsupportedURIScheme, "Don't know how to download from #{source_uri}"
163
- end
164
- rescue Exception
165
- tries -= 1
166
- if tries != 0
167
- log.debug(log_key) { "Retrying failed download (#{tries})..." }
168
- retry
161
+ #
162
+ # Extract the downloaded file, using the magical logic based off of the
163
+ # ending file extension. In the rare event the file cannot be extracted, it
164
+ # is copied over as a raw file.
165
+ #
166
+ def extract
167
+ if command = extract_command
168
+ log.info(log_key) { "Extracting `#{downloaded_file}' to `#{Config.source_dir}'" }
169
+ shellout!(extract_command)
170
+ else
171
+ log.info(log_key) { "`#{downloaded_file}' is not an archive - copying to `#{project_dir}'" }
172
+
173
+ if File.directory?(project_dir)
174
+ # If the file itself was a directory, copy the whole thing over. This
175
+ # seems unlikely, because I do not think it is a possible to download
176
+ # a folder, but better safe than sorry.
177
+ FileUtils.cp_r(downloaded_file, project_dir)
169
178
  else
170
- raise
179
+ # In the more likely case that we got a "regular" file, we want that
180
+ # file to live **inside** the project directory.
181
+ FileUtils.mkdir_p(project_dir)
182
+ FileUtils.cp(downloaded_file, "#{project_dir}/")
171
183
  end
172
184
  end
173
- rescue Exception => e
174
- ErrorReporter.new(e, self).explain("Failed to fetch source from #source_uri (#{e.class}: #{e.message.strip})")
175
- raise
176
185
  end
177
186
 
187
+ #
188
+ # Verify the downloaded file has the correct checksum.#
189
+ #
190
+ # @raise [ChecksumMismatch]
191
+ # if the checksum does not match
192
+ #
178
193
  def verify_checksum!
179
- actual_md5 = Digest::MD5.file(project_file)
180
- unless actual_md5 == @checksum
181
- log.warn(log_key) { "Invalid MD5 for #{@name}" }
182
- log.warn(log_key) { "Expected: #{@checksum}" }
183
- log.warn(log_key) { "Actual: #{actual_md5}" }
184
- raise InvalidSourceFile, "Checksum of downloaded file #{project_file} doesn't match expected"
194
+ log.info(log_key) { 'Verifying checksum' }
195
+
196
+ expected = checksum
197
+ actual = digest(downloaded_file, :md5)
198
+
199
+ if expected != actual
200
+ raise ChecksumMismatch.new(software, expected, actual)
185
201
  end
186
202
  end
187
203
 
188
- def extract
189
- log.info(log_key) do
190
- "Extracting the source in '#{project_file}' to '#{Config.source_dir}'"
191
- end
204
+ #
205
+ # The command to use for extracting this piece of software.
206
+ #
207
+ # @return [String, nil]
208
+ #
209
+ def extract_command
210
+ if Ohai['platform'] == 'windows' && downloaded_file.end_with?(*WIN_7Z_EXTENSIONS)
211
+ "7z.exe x #{windows_safe_path(downloaded_file)} -o#{Config.source_dir} -r -y"
212
+ elsif Ohai['platform'] != 'windows' && downloaded_file.end_with?('.7z')
213
+ "7z x #{windows_safe_path(downloaded_file)} -o#{Config.source_dir} -r -y"
214
+ elsif Ohai['platform'] != 'windows' && downloaded_file.end_with?('.zip')
215
+ "unzip #{windows_safe_path(downloaded_file)} -d #{Config.source_dir}"
216
+ elsif downloaded_file.end_with?(*TAR_EXTENSIONS)
217
+ compression_switch = 'z' if downloaded_file.end_with?('gz')
218
+ compression_switch = 'j' if downloaded_file.end_with?('bz2')
219
+ compression_switch = 'J' if downloaded_file.end_with?('xz')
220
+ compression_switch = '' if downloaded_file.end_with?('tar')
192
221
 
193
- cmd = extract_cmd
194
- case cmd
195
- when Proc
196
- cmd.call
197
- when String
198
- shellout!(cmd)
199
- else
200
- raise "Don't know how to extract command for #{cmd.class} class"
222
+ "#{tar} #{compression_switch}xf #{windows_safe_path(downloaded_file)} -C#{Config.source_dir}"
201
223
  end
202
- rescue Exception => e
203
- ErrorReporter.new(e, self).explain("Failed to unpack archive at #{project_file} (#{e.class}: #{e.message.strip})")
204
- raise
205
224
  end
206
225
 
207
- def extract_cmd
208
- if Ohai['platform'] == 'windows' && project_file.end_with?(*WIN_7Z_EXTENSIONS)
209
- "7z.exe x #{project_file} -o#{Config.source_dir} -r -y"
210
- elsif Ohai['platform'] != 'windows' && project_file.end_with?('.7z')
211
- "7z x #{project_file} -o#{Config.source_dir} -r -y"
212
- elsif Ohai['platform'] != 'windows' && project_file.end_with?('.zip')
213
- "unzip #{project_file} -d #{Config.source_dir}"
214
- elsif project_file.end_with?(*TAR_EXTENSIONS)
215
- compression_switch = 'z' if project_file.end_with?('gz')
216
- compression_switch = 'j' if project_file.end_with?('bz2')
217
- compression_switch = 'J' if project_file.end_with?('xz')
218
- compression_switch = '' if project_file.end_with?('tar')
219
- "tar #{compression_switch}xf #{project_file} -C#{Config.source_dir}"
220
- else
221
- # if we don't recognize the extension, simply copy over the file
222
- proc do
223
- log.debug(log_key) do
224
- "'#{project_file}' is not an archive. Copying to '#{project_dir}'..."
225
- end
226
- # WARNING: hack hack hack, no project dir yet
227
- FileUtils.mkdir_p(project_dir)
228
- FileUtils.cp(project_file, project_dir)
229
- end
226
+ #
227
+ # Primitively determine whether we should use gtar or tar to untar a file.
228
+ # If gtar is present, we will use gtar (AIX). Otherwise, we fallback to tar.
229
+ #
230
+ # @return [String]
231
+ #
232
+ def tar
233
+ Omnibus.which('gtar') ? 'gtar' : 'tar'
234
+ end
235
+
236
+ #
237
+ # The list of headers to pass to the download.
238
+ #
239
+ # @return [Hash]
240
+ #
241
+ def download_headers
242
+ {}.tap do |h|
243
+ # Alright kids, sit down while grandpa tells you a story. Back when the
244
+ # Internet was just a series of tubes, and you had to "dial in" using
245
+ # this thing called a "modem", ancient astronaunt theorists (computer
246
+ # scientists) invented gzip to compress requests sent over said tubes
247
+ # and make the Internet faster.
248
+ #
249
+ # Fast forward to the year of broadband - ungzipping these files was
250
+ # tedious and hard, so Ruby and other client libraries decided to do it
251
+ # for you:
252
+ #
253
+ # https://github.com/ruby/ruby/blob/c49ae7/lib/net/http.rb#L1031-L1033
254
+ #
255
+ # Meanwhile, software manufacturers began automatically compressing
256
+ # their software for distribution as a +.tar.gz+, publishing the
257
+ # appropriate checksums accordingly.
258
+ #
259
+ # But consider... If a software manufacturer is publishing the checksum
260
+ # for a gzipped tarball, and the client is automatically ungzipping its
261
+ # responses, then checksums can (read: should) never match! Herein lies
262
+ # the bug that took many hours away from the lives of a once-happy
263
+ # developer.
264
+ #
265
+ # TL;DR - Do not let Ruby ungzip our file
266
+ #
267
+ h['Accept-Encoding'] = 'identity'
268
+
269
+ # Set the cookie if one was given
270
+ h['Cookie'] = source[:cookie] if source[:cookie]
230
271
  end
231
272
  end
232
273
  end
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright 2013-2014 Chef Software, Inc.
2
+ # Copyright 2012-2014 Chef Software, Inc.
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License");
5
5
  # you may not use this file except in compliance with the License.
@@ -15,33 +15,43 @@
15
15
  #
16
16
 
17
17
  module Omnibus
18
- class S3CacheFetcher < NetFetcher
19
- def fetch
20
- log.info(log_key) do
21
- "S3 Cache enabled, '#{name}' will be fetched from S3 cache"
22
- end
23
-
24
- super
18
+ class NullFetcher < Fetcher
19
+ #
20
+ # @return [false]
21
+ #
22
+ def fetch_required?
23
+ true
25
24
  end
26
25
 
27
26
  #
28
- # The source URI for the software definition that is being fetched.
27
+ # @return [nil]
29
28
  #
30
- # @return [URI]
31
- #
32
- def source_uri
33
- URI.parse(url_for(@software))
29
+ def version_guid
30
+ nil
34
31
  end
35
32
 
36
- private
33
+ #
34
+ # @return [false]
35
+ #
36
+ def clean
37
+ false
38
+ end
37
39
 
38
40
  #
39
- # The URL for the cached software.
41
+ # @return [void]
42
+ #
43
+ def fetch
44
+ log.info(log_key) { "Fetching `#{software.name}' (nothing to fetch)" }
45
+
46
+ create_required_directories
47
+ nil
48
+ end
49
+
40
50
  #
41
51
  # @return [String]
42
52
  #
43
- def url_for(software)
44
- "http://#{Config.s3_bucket}.s3.amazonaws.com/#{S3Cache.key_for(software)}"
53
+ def version_for_cache
54
+ nil
45
55
  end
46
56
  end
47
57
  end