chef-server-webui 0.8.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (207) hide show
  1. data/LICENSE +201 -0
  2. data/README.rdoc +135 -0
  3. data/Rakefile +62 -0
  4. data/app/controllers/application.rb +281 -0
  5. data/app/controllers/clients.rb +120 -0
  6. data/app/controllers/cookbook_attributes.rb +41 -0
  7. data/app/controllers/cookbook_definitions.rb +41 -0
  8. data/app/controllers/cookbook_files.rb +39 -0
  9. data/app/controllers/cookbook_libraries.rb +41 -0
  10. data/app/controllers/cookbook_recipes.rb +40 -0
  11. data/app/controllers/cookbook_templates.rb +57 -0
  12. data/app/controllers/cookbooks.rb +78 -0
  13. data/app/controllers/databag_items.rb +102 -0
  14. data/app/controllers/databags.rb +83 -0
  15. data/app/controllers/exceptions.rb +19 -0
  16. data/app/controllers/main.rb +7 -0
  17. data/app/controllers/nodes.rb +138 -0
  18. data/app/controllers/openid_consumer.rb +154 -0
  19. data/app/controllers/roles.rb +144 -0
  20. data/app/controllers/search.rb +62 -0
  21. data/app/controllers/search_entries.rb +64 -0
  22. data/app/controllers/status.rb +39 -0
  23. data/app/controllers/users.rb +186 -0
  24. data/app/helpers/application_helper.rb +171 -0
  25. data/app/helpers/cookbook_attributes_helper.rb +7 -0
  26. data/app/helpers/cookbook_definitions_helper.rb +8 -0
  27. data/app/helpers/cookbook_files_helper.rb +8 -0
  28. data/app/helpers/cookbook_libraries_helper.rb +7 -0
  29. data/app/helpers/cookbook_recipes_helper.rb +8 -0
  30. data/app/helpers/cookbook_templates_helper.rb +8 -0
  31. data/app/helpers/exceptions_helper.rb +6 -0
  32. data/app/helpers/global_helpers.rb +35 -0
  33. data/app/helpers/nodes_helper.rb +41 -0
  34. data/app/helpers/openid_consumer_helper.rb +8 -0
  35. data/app/helpers/openid_register_helper.rb +8 -0
  36. data/app/helpers/openid_server_helper.rb +6 -0
  37. data/app/helpers/openid_server_helpers.rb +29 -0
  38. data/app/helpers/roles_helper.rb +5 -0
  39. data/app/helpers/search_entries_helper.rb +8 -0
  40. data/app/helpers/search_helper.rb +38 -0
  41. data/app/helpers/status_helper.rb +26 -0
  42. data/app/views/clients/_form.html.haml +22 -0
  43. data/app/views/clients/_navigation.html.haml +9 -0
  44. data/app/views/clients/edit.html.haml +6 -0
  45. data/app/views/clients/index.html.haml +21 -0
  46. data/app/views/clients/new.html.haml +6 -0
  47. data/app/views/clients/show.html.haml +20 -0
  48. data/app/views/cookbooks/index.html.haml +10 -0
  49. data/app/views/cookbooks/show.html.haml +40 -0
  50. data/app/views/databag_items/_form.html.haml +14 -0
  51. data/app/views/databag_items/_navigation.html.haml +9 -0
  52. data/app/views/databag_items/edit.html.haml +6 -0
  53. data/app/views/databag_items/index.html.haml +0 -0
  54. data/app/views/databag_items/new.html.haml +6 -0
  55. data/app/views/databag_items/show.html.haml +9 -0
  56. data/app/views/databags/_form.html.haml +12 -0
  57. data/app/views/databags/_item_navigation.html.haml +8 -0
  58. data/app/views/databags/_navigation.html.haml +9 -0
  59. data/app/views/databags/edit.html.haml +6 -0
  60. data/app/views/databags/index.html.haml +19 -0
  61. data/app/views/databags/new.html.haml +6 -0
  62. data/app/views/databags/show.html.haml +19 -0
  63. data/app/views/exceptions/bad_request.json.erb +1 -0
  64. data/app/views/exceptions/internal_server_error.html.erb +216 -0
  65. data/app/views/exceptions/not_acceptable.html.erb +63 -0
  66. data/app/views/exceptions/not_found.html.erb +47 -0
  67. data/app/views/exceptions/standard_error.html.erb +217 -0
  68. data/app/views/layout/_jsonedit.html.haml +82 -0
  69. data/app/views/layout/chef_server_webui.html.haml +56 -0
  70. data/app/views/layout/login.html.haml +36 -0
  71. data/app/views/main/index.html.erb +1 -0
  72. data/app/views/nodes/_action.html.haml +13 -0
  73. data/app/views/nodes/_form.html.haml +53 -0
  74. data/app/views/nodes/_navigation.html.haml +9 -0
  75. data/app/views/nodes/_resource.html.haml +22 -0
  76. data/app/views/nodes/edit.html.haml +7 -0
  77. data/app/views/nodes/index.html.haml +25 -0
  78. data/app/views/nodes/new.html.haml +6 -0
  79. data/app/views/nodes/show.html.haml +60 -0
  80. data/app/views/openid_consumer/index.html.haml +28 -0
  81. data/app/views/openid_consumer/start.html.haml +4 -0
  82. data/app/views/openid_login/index.html.haml +5 -0
  83. data/app/views/openid_register/index.html.haml +19 -0
  84. data/app/views/openid_register/show.html.haml +7 -0
  85. data/app/views/roles/_form.html.haml +53 -0
  86. data/app/views/roles/_navigation.html.haml +9 -0
  87. data/app/views/roles/edit.html.haml +6 -0
  88. data/app/views/roles/index.html.haml +21 -0
  89. data/app/views/roles/new.html.haml +6 -0
  90. data/app/views/roles/show.html.haml +54 -0
  91. data/app/views/search/_search_form.html.haml +6 -0
  92. data/app/views/search/index.html.haml +8 -0
  93. data/app/views/search/show.html.haml +13 -0
  94. data/app/views/search_entries/index.html.haml +8 -0
  95. data/app/views/search_entries/show.html.haml +7 -0
  96. data/app/views/status/index.html.haml +90 -0
  97. data/app/views/users/_form.html.haml +39 -0
  98. data/app/views/users/_navigation.html.haml +9 -0
  99. data/app/views/users/edit.html.haml +6 -0
  100. data/app/views/users/index.html.haml +20 -0
  101. data/app/views/users/login.html.haml +16 -0
  102. data/app/views/users/new.html.haml +27 -0
  103. data/app/views/users/show.html.haml +13 -0
  104. data/app/views/users/start.html.haml +4 -0
  105. data/config.ru +84 -0
  106. data/config/init.rb +49 -0
  107. data/config/router.rb +6 -0
  108. data/lib/chef-server-webui.rb +155 -0
  109. data/lib/chef-server-webui/merbtasks.rb +103 -0
  110. data/lib/chef-server-webui/slicetasks.rb +20 -0
  111. data/lib/chef-server-webui/spectasks.rb +53 -0
  112. data/public/facebox/README.txt +4 -0
  113. data/public/facebox/b.png +0 -0
  114. data/public/facebox/bl.png +0 -0
  115. data/public/facebox/br.png +0 -0
  116. data/public/facebox/closelabel.gif +0 -0
  117. data/public/facebox/facebox.css +95 -0
  118. data/public/facebox/facebox.js +319 -0
  119. data/public/facebox/loading.gif +0 -0
  120. data/public/facebox/tl.png +0 -0
  121. data/public/facebox/tr.png +0 -0
  122. data/public/images/avatar.png +0 -0
  123. data/public/images/black_big.png +0 -0
  124. data/public/images/indicator.gif +0 -0
  125. data/public/images/jsonedit/add2.png +0 -0
  126. data/public/images/jsonedit/build-button.png +0 -0
  127. data/public/images/jsonedit/bullet.gif +0 -0
  128. data/public/images/jsonedit/bullet_orange.png +0 -0
  129. data/public/images/jsonedit/cross.png +0 -0
  130. data/public/images/jsonedit/delete.png +0 -0
  131. data/public/images/jsonedit/deleted.png +0 -0
  132. data/public/images/jsonedit/json.jpg +0 -0
  133. data/public/images/jsonedit/label.gif +0 -0
  134. data/public/images/jsonedit/minus.gif +0 -0
  135. data/public/images/jsonedit/pixel.gif +0 -0
  136. data/public/images/jsonedit/plus.gif +0 -0
  137. data/public/images/jsonedit/saved.png +0 -0
  138. data/public/images/jsonedit/table_refresh.png +0 -0
  139. data/public/images/jsonedit/value.gif +0 -0
  140. data/public/images/merb.jpg +0 -0
  141. data/public/images/toggle-collapse-dark.png +0 -0
  142. data/public/images/toggle-collapse-light.png +0 -0
  143. data/public/images/toggle-collapse.gif +0 -0
  144. data/public/images/toggle-expand-dark.png +0 -0
  145. data/public/images/toggle-expand-light.png +0 -0
  146. data/public/images/toggle-expand.gif +0 -0
  147. data/public/images/treeBuilderImages/Thumbs.db +0 -0
  148. data/public/images/treeBuilderImages/doc.gif +0 -0
  149. data/public/images/treeBuilderImages/docNode.gif +0 -0
  150. data/public/images/treeBuilderImages/docNodeLast.gif +0 -0
  151. data/public/images/treeBuilderImages/docNodeLastFirst.gif +0 -0
  152. data/public/images/treeBuilderImages/folder.gif +0 -0
  153. data/public/images/treeBuilderImages/folderNode.gif +0 -0
  154. data/public/images/treeBuilderImages/folderNodeFirst.gif +0 -0
  155. data/public/images/treeBuilderImages/folderNodeLast.gif +0 -0
  156. data/public/images/treeBuilderImages/folderNodeLastFirst.gif +0 -0
  157. data/public/images/treeBuilderImages/folderNodeOpen.gif +0 -0
  158. data/public/images/treeBuilderImages/folderNodeOpenFirst.gif +0 -0
  159. data/public/images/treeBuilderImages/folderNodeOpenLast.gif +0 -0
  160. data/public/images/treeBuilderImages/folderNodeOpenLastFirst.gif +0 -0
  161. data/public/images/treeBuilderImages/folderOpen.gif +0 -0
  162. data/public/images/treeBuilderImages/vertLine.gif +0 -0
  163. data/public/javascripts/chef.js +160 -0
  164. data/public/javascripts/jquery-1.3.2.min.js +19 -0
  165. data/public/javascripts/jquery-ui-1.7.1.custom.min.js +65 -0
  166. data/public/javascripts/jquery.editinline.js +108 -0
  167. data/public/javascripts/jquery.jeditable.mini.js +30 -0
  168. data/public/javascripts/jquery.livequery.js +250 -0
  169. data/public/javascripts/jquery.localscroll.js +104 -0
  170. data/public/javascripts/jquery.scrollTo.js +150 -0
  171. data/public/javascripts/jquery.tools.min.js +17 -0
  172. data/public/javascripts/jquery.treeTable.min.js +165 -0
  173. data/public/javascripts/json.js +153 -0
  174. data/public/javascripts/jsonedit_main.js +675 -0
  175. data/public/javascripts/yetii-min.js +1 -0
  176. data/public/stylesheets/base.css +336 -0
  177. data/public/stylesheets/chef.css +157 -0
  178. data/public/stylesheets/images/ui-bg_diagonals-small_0_aaaaaa_40x40.png +0 -0
  179. data/public/stylesheets/images/ui-bg_diagonals-thick_15_444444_40x40.png +0 -0
  180. data/public/stylesheets/images/ui-bg_glass_100_f0f0f0_1x400.png +0 -0
  181. data/public/stylesheets/images/ui-bg_glass_50_99c2ff_1x400.png +0 -0
  182. data/public/stylesheets/images/ui-bg_glass_55_fbf5d0_1x400.png +0 -0
  183. data/public/stylesheets/images/ui-bg_glass_80_e6e6e6_1x400.png +0 -0
  184. data/public/stylesheets/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  185. data/public/stylesheets/images/ui-bg_highlight-hard_100_f9f9f9_1x100.png +0 -0
  186. data/public/stylesheets/images/ui-bg_highlight-soft_100_e7eef3_1x100.png +0 -0
  187. data/public/stylesheets/images/ui-icons_222222_256x240.png +0 -0
  188. data/public/stylesheets/images/ui-icons_2694e8_256x240.png +0 -0
  189. data/public/stylesheets/images/ui-icons_2e83ff_256x240.png +0 -0
  190. data/public/stylesheets/images/ui-icons_72a7cf_256x240.png +0 -0
  191. data/public/stylesheets/images/ui-icons_888888_256x240.png +0 -0
  192. data/public/stylesheets/images/ui-icons_cd0a0a_256x240.png +0 -0
  193. data/public/stylesheets/images/ui-icons_ffffff_256x240.png +0 -0
  194. data/public/stylesheets/jquery-ui-1.7.1.custom.css +404 -0
  195. data/public/stylesheets/jquery.treeTable.css +43 -0
  196. data/public/stylesheets/jsonedit_main.css +280 -0
  197. data/public/stylesheets/themes/bec-green/style.css +290 -0
  198. data/public/stylesheets/themes/bec/style.css +301 -0
  199. data/public/stylesheets/themes/blue/style.css +280 -0
  200. data/public/stylesheets/themes/default/style.css +267 -0
  201. data/public/stylesheets/themes/djime-cerulean/style.css +298 -0
  202. data/public/stylesheets/themes/kathleene/style.css +272 -0
  203. data/public/stylesheets/themes/orange/style.css +263 -0
  204. data/public/stylesheets/themes/reidb-greenish/style.css +301 -0
  205. data/stubs/app/controllers/application.rb +2 -0
  206. data/stubs/app/controllers/main.rb +2 -0
  207. metadata +399 -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.
