Class: Ayadn::CNX

Inherits:
Object
  • Object
show all
Defined in:
lib/ayadn/cnx.rb

Class Method Summary collapse

Class Method Details

.check(response) ⇒ Object



83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# File 'lib/ayadn/cnx.rb', line 83

def self.check response
  message = JSON.parse(response)['meta']['error_message'] if response.code != 200
  case response.code
  when 200
    response
  when 204
    puts "\n#{message}".color(:red)
    Errors.global_error({error: "NO CONTENT", caller: caller, data: [message, response.headers]})
  when 400
    puts "\n#{message}".color(:red)
    Errors.global_error({error: "BAD REQUEST", caller: caller, data: [message, response.headers]})
  when 401
    puts "\n#{message}".color(:red)
    Errors.global_error({error: "UNAUTHORIZED", caller: caller, data: [message, response.headers]})
  when 403
    puts "\n#{message}".color(:red)
    Errors.global_error({error: "FORBIDDEN", caller: caller, data: [message, response.headers]})
  when 405
    puts "\n#{message}".color(:red)
    Errors.global_error({error: "METHOD NOT ALLOWED", caller: caller, data: [message, response.headers]})
  when 429
    puts "\n#{message}".color(:red)
    puts "\n\nAyadn made too many requests to the App.net API. You should wait at least ".color(:cyan) + "#{response.headers[:retry_after]} ".color(:red) + "seconds before trying again. Maybe you launched a lot of Ayadn instances at the same time? That's no problem, but in this case you should increase the value of the scroll timer (with `ayadn set scroll timer 5` for example). App.net allows 5000 requests per hour per account maximum.".color(:cyan)
    Errors.global_error({error: "TOO MANY REQUESTS", caller: caller, data: [message, response.headers]})
  when 500
    puts "\n#{message}".color(:red)
    Errors.global_error({error: "APP.NET SERVER ERROR", caller: caller, data: [message, response.headers]})
  when 507
    puts "\n#{message}".color(:red)
    Errors.global_error({error: "INSUFFICIENT STORAGE", caller: caller, data: [message, response.headers]})
  else
    response
  end
end

.check_nr(response, url) ⇒ Object



43
44
45
46
47
48
49
50
51
52
53
# File 'lib/ayadn/cnx.rb', line 43

def self.check_nr response, url
  case response.code
  when 200
    response
  when 204
    puts "\nError: the NiceRank filter made too many requests to the server. You may either wait for a little while before scrolling the filtered Global again, or set the scroll timer to a greater value (example: `ayadn set scroll timer 5`). (see http://ayadn-app.net/doc).\n".color(:red)
    Errors.global_error({error: "NiceRank: TOO MANY REQUESTS", caller: caller, data: [url, response.inspect, response.headers]})
  else
    response
  end
end

.delete(url) ⇒ Object



118
119
120
121
122
123
124
125
126
127
128
129
130
# File 'lib/ayadn/cnx.rb', line 118

def self.delete(url)
  begin
    RestClient.delete(url) do |response, request, result|
      Debug.http response, url
      check response
    end
  rescue SocketError, SystemCallError => e
    puts "\nConnection error.".color(:red)
    Errors.global_error({error: e, caller: caller, data: [url]})
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [url]})
  end
end

.download(url) ⇒ Object



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'lib/ayadn/cnx.rb', line 5

def self.download url
  working = true
  begin
    RestClient.get(url) {|response, request, result| response}
  rescue SocketError, SystemCallError, OpenSSL::SSL::SSLError, RestClient::RequestTimeout => e
    if working == true
      working = false
      puts "\nOoops, '#{url}' didn't respond. Trying again in 5 secs.\n".color(:red)
      sleep 5
      retry
    end
    puts "\nConnexion error.\n\n".color(:red)
    Errors.global_error({error: e, caller: caller, data: [url]})
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [url]})
  end
end

.get(url) ⇒ Object



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/ayadn/cnx.rb', line 23

def self.get url
  working = true
  begin
    RestClient.get(url) do |response, request, result|
      Debug.http response, url
      check_nr response, url
    end
  rescue SocketError, SystemCallError, OpenSSL::SSL::SSLError, RestClient::RequestTimeout => e
    if working == true
      working = false
      sleep 0.5
      retry
    end
    Errors.nr "URL: #{url}"
    return {'meta' => {'code' => 666}, 'data' => "#{e}"}.to_json
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [url]})
  end
end

.get_response_from(url) ⇒ Object



55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# File 'lib/ayadn/cnx.rb', line 55

def self.get_response_from(url)
  try_cnx = 1
  begin
    RestClient.get(url) do |response, request, result| #, :verify_ssl => OpenSSL::SSL::VERIFY_NONE
      Debug.http response, url
      check response
    end
  rescue SocketError, SystemCallError, OpenSSL::SSL::SSLError, RestClient::RequestTimeout => e
    if try_cnx < 4
      try_cnx = retry_adn 10, try_cnx
      retry
    end
    puts "\nConnection error.".color(:red)
    Errors.global_error({error: e, caller: caller, data: [url]})
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [url]})
  end
end

.post(url, payload = nil) ⇒ Object



132
133
134
135
136
137
138
139
140
141
142
143
144
# File 'lib/ayadn/cnx.rb', line 132

def self.post(url, payload = nil)
  begin
    RestClient.post(url, payload.to_json, :content_type => :json, :accept => :json) do |response, request, result|
      Debug.http response, url
      check response
    end
  rescue SocketError, SystemCallError => e
    puts "\nConnection error.".color(:red)
    Errors.global_error({error: e, caller: caller, data: [url, payload]})
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [url, payload]})
  end
end

.put(url, payload) ⇒ Object



146
147
148
149
150
151
152
153
154
155
156
157
158
# File 'lib/ayadn/cnx.rb', line 146

def self.put(url, payload)
  begin
    RestClient.put(url, payload.to_json, :content_type => :json, :accept => :json) do |response, request, result|
      Debug.http response, url
      check response
    end
  rescue SocketError, SystemCallError => e
    puts "\nConnection error.".color(:red)
    Errors.global_error({error: e, caller: caller, data: [url, payload]})
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [url, payload]})
  end
end

.retry_adn(seconds, try_cnx) ⇒ Object



74
75
76
77
78
79
80
81
# File 'lib/ayadn/cnx.rb', line 74

def self.retry_adn seconds, try_cnx
  Errors.warn "Unable to connect to App.net"
  puts "\n\nUnable to connect to App.net\nRetrying in #{seconds} seconds... (#{try_cnx}/3)\n".color(:red)
  try_cnx += 1
  sleep seconds
  puts "\e[H\e[2J"
  try_cnx
end