Sha256: b03893ce3b9bba39a47272ab421cb4c61abb889d02a15ab47b460a5cbaf08e4a

Contents?: true

Size: 1.7 KB

Versions: 4

Compression:

Stored size: 1.7 KB

Contents

#
# Copyright (C) 2007 Mobio Networks, Inc.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

=begin
this provides advertising fetch for m_khoj  
=end
require 'uri'
require 'open-uri' 

module Rmobio
  module Ads
    module MKhoj
      
      
      def getAd(keywords)
        getAdByPage # keywords have no effect in mKhoj 
      end
      
      def getAdByPage
        puts "mKhoj getAd"
        handset = request.user_agent if request.user_agent
        # handset="nokia6030/"
        handset = URI.escape(handset)
        #carrier = URI.escape(request.remote_ip)
        carrier="59.181.113.59" # only works with India carriers!!
        
        adUrl="http://www.mkhoj.com/view/Traffic/ShowAd.aspx?siteId=330ed28f-0de9-4c4f-b0a8-1f2118358c80&handset=nokia6030/&carrier=59.181.113.59"
        logger.info "Calling: " + adUrl
        #adUrl = "http://www.mkhoj.com/view/Traffic/ShowAd.aspx?siteId=330ed28f-0de9-4c4f-b0a8-1f2118358c80&handset="+handset+"&carrier="+carrier   
        begin
          @ad = open(adUrl).read   
          logger.info "Returned ad: " + @ad
        rescue
        end 
        @ad
      end
      
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rmobio-1.1.0 lib/rmobio/ads/m_khoj.rb
rmobio-1.1.1 lib/rmobio/ads/m_khoj.rb
rmobio-1.1.2 lib/rmobio/ads/m_khoj.rb
rmobio-1.1.4 lib/rmobio/ads/m_khoj.rb