Class: PhantomJSProxy::PhantomJS

Inherits:
Object
  • Object
show all
Defined in:
lib/phantom_proxy/phantomjs.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializePhantomJS

Returns a new instance of PhantomJS.



9
10
11
# File 'lib/phantom_proxy/phantomjs.rb', line 9

def initialize()
  @ready = 503
end

Instance Attribute Details

#domObject

Returns the value of attribute dom.



5
6
7
# File 'lib/phantom_proxy/phantomjs.rb', line 5

def dom
  @dom
end

#imageObject

Returns the value of attribute image.



6
7
8
# File 'lib/phantom_proxy/phantomjs.rb', line 6

def image
  @image
end

#readyObject

Returns the value of attribute ready.



7
8
9
# File 'lib/phantom_proxy/phantomjs.rb', line 7

def ready
  @ready
end

Instance Method Details

#getAsImageResponse(type = 'png') ⇒ Object



90
91
92
# File 'lib/phantom_proxy/phantomjs.rb', line 90

def getAsImageResponse(type='png')
  return "HTTP/1.0 200 OK\r\nConnection: close\r\nContent-Type: image/"+type+"\r\n\r\n"+@image;
end

#getDOMText(data) ⇒ Object



77
78
79
80
81
# File 'lib/phantom_proxy/phantomjs.rb', line 77

def getDOMText data
  tmp = data.split('PHANTOMJS_DOMDATA_WRITE:')[1];
  tmp = tmp.split('PHANTOMJS_DOMDATA_END')[0]
  tmp
end

#getHTTPCode(data) ⇒ Object



83
84
85
86
87
88
# File 'lib/phantom_proxy/phantomjs.rb', line 83

def getHTTPCode data
  tmp = data.split('URL_ERROR_CODE: ')[1];
    tmp = tmp.split('URL_ERROR_CODE_END')[0]
  #tmp = /FAILED_LOADING_URL: (.*?)FAILED_LOADING_URL_END/.match(data)[1]
  tmp.to_i
end

#getUrl(url, pictureOnly = true, loadIFrames = true) ⇒ Object



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# File 'lib/phantom_proxy/phantomjs.rb', line 13

def getUrl(url, pictureOnly=true, loadIFrames=true)
  puts("PhantomJS: "+url)
  @ready = 503
  
  pictureFile = nil
  picture = "none"
    
    loadFrames = "false"
    
    if loadIFrames
      loadFrames = "true"
    end
  
  if pictureOnly
    if !File.directory?("/tmp/phantom_proxy")
      Dir.mkdir("/tmp/phantom_proxy")
    end
    pictureFile = Tempfile.new(["phantom_proxy/page", ".png"])
    picture = pictureFile.path
  end
  
  url_args = ""
  url_args_ = []
    
  if /\?/.match(url)
    url_args = url.split('?')[1]
    url = url.split('?')[0]
    
    if url_args
      url_args_ = url_args.split('&')
      url_args = url_args_.join(' ')
    end
  end
  
  @dom = invokePhantomJS(SCRIPT, [picture, loadFrames, "\""+url+"\"", url_args_.length, url_args])
  
  puts("Opened page: "+ /Open page: (.*?) END/.match(@dom)[1])
  
  @ready = 503
  dom_text = "Failed to load page"
  
  if /DONE_LOADING_URL/.match(@dom)
      puts("LOAD_DOM_TEXT")
    dom_text = getDOMText @dom
      puts("LOAD_DOM_TEXT_DONE")
    if pictureOnly && File.exist?(picture) 
      puts("File is there")
      @image = IO::File.open(picture, "rb") {|f| f.read }
      pictureFile.close!
    else
      puts("No file to load at: "+picture)
      @image = ""
    end
    @ready = 200
  end
  if /URL_ERROR_CODE/.match(@dom)
      puts("LOAD_ERROR_CODE")
    @ready = getHTTPCode @dom
      puts("LOAD_ERROR_CODE_DONE: #{@ready}")
  end
  @dom = dom_text
  return @dom
end

#invokePhantomJS(script, args) ⇒ Object



94
95
96
97
98
99
100
101
102
103
104
# File 'lib/phantom_proxy/phantomjs.rb', line 94

def invokePhantomJS(script, args)
  argString = " "+args.join(" ")
  puts("Call phantomJS with: "+argString)
  out = ""

  IO.popen(PHANTOMJS_BIN+" --ignore-ssl-errors=yes --web-security=false "+script+argString) {|io|
    out = io.readlines.join
  }
    #puts("PHANTOMJS_OUT: "+out)
  return out
end