response.rb
1.64 KB
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
module ScimRails
module Response
CONTENT_TYPE = "application/scim+json, application/json".freeze
def json_response(object, status = :ok)
render \
json: object,
status: status
end
def json_scim_response(object:, status: :ok, counts: nil)
case params[:action]
when "index"
render \
json: list_response(object, counts),
status: status,
content_type: CONTENT_TYPE
when "show", "create", "put_update", "patch_update"
render \
json: user_response(object),
status: status,
content_type: CONTENT_TYPE
end
end
private
def list_response(object, counts)
object = object
.order(:id)
.offset(counts.offset)
.limit(counts.limit)
{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:ListResponse"
],
"totalResults": counts.total,
"startIndex": counts.start_index,
"itemsPerPage": counts.limit,
"Resources": list_users(object)
}
end
def list_users(users)
users.map do |user|
user_response(user)
end
end
def user_response(user)
schema = ScimRails.config.user_schema
find_value(user, schema)
end
def find_value(user, object)
case object
when Hash
object.each.with_object({}) do |(key, value), hash|
hash[key] = find_value(user, value)
end
when Array
object.map do |value|
find_value(user, value)
end
when Symbol
user.public_send(object)
else
object
end
end
end
end