Advertisement
TIMAS_Bro

dns.lua

Jun 17th, 2023
935
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.85 KB | None | 0 0
  1. rednet.open("left")
  2. local ch= read()
  3. if ch == "createnew" then
  4.  print("Write here tld with dot! (.com): ")
  5.  local tld = read()
  6.  print("Write here domainname  (google): ")
  7.  local domain = read()
  8.  print("SERVER ID:")
  9.  local id = tonumber(read())
  10.  if not fs.exists("/disk/"..domain..tld) then
  11.    local file
  12.    file = fs.open("/disk/"..domain..tld, "w")
  13.    file.writeLine(id)
  14.    file.close()
  15.    rednet.send(id, "dnsreg")
  16.    print("Server "..id.." register OK! Domain: "..domain..tld)
  17.  end  
  18. end
  19. if ch == "startup" then
  20.   print(os.getComputerID())
  21.   while true do
  22.     local error = false
  23.     local senderId, message, protocol = rednet.receive()
  24.     if protocol ~= nil then
  25.       print("Protocol: "..protocol)
  26.     else
  27.       term.setTextColor(colors.red)
  28.       print("SENT WIHOUT PROTOCOL!")
  29.       term.setTextColor(colors.white)
  30.     end
  31.     if protocol ~= "jnet" then
  32.         term.setTextColor(colors.red)
  33.         print("ERROR: YOU ARE NOT USING JNET PROTOCOL")
  34.         rednet.send(senderId, "term.setTextColor(colors.red) print('ERROR: YOU ARE NOT USING JNET PROTOCOL!')", "jnet")
  35.         term.setTextColor(colors.white)
  36.         error = true
  37.     elseif (message == "dns.lua") or (message == "/disk/dns.lua") then
  38.       term.setTextColor(colors.red)
  39.       print("\nERROR: BLACKLISTED MESSAGE (dns.lua)")
  40.       rednet.send(senderId, "term.setTextColor(colors.red) print('ERROR: BLACKLISTED MESSAGE (dns.lua)')", "jnet")
  41.       term.setTextColor(colors.white)
  42.       error = true
  43.     elseif protocol == "jnet" then
  44.       print("JNET PROTOCOL SERVER RESPONSE HANDLER")
  45.       print("SENT BY: "..senderId..". Domain: "..message)
  46.       if fs.exists("/disk/"..message) then
  47.         local file = fs.open("/disk/"..message, "r")
  48.         local id = tonumber(file.readLine())
  49.         file.close()
  50.         print("Sending data to "..id.." server. Domain "..message)
  51.         rednet.send(id, senderId, "server.jnet")
  52.         local ssenderId, smessage, sprotocol = rednet.receive()
  53.         if sprotocol == "server.jnet" then
  54.           rednet.send(senderId, smessage, "jnet")
  55.           local file1 = fs.open("/disk/temp."..senderId, "w")
  56.           file1.write(smessage)
  57.           file1.close()
  58.           print("DataGetFromServer: ".."/disk/temp:"..message.." . Sent to id: "..senderId)
  59.         end  
  60.       else
  61.         term.setTextColor(colors.red)
  62.         print("ERROR: Cant resolve domain. Domain: "..message.." | ID: "..senderId.." | ")
  63.         term.setTextColor(colors.white)
  64.         rednet.send(senderId, "term.setTextColor(colors.red) print('ERROR: CANT RESOLVE DOMAIN NAME! check if misspelt?')")
  65.       end
  66.     else
  67.       term.setTextColor(colors.red)
  68.       print("UNEXPECTED ERROR!")
  69.       term.setTextColor(colors.white)
  70.       rednet.send(senderId, "term.setTextColor(colors.red) print('UNEXPECTED  ERROR. TELL YOU PROVAIDER!'","jnet")
  71.     end
  72.   end
  73. end
  74.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement