finapps 0.0.21.pre → 0.0.22.pre
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/lib/finapps/rest/institutions.rb +19 -0
- data/lib/finapps/rest/users.rb +24 -3
- data/lib/finapps/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4ff9e3ab24fa9788a93f55a47496a052699534bb
|
4
|
+
data.tar.gz: 58dc7b5677e7589929843ae935fd566561e903fd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3a5853bcb617c45cf96642b3034abe1ef2314967e90c43d5905eaee7aea66ef59766a2946ab1d6746b0032dfe06740e61ed6c2cebf31c439a70f51d9037066eb
|
7
|
+
data.tar.gz: 80402c72e6a9dc69ec04c17242fce7bf634ff1d0913f8f68903ec941e3f27e77ff07459ca3921f9f18802f08945fee106e664443a8d55e04009a91821f6cf2c3
|
@@ -28,6 +28,25 @@ module FinApps
|
|
28
28
|
return institutions, error_messages
|
29
29
|
end
|
30
30
|
|
31
|
+
# @param [Integer] site_id
|
32
|
+
def form(site_id)
|
33
|
+
logger.debug "##{__method__.to_s} => Started"
|
34
|
+
|
35
|
+
raise MissingArgumentsError.new 'Missing argument: site_id.' if site_id.blank?
|
36
|
+
logger.debug "##{__method__.to_s} => site_id: #{site_id}"
|
37
|
+
|
38
|
+
end_point = Defaults::END_POINTS[:institutions_form]
|
39
|
+
logger.debug "##{__method__.to_s} => end_point: #{end_point}"
|
40
|
+
|
41
|
+
path = end_point.sub ':site_id', ERB::Util.url_encode(site_id)
|
42
|
+
logger.debug "##{__method__.to_s} => path: #{path}"
|
43
|
+
|
44
|
+
form, error_messages = @client.get(path) { |r| String.new(r.body) }
|
45
|
+
|
46
|
+
logger.debug "##{__method__.to_s} => Completed"
|
47
|
+
return form, error_messages
|
48
|
+
end
|
49
|
+
|
31
50
|
end
|
32
51
|
|
33
52
|
class Institution < FinApps::REST::Resource
|
data/lib/finapps/rest/users.rb
CHANGED
@@ -9,7 +9,13 @@ module FinApps
|
|
9
9
|
# @return [FinApps::REST::User, Array<String>]
|
10
10
|
def create(params = {})
|
11
11
|
logger.debug "##{__method__.to_s} => Started"
|
12
|
-
|
12
|
+
|
13
|
+
raise MissingArgumentsError.new 'Missing argument: params.' if params.blank?
|
14
|
+
|
15
|
+
end_point = Defaults::END_POINTS[:users_create]
|
16
|
+
logger.debug "##{__method__.to_s} => end_point: #{end_point}"
|
17
|
+
|
18
|
+
user, error_messages = @client.post(end_point, params) { |r| User.new(r.body) }
|
13
19
|
logger.debug "##{__method__.to_s} => Completed"
|
14
20
|
|
15
21
|
return user, error_messages
|
@@ -19,7 +25,13 @@ module FinApps
|
|
19
25
|
# @return [FinApps::REST::User, Array<String>]
|
20
26
|
def login(params = {})
|
21
27
|
logger.debug "##{__method__.to_s} => Started"
|
22
|
-
|
28
|
+
|
29
|
+
raise MissingArgumentsError.new 'Missing argument: params.' if params.blank?
|
30
|
+
|
31
|
+
end_point = Defaults::END_POINTS[:users_login]
|
32
|
+
logger.debug "##{__method__.to_s} => end_point: #{end_point}"
|
33
|
+
|
34
|
+
user, error_messages = @client.post(end_point, params) { |r| User.new(r.body) }
|
23
35
|
logger.debug "##{__method__.to_s} => Completed"
|
24
36
|
|
25
37
|
return user, error_messages
|
@@ -29,8 +41,17 @@ module FinApps
|
|
29
41
|
# @return [Array<String>]
|
30
42
|
def delete(public_id)
|
31
43
|
logger.debug "##{__method__.to_s} => Started"
|
44
|
+
|
32
45
|
raise MissingArgumentsError.new 'Missing argument: public_id.' if public_id.blank?
|
33
|
-
|
46
|
+
logger.debug "##{__method__.to_s} => public_id: #{public_id}"
|
47
|
+
|
48
|
+
end_point = Defaults::END_POINTS[:users_delete]
|
49
|
+
logger.debug "##{__method__.to_s} => end_point: #{end_point}"
|
50
|
+
|
51
|
+
path = end_point.sub ':public_id', ERB::Util.url_encode(public_id)
|
52
|
+
logger.debug "##{__method__.to_s} => path: #{path}"
|
53
|
+
|
54
|
+
_, error_messages = @client.delete(path)
|
34
55
|
logger.debug "##{__method__.to_s} => Completed"
|
35
56
|
|
36
57
|
error_messages
|
data/lib/finapps/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: finapps
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.22.pre
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Erich Quintero
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-07-
|
11
|
+
date: 2014-07-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|