data/README.rdoc ADDED
@@ -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.
data/Rakefile ADDED
@@ -0,0 +1,62 @@
1
+ require 'rubygems'
2
+ require 'rake/gempackagetask'
3
+
4
+ require 'merb-core'
5
+ require 'merb-core/tasks/merb'
6
+
7
+ GEM_NAME = "chef-server-webui"
8
+ CHEF_SERVER_VERSION="0.8.2"
9
+ AUTHOR = "Opscode"
10
+ EMAIL = "chef@opscode.com"
11
+ HOMEPAGE = "http://wiki.opscode.com/display/chef"
12
+ SUMMARY = "A systems integration framework, built to bring the benefits of configuration management to your entire infrastructure."
13
+
14
+ spec = Gem::Specification.new do |s|
15
+ s.name = GEM_NAME
16
+ s.version = CHEF_SERVER_VERSION
17
+ s.platform = Gem::Platform::RUBY
18
+ s.has_rdoc = true
19
+ s.extra_rdoc_files = ["README.rdoc", "LICENSE" ]
20
+ s.summary = SUMMARY
21
+ s.description = s.summary
22
+ s.author = AUTHOR
23
+ s.email = EMAIL
24
+ s.homepage = HOMEPAGE
25
+
26
+ ["merb-slices",
27
+ "merb-core",
28
+ "merb-haml",
29
+ "merb-assets",
30
+ "merb-helpers",
31
+ "merb-param-protection",
32
+ "thin",
33
+ "haml",
34
+ "json",
35
+ "ruby-openid",
36
+ "coderay"].each { |g| s.add_dependency g}
37
+
38
+ s.require_path = 'lib'
39
+ s.files = %w(LICENSE README.rdoc Rakefile config.ru) + Dir.glob("{bin,config,lib,spec,app,public,stubs}/**/*")
40
+ end
41
+
42
+ Rake::GemPackageTask.new(spec) do |pkg|
43
+ pkg.gem_spec = spec
44
+ end
45
+
46
+ desc "Install the gem"
47
+ task :install => :package do
48
+ sh %{gem install pkg/#{GEM_NAME}-#{CHEF_SERVER_VERSION} --no-rdoc --no-ri}
49
+ end
50
+
51
+ desc "Uninstall the gem"
52
+ task :uninstall do
53
+ sh %{gem uninstall #{GEM_NAME} -x -v #{CHEF_SERVER_VERSION} }
54
+ end
55
+
56
+ desc "Create a gemspec file"
57
+ task :gemspec do
58
+ File.open("#{GEM_NAME}.gemspec", "w") do |file|
59
+ file.puts spec.to_ruby
60
+ end
61
+ end
62
+
@@ -0,0 +1,281 @@
1
+ #
2
+ # Author:: Adam Jacob (<adam@opscode.com>)
3
+ # Author:: Christopher Brown (<cb@opscode.com>)
4
+ # Author:: Nuo Yan (<nuo@opscode.com>)
5
+ # Copyright:: Copyright (c) 2008 Opscode, Inc.
6
+ # License:: Apache License, Version 2.0
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
+
21
+ require "chef" / "mixin" / "checksum"
22
+ require "chef" / "cookbook_loader"
23
+
24
+ class ChefServerWebui::Application < Merb::Controller
25
+
26
+ include Chef::Mixin::Checksum
27
+
28
+ controller_for_slice
29
+
30
+ # Generate the absolute url for a slice - takes the slice's :path_prefix into account.
31
+ #
32
+ # @param slice_name<Symbol>
33
+ # The name of the slice - in identifier_sym format (underscored).
34
+ # @param *args<Array[Symbol,Hash]>
35
+ # There are several possibilities regarding arguments:
36
+ # - when passing a Hash only, the :default route of the current
37
+ # slice will be used
38
+ # - when a Symbol is passed, it's used as the route name
39
+ # - a Hash with additional params can optionally be passed
40
+ #
41
+ # @return <String> A uri based on the requested slice.
42
+ #
43
+ # @example absolute_slice_url(:awesome, :format => 'html')
44
+ # @example absolute_slice_url(:forum, :posts, :format => 'xml')
45
+ def absolute_slice_url(slice_name, *args)
46
+ options = extract_options_from_args!(args) || {}
47
+ protocol = options.delete(:protocol) || request.protocol
48
+ host = options.delete(:host) || request.host
49
+
50
+ protocol + "://" + host + slice_url(slice_name,*args)
51
+ end
52
+
53
+ # Check if the user is logged in and if the user still exists
54
+ def login_required
55
+ if session[:user]
56
+ begin
57
+ Chef::WebUIUser.load(session[:user]) rescue (raise NotFound, "Cannot find User #{session[:user]}, maybe it got deleted by an Administrator.")
58
+ rescue
59
+ logout_and_redirect_to_login
60
+ else
61
+ return session[:user]
62
+ end
63
+ else
64
+ self.store_location
65
+ throw(:halt, :access_denied)
66
+ end
67
+ end
68
+
69
+ def cleanup_session
70
+ [:user,:level].each { |n| session.delete(n) }
71
+ end
72
+
73
+ def logout_and_redirect_to_login
74
+ cleanup_session
75
+ @user = Chef::WebUIUser.new
76
+ redirect(slice_url(:users_login), {:message => { :error => $! }, :permanent => true})
77
+ end
78
+
79
+
80
+ def is_admin(name)
81
+ user = Chef::WebUIUser.load(name)
82
+ return user.admin
83
+ end
84
+
85
+ #return true if there is only one admin left, false otehrwise
86
+ def is_last_admin
87
+ count = 0
88
+ users = Chef::WebUIUser.list
89
+ users.each do |u, url|
90
+ user = Chef::WebUIUser.load(u)
91
+ if user.admin
92
+ count = count + 1
93
+ return false if count == 2
94
+ end
95
+ end
96
+ true
97
+ end
98
+
99
+ #whether or not the user should be able to edit a user's admin status
100
+ def edit_admin
101
+ is_admin(params[:user_id]) ? (!is_last_admin) : true
102
+ end
103
+
104
+ def authorized_node
105
+ # if session[:level] == :admin
106
+ # Chef::Log.debug("Authorized as Administrator")
107
+ # true
108
+ # elsif session[:level] == :node
109
+ # Chef::Log.debug("Authorized as node")
110
+ # if session[:node_name] == params[:id].gsub(/\./, '_')
111
+ # true
112
+ # else
113
+ # raise(
114
+ # Unauthorized,
115
+ # "You are not the correct node for this action: #{session[:node_name]} instead of #{params[:id]}"
116
+ # )
117
+ # end
118
+ # else
119
+ # Chef::Log.debug("Unauthorized")
120
+ # raise Unauthorized, "You are not allowed to take this action."
121
+ # end
122
+ end
123
+
124
+ def authorized_user
125
+ if session[:level] == :admin
126
+ Chef::Log.debug("Authorized as Administrator")
127
+ true
128
+ else
129
+ Chef::Log.debug("Unauthorized")
130
+ raise Unauthorized, "The current user is not an Administrator, you can only Show and Edit the user itself. To control other users, login as an Administrator."
131
+ end
132
+ end
133
+
134
+ # Store the URI of the current request in the session.
135
+ #
136
+ # We can return to this location by calling #redirect_back_or_default.
137
+ def store_location
138
+ session[:return_to] = request.uri
139
+ end
140
+
141
+ # Redirect to the URI stored by the most recent store_location call or
142
+ # to the passed default.
143
+ def redirect_back_or_default(default)
144
+ loc = session[:return_to] || default
145
+ session[:return_to] = nil
146
+ redirect loc
147
+ end
148
+
149
+ def access_denied
150
+ case content_type
151
+ when :html
152
+ store_location
153
+ redirect slice_url(:users_login), :message => { :error => "You don't have access to that, please login."}
154
+ else
155
+ raise Unauthorized, "You must authenticate first!"
156
+ end
157
+ end
158
+
159
+ # Load a cookbook and return a hash with a list of all the files of a
160
+ # given segment (attributes, recipes, definitions, libraries)
161
+ #
162
+ # === Parameters
163
+ # cookbook_id<String>:: The cookbook to load
164
+ # segment<Symbol>:: :attributes, :recipes, :definitions, :libraries
165
+ #
166
+ # === Returns
167
+ # <Hash>:: A hash consisting of the short name of the file in :name, and the full path
168
+ # to the file in :file.
169
+ def load_cookbook_segment(cookbook_id, segment)
170
+ r = Chef::REST.new(Chef::Config[:chef_server_url])
171
+ cookbook = r.get_rest("cookbooks/#{cookbook_id}")
172
+
173
+ raise NotFound unless cookbook
174
+
175
+ files_list = segment_files(segment, cookbook)
176
+
177
+ files = Hash.new
178
+ files_list.each do |f|
179
+ files[f['name']] = {
180
+ :name => f["name"],
181
+ :file => f["uri"],
182
+ }
183
+ end
184
+ files
185
+ end
186
+
187
+ def segment_files(segment, cookbook)
188
+ files_list = nil
189
+ case segment
190
+ when :attributes
191
+ files_list = cookbook["attributes"]
192
+ when :recipes
193
+ files_list = cookbook["recipes"]
194
+ when :definitions
195
+ files_list = cookbook["definitions"]
196
+ when :libraries
197
+ files_list = cookbook["libraries"]
198
+ else
199
+ raise ArgumentError, "segment must be one of :attributes, :recipes, :definitions or :libraries"
200
+ end
201
+ files_list
202
+ end
203
+
204
+ #
205
+ # The following should no longer be necessary for the re-factored cookbooks replated webui controllers (which talks to the API)
206
+ # But I want to wait until further verified before removing the code. [nuo]
207
+ #
208
+ # def specific_cookbooks(node_name, cl)
209
+ # valid_cookbooks = Hash.new
210
+ # begin
211
+ # node = Chef::Node.load(node_name)
212
+ # recipes, default_attrs, override_attrs = node.run_list.expand
213
+ # rescue Net::HTTPServerException
214
+ # recipes = []
215
+ # end
216
+ # recipes.each do |recipe|
217
+ # valid_cookbooks = expand_cookbook_deps(valid_cookbooks, cl, recipe)
218
+ # end
219
+ # valid_cookbooks
220
+ # end
221
+ #
222
+ # def expand_cookbook_deps(valid_cookbooks, cl, recipe)
223
+ # cookbook = recipe
224
+ # if recipe =~ /^(.+)::/
225
+ # cookbook = $1
226
+ # end
227
+ # Chef::Log.debug("Node requires #{cookbook}")
228
+ # valid_cookbooks[cookbook] = true
229
+ # cl.metadata[cookbook.to_sym].dependencies.each do |dep, versions|
230
+ # expand_cookbook_deps(valid_cookbooks, cl, dep) unless valid_cookbooks[dep]
231
+ # end
232
+ # valid_cookbooks
233
+ # end
234
+ #
235
+ # def load_all_files(segment, node_name=nil)
236
+ # r = Chef::REST.new(Chef::Config[:chef_server_url])
237
+ # cookbooks = r.get_rest("cookbooks")
238
+ #
239
+ # files = Array.new
240
+ # valid_cookbooks = node_name ? specific_cookbooks(node_name, cookbooks) : {}
241
+ # cl.each do |cookbook|
242
+ # if node_name
243
+ # next unless valid_cookbooks[cookbook.name.to_s]
244
+ # end
245
+ # segment_files(segment, cookbook).each do |sf|
246
+ # mo = sf.match("cookbooks/#{cookbook.name}/#{segment}/(.+)")
247
+ # file_name = mo[1]
248
+ # files << {
249
+ # :cookbook => cookbook.name,
250
+ # :name => file_name,
251
+ # :checksum => checksum(sf)
252
+ # }
253
+ # end
254
+ # end
255
+ # files
256
+ # end
257
+
258
+ def get_available_recipes
259
+ r = Chef::REST.new(Chef::Config[:chef_server_url])
260
+ result = Array.new
261
+ cookbooks = r.get_rest("cookbooks")
262
+ cookbooks.keys.sort.each do |key|
263
+ cb = r.get_rest(cookbooks[key])
264
+ cb["recipes"].each do |recipe|
265
+ recipe["name"] =~ /(.+)\.rb/
266
+ r_name = $1;
267
+ if r_name == "default"
268
+ result << key
269
+ else
270
+ result << "#{key}::#{r_name}"
271
+ end
272
+ end
273
+ end
274
+ result
275
+ end
276
+
277
+ def convert_newline_to_br(string)
278
+ string.to_s.gsub(/\n/, '<br />') unless string.nil?
279
+ end
280
+
281
+ end