restpack-web 0.1.19 → 0.1.20

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.
@@ -16,8 +16,6 @@ module RestPack
16
16
  def call(env)
17
17
  env[:restpack] ||= {}
18
18
  begin #TODO: GJ: cache should handle errors gracefully
19
-
20
-
21
19
  host = env["SERVER_NAME"]
22
20
  env[:restpack][:host] = host
23
21
 
@@ -41,38 +39,42 @@ module RestPack
41
39
 
42
40
  @app.call(env)
43
41
  end
44
- end
45
-
46
- protected
47
-
48
- def add_user(env)
49
- user_id = env['rack.session'][:user_id]
50
- if user_id
51
- url = "http://:1234@localhost:1112/api/v1/users/#{user_id}.json" #TODO: GJ: build from config
52
- p url
53
- json = RestClient.get(url)
54
- user = JSON.parse(json)['user']
55
- env[:restpack][:user] = user
56
- end
57
42
 
58
- env[:restpack][:user_id] = user_id
59
- end
60
-
61
- def add_application_domains(env)
62
- application = env[:restpack][:application]
63
-
64
- domains = {}
43
+ private
65
44
 
66
- configured_domains = application.get_configuration_by_key('domains')
67
-
68
- if configured_domains
69
- for key in configured_domains.value.keys
70
- domains[key] = configured_domains.value[key]
45
+ def add_user(env)
46
+ user_id = env['rack.session'][:user_id]
47
+ if user_id
48
+ url = "http://:1234@localhost:1112/api/v1/users/#{user_id}.json" #TODO: GJ: build from config
49
+ p url
50
+ json = RestClient.get(url)
51
+ user = JSON.parse(json)['user']
52
+ env[:restpack][:user] = user
71
53
  end
54
+
55
+ env[:restpack][:user_id] = user_id
56
+ end
57
+
58
+ def add_application_domains(env)
59
+ application = env[:restpack][:application]
60
+
61
+ domains = {}
62
+
63
+ configured_domains = application.get_configuration_by_key('domains')
64
+
65
+ if configured_domains
66
+ for key in configured_domains.value.keys
67
+ domains[key] = configured_domains.value[key]
68
+ end
69
+ end
70
+
71
+ env[:restpack][:application_domains] = domains
72
72
  end
73
-
74
- env[:restpack][:application_domains] = domains
75
73
  end
74
+
75
+
76
+
77
+
76
78
 
77
79
  end
78
80
  end
@@ -1,5 +1,5 @@
1
1
  module RestPack
2
2
  module Web
3
- VERSION = "0.1.19"
3
+ VERSION = "0.1.20"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: restpack-web
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.19
4
+ version: 0.1.20
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: