chef-server-slice 0.7.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (158) hide show
  1. data/LICENSE +201 -0
  2. data/README.rdoc +135 -0
  3. data/app/controllers/application.rb +228 -0
  4. data/app/controllers/cookbook_attributes.rb +59 -0
  5. data/app/controllers/cookbook_definitions.rb +60 -0
  6. data/app/controllers/cookbook_files.rb +94 -0
  7. data/app/controllers/cookbook_libraries.rb +60 -0
  8. data/app/controllers/cookbook_recipes.rb +59 -0
  9. data/app/controllers/cookbook_templates.rb +80 -0
  10. data/app/controllers/cookbooks.rb +63 -0
  11. data/app/controllers/exceptions.rb +33 -0
  12. data/app/controllers/main.rb +7 -0
  13. data/app/controllers/nodes.rb +144 -0
  14. data/app/controllers/openid_consumer.rb +133 -0
  15. data/app/controllers/openid_register.rb +113 -0
  16. data/app/controllers/openid_server.rb +252 -0
  17. data/app/controllers/roles.rb +138 -0
  18. data/app/controllers/search.rb +58 -0
  19. data/app/controllers/search_entries.rb +73 -0
  20. data/app/controllers/status.rb +34 -0
  21. data/app/helpers/application_helper.rb +144 -0
  22. data/app/helpers/cookbook_attributes_helper.rb +7 -0
  23. data/app/helpers/cookbook_definitions_helper.rb +8 -0
  24. data/app/helpers/cookbook_files_helper.rb +8 -0
  25. data/app/helpers/cookbook_libraries_helper.rb +7 -0
  26. data/app/helpers/cookbook_recipes_helper.rb +8 -0
  27. data/app/helpers/cookbook_templates_helper.rb +8 -0
  28. data/app/helpers/cookbooks_helper.rb +31 -0
  29. data/app/helpers/exceptions_helper.rb +6 -0
  30. data/app/helpers/global_helpers.rb +39 -0
  31. data/app/helpers/nodes_helper.rb +33 -0
  32. data/app/helpers/openid_consumer_helper.rb +8 -0
  33. data/app/helpers/openid_register_helper.rb +8 -0
  34. data/app/helpers/openid_server_helper.rb +6 -0
  35. data/app/helpers/openid_server_helpers.rb +29 -0
  36. data/app/helpers/roles_helper.rb +5 -0
  37. data/app/helpers/search_entries_helper.rb +8 -0
  38. data/app/helpers/search_helper.rb +38 -0
  39. data/app/helpers/status_helper.rb +26 -0
  40. data/app/views/cookbook_templates/index.html.haml +7 -0
  41. data/app/views/cookbooks/index.html.haml +10 -0
  42. data/app/views/cookbooks/show.html.haml +40 -0
  43. data/app/views/exceptions/bad_request.json.erb +1 -0
  44. data/app/views/exceptions/internal_server_error.html.erb +216 -0
  45. data/app/views/exceptions/not_acceptable.html.erb +63 -0
  46. data/app/views/exceptions/not_found.html.erb +47 -0
  47. data/app/views/exceptions/standard_error.html.erb +217 -0
  48. data/app/views/layout/chef_server_slice.html.haml +53 -0
  49. data/app/views/layout/login.html.haml +37 -0
  50. data/app/views/main/index.html.erb +1 -0
  51. data/app/views/nodes/_action.html.haml +13 -0
  52. data/app/views/nodes/_form.html.haml +56 -0
  53. data/app/views/nodes/_navigation.html.haml +9 -0
  54. data/app/views/nodes/_resource.html.haml +22 -0
  55. data/app/views/nodes/edit.html.haml +7 -0
  56. data/app/views/nodes/index.html.haml +25 -0
  57. data/app/views/nodes/new.html.haml +6 -0
  58. data/app/views/nodes/show.html.haml +60 -0
  59. data/app/views/openid_consumer/index.html.haml +23 -0
  60. data/app/views/openid_consumer/start.html.haml +4 -0
  61. data/app/views/openid_login/index.html.haml +5 -0
  62. data/app/views/openid_register/index.html.haml +19 -0
  63. data/app/views/openid_register/show.html.haml +7 -0
  64. data/app/views/openid_server/decide.html.haml +27 -0
  65. data/app/views/roles/_form.html.haml +48 -0
  66. data/app/views/roles/_navigation.html.haml +9 -0
  67. data/app/views/roles/edit.html.haml +6 -0
  68. data/app/views/roles/index.html.haml +22 -0
  69. data/app/views/roles/new.html.haml +6 -0
  70. data/app/views/roles/show.html.haml +29 -0
  71. data/app/views/search/_search_form.html.haml +6 -0
  72. data/app/views/search/index.html.haml +9 -0
  73. data/app/views/search/show.html.haml +14 -0
  74. data/app/views/search_entries/index.html.haml +8 -0
  75. data/app/views/search_entries/show.html.haml +7 -0
  76. data/app/views/status/index.html.haml +88 -0
  77. data/config/init.rb +48 -0
  78. data/config/router.rb +6 -0
  79. data/lib/chef-server-slice.rb +150 -0
  80. data/lib/chef-server-slice/merbtasks.rb +103 -0
  81. data/lib/chef-server-slice/slicetasks.rb +20 -0
  82. data/lib/chef-server-slice/spectasks.rb +53 -0
  83. data/public/facebox/README.txt +4 -0
  84. data/public/facebox/b.png +0 -0
  85. data/public/facebox/bl.png +0 -0
  86. data/public/facebox/br.png +0 -0
  87. data/public/facebox/closelabel.gif +0 -0
  88. data/public/facebox/facebox.css +95 -0
  89. data/public/facebox/facebox.js +319 -0
  90. data/public/facebox/loading.gif +0 -0
  91. data/public/facebox/tl.png +0 -0
  92. data/public/facebox/tr.png +0 -0
  93. data/public/images/avatar.png +0 -0
  94. data/public/images/black_big.png +0 -0
  95. data/public/images/indicator.gif +0 -0
  96. data/public/images/merb.jpg +0 -0
  97. data/public/images/toggle-collapse-dark.png +0 -0
  98. data/public/images/toggle-collapse-light.png +0 -0
  99. data/public/images/toggle-collapse.gif +0 -0
  100. data/public/images/toggle-expand-dark.png +0 -0
  101. data/public/images/toggle-expand-light.png +0 -0
  102. data/public/images/toggle-expand.gif +0 -0
  103. data/public/images/treeBuilderImages/Thumbs.db +0 -0
  104. data/public/images/treeBuilderImages/doc.gif +0 -0
  105. data/public/images/treeBuilderImages/docNode.gif +0 -0
  106. data/public/images/treeBuilderImages/docNodeLast.gif +0 -0
  107. data/public/images/treeBuilderImages/docNodeLastFirst.gif +0 -0
  108. data/public/images/treeBuilderImages/folder.gif +0 -0
  109. data/public/images/treeBuilderImages/folderNode.gif +0 -0
  110. data/public/images/treeBuilderImages/folderNodeFirst.gif +0 -0
  111. data/public/images/treeBuilderImages/folderNodeLast.gif +0 -0
  112. data/public/images/treeBuilderImages/folderNodeLastFirst.gif +0 -0
  113. data/public/images/treeBuilderImages/folderNodeOpen.gif +0 -0
  114. data/public/images/treeBuilderImages/folderNodeOpenFirst.gif +0 -0
  115. data/public/images/treeBuilderImages/folderNodeOpenLast.gif +0 -0
  116. data/public/images/treeBuilderImages/folderNodeOpenLastFirst.gif +0 -0
  117. data/public/images/treeBuilderImages/folderOpen.gif +0 -0
  118. data/public/images/treeBuilderImages/vertLine.gif +0 -0
  119. data/public/javascripts/JSONeditor.js +1171 -0
  120. data/public/javascripts/chef.js +126 -0
  121. data/public/javascripts/jquery-1.3.2.min.js +19 -0
  122. data/public/javascripts/jquery-ui-1.7.1.custom.min.js +65 -0
  123. data/public/javascripts/jquery.editinline.js +108 -0
  124. data/public/javascripts/jquery.jeditable.mini.js +30 -0
  125. data/public/javascripts/jquery.livequery.js +250 -0
  126. data/public/javascripts/jquery.localscroll.js +104 -0
  127. data/public/javascripts/jquery.scrollTo.js +150 -0
  128. data/public/javascripts/jquery.tools.min.js +17 -0
  129. data/public/javascripts/jquery.treeTable.min.js +165 -0
  130. data/public/stylesheets/base.css +336 -0
  131. data/public/stylesheets/chef.css +157 -0
  132. data/public/stylesheets/images/ui-bg_diagonals-small_0_aaaaaa_40x40.png +0 -0
  133. data/public/stylesheets/images/ui-bg_diagonals-thick_15_444444_40x40.png +0 -0
  134. data/public/stylesheets/images/ui-bg_glass_100_f0f0f0_1x400.png +0 -0
  135. data/public/stylesheets/images/ui-bg_glass_50_99c2ff_1x400.png +0 -0
  136. data/public/stylesheets/images/ui-bg_glass_55_fbf5d0_1x400.png +0 -0
  137. data/public/stylesheets/images/ui-bg_glass_80_e6e6e6_1x400.png +0 -0
  138. data/public/stylesheets/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  139. data/public/stylesheets/images/ui-bg_highlight-hard_100_f9f9f9_1x100.png +0 -0
  140. data/public/stylesheets/images/ui-bg_highlight-soft_100_e7eef3_1x100.png +0 -0
  141. data/public/stylesheets/images/ui-icons_222222_256x240.png +0 -0
  142. data/public/stylesheets/images/ui-icons_2694e8_256x240.png +0 -0
  143. data/public/stylesheets/images/ui-icons_2e83ff_256x240.png +0 -0
  144. data/public/stylesheets/images/ui-icons_72a7cf_256x240.png +0 -0
  145. data/public/stylesheets/images/ui-icons_888888_256x240.png +0 -0
  146. data/public/stylesheets/images/ui-icons_cd0a0a_256x240.png +0 -0
  147. data/public/stylesheets/images/ui-icons_ffffff_256x240.png +0 -0
  148. data/public/stylesheets/jquery-ui-1.7.1.custom.css +404 -0
  149. data/public/stylesheets/jquery.treeTable.css +43 -0
  150. data/public/stylesheets/themes/bec-green/style.css +290 -0
  151. data/public/stylesheets/themes/bec/style.css +301 -0
  152. data/public/stylesheets/themes/blue/style.css +280 -0
  153. data/public/stylesheets/themes/default/style.css +267 -0
  154. data/public/stylesheets/themes/djime-cerulean/style.css +298 -0
  155. data/public/stylesheets/themes/kathleene/style.css +272 -0
  156. data/public/stylesheets/themes/orange/style.css +263 -0
  157. data/public/stylesheets/themes/reidb-greenish/style.css +301 -0
  158. metadata +341 -0
