Advertisement
Inksaver

Pastebin test

Jun 29th, 2014
816
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.12 KB | None | 0 0
  1. -- Pastebin get/put test program
  2. -- pastebin.com/25xQ8LwT
  3.  
  4. --[[
  5.     Original get/put code borrowed from:
  6.     [API] Pastebin
  7.     @version 1.0, 02/05/2014, TOB
  8.     @author TheOddByte, TOB
  9.     Thanks! modified by Inksaver
  10. --]]
  11.  
  12. function put(filename, key, username, password)
  13.     local userkey = ""
  14.     if not fs.exists(filename) then
  15.         error( "File doesn't exist: " .. filename, 2 )
  16.     end
  17.        
  18.     local f = fs.open(filename, "r")
  19.     local code = f.readAll()
  20.     f.close()
  21.     -- post to users own account, so get 'api_user_key
  22.     getUserkey = http.post(
  23.         "http://pastebin.com/api/api_login.php",
  24.         "api_dev_key="..key.."&"..
  25.         "api_user_name="..textutils.urlEncode(username).."&"..
  26.         "api_user_password="..textutils.urlEncode(password)
  27.     )
  28.     local hUserkey = getUserkey.readAll()
  29.     getUserkey.close()
  30.     local userkey = string.match( hUserkey, "[^/]+$" )
  31.     print("User Key = "..userkey)
  32.    
  33.     local response = http.post(
  34.         "http://pastebin.com/api/api_post.php",
  35.         "api_option=paste&"..
  36.         "api_dev_key="..key.."&"..
  37.         "api_paste_format=lua&"..
  38.         "api_user_key="..userkey.."&"..
  39.         "api_paste_name="..textutils.urlEncode(filename).."&"..
  40.         "api_paste_code="..textutils.urlEncode(code)
  41.     )
  42.                
  43.     if response then
  44.         local hResponse = response.readAll()
  45.         response.close()
  46.                
  47.         local sCode = string.match( hResponse, "[^/]+$" )
  48.         return true, name, sCode
  49.     else
  50.         return false
  51.     end
  52. end
  53.  
  54. function get( name, code )
  55.     local response = http.get( "http://pastebin.com/raw.php?i="..textutils.urlEncode(code) )
  56.     if response then
  57.         local sCode = response.readAll()
  58.         if sCode ~= nil and sCode ~= "" then
  59.             local file = fs.open( name, "w" )
  60.             response.close()
  61.             file.write(sCode)
  62.             file.close()
  63.             return true
  64.         end
  65.     end
  66.     return false
  67. end
  68. -- End of borrowed/modified code
  69.  
  70. term.clear()
  71. term.setCursorPos(1,1)
  72. print("Pastebin test program")
  73. print()
  74. if os.getComputerLabel() == nil then --set label to create a permanent record of this turtle
  75.     print("Naming this turtle as Miner1")
  76.     os.setComputerLabel("Miner1")
  77. end
  78. if fs.exists("pastebin.txt") then
  79.     codeFile = fs.open("pastebin.txt", "r")
  80.     print("Last url posted to pastebin = "..codeFile.readLine())
  81.     codeFile.close()
  82. end
  83. print("Do you want to run this test again? y/n")
  84. response = read()
  85. if response == "y" or response == "Y" then
  86.     print("Creating fake logfile...")
  87.     -- create 'testLog1.txt'
  88.     testFile = fs.open("testLog1.txt", "w")    
  89.     for i = 1,200 do
  90.         testFile.writeLine("Writing Logfile line number ".. i)
  91.     end
  92.     testFile.close()
  93.     term.clear()
  94.     term.setCursorPos(1,1)
  95.     if fs.exists("key.txt") then --pastebin details stored locally
  96.         --Only use if you trust the server operator!
  97.         keyFile = fs.open("key.txt", "r")
  98.         key = keyFile.readLine()
  99.         username = keyFile.readLine()
  100.         password = keyFile.readLine()
  101.         keyFile.close()
  102.     else
  103.         print("Do you have your own pastebin account? y/n?")
  104.         response = read()
  105.         if response == "y" or response == "Y" then -- use account holder's key
  106.             response = ""
  107.             while response ~= "y" do
  108.                 term.clear()
  109.                 term.setCursorPos(1,1)
  110.                 print("Enter/paste your pastebin developer key")
  111.                 key = read()
  112.                 print("You have entered the following key:")
  113.                 print(key)
  114.                 print("Is this correct? y/n")
  115.                 response = read()
  116.             end
  117.             response = ""
  118.             while response ~= "y" do
  119.                 term.clear()
  120.                 term.setCursorPos(1,1)
  121.                 print("Enter your pastebin username")
  122.                 username = read()
  123.                 print("You have entered the following username:")
  124.                 print(username)
  125.                 print("Is this correct? y/n")
  126.                 response = read()
  127.             end
  128.             response = ""
  129.             while response ~= "y" do
  130.                 term.clear()
  131.                 term.setCursorPos(1,1)
  132.                 print("Enter your pastebin password")
  133.                 password = read()
  134.                 print("You have entered the following password:")
  135.                 print(password)
  136.                 print("Is this correct? y/n")
  137.                 response = read()
  138.             end
  139.             term.clear()
  140.             term.setCursorPos(1,1)
  141.             print("Do you want to save your pastebin details")
  142.             print("on this minecraft server/gamesave?")
  143.             response = read()
  144.             if response == "y" or response == "Y" then
  145.                 keyFile = fs.open("key.txt", "w")
  146.                 keyFile.writeLine(key)
  147.                 keyFile.writeLine(username)
  148.                 keyFile.writeLine(password)
  149.                 keyFile.close()
  150.                 print("details saved to 'key.txt'")
  151.             end
  152.         end
  153.     end
  154.     term.clear()
  155.     term.setCursorPos(1,1)
  156.  
  157.     if key ~= "" then
  158.         print("Posting logfile to your pastebin account")
  159.         success, name, code = put("testLog1.txt", key, username, password)
  160.         if success then
  161.             print("Using stored pastebin details:")
  162.             print("Developer key = "..key)
  163.             print("Username = "..username)
  164.             print("password = "..password)
  165.             print("Post suceeded. Pastebin code is")
  166.             print(code)
  167.             print ("saved to pastebin.txt")
  168.             codeFile = fs.open("pastebin.txt", "w")
  169.             codeFile.writeLine("http://pastebin.com/"..code)
  170.             codeFile.close()
  171.         else
  172.             print("Posting failed")
  173.         end
  174.     else --no developer key so public paste
  175.         print("Posting logfile to public pastebin")
  176.         shell.run("pastebin", "put", "testLog1.txt")
  177.     end    
  178.  end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement