Advertisement
ccraftersanonmoose

Web-server.lua

Apr 5th, 2025 (edited)
353
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.01 KB | None | 0 0
  1. -- /startup on the Page Server
  2. -- Script to allow serving of "websites" in game with CC:tweaked
  3. -- Should only be used on a "webserver"
  4. -- Make sure advanced raid is attached and has disks in it
  5. -- Intended to be used in conjunction with other scripts at links below
  6. -- Website Editor: https://pastebin.com/xZpzw5Vt
  7. -- Web Browser: https://pastebin.com/6Qt1U5RF
  8. ------------------------------
  9. -- /startup on the Page Server
  10. local drive = peripheral.wrap("right") or error("RAID drive not found")
  11. local modem = peripheral.wrap("left") or error("Modem not found")
  12. rednet.open(peripheral.getName(modem))
  13. local SERVER_ID = os.getComputerID()
  14.  
  15. print("Page Server " .. SERVER_ID .. " online.")
  16.  
  17. while true do
  18.   local sender, message = rednet.receive()
  19.   if type(message) == "table" then
  20.     if message.type == "request_page" then
  21.       local pagePath = "/pages/" .. message.page .. ".page"
  22.       if drive and drive.hasData and fs.exists(pagePath) then
  23.         local file = fs.open(pagePath, "r")
  24.         local content = file.readAll()
  25.         file.close()
  26.         rednet.send(sender, {type = "page_data", page = message.page, content = content})
  27.       else
  28.         rednet.send(sender, {type = "error", error = "Page not found."})
  29.       end
  30.  
  31.     elseif message.type == "list_pages" then
  32.       local pageList = {}
  33.       if drive and drive.hasData and fs.exists("/pages") then
  34.         for _, file in ipairs(fs.list("/pages")) do
  35.           if file:match("%.page$") then
  36.             local path = "/pages/" .. file
  37.             local f = fs.open(path, "r")
  38.             local content = f.readAll()
  39.             f.close()
  40.             local ok, page = pcall(textutils.unserialize, content)
  41.             if ok and type(page) == "table" then
  42.               table.insert(pageList, {
  43.                 page = file:gsub("%.page$", ""),
  44.                 title = page.title or file
  45.               })
  46.             end
  47.           end
  48.         end
  49.       end
  50.       rednet.send(sender, { type = "page_list", pages = pageList })
  51.     end
  52.   end
  53. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement