-
Notifications
You must be signed in to change notification settings - Fork 25
/
ruby-prolog-acls
executable file
·85 lines (63 loc) · 2.39 KB
/
ruby-prolog-acls
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
#!/usr/bin/env ruby
#
# By Preston Lee
#
$LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..', 'lib')
require 'ruby-prolog'
c = RubyProlog::Core.new
c.instance_eval do
# Let's put together an issue tracking system for Microsoft.
# We'll start by declaring a few projects...
project_status['me', 'live'].fact
project_status['xp', 'live'].fact
project_status['vista', 'live'].fact
project_status['7', 'in_progress'].fact
# Now we'll create a custom ACL system...
role_can['user', 'create'].fact
role_can['user', 'read'].fact
role_can['qa', 'create'].fact
role_can['qa', 'read'].fact
role_can['qa', 'update'].fact
role_can['admin', 'create'].fact
role_can['admin', 'read'].fact
role_can['admin', 'update'].fact
role_can['admin', 'delete'].fact
# Let's put people on different projects
assigned['alice', 'me', 'user'].fact
assigned['bob', 'me', 'qa'].fact
assigned['charlie', 'me', 'qa'].fact
assigned['alice', 'xp', 'user'].fact
assigned['bob', 'xp', 'user'].fact
assigned['charlie', 'xp', 'admin'].fact
assigned['alice', 'vista', 'qa'].fact
assigned['bob', 'vista', 'admin'].fact
assigned['charlie', 'vista', 'admin'].fact
assigned['alice', '7', 'user'].fact
assigned['bob', '7', 'qa'].fact
assigned['charlie', '7', 'qa'].fact
assigned['dale', '7', 'admin'].fact
# can_read_on_project[:U, :P] << [assigned[:U, :P, :R], role_can[:R, 'read']]
can_on_project[:U, :X, :P] << [assigned[:U, :P, :R], role_can[:R, :X]]
is_role_on_multiple_projects[:U, :R] << [
assigned[:U, :X, :R],
assigned[:U, :Y, :R],
noteq[:X, :Y]]
# , noteq[:P1, :P2]
puts 'Who does QA?'
p query{assigned[:U, :P, 'qa']}
puts "Who can access the 'vista' project?"
p query{(can_on_project[:U, 'read', 'vista'])}
puts "Does Alice have delete privileges on Vista?"
puts query{can_on_project['alice', 'delete', 'vista']}.empty? ? "Yes" : "No"
puts "Does Bob have delete privileges on Vista?"
puts query{can_on_project['bob', 'delete', 'vista']}.empty? ? "Yes" : "No"
puts "Who is an admin on multiple projects?"
# puts query{is_role_on_multiple_projects[:U, 'admin']}
require 'JSON'
s = Array.new
query{is_role_on_multiple_projects[:U, 'admin']}.each do |r|
# puts r[:U].to_json
s |= [r[:U]] # Put each result into the array, if not already present.
end
s.each do |n| puts n end # Print all unique results!
end