data/LICENSE ADDED
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1,135 @@
1
+ = Chef
2
+
3
+ = DESCRIPTION:
4
+
5
+ Chef is a configuration management tool designed to bring automation to your entire infrastructure.
6
+
7
+ The Chef Wiki is the definitive source of user documentation.
8
+
9
+ * http://wiki.opscode.com/display/chef/Home
10
+
11
+ This README focuses on developers who want to modify Chef source code. For users who just want to run the latest and greatest Chef development version in their environment, see:
12
+
13
+ * http://wiki.opscode.com/display/chef/Installing+Chef+from+HEAD
14
+
15
+ = DEVELOPMENT:
16
+
17
+ Before working on the code, if you plan to contribute your changes, you need to read the Opscode Contributing document.
18
+
19
+ * http://wiki.opscode.com/display/opscode/Contributing
20
+
21
+ You will also need to set up the repository with the appropriate branches. We document the process on the Chef Wiki.
22
+
23
+ * http://wiki.opscode.com/display/opscode/Working+with+Git
24
+
25
+ Once your repository is set up, you can start working on the code. We do use BDD/TDD with RSpec and Cucumber, so you'll need to get a development environment running.
26
+
27
+ = ENVIRONMENT:
28
+
29
+ In order to have a development environment where changes to the Chef code can be tested, we'll need to install a few things after setting up the Git repository.
30
+
31
+ == Requirements:
32
+
33
+ Install these via your platform's preferred method; for example apt, yum, ports, emerge, etc.
34
+
35
+ * Git
36
+ * CouchDB
37
+ * libxml2 development package (for webrat)
38
+ * libxslt develoment package (for webrat)
39
+
40
+ Install the following RubyGems.
41
+
42
+ * ohai
43
+ * rake
44
+ * rspec
45
+ * cucumber
46
+ * webrat
47
+ * merb-core
48
+ * roman-merb_cucumber
49
+
50
+ Ohai is also by Opscode and available on GitHub, http://github.com/opscode/ohai/tree/master.
51
+
52
+ roman-merb_cucumber is available from GitHub:
53
+
54
+ gem install --source http://gems.github.com/ roman-merb_cucumber
55
+
56
+ == Starting the Environment:
57
+
58
+ Once everything is installed, run the dev:features rake task. Since the features do integration testing, root access is required.
59
+
60
+ sudo rake dev:features
61
+
62
+ The dev:features task:
63
+
64
+ * Installs chef, chef-server, chef-server-slice gems. It will fail if required gems above are missing.
65
+ * Starts chef-server on ports 4000 and 4001.
66
+ * Starts chef-indexer.
67
+ * Starts CouchDB on port 5984.
68
+ * Starts the stompserver on port 61613.
69
+
70
+ You'll know its running when you see:
71
+
72
+ ~ Activating slice 'ChefServerSlice' ...
73
+ merb : worker (port 4000) ~ Starting Mongrel at port 4000
74
+ merb : worker (port 4000) ~ Successfully bound to port 4000
75
+ merb : worker (port 4001) ~ Starting Mongrel at port 4001
76
+ merb : worker (port 4001) ~ Successfully bound to port 4001
77
+
78
+ You'll want to leave this terminal running the dev environment.
79
+
80
+ == Web Interface:
81
+
82
+ With the dev environment running, you can now access the web interface via http://localhost:4000/. Supply an OpenID to log in.
83
+
84
+ == Spec testing:
85
+
86
+ We use RSpec for unit/spec tests.
87
+
88
+ rake spec
89
+
90
+ This doesn't actually use the development environment, because it does the testing on all the Chef internals. For integration/usage testing, we use Cucumber features.
91
+
92
+ == Integration testing:
93
+
94
+ We test integration with Cucumber. The available feature tests are rake tasks:
95
+
96
+ rake features # Run Features with Cucumber
97
+ rake features:api # Run Features with Cucumber
98
+ rake features:client # Run Features with Cucumber
99
+ rake features:provider:package:macports # Run Features with Cucumber
100
+ rake features:provider:remote_file # Run Features with Cucumber
101
+ rake features:search # Run Features with Cucumber
102
+
103
+ = LINKS:
104
+
105
+ Source:
106
+
107
+ * http://github.com/opscode/chef/tree/master
108
+
109
+ Tickets/Issues:
110
+
111
+ * http://tickets.opscode.com/
112
+
113
+ Documentation:
114
+
115
+ * http://wiki.opscode.com/display/chef/Home/
116
+
117
+ = LICENSE:
118
+
119
+ Chef - A configuration management system
120
+
121
+ Author:: Adam Jacob (<adam@opscode.com>)
122
+ Copyright:: Copyright (c) 2008, 2009 Opscode, Inc.
123
+ License:: Apache License, Version 2.0
124
+
125
+ Licensed under the Apache License, Version 2.0 (the "License");
126
+ you may not use this file except in compliance with the License.
127
+ You may obtain a copy of the License at
128
+
129
+ http://www.apache.org/licenses/LICENSE-2.0
130
+
131
+ Unless required by applicable law or agreed to in writing, software
132
+ distributed under the License is distributed on an "AS IS" BASIS,
133
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
134
+ See the License for the specific language governing permissions and
135
+ limitations under the License.
@@ -0,0 +1,228 @@
1
+ #
2
+ # Author:: Adam Jacob (<adam@opscode.com>)
3
+ # Author:: Christopher Brown (<cb@opscode.com>)
4
+ # Copyright:: Copyright (c) 2008 Opscode, Inc.
5
+ # License:: Apache License, Version 2.0
6
+ #
7
+ # Licensed under the Apache License, Version 2.0 (the "License");
8
+ # you may not use this file except in compliance with the License.
9
+ # You may obtain a copy of the License at
10
+ #
11
+ # http://www.apache.org/licenses/LICENSE-2.0
12
+ #
13
+ # Unless required by applicable law or agreed to in writing, software
14
+ # distributed under the License is distributed on an "AS IS" BASIS,
15
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ # See the License for the specific language governing permissions and
17
+ # limitations under the License.
18
+ #
19
+
20
+ require "chef" / "mixin" / "checksum"
21
+ require "chef" / "cookbook_loader"
22
+
23
+ class ChefServerSlice::Application < Merb::Controller
24
+
25
+ include Chef::Mixin::Checksum
26
+
27
+ controller_for_slice
28
+
29
+ # Generate the absolute url for a slice - takes the slice's :path_prefix into account.
30
+ #
31
+ # @param slice_name<Symbol>
32
+ # The name of the slice - in identifier_sym format (underscored).
33
+ # @param *args<Array[Symbol,Hash]>
34
+ # There are several possibilities regarding arguments:
35
+ # - when passing a Hash only, the :default route of the current
36
+ # slice will be used
37
+ # - when a Symbol is passed, it's used as the route name
38
+ # - a Hash with additional params can optionally be passed
39
+ #
40
+ # @return <String> A uri based on the requested slice.
41
+ #
42
+ # @example absolute_slice_url(:awesome, :format => 'html')
43
+ # @example absolute_slice_url(:forum, :posts, :format => 'xml')
44
+ def absolute_slice_url(slice_name, *args)
45
+ options = extract_options_from_args!(args) || {}
46
+ protocol = options.delete(:protocol) || request.protocol
47
+ host = options.delete(:host) || request.host
48
+
49
+ protocol + "://" + host + slice_url(slice_name,*args)
50
+ end
51
+
52
+ def fix_up_node_id
53
+ if params.has_key?(:id)
54
+ params[:id].gsub!(/_/, '.')
55
+ end
56
+ end
57
+
58
+ def escape_node_id(arg=nil)
59
+ unless arg
60
+ arg = params[:id] if params.has_key?(:id)
61
+ end
62
+ arg.gsub(/\./, '_')
63
+ end
64
+
65
+ def login_required
66
+ if session[:openid]
67
+ return session[:openid]
68
+ else
69
+ self.store_location
70
+ throw(:halt, :access_denied)
71
+ end
72
+ end
73
+
74
+ def authorized_node
75
+ if session[:level] == :admin
76
+ Chef::Log.debug("Authorized as Administrator")
77
+ true
78
+ elsif session[:level] == :node
79
+ Chef::Log.debug("Authorized as node")
80
+ if session[:node_name] == params[:id].gsub(/\./, '_')
81
+ true
82
+ else
83
+ raise(
84
+ Unauthorized,
85
+ "You are not the correct node for this action: #{session[:node_name]} instead of #{params[:id]}"
86
+ )
87
+ end
88
+ else
89
+ Chef::Log.debug("Unauthorized")
90
+ raise Unauthorized, "You are not allowed to take this action."
91
+ end
92
+ end
93
+
94
+ # Store the URI of the current request in the session.
95
+ #
96
+ # We can return to this location by calling #redirect_back_or_default.
97
+ def store_location
98
+ session[:return_to] = request.uri
99
+ end
100
+
101
+ # Redirect to the URI stored by the most recent store_location call or
102
+ # to the passed default.
103
+ def redirect_back_or_default(default)
104
+ loc = session[:return_to] || default
105
+ session[:return_to] = nil
106
+ redirect loc
107
+ end
108
+
109
+ def access_denied
110
+ case content_type
111
+ when :html
112
+ store_location
113
+ redirect slice_url(:openid_consumer), :message => { :error => "You don't have access to that, please login."}
114
+ else
115
+ raise Unauthorized, "You must authenticate first!"
116
+ end
117
+ end
118
+
119
+ # Load a cookbook and return a hash with a list of all the files of a
120
+ # given segment (attributes, recipes, definitions, libraries)
121
+ #
122
+ # === Parameters
123
+ # cookbook_id<String>:: The cookbook to load
124
+ # segment<Symbol>:: :attributes, :recipes, :definitions, :libraries
125
+ #
126
+ # === Returns
127
+ # <Hash>:: A hash consisting of the short name of the file in :name, and the full path
128
+ # to the file in :file.
129
+ def load_cookbook_segment(cookbook_id, segment)
130
+ cl = Chef::CookbookLoader.new
131
+ cookbook = cl[cookbook_id]
132
+ raise NotFound unless cookbook
133
+
134
+ files_list = segment_files(segment, cookbook)
135
+
136
+ files = Hash.new
137
+ files_list.each do |f|
138
+ full = File.expand_path(f)
139
+ name = File.basename(full)
140
+ files[name] = {
141
+ :name => name,
142
+ :file => full,
143
+ }
144
+ end
145
+ files
146
+ end
147
+
148
+ def segment_files(segment, cookbook)
149
+ files_list = nil
150
+ case segment
151
+ when :attributes
152
+ files_list = cookbook.attribute_files
153
+ when :recipes
154
+ files_list = cookbook.recipe_files
155
+ when :definitions
156
+ files_list = cookbook.definition_files
157
+ when :libraries
158
+ files_list = cookbook.lib_files
159
+ else
160
+ raise ArgumentError, "segment must be one of :attributes, :recipes, :definitions or :libraries"
161
+ end
162
+ files_list
163
+ end
164
+
165
+ def specific_cookbooks(node_name, cl)
166
+ valid_cookbooks = Hash.new
167
+ begin
168
+ node = Chef::Node.load(node_name)
169
+ recipes, default_attrs, override_attrs = node.run_list.expand('couchdb')
170
+ rescue Net::HTTPServerException
171
+ recipes = []
172
+ end
173
+ recipes.each do |recipe|
174
+ valid_cookbooks = expand_cookbook_deps(valid_cookbooks, cl, recipe)
175
+ end
176
+ valid_cookbooks
177
+ end
178
+
179
+ def expand_cookbook_deps(valid_cookbooks, cl, recipe)
180
+ cookbook = recipe
181
+ if recipe =~ /^(.+)::/
182
+ cookbook = $1
183
+ end
184
+ Chef::Log.debug("Node requires #{cookbook}")
185
+ valid_cookbooks[cookbook] = true
186
+ cl.metadata[cookbook.to_sym].dependencies.each do |dep, versions|
187
+ expand_cookbook_deps(valid_cookbooks, cl, dep) unless valid_cookbooks[dep]
188
+ end
189
+ valid_cookbooks
190
+ end
191
+
192
+ def load_all_files(segment, node_name=nil)
193
+ cl = Chef::CookbookLoader.new
194
+ files = Array.new
195
+ valid_cookbooks = node_name ? specific_cookbooks(node_name, cl) : {}
196
+ cl.each do |cookbook|
197
+ if node_name
198
+ next unless valid_cookbooks[cookbook.name.to_s]
199
+ end
200
+ segment_files(segment, cookbook).each do |sf|
201
+ mo = sf.match("cookbooks/#{cookbook.name}/#{segment}/(.+)")
202
+ file_name = mo[1]
203
+ files << {
204
+ :cookbook => cookbook.name,
205
+ :name => file_name,
206
+ :checksum => checksum(sf)
207
+ }
208
+ end
209
+ end
210
+ files
211
+ end
212
+
213
+ def get_available_recipes
214
+ cl = Chef::CookbookLoader.new
215
+ available_recipes = cl.sort{ |a,b| a.name.to_s <=> b.name.to_s }.inject([]) do |result, element|
216
+ element.recipes.sort.each do |r|
217
+ if r =~ /^(.+)::default$/
218
+ result << $1
219
+ else
220
+ result << r
221
+ end
222
+ end
223
+ result
224
+ end
225
+ available_recipes
226
+ end
227
+
228
+ end