rmobio 1.1.2 → 1.1.3
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/ads/ad_sense.rb +87 -105
- data/lib/rmobio/ads/m_khoj.rb +0 -1
- data/lib/rmobio/ads.rb +5 -3
- metadata +8 -8
data/lib/rmobio/ads/ad_sense.rb
CHANGED
@@ -25,28 +25,11 @@ require 'collections/sequenced_hash'
|
|
25
25
|
|
26
26
|
module Rmobio
|
27
27
|
module Ads
|
28
|
-
module AdSense
|
28
|
+
module AdSense
|
29
29
|
|
30
|
-
|
31
|
-
@@adsense=$ADSENSE
|
32
30
|
@@adServer="http://pagead2.googlesyndication.com/pagead/ads"
|
33
31
|
@@adClient="ca-mb-pub-0061196910475770"
|
34
|
-
@@mobioUseragent="Mobio" # we should probably come up with a better string
|
35
|
-
|
36
|
-
# Determines whether this request should involve adSense.
|
37
|
-
def doAdSense()
|
38
|
-
# is adsense enabled for the project?
|
39
|
-
if (@@adsense != 1)
|
40
|
-
return false
|
41
|
-
end
|
42
|
-
|
43
|
-
# returns true of false depending on what client is making this request.
|
44
|
-
if (@client == 'facebook')
|
45
|
-
return false
|
46
|
-
else
|
47
|
-
return true
|
48
|
-
end
|
49
|
-
end
|
32
|
+
@@mobioUseragent="Mobio" # we should probably come up with a better string
|
50
33
|
|
51
34
|
def getAdParms
|
52
35
|
getAd(params[:keywords])
|
@@ -68,101 +51,100 @@ module Rmobio
|
|
68
51
|
#$GLOBALS['google']['useragent']=$_SERVER['HTTP_USER_AGENT'];
|
69
52
|
|
70
53
|
def getAdByPage
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
end
|
54
|
+
|
55
|
+
@@userId=request.env['HTTP_USERID']
|
56
|
+
if (@@userId.nil?)
|
57
|
+
@@userId="101"
|
58
|
+
end
|
59
|
+
|
60
|
+
adArgs= SequencedHash.new
|
61
|
+
adArgs["ad_type"]="text"
|
62
|
+
adArgs["channel"]="8618723264"
|
63
|
+
adArgs["client"]="pub-0061196910475770"
|
64
|
+
adArgs["format"]="mobile_single"
|
65
|
+
adArgs["host"]=request.host
|
66
|
+
adArgs["ip"]=request.remote_ip
|
67
|
+
adArgs["markup"]="xhtml"
|
68
|
+
adArgs["output"]="xhtml"
|
69
|
+
adArgs["oe"]="utf8"
|
70
|
+
adArgs["ref"]=request.referer
|
71
|
+
adArgs["url"]="http://"+request.env["HTTP_HOST"]+request.env["REQUEST_URI"]
|
72
|
+
#adArgs["useragent"]=request.user_agent
|
73
|
+
adArgs["eip"]=Digest::SHA1.hexdigest(@@userId)[0..20] # oneway hashed userid
|
74
|
+
|
75
|
+
# now built the URL to call out to based upon the base URL and ad hash
|
76
|
+
adURL=@@adServer + "?"
|
77
|
+
first=1 # dont put ampersand on first one
|
78
|
+
adArgs.each_key do |x|
|
79
|
+
if adArgs[x]
|
80
|
+
(adURL=adURL+"&") unless first
|
81
|
+
first=nil # start putting in &s
|
82
|
+
adURL = adURL + x + "=" + adArgs[x]
|
101
83
|
end
|
102
|
-
|
103
|
-
|
104
|
-
|
84
|
+
end
|
85
|
+
# ok, now call google's mobile adSense service and get back the full ad
|
86
|
+
@pagead=open(adURL).read
|
87
|
+
|
105
88
|
end
|
106
89
|
|
107
90
|
# this returns an adfrom Google's mobile AdSense, given a supplied set of keywords
|
108
91
|
def getAd(keywords)
|
109
|
-
puts "Adsense"
|
110
92
|
doTinyUrl=true
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
93
|
+
|
94
|
+
@@userId=request.env['HTTP_USERID']
|
95
|
+
if (@@userId.nil?)
|
96
|
+
@@userId="101"
|
97
|
+
end
|
98
|
+
# build up the various arguments in the adArgs hash
|
99
|
+
adArgs= SequencedHash.new
|
100
|
+
adArgs["ad_type"]="text"
|
101
|
+
adArgs["client"]=@@adClient # get it from gateway instead!
|
102
|
+
adArgs["format"]="mobile_single"
|
103
|
+
adArgs["ip"]=request.remote_ip
|
104
|
+
adArgs["markup"]="xhtml"
|
105
|
+
adArgs["output"]="wml"
|
106
|
+
adArgs["oe"]="utf-8"
|
107
|
+
adArgs["url"]="http:%3A%2Fwww.getmobio.com" # mobio's home site
|
108
|
+
adArgs["useragent"]=@@mobioUseragent # user agent for our browser.
|
109
|
+
adArgs["eip"]=Digest::SHA1.hexdigest(@@userId)[0..20] # oneway hashed userid
|
110
|
+
if (keywords)
|
111
|
+
adArgs["kw"]=CGI::escape(keywords)
|
112
|
+
adArgs["kw_type"]="broad"
|
113
|
+
end
|
114
|
+
# now built the URL to call out to based upon the base URL and ad hash
|
115
|
+
adURL=@@adServer + "?"
|
116
|
+
first=1 # dont put ampersand on first one
|
117
|
+
adArgs.each_key do |x|
|
118
|
+
if adArgs[x]
|
119
|
+
(adURL=adURL+"&") unless first
|
120
|
+
first=nil # start putting in &s
|
121
|
+
adURL = adURL + x + "=" + adArgs[x]
|
131
122
|
end
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
123
|
+
end
|
124
|
+
# ok, now call google's mobile adSense service and get back the full ad
|
125
|
+
@ad=open(adURL).read
|
126
|
+
if @ad
|
127
|
+
logger.info "Returned ad" + @ad
|
128
|
+
adDoc = REXML::Document.new @ad
|
129
|
+
@text = adDoc.elements['//p']
|
130
|
+
if @text # do we have a <p> element
|
131
|
+
# ok, now text has the full ad display content including links
|
132
|
+
# grab @url, @urltext (link text for url), @phone, @phonetext (link text for call)
|
133
|
+
if defined? @text[1].attributes['href'] and @text[1].attributes['href']
|
134
|
+
@adurl = doTinyUrl ? tinyUrl(@text[1].attributes['href']) : @text[1].attributes['href']
|
135
|
+
else
|
136
|
+
@adurl = "nolink.rwap"
|
140
137
|
end
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
adDoc = REXML::Document.new @ad
|
147
|
-
@text = adDoc.elements['//p']
|
148
|
-
if @text # do we have a <p> element
|
149
|
-
# ok, now text has the full ad display content including links
|
150
|
-
# grab @url, @urltext (link text for url), @phone, @phonetext (link text for call)
|
151
|
-
if defined? @text[1].attributes['href'] and @text[1].attributes['href']
|
152
|
-
@adurl = doTinyUrl ? tinyUrl(@text[1].attributes['href']) : @text[1].attributes['href']
|
153
|
-
else
|
154
|
-
@adurl = "nolink.rwap"
|
155
|
-
end
|
156
|
-
@urltext=@text[1].text
|
157
|
-
@extratext=@text[2].to_s if @text[2] # this should have everything else that is not a child element
|
158
|
-
if (@text.size>3 and @text[3]) # only process @text[3] for phone stuff if it exists
|
159
|
-
@phone = (doTinyUrl ? tinyUrl(@text[3].attributes['href']) : @text[3].attributes['href']) if defined? @text[3].attributes['href'] and @text[3].attributes['href']
|
160
|
-
@phonetext=@text[3].text if defined? @text[3].text and @text[3].text
|
161
|
-
end
|
138
|
+
@urltext=@text[1].text
|
139
|
+
@extratext=@text[2].to_s if @text[2] # this should have everything else that is not a child element
|
140
|
+
if (@text.size>3 and @text[3]) # only process @text[3] for phone stuff if it exists
|
141
|
+
@phone = (doTinyUrl ? tinyUrl(@text[3].attributes['href']) : @text[3].attributes['href']) if defined? @text[3].attributes['href'] and @text[3].attributes['href']
|
142
|
+
@phonetext=@text[3].text if defined? @text[3].text and @text[3].text
|
162
143
|
end
|
163
|
-
end
|
164
|
-
|
165
|
-
|
144
|
+
end
|
145
|
+
end # if we get an ad back from adsense
|
146
|
+
@ad # return the full ad text
|
147
|
+
|
166
148
|
end
|
167
149
|
|
168
150
|
private
|
data/lib/rmobio/ads/m_khoj.rb
CHANGED
data/lib/rmobio/ads.rb
CHANGED
@@ -19,6 +19,8 @@
|
|
19
19
|
note that we require use of the new Mobio config yml schema created by Lars
|
20
20
|
and documented at http://opssrv01/wiki/index.php/Mobio_Rails_Application_Framework_2.0#Use_Config_Manager
|
21
21
|
=end
|
22
|
-
|
23
|
-
|
24
|
-
|
22
|
+
if not defined? MOBIO_CONFIG['ad_network'] and MOBIO_CONFIG['ad_network'].nil?
|
23
|
+
adlib="rmobio/ads/" + MOBIO_CONFIG['ad_network']
|
24
|
+
require adlib
|
25
|
+
eval("include " + adlib.camelize)
|
26
|
+
end
|
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.3
|
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-03-
|
12
|
+
date: 2008-03-25 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -31,8 +31,11 @@ extra_rdoc_files: []
|
|
31
31
|
|
32
32
|
files:
|
33
33
|
- lib/rmobio
|
34
|
-
- lib/rmobio.rb
|
35
34
|
- lib/rmobio/ads
|
35
|
+
- lib/rmobio/ads/ad_mobs.rb
|
36
|
+
- lib/rmobio/ads/ad_sense.rb
|
37
|
+
- lib/rmobio/ads/m_khoj.rb
|
38
|
+
- lib/rmobio/ads/smaato.rb
|
36
39
|
- lib/rmobio/ads.rb
|
37
40
|
- lib/rmobio/auth.rb
|
38
41
|
- lib/rmobio/cas.rb
|
@@ -41,11 +44,6 @@ files:
|
|
41
44
|
- lib/rmobio/raketasks.rb
|
42
45
|
- lib/rmobio/utils.rb
|
43
46
|
- lib/rmobio/webservices
|
44
|
-
- lib/rmobio/webservices.rb
|
45
|
-
- lib/rmobio/ads/ad_mobs.rb
|
46
|
-
- lib/rmobio/ads/ad_sense.rb
|
47
|
-
- lib/rmobio/ads/m_khoj.rb
|
48
|
-
- lib/rmobio/ads/smaato.rb
|
49
47
|
- lib/rmobio/webservices/rest
|
50
48
|
- lib/rmobio/webservices/soap
|
51
49
|
- lib/rmobio/webservices/soap/drivers.rb
|
@@ -54,6 +52,8 @@ files:
|
|
54
52
|
- lib/rmobio/webservices/soap/platform.rb
|
55
53
|
- lib/rmobio/webservices/soap/registration.rb
|
56
54
|
- lib/rmobio/webservices/soap/rss.rb
|
55
|
+
- lib/rmobio/webservices.rb
|
56
|
+
- lib/rmobio.rb
|
57
57
|
has_rdoc: false
|
58
58
|
homepage: http://rmobio.rubyforge.org/
|
59
59
|
post_install_message:
|