Advertisement
warfar

hget

May 14th, 2013
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.04 KB | None | 0 0
  1. --hget
  2. local function printUsage()
  3.     print( "Usages:" )
  4.     print( "hget <code> <filename>" )
  5. end
  6.  
  7. local tArgs = { ... }
  8. if #tArgs ~= 2 then
  9.     printUsage()
  10.     return
  11. end
  12.  
  13. if not http then
  14.     print( "hget requires http API" )
  15.     print( "Set enableAPI_http to 1 in mod_ComputerCraft.cfg" )
  16.     return
  17. end
  18. local sCode
  19. local l = #tArgs[1]
  20. if l > 15 then
  21.     sCode = string.sub(tArgs[1],25,34)
  22. elseif l < 15 then
  23.     sCode = tArgs[1]
  24. else printUsage()
  25. return
  26. end
  27.  
  28.  
  29. -- Determine file to download
  30. local sFile = tArgs[2]
  31. local sPath = shell.resolve( sFile )
  32. if fs.exists( sPath ) then
  33.     fs.delete( sPath )
  34. end
  35. -- GET the contents from pastebin
  36. write( "Connecting" )
  37. local response = http.get("http://www.hastebin.com/raw/"..textutils.urlEncode( sCode ))
  38. if response then
  39.     term.clear()
  40.     term.setCursorPos(1,1)
  41.     print( "Success." )
  42.  
  43.     local sResponse = response.readAll()
  44.     response.close()
  45.  
  46.     local file = fs.open( sPath, "w" )
  47.     file.write( sResponse )
  48.     file.close()
  49. else
  50.     print( "Failed." )
  51. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement