forked from jwadolowski/cookbook-cq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_jcr_nodes.rb
257 lines (213 loc) · 8 KB
/
_jcr_nodes.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
#
# Cookbook Name:: cq
# Recipe:: _jcr_nodes
#
# Copyright (C) 2015 Jakub Wadolowski
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Chef::Log.warn(
'This is a test recipe and must not be used outside of test kitchen!'
)
# NOTHING
# -----------------------------------------------------------------------------
cq_jcr '/content/nothing' do
username node['cq']['author']['credentials']['login']
password node['cq']['author']['credentials']['password']
instance "http://localhost:#{node['cq']['author']['port']}"
action :nothing
end
# CREATE
# -----------------------------------------------------------------------------
# Create new node w/o properties
cq_jcr '/content/test1' do
username node['cq']['author']['credentials']['login']
password node['cq']['author']['credentials']['password']
instance "http://localhost:#{node['cq']['author']['port']}"
action :create
end
# Create new node w/o properties and custom resource name
cq_jcr 'New node at /content/testXYZ' do
path '/content/testXYZ'
username node['cq']['author']['credentials']['login']
password node['cq']['author']['credentials']['password']
instance "http://localhost:#{node['cq']['author']['port']}"
action :create
end
# Create new node w/ some properties
cq_jcr '/content/test2' do
username node['cq']['author']['credentials']['login']
password node['cq']['author']['credentials']['password']
instance "http://localhost:#{node['cq']['author']['port']}"
properties(
'property_one' => 'first',
'property_two' => 'second',
'property_three' => 'third'
)
action :create
end
# Create new node w/ some properties and special characters in its name
cq_jcr '/content/Special_%characters (test)' do
username node['cq']['author']['credentials']['login']
password node['cq']['author']['credentials']['password']
instance "http://localhost:#{node['cq']['author']['port']}"
properties(
'p1' => '100',
'p2' => '200',
'p3' => '300'
)
action :create
end
# Create new node with multivalue properties
cq_jcr '/content/multivalue_test' do
username node['cq']['author']['credentials']['login']
password node['cq']['author']['credentials']['password']
instance "http://localhost:#{node['cq']['author']['port']}"
properties(
'simple_key' => 'simple_value',
'array_key' => ['i99', 'i1', 'i1', 'last element']
)
action :create
end
# Create action on exsiting node w/o properties (append == true)
cq_jcr '/content/geometrixx/en/events/userconf/jcr:content' do
username node['cq']['author']['credentials']['login']
password node['cq']['author']['credentials']['password']
instance "http://localhost:#{node['cq']['author']['port']}"
action :create
end
# Create action on existing node w/ some properties (append == true)
cq_jcr '/content/geometrixx/en/company/jcr:content' do
username node['cq']['author']['credentials']['login']
password node['cq']['author']['credentials']['password']
instance "http://localhost:#{node['cq']['author']['port']}"
properties(
'jcr:title' => 'Geometrixx Company'
)
action :create
end
# Create action on existing node w/o proeprties (append == false)
cq_jcr '/content/geometrixx/de/support/jcr:content' do
username node['cq']['author']['credentials']['login']
password node['cq']['author']['credentials']['password']
instance "http://localhost:#{node['cq']['author']['port']}"
append false
action :create
end
# Create action on exsiting node w/ properties (append == false)
cq_jcr '/content/geometrixx/en/products/jcr:content' do
username node['cq']['author']['credentials']['login']
password node['cq']['author']['credentials']['password']
instance "http://localhost:#{node['cq']['author']['port']}"
append false
properties(
'jcr:primaryType' => 'cq:PageContent',
'jcr:title' => 'New title',
'subtitle' => 'New subtitle',
'new_property' => 'Random value'
)
action :create
end
# DELETE
# -----------------------------------------------------------------------------
# Delete existing node w/o special characters in its path
cq_jcr '/content/dam/geometrixx-media/articles/en/2012' do
username node['cq']['author']['credentials']['login']
password node['cq']['author']['credentials']['password']
instance "http://localhost:#{node['cq']['author']['port']}"
action :delete
end
# Delete existing node w/ special characters in its path
cq_jcr '/content/dam/geometrixx-outdoors/products/glasses/Raja Ampat.jpg' do
username node['cq']['author']['credentials']['login']
password node['cq']['author']['credentials']['password']
instance "http://localhost:#{node['cq']['author']['port']}"
action :delete
end
# Delete not exisitng node
cq_jcr '/path/to/not/exising/node' do
username node['cq']['author']['credentials']['login']
password node['cq']['author']['credentials']['password']
instance "http://localhost:#{node['cq']['author']['port']}"
action :delete
end
# MODIFY
# -----------------------------------------------------------------------------
# Modify existing w/o properties (append == true)
cq_jcr '/content/geometrixx/en/services/banking/jcr:content' do
username node['cq']['author']['credentials']['login']
password node['cq']['author']['credentials']['password']
instance "http://localhost:#{node['cq']['author']['port']}"
action :modify
end
# Modify existing w/ properties (append == true)
cq_jcr '/content/geometrixx/en/services/certification/jcr:content' do
username node['cq']['author']['credentials']['login']
password node['cq']['author']['credentials']['password']
instance "http://localhost:#{node['cq']['author']['port']}"
properties(
'jcr:title' => 'New Certification Services',
'brand_new_prop' => 'ValueX'
)
action :modify
end
# Modify existing w/o properties (append == false)
cq_jcr '/content/dam/geometrixx/portraits/scott_reynolds.jpg' do
username node['cq']['author']['credentials']['login']
password node['cq']['author']['credentials']['password']
instance "http://localhost:#{node['cq']['author']['port']}"
append false
action :modify
end
# Modify existing w/ properties (append == false)
cq_jcr '/content/dam/geometrixx/portraits/john_doe.jpg/jcr:content/metadata' do
username node['cq']['author']['credentials']['login']
password node['cq']['author']['credentials']['password']
instance "http://localhost:#{node['cq']['author']['port']}"
append false
properties(
'my_property' => 'my_value'
)
action :modify
end
# Modify not exisitng
cq_jcr '/modify/on/fake/jcr/node' do
username node['cq']['author']['credentials']['login']
password node['cq']['author']['credentials']['password']
instance "http://localhost:#{node['cq']['author']['port']}"
action :modify
end
# Modify existing node with multi-value property (append == true)
cq_jcr '/apps/social/facebookprovider/config/com.adobe.granite.auth.oauth.'\
'provider-geometrixx-outdoorsfacebookapp.config' do
username node['cq']['author']['credentials']['login']
password node['cq']['author']['credentials']['password']
instance "http://localhost:#{node['cq']['author']['port']}"
properties(
'oauth.create.users.groups' => ['secret-group'],
'oauth.scope' => ['find_me']
)
action :modify
end
# Modify existing node with multi-value property (append == false)
cq_jcr '/apps/commerce/gui/content/catalogs/importblueprintswizard/importers'\
'/geometrixx/items/file-picker/button' do
username node['cq']['author']['credentials']['login']
password node['cq']['author']['credentials']['password']
instance "http://localhost:#{node['cq']['author']['port']}"
append false
properties(
'variant' => %w(one two)
)
action :modify
end