recon.rb 835 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. require 'json'
  2. require 'uri'
  3. class Recon
  4. def facts(entity)
  5. end
  6. def email(address)
  7. end
  8. def phone(number)
  9. end
  10. def profile(url)
  11. end
  12. def product(url)
  13. end
  14. def website(url)
  15. end
  16. def article(url)
  17. end
  18. def whois(domain)
  19. end
  20. def contacts(domain)
  21. hash = {}
  22. website = Website.where(:domain => domain).first
  23. if website
  24. emails = website.email_leads
  25. phones = website.phone_leads
  26. socials = website.social_leads
  27. hash[:emails] = emails
  28. hash[:social] = socials
  29. hash[:phones] = phones
  30. end
  31. hash
  32. end
  33. def youtube(url)
  34. end
  35. def ograph_data(url)
  36. end
  37. def facebook(url)
  38. end
  39. def twitter(url)
  40. end
  41. def linkedin(url)
  42. end
  43. def instagram(url)
  44. end
  45. def pinterest(url)
  46. end
  47. def influence(username, network)
  48. end
  49. end