oneroster 2.3.5 → 2.3.9
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.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/one_roster/client.rb +7 -3
- data/lib/one_roster/connection.rb +23 -5
- data/lib/one_roster/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 40d5e334a53e3d8a02137968318000bdaf7604a02a54291b7fd334552893ec5d
|
4
|
+
data.tar.gz: 94a198a0065ce9c615824acf25f4326fe7159b9a87b397aca640a48df6c3df81
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2528744a79bf3570e061d9c6c1f81345428be201f9d6b1dd79bfa649ea5b55f6a010f575df8e29ff944ed172be6a5a2983aaad95233ba687844aad88df45ea46
|
7
|
+
data.tar.gz: dc653c3c64ed67ed9546b9be9ba6e00b104829656fcde796d6be43a37c731de6eaaaa1ab50adf361f8bfb5fd28f30dd910eb8286d1bb5a087e2dc4ad0de6b852
|
data/Gemfile.lock
CHANGED
data/lib/one_roster/client.rb
CHANGED
@@ -4,7 +4,7 @@ module OneRoster
|
|
4
4
|
class Client
|
5
5
|
attr_accessor :app_id, :app_token, :api_url, :token_url, :roster_app,
|
6
6
|
:app_secret, :logger, :vendor_key,
|
7
|
-
:username_source, :oauth_strategy, :staff_username_source
|
7
|
+
:username_source, :oauth_strategy, :staff_username_source, :token_content_type
|
8
8
|
|
9
9
|
attr_reader :authenticated
|
10
10
|
|
@@ -130,9 +130,13 @@ module OneRoster
|
|
130
130
|
def token
|
131
131
|
url = token_url || "#{api_url}/token"
|
132
132
|
|
133
|
+
credential_params = { grant_type: 'client_credentials',
|
134
|
+
scope: 'https://purl.imsglobal.org/spec/or/v1p1/scope/roster-core.readonly' }
|
135
|
+
|
133
136
|
if roster_app == 'infinite_campus'
|
134
|
-
connection.execute(url, :post,
|
135
|
-
|
137
|
+
connection.execute(url, :post, credential_params, nil, token_content_type)
|
138
|
+
elsif roster_app == 'synergy'
|
139
|
+
connection.execute(url, :post, nil, credential_params, token_content_type)
|
136
140
|
else
|
137
141
|
connection.execute(url, :post)
|
138
142
|
end
|
@@ -10,8 +10,8 @@ module OneRoster
|
|
10
10
|
@oauth_strategy = oauth_strategy
|
11
11
|
end
|
12
12
|
|
13
|
-
def execute(path, method = :get, params = nil, body = nil)
|
14
|
-
Response.new(raw_request(path, method, params, body))
|
13
|
+
def execute(path, method = :get, params = nil, body = nil, content_type = nil)
|
14
|
+
Response.new(raw_request(path, method, params, body, content_type))
|
15
15
|
end
|
16
16
|
|
17
17
|
def set_auth_headers(token, cookie)
|
@@ -37,19 +37,37 @@ module OneRoster
|
|
37
37
|
|
38
38
|
private
|
39
39
|
|
40
|
-
def raw_request(path, method, params, body)
|
40
|
+
def raw_request(path, method, params, body, content_type = nil)
|
41
41
|
p "request #{path} #{params}"
|
42
42
|
|
43
43
|
connection.public_send(method) do |request|
|
44
44
|
request.options.open_timeout = OPEN_TIMEOUT
|
45
45
|
request.options.timeout = TIMEOUT
|
46
46
|
request.url path, params
|
47
|
-
request.headers['
|
47
|
+
request.headers['Content-Type'] = content_type || set_content_type
|
48
48
|
request.headers['Cookie'] = @cookie
|
49
|
-
request.body = body
|
49
|
+
request.body = render_body(body, content_type)
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
+
def set_content_type
|
54
|
+
return 'application/x-www-form-urlencoded' if @client.roster_app == 'synergy'
|
55
|
+
|
56
|
+
'application/json'
|
57
|
+
end
|
58
|
+
|
59
|
+
def render_body(body, content_type)
|
60
|
+
return URI.encode_www_form(body) if should_encode_body?(body, content_type)
|
61
|
+
|
62
|
+
body
|
63
|
+
end
|
64
|
+
|
65
|
+
def should_encode_body?(body, content_type)
|
66
|
+
return false if body.nil?
|
67
|
+
|
68
|
+
@client.roster_app == 'synergy' || content_type == 'application/x-www-form-urlencoded'
|
69
|
+
end
|
70
|
+
|
53
71
|
def oauth_connection
|
54
72
|
Faraday.new(@client.api_url) do |connection|
|
55
73
|
connection.request :oauth,
|
data/lib/one_roster/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: oneroster
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.3.
|
4
|
+
version: 2.3.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Robert Julius
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-09-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|