rmobio 1.1.10 → 1.1.11
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.
- data/lib/rmobio/config_manager.rb +74 -21
- data/lib/rmobio/utils.rb +1 -24
- metadata +2 -2
@@ -1,26 +1,50 @@
|
|
1
|
-
#
|
1
|
+
#
|
2
2
|
# Copyright (C) 2007 Mobio Networks, Inc.
|
3
|
-
#
|
4
|
-
# This program is free software: you can redistribute it and/or modify
|
5
|
-
#
|
6
|
-
#
|
7
|
-
#
|
8
|
-
#
|
9
|
-
# This program is distributed in the hope that it will be useful,
|
10
|
-
#
|
11
|
-
#
|
12
|
-
#
|
13
|
-
#
|
14
|
-
# You should have received a copy of the GNU General Public License
|
15
|
-
#
|
16
|
-
#
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
3
|
+
#
|
4
|
+
# This program is free software: you can redistribute it and/or modify it under
|
5
|
+
# the terms of the GNU General Public License as published by the Free Software
|
6
|
+
# Foundation, either version 3 of the License, or (at your option) any later
|
7
|
+
# version.
|
8
|
+
#
|
9
|
+
# This program is distributed in the hope that it will be useful, but WITHOUT
|
10
|
+
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
11
|
+
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
12
|
+
# details.
|
13
|
+
#
|
14
|
+
# You should have received a copy of the GNU General Public License along with
|
15
|
+
# this program. If not, see <http://www.gnu.org/licenses/>.
|
16
|
+
#
|
17
|
+
#
|
18
|
+
# This module manages yaml-based configuration sets. Uses some logic from the
|
19
|
+
# rfacebook gem.
|
20
|
+
#
|
21
|
+
# The config_manager is a yaml-based property management system which follows
|
22
|
+
# the same methodology for managing property sets as database.yml. To use the
|
23
|
+
# config_manager, perform the following steps:
|
24
|
+
#
|
25
|
+
# 1. In environment.rb, add the following two lines to the bottom of the file
|
26
|
+
# (we want to load the configuration statically):
|
27
|
+
#
|
28
|
+
# <pre>require 'rmobio/config_manager'</pre>
|
29
|
+
#
|
30
|
+
# 2. Run the following rake task to generate the boilerplate configs:
|
31
|
+
#
|
32
|
+
# <pre>rake rmobio:setup</pre>
|
33
|
+
#
|
34
|
+
# 3. Edit config/rmobio.yml and add your properties (here we set a property
|
35
|
+
# called "ad_network" with a value of "ad_sense")
|
36
|
+
#
|
37
|
+
# <pre>
|
38
|
+
# development:
|
39
|
+
# ad_network: ad_sense
|
40
|
+
# </pre>
|
41
|
+
#
|
42
|
+
# 4. To use a property, reference the hash accordingly. e.g. @adnetwork =
|
43
|
+
# MOBIO_CONFIG['ad_network']
|
44
|
+
#
|
22
45
|
module Rmobio
|
23
46
|
module ConfigManager
|
47
|
+
|
24
48
|
if defined? RAILS_DEFAULT_LOGGER
|
25
49
|
logger = RAILS_DEFAULT_LOGGER
|
26
50
|
else
|
@@ -34,6 +58,8 @@ module Rmobio
|
|
34
58
|
|
35
59
|
if app_yaml_file
|
36
60
|
if app_yaml_file[RAILS_ENV]
|
61
|
+
|
62
|
+
remove_const :MOBIO_CONFIG if defined? MOBIO_CONFIG
|
37
63
|
MOBIO_CONFIG = app_yaml_file[RAILS_ENV]
|
38
64
|
|
39
65
|
# Replace all properties containing @somekey@ with the value of
|
@@ -56,8 +82,35 @@ module Rmobio
|
|
56
82
|
else
|
57
83
|
raise StandardError, "config/rmobio.yml does not exist."
|
58
84
|
end
|
85
|
+
|
86
|
+
# get_request_context This method checks for the existence of a
|
87
|
+
# "mobio-context" header. If the header exists, then the method returns
|
88
|
+
# the filtered value for the MOBIO_CONFIG array with the key "url."
|
89
|
+
#
|
90
|
+
# Below is the flow:
|
91
|
+
#
|
92
|
+
# A request is made to the server which contains a mobio-context header with
|
93
|
+
# a value of "mycustomcontext" to "/news"
|
94
|
+
#
|
95
|
+
# Calling get_request_context(some_url_property) would return
|
96
|
+
#
|
97
|
+
# "/mycustomcontext/news"
|
98
|
+
#
|
99
|
+
# If no header exists, the method returns the value of the property, unfiltered
|
100
|
+
#
|
101
|
+
def get_external_context(url=nil)
|
102
|
+
external_context_prop = "_external_context"
|
103
|
+
|
104
|
+
context = request.env['HTTP_MOBIO_CONTEXT']
|
105
|
+
|
106
|
+
if context and not context == '' and url
|
107
|
+
external_context = MOBIO_CONFIG[url].gsub(external_context_prop, context)
|
108
|
+
RAILS_DEFAULT_LOGGER.debug 'Utils: Setting the uri to: "' +
|
109
|
+
external_context + '" for the current request.' unless not defined? RAILS_DEFAULT_LOGGER
|
110
|
+
return external_context
|
111
|
+
end
|
112
|
+
end
|
59
113
|
end
|
60
114
|
end
|
61
|
-
|
62
115
|
# Now we want to initialize the MOBIO_CONFIG constant
|
63
116
|
include Rmobio::ConfigManager
|
data/lib/rmobio/utils.rb
CHANGED
@@ -196,30 +196,7 @@ module Rmobio
|
|
196
196
|
logger.debug('back url ' + key + ': ' + url)
|
197
197
|
"<burl>" + url + "</burl>"
|
198
198
|
end # end backurl_xml
|
199
|
-
|
200
|
-
# set_request_context
|
201
|
-
# This filter checks for the existence of a "mobio-context" header.
|
202
|
-
# If the header exists, then it is prepended to the request's uri. The flow
|
203
|
-
# is the following:
|
204
|
-
#
|
205
|
-
#
|
206
|
-
# A request is made to the server which contains a mobio-context header with
|
207
|
-
# a value of "mycustomcontext" to "/news"
|
208
|
-
#
|
209
|
-
# After applying the filter, the request uri would become
|
210
|
-
#
|
211
|
-
# "/mycustomcontext/news"
|
212
|
-
#
|
213
|
-
# If no header exists, the filter acts as a pass-through.
|
214
|
-
#
|
215
|
-
def set_request_context
|
216
|
-
if request.env['HTTP_MOBIO-CONTEXT'] and not request.env['HTTP_MOBIO-CONTEXT'] == ''
|
217
|
-
request.request_uri = '/' + request.env['HTTP_MOBIO-CONTEXT'] + request.request_uri
|
218
|
-
RAILS_DEFAULT_LOGGER.debug 'Utils: Setting the uri to: "' +
|
219
|
-
request.request_uri + '" for the current request.' unless not defined? RAILS_DEFAULT_LOGGER
|
220
|
-
end
|
221
|
-
end
|
222
|
-
|
199
|
+
|
223
200
|
def logHeaders
|
224
201
|
logger.debug( "Logging Headers...")
|
225
202
|
request.env.keys.each do |header|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rmobio
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mobio Networks
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-04-
|
12
|
+
date: 2008-04-15 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|