-
Notifications
You must be signed in to change notification settings - Fork 0
/
collection.rb
508 lines (438 loc) · 19.1 KB
/
collection.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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
#!/usr/bin/env jruby
require 'net/http'
require 'rubygems'
require 'json'
@userids = []
if ARGV.size === 1
userids_file = username = ARGV[0]
File.open(userids_file, "r") { |f|
while line = f.gets
userid = line.strip
@userids.push(userid) unless userid.empty?
end
}
else
@userids = ["foobar"]
end
puts @userids
#######################################
# Script Customisations!
#
@url = URI.parse("http://localhost:8080")
@user = "admin"
@pass = "admin"
# users to create collection for
# collection details
@collection_title = "My Collection"
@collection_access = "everyone" # public | everyone | private
# collection skin
# NB. that if you set this value, then you will need the following patch
# to display skins for pooled content items: https://github.com/payten/3akai-ux/tree/customstylesforcontent
#
#@collection_skin = "/dev/skins/path/to/your/skin.css"
# content to add to new collection
# if you want to set a skin (like above) include a "skin" along with "title" and "description"
@default_content = [
{
"title" => "My Content",
"content" => "<p>This is the content for this page.</p>"
}
]
#######################################
# Script Stuff
#
def get(path)
Net::HTTP.start(@url.host, @url.port) do |http|
#print "-- GET: #{path}\n"
req = Net::HTTP::Get.new(path)
req.basic_auth @user, @pass
return http.request(req)
end
end
def get_json(path, raw = false)
Net::HTTP.start(@url.host, @url.port) do |http|
#print "-- GET: #{path}\n"
req = Net::HTTP::Get.new(path)
req.basic_auth @user, @pass
response = http.request(req)
if raw
return response.body()
else
return JSON.parse(response.body())
end
end
end
def post_json(path, json)
prim_post(path, {
":content" => json,
":operation" => "import",
":replace" => "true",
":replaceProperties" => "true",
":contentType" => "json"
})
end
def prim_post(path, formData)
Net::HTTP.start(@url.host, @url.port) do |http|
req = Net::HTTP::Post.new(path)
req.basic_auth @user, @pass
req.add_field("Referer", "#{@url.to_s}/dev")
req.set_form_data(formData)
return http.request(req)
end
end
def post_batch(requests)
Net::HTTP.start(@url.host, @url.port) do |http|
req = Net::HTTP::Post.new("/system/batch")
req.basic_auth @user, @pass
req.add_field("Referer", "#{@url.to_s}/dev")
req.set_form_data({"requests" => JSON.generate(requests)})
return http.request(req)
end
end
def generateWidgetId()
"id" + (1_000_000 + rand(10_000_000 - 1_000_000)).to_s
end
def userExists(user_id)
print "\n ~~Checking if #{user_id} exists: "
response = get("/~#{user_id}/public/authprofile.profile.json")
print response
if response.code === '200' then
return true
end
false
end
def createCollection(id, user_id)
# 1. create the base node for the collection
# the collection data
formData = {
"_charset_" => "utf-8",
"mimeType" => "x-sakai/collection",
"sakai:copyright" => "creativecommons",
"sakai:description" => "",
"sakai:permissions" => @collection_access,
"sakai:pooled-content-file-name" => @collection_title,
"sakai:pool-content-created-for" => user_id,
"sakai:showalways" => "true",
"sakai:showalways@TypeHint" => "Boolean",
"sakai:showcomments" => "true",
"structure0" => JSON.generate({
"main"=> {
"_ref"=> id,
"_order"=> 0,
"_title"=> @collection_title,
"_nonEditable"=> true,
"main"=> {
"_ref"=> id,
"_order"=> 0,
"_title"=> @collection_title,
"_nonEditable"=> true
}
}
})
}
if @collection_skin then
formData["sakai:customStyle"] = @collection_skin
end
# POST to createfile
response = prim_post("/system/pool/createfile", formData)
json = JSON.parse(response.body())
content_id = json["_contentItem"]["poolId"]
print "\n~~ create collection content page #{content_id}: "
print response
# Ensure creator is set as user!
# set filename and link access
requests = [
{
"url"=>"/p/#{content_id}","method"=>"POST","parameters"=>{
"sakai:pool-content-created-for" => user_id
}
}
]
response = post_batch(requests)
print "\n~~ batch update creator for collection: "
print response
return content_id
end
def setAccessOnCollection(collection_id)
# 3. Batch set the permissions on the pooled content item
if @collection_access === "everyone" then
requests = [
{"url"=>"/p/#{collection_id}.members.html","method"=>"POST","parameters"=>{":viewer@Delete"=>"anonymous", ":viewer"=>@collection_access}},
{"url"=>"/p/#{collection_id}.modifyAce.html","method"=>"POST","parameters"=>{"principalId"=>@collection_access,"privilege@jcr:read"=>"granted"}},
{"url"=>"/p/#{collection_id}.modifyAce.html","method"=>"POST","parameters"=>{"principalId"=>"anonymous","privilege@jcr:read"=>"denied"}}
]
elsif @collection_access === "public" then
requests = [
{"url"=>"/p/#{collection_id}.members.html","method"=>"POST","parameters"=>{":viewer"=>["everyone","anonymous"]}},
{"url"=>"/p/#{collection_id}.modifyAce.html","method"=>"POST","parameters"=>{"principalId"=>["everyone"],"privilege@jcr:read"=>"granted"}},
{"url"=>"/p/#{collection_id}.modifyAce.html","method"=>"POST","parameters"=>{"principalId"=>["anonymous"],"privilege@jcr:read"=>"denied"}}
]
elsif @collection_access === "private" then
requests = [
{"url"=>"/p/#{collection_id}.members.html","method"=>"POST","parameters"=>{":viewer@Delete"=>["anonymous","everyone"]}},
{"url"=>"/p/#{collection_id}.modifyAce.html","method"=>"POST","parameters"=>{"principalId"=>["everyone"],"privilege@jcr:read"=>"denied"}},
{"url"=>"/p/#{collection_id}.modifyAce.html","method"=>"POST","parameters"=>{"principalId"=>["anonymous"],"privilege@jcr:read"=>"denied"}}
]
end
response = post_batch(requests)
print "\n~~ batch access: "
print response
end
def createCollectionGroups(collection_id)
# 4. Create the pseudoGroups
requests = []
group_id = "c-"+collection_id
# 4a. Create the collection managers group
requests.push({
"url" => "/system/userManager/group.create.json",
"method" => "POST",
"parameters" => {
":name"=> group_id+"-managers",
"sakai:group-title"=> "",
"sakai:roles"=> "",
"sakai:group-id"=> group_id+"-managers",
"sakai:category"=> "collection",
"sakai:excludeSearch"=> true,
"sakai:pseudoGroup"=> true,
"sakai:pseudoGroup@TypeHint"=> "Boolean",
"sakai:parent-group-title"=> @collection_title,
"sakai:parent-group-id"=> group_id,
"sakai:role-title"=> "MANAGER",
"sakai:role-title-plural"=> "MANAGERS"
}
})
# 4b. Create the collection members group
requests.push({
"url" => "/system/userManager/group.create.json",
"method" => "POST",
"parameters" => {
":name"=> group_id+"-members",
"sakai:group-title"=> "",
"sakai:roles"=> "",
"sakai:group-id"=> group_id+"-members",
"sakai:category"=> "collection",
"sakai:excludeSearch"=> true,
"sakai:pseudoGroup"=> true,
"sakai:pseudoGroup@TypeHint"=> "Boolean",
"sakai:parent-group-title"=> @collection_title,
"sakai:parent-group-id"=> group_id,
"sakai:role-title"=> "MEMBER",
"sakai:role-title-plural"=> "MEMBERS"
}
})
# 4c. Create the main collections group
requests.push({
"url" => "/system/userManager/group.create.json",
"method" => "POST",
"parameters" => {
":name"=> group_id,
"sakai:group-title"=> @collection_title,
"sakai:roles"=> "[{\"id\":\"managers\",\"title\":\"MANAGER\",\"titlePlural\":\"MANAGERS\",\"isManagerRole\":true,\"manages\":[\"members\"]},{\"id\":\"members\",\"title\":\"MEMBER\",\"titlePlural\":\"MEMBERS\",\"isManagerRole\":false}]",
"sakai:group-id"=> group_id,
"sakai:category"=> "collection",
"sakai:excludeSearch"=> true,
"sakai:pseudoGroup"=> false,
"sakai:pseudoGroup@TypeHint"=> "Boolean"
}
})
# 4d. Create the groups
response = post_batch(requests)
print "\n~~ batch pseudogroups: "
print response
end
def shareCollectionWithManagers(collection_id, user_id)
group_id = "c-"+collection_id
# 4e. Set the correct managers
requests = [
{"url"=>"/system/userManager/group/c-#{collection_id}-managers.update.json","method"=>"POST","parameters"=>{":manager"=>"c-#{collection_id}-managers"}},
{"url"=>"/system/userManager/group/c-#{collection_id}-members.update.json","method"=>"POST","parameters"=>{":manager"=>"c-#{collection_id}-managers"}},
{"url"=>"/system/userManager/group/c-#{collection_id}.update.json","method"=>"POST","parameters"=>{":manager"=>"c-#{collection_id}-managers"}}
]
response = post_batch(requests)
print "\n~~ batch manager access: "
print response
requests = [
{"url"=>"/system/userManager/group/c-#{collection_id}-managers.update.json","method"=>"POST","parameters"=>{":member"=>user_id,":viewer"=>user_id}},
{"url"=>"/system/userManager/group/c-#{collection_id}.update.json","method"=>"POST","parameters"=>{":member"=>"c-#{collection_id}-managers",":viewer"=>"c-#{collection_id}-managers"}},
{"url"=>"/system/userManager/group/c-#{collection_id}.update.json","method"=>"POST","parameters"=>{":member"=>"c-#{collection_id}-members",":viewer"=>"c-#{collection_id}-members"}}
]
response = post_batch(requests)
print "\n~~ batch manager access: "
print response
end
def shareCollectionWithMembers(collection_id, user_id)
requests = [
{"url"=>"/system/userManager/group/c-#{collection_id}-members.update.json","method"=>"POST","parameters"=>{":manager@Delete"=>user_id}},
{"url"=>"/system/userManager/group/c-#{collection_id}-managers.update.json","method"=>"POST","parameters"=>{":manager@Delete"=>user_id}},
{"url"=>"/system/userManager/group/c-#{collection_id}.update.json","method"=>"POST","parameters"=>{":manager@Delete"=>user_id}}
]
response = post_batch(requests)
print "\n~~ batch member access: "
print response
end
def setCollectionGroupAccess(collection_id)
if @collection_access === "everyone" then
requests = [
{"url"=>"/system/userManager/group/c-#{collection_id}-managers.update.html","method"=>"POST","parameters"=>{":viewer"=>"everyone",":viewer@Delete"=>"anonymous","sakai:group-visible"=>"logged-in-only","sakai:group-joinable"=>"yes"}},
{"url"=>"/system/userManager/group/c-#{collection_id}-members.update.html","method"=>"POST","parameters"=>{":viewer"=>"everyone",":viewer@Delete"=>"anonymous","sakai:group-visible"=>"logged-in-only","sakai:group-joinable"=>"yes"}},
{"url"=>"/system/userManager/group/c-#{collection_id}.update.html","method"=>"POST","parameters"=>{":viewer"=>"everyone",":viewer@Delete"=>"anonymous","sakai:group-visible"=>"logged-in-only","sakai:group-joinable"=>"yes"}}
]
elsif @collection_access === "public" then
requests = [
{"url"=>"/system/userManager/group/c-#{collection_id}-managers.update.html","method"=>"POST","parameters"=>{":viewer"=>["everyone","anonymous"],"sakai:group-visible"=>"public","sakai:group-joinable"=>"yes"}},
{"url"=>"/system/userManager/group/c-#{collection_id}-members.update.html","method"=>"POST","parameters"=>{":viewer"=>["everyone","anonymous"],"sakai:group-visible"=>"public","sakai:group-joinable"=>"yes"}},
{"url"=>"/system/userManager/group/c-#{collection_id}.update.html","method"=>"POST","parameters"=>{":viewer"=>["everyone","anonymous"],"sakai:group-visible"=>"public","sakai:group-joinable"=>"yes"}}
]
elsif @collection_access === "private" then
requests = [
{"url"=>"/system/userManager/group/c-#{collection_id}-managers.update.html","method"=>"POST","parameters"=>{":viewer"=>"c-#{collection_id}",":viewer@Delete"=>["everyone","anonymous"],"sakai:group-visible"=>"members-only","sakai:group-joinable"=>"yes"}},
{"url"=>"/system/userManager/group/c-#{collection_id}-members.update.html","method"=>"POST","parameters"=>{":viewer"=>"c-#{collection_id}",":viewer@Delete"=>["everyone","anonymous"],"sakai:group-visible"=>"members-only","sakai:group-joinable"=>"yes"}},
{"url"=>"/system/userManager/group/c-#{collection_id}.update.html","method"=>"POST","parameters"=>{":viewer"=>"c-#{collection_id}",":viewer@Delete"=>["everyone","anonymous"],"sakai:group-visible"=>"members-only","sakai:group-joinable"=>"yes"}}
]
end
response = post_batch(requests)
print "\n~~ batch visible to #{@collection_access}: "
print response
end
def shareCollectionWithGroups(collection_id)
response = prim_post("/p/#{collection_id}.members.json", {":manager"=>"c-#{collection_id}-managers"})
print "\n~~ share with pseudo groups (managers): "
print response
response = prim_post("/p/#{collection_id}.members.json", {":manager"=>"c-#{collection_id}-members"})
print "\n~~ share with pseudo groups (members): "
print response
end
def removeCreatorAsManager(collection_id)
# so the creator is the @user variable I think...
response = prim_post("/p/#{collection_id}.members.json", {":manager@Delete"=>@user})
print "\n~~ remove creator from managers: "
print response
end
def addCollectionToLibrary(ref_id, collection_id)
data = {
":content"=> JSON.generate({
"#{ref_id}" => {"page" => "<img id='widget_collectionviewer_#{ref_id}2' class='widget_inline' src='/devwidgets/mylibrary/images/mylibrary.png'/></p>"},
"#{ref_id}2" => {"collectionviewer" => {"groupid" => "c-#{collection_id}"}}
}),
":contentType"=> "json",
":operation"=> "import",
":replace"=> true,
":replaceProperties"=> true
}
response = prim_post("/p/#{collection_id}", data)
print "\n~~ add to library: "
print response
end
#
# About this Page related functions
#
def createAndAddContent(content_data, index, user_id, collection_id)
# create the content
ref_id = generateWidgetId()
title = content_data["title"]
content = content_data["content"]
print "\n~* creating the content page '#{title}' for the collection..."
data = {
"mimeType" => "x-sakai/document",
"structure0" => JSON.generate({"page1"=>{"_ref"=>ref_id,"_order"=>index,"_title"=>title,"main"=> {"_ref"=>ref_id,"_order"=>index,"_title"=>title}}})
}
response = prim_post("/system/pool/createfile", data)
json = JSON.parse(response.body())
content_id = json["_contentItem"]["poolId"]
print "\n~* '#{title}' has a content id of #{content_id} "
# set the content
data = {
":content"=> JSON.generate({
"#{ref_id}" => {"page" =>content}
}),
":contentType"=> "json",
":operation"=> "import",
":replace"=> true,
":replaceProperties"=> true
}
response = prim_post("/p/#{content_id}", data)
print "\n~~ set content for '#{title}': "
print response
# set filename and link access
requests = [
{"url"=>"/p/#{content_id}","method"=>"POST","parameters"=>{
"sakai:pooled-content-file-name"=>title,
"sakai:pool-content-created-for" => user_id,
"sakai:description"=>"",
"sakai:permissions"=>@collection_access,
"sakai:copyright"=>"creativecommons",
"sakai:allowcomments"=>"true",
"sakai:showcomments"=>"true"
}
}
]
if content_data.has_key?("skin") then
requests[0]["parameters"]["sakai:customStyle"] = content_data["skin"]
end
response = post_batch(requests)
print "\n~~ batch access for '#{title}': "
print response
# set access
if @collection_access === "everyone" then
requests = [
{"url"=>"/p/#{content_id}.members.html","method"=>"POST","parameters"=>{":viewer@Delete"=>"anonymous", ":viewer"=>@collection_access}},
{"url"=>"/p/#{content_id}.modifyAce.html","method"=>"POST","parameters"=>{"principalId"=>@collection_access,"privilege@jcr:read"=>"granted"}},
{"url"=>"/p/#{content_id}.modifyAce.html","method"=>"POST","parameters"=>{"principalId"=>"anonymous","privilege@jcr:read"=>"denied"}},
{"url"=>"/p/#{content_id}.members.json","method"=>"POST","parameters"=>{":manager@Delete"=>@user}},
{"url"=>"/p/#{content_id}.members.json","method"=>"POST","parameters"=>{":manager"=>user_id,":viewer@Delete"=>user_id}}
]
elsif @collection_access === "public" then
requests = [
{"url"=>"/p/#{content_id}.members.html","method"=>"POST","parameters"=>{":viewer"=>["everyone","anonymous"]}},
{"url"=>"/p/#{content_id}.modifyAce.html","method"=>"POST","parameters"=>{"principalId"=>["everyone"],"privilege@jcr:read"=>"granted"}},
{"url"=>"/p/#{content_id}.modifyAce.html","method"=>"POST","parameters"=>{"principalId"=>["anonymous"],"privilege@jcr:read"=>"granted"}},
{"url"=>"/p/#{content_id}.members.json","method"=>"POST","parameters"=>{":manager"=>user_id,":manager@Delete"=>@user}}
]
elsif @collection_access === "private" then
requests = [
{"url"=>"/p/#{content_id}.members.html","method"=>"POST","parameters"=>{":viewer@Delete"=>["anonymous","everyone"]}},
{"url"=>"/p/#{content_id}.modifyAce.html","method"=>"POST","parameters"=>{"principalId"=>["everyone"],"privilege@jcr:read"=>"denied"}},
{"url"=>"/p/#{content_id}.modifyAce.html","method"=>"POST","parameters"=>{"principalId"=>["anonymous"],"privilege@jcr:read"=>"denied"}},
{"url"=>"/p/#{content_id}.members.json","method"=>"POST","parameters"=>{":manager"=>user_id,":manager@Delete"=>@user}}
]
end
response = post_batch(requests)
print "\n~~ batch access (again) for '#{title}': "
print response
# add to collection
prim_post("/p/#{content_id}.members.html", {":viewer"=>"c-#{collection_id}"})
print "\n~~ add '#{title}' to collection: "
print response
end
#######################################
# The method that does all the stuff
#
def do_stuff
@userids.each do |user_id|
print "\n\n~* creating collection for #{user_id}..."
# check user exists
unless userExists(user_id) then
print "\n~**** User #{user_id} doesn't exist!!!\n"
next;
end
# create the collection etc
ref_id = generateWidgetId()
print "\n~* collection widget id = #{ref_id}"
collection_id = createCollection(ref_id, user_id)
print "\n~* collection content id = #{collection_id}"
setAccessOnCollection(collection_id)
createCollectionGroups(collection_id)
shareCollectionWithManagers(collection_id, user_id)
shareCollectionWithMembers(collection_id, user_id)
setCollectionGroupAccess(collection_id)
shareCollectionWithGroups(collection_id)
removeCreatorAsManager(collection_id)
addCollectionToLibrary(ref_id, collection_id)
# add any default content to the collection
@default_content.each_with_index do | content_data, i |
createAndAddContent(content_data, i, user_id, collection_id)
end
print "\n"
end
end
do_stuff