Module: BlackStack::Netting
- Defined in:
- lib/functions.rb
Overview
Network
Defined Under Namespace
Classes: ApiCallException
Constant Summary collapse
- CALL_METHOD_GET =
'get'- CALL_METHOD_POST =
'post'- DEFAULT_SSL_VERIFY_MODE =
OpenSSL::SSL::VERIFY_NONE
- SUCCESS =
'success'- @@lockfiles =
[]
- @@max_api_call_channels =
0 means infinite
0
Class Method Summary collapse
-
.add_param(url, param_name, param_value) ⇒ Object
Add a parameter to the url.
-
.api_call(url, params = {}, method = BlackStack::Netting::CALL_METHOD_POST, ssl_verify_mode = BlackStack::Netting::DEFAULT_SSL_VERIFY_MODE, max_retries = 5) ⇒ Object
TODO: deprecated.
-
.call_get(url, params = {}, ssl_verify_mode = BlackStack::Netting::DEFAULT_SSL_VERIFY_MODE, support_redirections = true) ⇒ Object
New call_get.
-
.call_post(url, body = {}, ssl_verify_mode = BlackStack::Netting::DEFAULT_SSL_VERIFY_MODE, support_redirections = true) ⇒ Object
Call the API and return th result.
-
.change_param(url, param_name, param_value) ⇒ Object
Changes the value of a parameter in the url.
-
.download(url, to) ⇒ Object
Download a file from an url to a local folder.
-
.file_age(filename) ⇒ Object
returns the age in days of the given file.
-
.get_host_without_www(url) ⇒ Object
Removes the ‘www.’ from an URL.
-
.get_redirect(url) ⇒ Object
Get the final URL if a web page is redirecting.
-
.get_url_extension(url) ⇒ Object
Return the extension of the last path into an URL.
- .getDomainFromEmail(email) ⇒ Object
-
.getDomainFromUrl(url) ⇒ Object
get the domain from any url.
-
.getMailHandler(email) ⇒ Object
raise an exception if
emailis not a valid email address. - .getWhoisDomains(domain, allow_heuristic_to_avoid_hosting_companies = false) ⇒ Object
-
.isPersonalEmail?(email) ⇒ Boolean
raise an exception if
emailis not a valid email address. - .lockfiles ⇒ Object
- .max_api_call_channels ⇒ Object
-
.params(url) ⇒ Object
returns a hash with the parametes in the url.
- .set(h) ⇒ Object
-
.set_param(url, param_name, param_value) ⇒ Object
Change or add the value of a parameter in the url, depending if the parameter already exists or not.
Class Method Details
.add_param(url, param_name, param_value) ⇒ Object
Add a parameter to the url. It doesn’t validate if the param already exists.
1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 |
# File 'lib/functions.rb', line 1052 def self.add_param(url, param_name, param_value) uri = URI(url) params = URI.decode_www_form(uri.query || '') if (params.size==0) params << [param_name, param_value] uri.query = URI.encode_www_form(params) return uri.to_s else uri.query = URI.encode_www_form(params) return uri.to_s + "&" + param_name + "=" + param_value end end |
.api_call(url, params = {}, method = BlackStack::Netting::CALL_METHOD_POST, ssl_verify_mode = BlackStack::Netting::DEFAULT_SSL_VERIFY_MODE, max_retries = 5) ⇒ Object
TODO: deprecated
931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 |
# File 'lib/functions.rb', line 931 def self.api_call(url, params={}, method=BlackStack::Netting::CALL_METHOD_POST, ssl_verify_mode=BlackStack::Netting::DEFAULT_SSL_VERIFY_MODE, max_retries=5) nTries = 0 bSuccess = false parsed = nil sError = "" while (nTries < max_retries && bSuccess == false) begin nTries = nTries + 1 uri = URI(url) res = BlackStack::Netting::call_post(uri, params, ssl_verify_mode) if method==BlackStack::Netting::CALL_METHOD_POST res = BlackStack::Netting::call_get(uri, params, ssl_verify_mode) if method==BlackStack::Netting::CALL_METHOD_GET parsed = JSON.parse(res.body) if (parsed['status']==BlackStack::Netting::SUCCESS) bSuccess = true else sError = "Status: #{parsed['status'].to_s}. Description: #{parsed['value'].to_s}." end rescue Errno::ECONNREFUSED => e sError = "Errno::ECONNREFUSED:" + e.to_console rescue => e2 sError = "Exception:" + e2.to_console end end # while if (bSuccess==false) raise "#{sError}" end end |
.call_get(url, params = {}, ssl_verify_mode = BlackStack::Netting::DEFAULT_SSL_VERIFY_MODE, support_redirections = true) ⇒ Object
New call_get
875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 |
# File 'lib/functions.rb', line 875 def self.call_get(url, params = {}, ssl_verify_mode=BlackStack::Netting::DEFAULT_SSL_VERIFY_MODE, support_redirections=true) uri = URI(url) uri.query = URI.encode_www_form(params) Net::HTTP.start(uri.host, uri.port, :use_ssl => uri.scheme == 'https', :verify_mode => ssl_verify_mode) do |http| req = Net::HTTP::Get.new uri #req.body = body if !body.nil? res = http.request req case res when Net::HTTPSuccess then res when Net::HTTPRedirection then BlackStack::Netting::call_get(URI(res['location']), params, ssl_verify_mode, false) if support_redirections else res.error! end end end |
.call_post(url, body = {}, ssl_verify_mode = BlackStack::Netting::DEFAULT_SSL_VERIFY_MODE, support_redirections = true) ⇒ Object
Call the API and return th result.
Unlike Net::HTTP::Post, this method support complex json descriptors in order to submit complex data strucutres to access points. For more information about support for complex data structures, reference to: github.com/leandrosardi/mysaas/issues/59
url: valid internet address body: hash of body to attach in the call ssl_verify_mode: you can disabele SSL verification here. max_channels: this method use lockfiles to prevent an excesive number of API calls from each datacenter. There is not allowed more simultaneous calls than max_channels.
TODO: parameter support_redirections has been deprecated.
903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 |
# File 'lib/functions.rb', line 903 def self.call_post(url, body = {}, ssl_verify_mode=BlackStack::Netting::DEFAULT_SSL_VERIFY_MODE, support_redirections=true) # issue: https://github.com/leandrosardi/mysaas/issues/59 # # when ruby pushes hash of hashes (or hash of arrays), all values are converted into strings. # and arrays are mapped to the last element only. # # the solution is to convert each element of the hash into a string using `.to_json` method. # # references: # - https://stackoverflow.com/questions/1667630/how-do-i-convert-a-string-object-into-a-hash-object # - https://stackoverflow.com/questions/67572866/how-to-build-complex-json-to-post-to-a-web-service-with-rails-5-2-and-faraday-ge # # iterate the keys of the hash # params = {} # not needed for post calls to access points path = URI::parse(url).path domain = url.gsub(/#{Regexp.escape(path)}/, '') conn = Faraday.new(domain, :ssl=>{:verify=>ssl_verify_mode!=OpenSSL::SSL::VERIFY_NONE}) ret = conn.post(path, params) do |req| req.body = body.to_json req.headers['Content-Type'] = 'application/json' req.headers['Accept'] = 'application/json' end ret end |
.change_param(url, param_name, param_value) ⇒ Object
Changes the value of a parameter in the url. It doesn’t validate if the param already exists.
1067 1068 1069 1070 1071 1072 1073 1074 |
# File 'lib/functions.rb', line 1067 def self.change_param(url, param_name, param_value) uri = URI(url) # params = URI.decode_www_form(uri.query || []) params = CGI.parse(uri.query) params["start"] = param_value uri.query = URI.encode_www_form(params) uri.to_s end |
.download(url, to) ⇒ Object
Download a file from an url to a local folder. url: must be somedomain.net instead of somedomain.net/, otherwise, it will throw exception. to: must be a valid path to a folder.
963 964 965 966 967 968 969 970 971 972 973 974 |
# File 'lib/functions.rb', line 963 def self.download(url, to) uri = URI(url) domain = uri.host.start_with?('www.') ? uri.host[4..-1] : uri.host path = uri.path filename = path.split("/").last Net::HTTP.start(domain) do |http| resp = http.get(path) open(to, "wb") do |file| file.write(resp.body) end end end |
.file_age(filename) ⇒ Object
returns the age in days of the given file
999 1000 1001 |
# File 'lib/functions.rb', line 999 def self.file_age(filename) (Time.now - File.ctime(filename))/(24*3600) end |
.get_host_without_www(url) ⇒ Object
Removes the ‘www.’ from an URL.
983 984 985 986 987 |
# File 'lib/functions.rb', line 983 def self.get_host_without_www(url) url = "http://#{url}" if URI.parse(url).scheme.nil? host = URI.parse(url).host.downcase host.start_with?('www.') ? host[4..-1] : host end |
.get_redirect(url) ⇒ Object
Get the final URL if a web page is redirecting.
990 991 992 993 994 995 996 |
# File 'lib/functions.rb', line 990 def self.get_redirect(url) uri = URI.parse(url) protocol = uri.scheme host = uri.host.downcase res = Net::HTTP.get_response(uri) "#{protocol}://#{host}#{res['location']}" end |
.get_url_extension(url) ⇒ Object
Return the extension of the last path into an URL. Example: get_url_extension(“connect.data.com/sitemap_index.xml?foo_param=foo_value”) => “.xml”
978 979 980 |
# File 'lib/functions.rb', line 978 def self.get_url_extension(url) return File.extname(URI.parse(url).path.to_s) end |
.getDomainFromEmail(email) ⇒ Object
1104 1105 1106 1107 1108 1109 1110 |
# File 'lib/functions.rb', line 1104 def self.getDomainFromEmail(email) if email.email? return email.split("@").last else raise "getDomainFromEmail: Wrong email format." end end |
.getDomainFromUrl(url) ⇒ Object
get the domain from any url
1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 |
# File 'lib/functions.rb', line 1088 def self.getDomainFromUrl(url) if (url !~ /^http:\/\//i && url !~ /^https:\/\//i) url = "http://#{url}" end if (URI.parse(url).host == nil) raise "Cannot get domain for #{url}" end if (url.to_s.length>0) return URI.parse(url).host.sub(/^www\./, '') else return nil end end |
.getMailHandler(email) ⇒ Object
raise an exception if email is not a valid email address. return an array with the companies who are hosting an email address, by running the linux command host.
1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 |
# File 'lib/functions.rb', line 1145 def self.getMailHandler(email) value = email # raise an exception if the data type is an email, but the email is not valid. raise "Email #{value} is not valid" if !value.email? # extract the domain from the email domain = value.split('@').last # run the `host` command s = `host -t mx #{domain}` # extract the domains from the output a = s.split("\n").map { |l| l.split.last } # extract the company who is hosting the mail a.map { |d| d.split('.').last(2).join('.') }.uniq end |
.getWhoisDomains(domain, allow_heuristic_to_avoid_hosting_companies = false) ⇒ Object
1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 |
# File 'lib/functions.rb', line 1112 def self.getWhoisDomains(domain, allow_heuristic_to_avoid_hosting_companies=false) a = Array.new c = Whois::Client.new r = c.lookup(domain) res = r.to_s.scan(/Registrant Email: (#{BlackStack::Strings::MATCH_EMAIL})/).first if (res!=nil) a << BlackStack::Netting::getDomainFromEmail(res[0].downcase) end res = r.to_s.scan(/Admin Email: (#{BlackStack::Strings::MATCH_EMAIL})/).first if (res!=nil) a << BlackStack::Netting::getDomainFromEmail(res[0].downcase) end res = r.to_s.scan(/Tech Email: (#{BlackStack::Strings::MATCH_EMAIL})/).first if (res!=nil) a << BlackStack::Netting::getDomainFromEmail(res[0].downcase) end # remover duplicados a = a.uniq # if (allow_heuristic_to_avoid_hosting_companies==true) # TODO: develop this feature end return a end |
.isPersonalEmail?(email) ⇒ Boolean
raise an exception if email is not a valid email address. return if the email domain is gmail, hotmail, outlook, yahoo, comcast, aol, msn or sbcglobal.
1161 1162 1163 1164 1165 1166 1167 1168 1169 |
# File 'lib/functions.rb', line 1161 def self.isPersonalEmail?(email) value = email # raise an exception if the data type is an email, but the email is not valid. raise "Email #{value} is not valid" if !value.email? # extract the domain from the email domain = value.split('@').last # return domain=~/gmail\.com/ || domain=~/hotmail\.com/ || domain=~/outlook\.com/ || domain=~/yahoo\.com/ || domain=~/comcast\.com/ || domain=~/aol\.com/ || domain=~/msn\.com/ || domain=~/sbcglobal\.net/ ? true : false end |
.lockfiles ⇒ Object
846 847 848 |
# File 'lib/functions.rb', line 846 def self.lockfiles() @@lockfiles end |
.max_api_call_channels ⇒ Object
842 843 844 |
# File 'lib/functions.rb', line 842 def self.max_api_call_channels() @@max_api_call_channels end |
.params(url) ⇒ Object
returns a hash with the parametes in the url
1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 |
# File 'lib/functions.rb', line 1039 def self.params(url) # TODO: Corregir este parche: # => El codigo de abajo usa la URL de una busqueda en google. Esta url generara una excepcion cuando se intenta parsear sus parametros. # => Ejecutar las 2 lineas de abajo para verificar. # => url = "https://www.google.com/webhp#q=[lead+generation]+%22John%22+%22Greater+New+York+City+Area+*+Financial+Services%22+site:linkedin.com%2Fpub+-site:linkedin.com%2Fpub%2Fdir" # => p = CGI::parse(URI.parse(url).query) # => La linea de abajo hace un gsbub que hace que esta url siga funcionando como busqueda de google, y ademas se posible parsearla. url = url.gsub("webhp#q=", "webhp?q=") return CGI::parse(URI.parse(url).query) end |
.set(h) ⇒ Object
850 851 852 853 854 855 856 857 858 859 |
# File 'lib/functions.rb', line 850 def self.set(h) @@max_api_call_channels = h[:max_api_call_channels] @@lockfiles = [] i = 0 while i<@@max_api_call_channels @@lockfiles << File.open("./apicall.channel_#{i.to_s}.lock", "w") i+=1 end end |
.set_param(url, param_name, param_value) ⇒ Object
Change or add the value of a parameter in the url, depending if the parameter already exists or not.
1077 1078 1079 1080 1081 1082 1083 1084 1085 |
# File 'lib/functions.rb', line 1077 def self.set_param(url, param_name, param_value) params = BlackStack::Netting::params(url) if ( params.has_key?(param_name) == true ) newurl = BlackStack::Netting::change_param(url, param_name, param_value) else newurl = BlackStack::Netting::add_param(url, param_name, param_value) end return newurl end |