Guest User

PossieOS Server

a guest
Apr 4th, 2013
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.28 KB | None | 0 0
  1. rednet.open("top")
  2. if fs.isDir("Websites") == false then
  3. fs.makeDir("Websites/www/mine")
  4. fs.makeDir("Websites/www/pos")
  5. fs.makeDir("Websites/www/tv")
  6. fs.makeDir("Websites/www/mol")
  7. end
  8. if fs.isDir("WebTags") == false then
  9. fs.makeDir("WebTags")
  10. makeTags = fs.open("WebTags/Tags", "w")
  11. makeTags.close()
  12. end
  13.  
  14. function split(str, pat)
  15. local t = { }
  16. local fpat = "(.-)"..pat
  17. local last_end = 1
  18. local s, e, cap = str:find(fpat, 1)
  19. while s do
  20. if s ~= 1 or cap ~= "" then
  21. table.insert(t,cap)
  22. end
  23. last_end = e+1
  24. s, e, cap = str:find(fpat, last_end)
  25. end
  26. if last_end <= #str then
  27. cap = str:sub(last_end)
  28. table.insert(t, cap)
  29. end
  30. return t
  31. end
  32.  
  33.  
  34.  
  35. function runServer()
  36. id, msg, d = rednet.receive()
  37. p = split(msg, "!SP!")
  38. cmd = p[1]
  39. if cmd == "search" then
  40. websites = { }
  41. search = p[2]
  42. readTest = fs.open("WebTags/Tags", "r")
  43. contents = readTest.readAll()
  44. readTest.close()
  45. tags = split(contents, "!TAG!")
  46. for i,v in pairs(tags) do
  47. if string.sub(v, 1, #search) == search then
  48. urlSite = split(tags[i], "!SD!")
  49. table.insert(websites, urlSite[2])
  50. end
  51. end
  52. searchResult = textutils.serialize(websites)
  53. rednet.send(id, searchResult)
  54. print("SENT")
  55. print(id.." "..searchResult)
  56. print(search)
  57. print("-----------------------")
  58. elseif cmd == "openWebSite" then
  59. website = p[2]
  60. print(website)
  61. webParts = split(website, "/")
  62. readTest = fs.open("Websites/www/"..webParts[3].."/"..webParts[2], "r")
  63. contents = readTest.readAll()
  64. readTest.close()
  65. rednet.send(id, contents)
  66. elseif cmd == "makeSite" then
  67. name = p[2]
  68. naTags = p[3]
  69. extension = p[4]
  70. site = p[5]
  71. if fs.exists("Websites/www/"..extension.."/"..name) == false then
  72. newSite = fs.open("Websites/www/"..extension.."/"..name, "w")
  73. newSite.write(site)
  74. newSite.close()
  75. aTags = split(naTags, "/")
  76. tags = ""
  77. for n, tag in ipairs(aTags) do
  78. tags = tags.."!TAG!"..tag.."!SD!www/"..name.."/"..extension
  79. end
  80. editTag = fs.open("WebTags/Tags", "a")
  81. editTag.write(tags)
  82. editTag.close()
  83. print(tags)
  84. print("-----------------------")
  85. tags = ""
  86. end
  87. end
  88. runServer()
  89. end
  90.  
  91. runServer()
Add Comment
Please, Sign In to add comment