Advertisement
magik6000

APT - A portable Minecraft packaging utility

Nov 24th, 2013
836
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 32.65 KB | None | 0 0
  1. --MPT - Minecraft packaging tool
  2. --Made By magik6k
  3. --do whatever you want, there is only one rule(stolen from zlib license):
  4. --
  5. --1. The origin of this software must not be misrepresented; you must not
  6. --claim that you wrote the original software. If you use this software
  7. --in a product, an acknowledgment in the product documentation would be
  8. --appreciated but is not required.
  9. ------
  10. --Of course you can modify the program, then, if you want, you can add your
  11. --name to Credits section below
  12. ------
  13. --Credits:
  14. --
  15.  
  16.  
  17. --[[
  18. function split(text,splitter)
  19.     local rt = {}
  20.     local act = ""
  21.     local x = 1
  22.     while x  <= #text do
  23.         if text:sub(x,x+#splitter-1) == splitter then
  24.             rt[#rt+1]=act
  25.             x = x + #splitter
  26.             act=""
  27.         else
  28.             act = act .. text:sub(x,x)
  29.             x = x + 1
  30.         end
  31.     end
  32.     if act ~= "" then
  33.         rt[#rt+1] = act
  34.     end
  35.     return rt;
  36. end
  37. ]]--
  38.  
  39. function split(text,splitter)
  40.     local rt = {}
  41.     local act = ""
  42.     local x = 1
  43.     while x  <= #text do
  44.         if text:sub(x,x+#splitter-1) == splitter then
  45.             if act ~= "" then
  46.                 rt[#rt+1] = act
  47.             end
  48.             x = x + #splitter
  49.             act=""
  50.         else
  51.             act = act .. text:sub(x,x)
  52.             x = x + 1
  53.         end
  54.     end
  55.     if act ~= "" then
  56.         rt[#rt+1] = act
  57.     end
  58.     return rt;
  59. end
  60.  
  61. local opencomputers = os.getenv
  62.  
  63. local internet = {}
  64. local fs = fs
  65. local term = term or require("term")
  66. local write = term and term.write
  67.  
  68. local http = http
  69. local shell = shell
  70. local root = "/"
  71. local verbose = false
  72.  
  73. if opencomputers then
  74.     root = os.getenv("APTROOT")
  75.     if not root then
  76.         print("NO APTROOT SET!")
  77.         return
  78.     end
  79.  
  80.     internet = require("internet")
  81.     shell = require("shell")
  82.     local lfs = require("filesystem")
  83.     fs = {}
  84.    
  85.     for k,v in pairs(lfs) do fs[k]=v end
  86.    
  87.     fs.delete = lfs.remove
  88.    
  89.     fs.open = function(...)
  90.         --print("fopen:",...)
  91.        
  92.         local data = ""
  93.         local dp = 1
  94.        
  95.         local args = {...}
  96.         if args[2] == "r" then
  97.             local th = lfs.open(args[1],"r")
  98.             if th then
  99.                 local left = lfs.size(args[1])
  100.                 while left > 0 do
  101.                     data = data .. th:read(left)
  102.                     left = left - (left > 2048 and 2048 or left)
  103.                 end
  104.                 th:close()
  105.             end
  106.         end
  107.  
  108.         local h = lfs.open(...)
  109.         if not h then return nil end
  110.         local hnd = setmetatable({},{
  111.                 __index = function(t,k)
  112.                     return function(...)return h[k](h,...)end
  113.                 end
  114.             })
  115.         hnd.writeLine = function(s)
  116.             h:write(s.."\n")
  117.         end
  118.         hnd.readLine = function()
  119.             local sbuf= ""
  120.             while true do
  121.                 local c = data:sub(dp,dp)
  122.                 dp = dp + 1
  123.                 if #c == 0 then c = nil end
  124.                 if c == nil then
  125.                     if #sbuf < 1 then
  126.                         return nil
  127.                     end
  128.                     return sbuf
  129.                 end
  130.                 if c == "\n" then
  131.                     return sbuf
  132.                 end
  133.                 sbuf = sbuf .. c
  134.             end
  135.         end
  136.        
  137.         return hnd
  138.     end
  139.    
  140.     term = require("term")
  141.     term.setCursorPos = term.setCursor
  142.     term.getCursorPos = term.getCursor
  143.    
  144.     fs.makeDir = function(f)
  145.         local tree = split(f,"/")
  146.         local check = "/"
  147.         for k,val in pairs(tree) do
  148.             check = check .. val
  149.             if not fs.exists(check) then
  150.                 fs.makeDirectory(check)
  151.             end
  152.             check = check .. "/"
  153.         end
  154.     end
  155.     fs.isDir = fs.isDirectory
  156.    
  157.     http = {}
  158.     http.get = function(url)
  159.        
  160.         local res = {}
  161.         res.data = ""
  162.         if url ~= "" then
  163.             for line in internet.request(url)do if #res.data < 1 then res.data = line else res.data = res.data .. "\n" .. line end end
  164.         else
  165.             res.data = nil
  166.         end
  167.         res.readAll = function()
  168.             return res.data
  169.         end
  170.         res.close = function()end
  171.         return res
  172.     end
  173. end
  174.  
  175. local dir = root .. "etc/ccpt/"
  176.  
  177. if not http then
  178.     if not internet then
  179.         error("HTTP API MUST be enabled or internet modem attached to use this program")
  180.     end
  181. end
  182.  
  183. local argv = {...}
  184.  
  185. --Pseudo enums
  186.  
  187. local validator = {ok = 0, installed = 1, file_conflict = 2}
  188.  
  189. ---Pre-definitions
  190.  
  191. local install = nil
  192. local remove = nil
  193. local ppa_host = "http://cc.nativehttp.org/ppa/vlist/"
  194.  
  195. ---UTILITIES
  196.  
  197. local downloaded = 0
  198. local proc = ""
  199. local cp = 0
  200.  
  201. local function dstart()
  202.     term.clearLine()
  203.     print("\n")
  204.     term.clearLine()
  205.     print("\n")
  206.     term.clearLine()
  207.     local x,y = term.getCursorPos()
  208.     cp = y - 2
  209.    
  210.    
  211. end
  212.  
  213. local function dend()
  214.     term.setCursorPos(1,cp+3)
  215. end
  216.  
  217. local function stateP(s)--print(s)
  218.     if not verbose then
  219.         term.setCursorPos(1,cp)
  220.         term.clearLine()
  221.         term.write(s)
  222.     else    
  223.         print(s)
  224.     end
  225.    
  226. end
  227.  
  228. local function det1P(s)--print(s)
  229.     if not verbose then
  230.         term.setCursorPos(1,cp + 1)
  231.         term.clearLine()
  232.         term.write(s)
  233.     else    
  234.         print(s)
  235.     end
  236.    
  237. end
  238.  
  239. local function det2P(s)
  240.     if not verbose then
  241.         term.setCursorPos(1,cp + 2)
  242.         term.clearLine()
  243.         term.write(s)
  244.     else    
  245.         print(s)
  246.     end
  247.    
  248. end
  249.  
  250. local function rState()
  251.     stateP("DL:"..tostring(downloaded)..", PR:"..proc)
  252. end
  253.  
  254. local List = {}
  255. function List.new ()
  256.     return {first = 0, last = -1}
  257. end
  258.  
  259. function List.pushleft (list, value)
  260.     local first = list.first - 1
  261.     list.first = first
  262.     list[first] = value
  263. end
  264.  
  265. function List.pushright (list, value)
  266.     local last = list.last + 1
  267.     list.last = last
  268.     list[last] = value
  269. end
  270.  
  271. function List.popleft (list)
  272.     local first = list.first
  273.     if first > list.last then return nil end
  274.     local value = list[first]
  275.     list[first] = nil
  276.     list.first = first + 1
  277.     return value
  278. end
  279.  
  280. function List.popright (list)
  281.     local last = list.last
  282.     if list.first > last then return nil end
  283.     local value = list[last]
  284.     list[last] = nil
  285.     list.last = last - 1
  286.     return value
  287. end
  288.  
  289. local function CGetS(file,name)
  290.     local _cfg = fs.open(file,"r")
  291.    
  292.     if not _cfg then
  293.         error("Could not open configuration file: "..file)
  294.     end
  295.    
  296.     local x = true;
  297.      
  298.     while x do
  299.         local line = _cfg.readLine()
  300.         if line == nil then
  301.             x = false;
  302.         else
  303.          
  304.             local side = false
  305.             local prop = ""
  306.             local val = ""
  307.             for a=1,#line do
  308.                 if line:sub(a,a) == '=' then
  309.                     side = true
  310.                 elseif side then
  311.                     val =  val .. line:sub(a,a)
  312.                 else
  313.                     prop = prop .. line:sub(a,a)
  314.                 end
  315.             end
  316.            
  317.             if prop == name then
  318.                 _cfg.close()
  319.                 return val
  320.             end        
  321.         end  
  322.     end
  323.     _cfg.close()   
  324. end
  325.  
  326. local function CGetN(file,name)
  327.     return tonumber(CGetS(file,name))
  328. end
  329.  
  330. local function download(file, url)
  331.     if file then det2P("get:"..file) else det2P("get:"..url) end
  332.     local res = http.get(url)
  333.     if res then
  334.         if file ~= nil then
  335.             fs.delete(file)
  336.             fs.makeDir(file)
  337.             fs.delete(file)
  338.             local fhnd = fs.open(file, "w");
  339.             if fhnd then
  340.                 fhnd.write(res.readAll())
  341.                 fhnd.close()
  342.                 downloaded = downloaded + 1
  343.                 rState()
  344.                 return res.readAll()
  345.             else
  346.                 res.close()
  347.                 error("Could not open "..file.." for writing")
  348.             end
  349.         else
  350.             rState()
  351.             downloaded = downloaded + 1
  352.             return res.readAll()
  353.         end
  354.         res.close()
  355.     else
  356.         local rr = 7
  357.         if r then if rr == 1 then return nil end rr = r end
  358.         det1P("WARNING:Download failed,  Retry in 5sec")
  359.         print("\n",url)
  360.         os.sleep(5)
  361.        
  362.         return download(file,url,rr-1)
  363.     end
  364. end
  365.  
  366. local function downloadfile(file, url)
  367.     if file then det2P("ocget:"..file) else det2P("ocget:"..url) end
  368.     if not opencomputers then
  369.         local res = http.get(url)
  370.         if res then
  371.             if file ~= nil then
  372.                 fs.delete(file)
  373.                 fs.makeDir(file)
  374.                 fs.delete(file)
  375.                 local fhnd = fs.open(file, "w");
  376.                 if fhnd then
  377.                     fhnd.write(res.readAll())
  378.                     fhnd.close()
  379.                     downloaded = downloaded + 1
  380.                     rState()
  381.                     return res.readAll()
  382.                 else
  383.                     res.close()
  384.                     error("Could not open "..file.." for writing")
  385.                 end
  386.             else
  387.                 rState()
  388.                 downloaded = downloaded + 1
  389.                 return res.readAll()
  390.             end
  391.             res.close()
  392.         else
  393.             local rr = 7
  394.             if r then if rr == 1 then return nil end rr = r end
  395.             det1P("WARNING:Download failed,  Retry in 5sec")
  396.             print("\n",url)
  397.             os.sleep(5)
  398.            
  399.             return download(file,url,rr-1)
  400.         end
  401.     else
  402.         if file ~= nil then
  403.             fs.delete(file)
  404.             fs.makeDir(file)
  405.             fs.delete(file)
  406.         end
  407.         shell.execute("wget -q -f  "..url.." "..file)--fuck it
  408.     end
  409.  
  410. end
  411.  
  412. local function downloadln(file, url, r)
  413.     if file then det2P("get:"..file) else det2P("get:"..url) end
  414.     local res = http.get(url)
  415.     if res then
  416.         if file ~= nil then
  417.             fs.delete(file)
  418.             fs.makeDir(file)
  419.             fs.delete(file)
  420.             local fhnd = fs.open(file, "w");
  421.             if fhnd then
  422.                 if opencomputers then fhnd.write(res.readAll())else  end
  423.                 fhnd.close()
  424.                 return res.readAll()
  425.             else
  426.                 res.close()
  427.                 error("Could not open "..file.." for writing")
  428.             end
  429.         else
  430.             return res.readAll()
  431.         end
  432.         res.close()
  433.     else
  434.         local rr = 7
  435.         if r then if rr == 1 then return nil end rr = r end
  436.         det1P("WARNING:Download failed,  Retry in 5sec")
  437.         print("\n",url)
  438.         os.sleep(5)
  439.        
  440.         return downloadln(file,url,rr-1)
  441.     end
  442. end
  443.  
  444. -----------------------------------------------------------------
  445. -----------------------------------------------------------------
  446. -----------------------------------------------------------------
  447. ---Intarnal functions
  448.  
  449. local function update_list()
  450.     --local sync = CGetS("/etc/ccpt/config","master")
  451.     --if sync then
  452.         --download("/etc/ccpt/list",sync)
  453.     proc = "Update"
  454.     rState()
  455.    
  456.     local run = true
  457.     local exec = List.new()
  458.     local num = 0
  459.    
  460.     if fs.exists(dir.."ppa") then
  461.         local sources = fs.open(dir.."ppa","r")
  462.         if not sources then
  463.             error("Could not open base file: "..dir.."ppa")
  464.         end
  465.         local x = true
  466.         while x do
  467.             local line = sources.readLine()
  468.             if line == nil then
  469.                 x = false
  470.             else
  471.                 det1P("PPA:"..line)
  472.                 List.pushright(exec,{prot = "ccpt", data = download(nil,ppa_host..line)})
  473.             end
  474.         end
  475.         sources.close()
  476.     end
  477.    
  478.     if fs.exists(dir.."ac") then
  479.         local sources = fs.open(dir.."ac","r") 
  480.         if not sources then
  481.             error("Could not open base file: "..dir.."ac")
  482.         end
  483.         local x = true
  484.         while x do
  485.             local line = sources.readLine()
  486.             if line == nil then
  487.                 x = false
  488.             else
  489.                 det1P("AC:"..line)
  490.                 List.pushright(exec,{prot = "ac", data = download(nil,line .. "/packages.list"), repo = line})
  491.             end
  492.         end
  493.        
  494.         sources.close()
  495.     end
  496.    
  497.     local sources = fs.open(dir.."sources","r")
  498.     if not sources then
  499.         error("Could not open base file: "..dir.."sources")
  500.     end
  501.     local x = true
  502.     while x do
  503.         local line = sources.readLine()
  504.         if line == nil or line == "" then
  505.             x = false
  506.         else
  507.             print("List:"..line)
  508.             List.pushleft(exec,{prot = "ccpt", data = download(nil,line)})
  509.         end
  510.     end
  511.     sources.close()
  512.    
  513.     fs.delete(dir.."list")
  514.     local fhnd = fs.open(dir.."list", "w");
  515.     if fhnd then
  516.         while run do
  517.             local proc = List.popright(exec)
  518.            
  519.             if proc then
  520.                 if proc.prot == "ccpt" then
  521.                     local tline = split(proc.data,"\n")
  522.                     for k,val in pairs(tline) do
  523.                         local row = split(val,";")
  524.                         if row[1] == "p" then
  525.                             fhnd.writeLine(val)
  526.                             num = num + 1
  527.                         elseif row[1] == "s" then
  528.                             det1P("List:"..row[2])
  529.                             local dl = download(nil,row[2])
  530.                             if dl then
  531.                             List.pushright(exec,{prot = "ccpt", data = dl})
  532.                             end
  533.                         end
  534.                     end
  535.                 elseif proc.prot == "ac" then
  536.                     local tline = split(proc.data,"\n")
  537.                     for k,val in pairs(tline) do
  538.                         local row = split(val,"::")
  539.                         fhnd.writeLine("a;" .. row[1] .. ";" .. row[2] .. ";" .. proc.repo .. "/" .. row[1])
  540.                         num = num + 1
  541.                     end
  542.                 end
  543.             else
  544.                 run = false
  545.             end
  546.         end
  547.         fhnd.close()
  548.     else
  549.         error("Could not open "..file.." for writing")
  550.     end    
  551.     det2P("Packages defined: "..tostring(num))
  552. end
  553.  
  554. local function register(name,version,header)
  555.    
  556.     local reg = nil
  557.    
  558.     if fs.exists(dir.."installed") then
  559.         reg = fs.open(dir.."installed","a")
  560.     else
  561.         reg = fs.open(dir.."installed","w")
  562.     end
  563.    
  564.     if reg then
  565.         reg.writeLine(name..";"..tostring(version))
  566.         reg.close()
  567.     else
  568.         error("Critical:Could not register installation")
  569.     end
  570.    
  571.     local freg = nil
  572.    
  573.     if fs.exists(dir.."files") then
  574.         freg = fs.open(dir.."files","a")
  575.     else
  576.         freg = fs.open(dir.."files","w")
  577.     end
  578.    
  579.     if freg then
  580.         local lhead = split(header,"\n")
  581.         local x = 1
  582.         for x = 1, #lhead do
  583.             if split(lhead[x],";")[1] == "f" then
  584.                 freg.writeLine(name..";"..split(lhead[x],";")[2])
  585.             elseif split(lhead[x],";")[1] == "u" then
  586.                 freg.writeLine(name..";"..split(lhead[x],";")[2])
  587.             end
  588.         end
  589.         freg.close()       
  590.     else
  591.         error("Error:Could not register files")
  592.     end
  593.    
  594. end
  595.  
  596. local database = nil
  597.  
  598. local function load_database()
  599.     if not database then
  600.         database = {}
  601.         local base = fs.open(dir.."list","r")
  602.        
  603.         if not base then
  604.             error("Could not open base file: "..dir.."list")
  605.         end
  606.        
  607.         local x = true;
  608.         while x do
  609.             local line = base.readLine()
  610.             if line == nil then
  611.                 x = false;
  612.             else
  613.                 database[#database+1] = line
  614.             end
  615.         end
  616.         base.close()
  617.     end
  618. end
  619.  
  620. local function base_find(name)
  621.     load_database()
  622.  
  623.     for k,line in ipairs(database) do
  624.         local entry = split(line,";")
  625.         if entry[1] == "p" then
  626.             if entry[2] == name then
  627.                 local ret = {type="ccpt",name=entry[2],url=entry[4],version=tonumber(entry[3])}
  628.                 return ret
  629.             end
  630.         elseif entry[1] == "a" then
  631.             if entry[2] == name then
  632.                 local ret = {type="ac",name=entry[2],url=entry[4],version=tonumber(entry[3])}
  633.                 return ret
  634.             end
  635.         end
  636.     end
  637.  
  638. end
  639.  
  640. local function validate(pname,header)
  641.     local instbase = fs.open(dir.."installed","r")
  642.     if instbase then
  643.         local x = true
  644.         while x do
  645.             local tline = instbase.readLine()
  646.             if tline == nil then
  647.                 x = false
  648.             else
  649.                 if pname == split(tline,";")[1] then
  650.                     instbase.close()
  651.                     return validator.installed
  652.                 end
  653.             end
  654.         end
  655.         instbase.close()
  656.     end
  657.     --local filebase = fs.open("/etc/ccpt/files","r")
  658.     if header then
  659.         lhead = split(header,"\n")
  660.         local x = 1
  661.         for x = 1, #lhead do
  662.             if split(lhead[x],";")[1] == "f" then
  663.                 if fs.exists(root .. split(lhead[x],";")[2]) then
  664.                     stateP("[info]Conflict: "..split(lhead[x],";")[2])
  665.                     if not opencomuters then
  666.                         return validator.file_conflict
  667.                     end
  668.                 end
  669.             end
  670.         end
  671.     end
  672.    
  673.     return validator.ok
  674. end
  675.  
  676. local function download_files(url,header)
  677.     local lhead = split(header,"\n")
  678.     local x = 1
  679.     for x = 1, #lhead do
  680.         if split(lhead[x],";")[1] == "f" then
  681.             if opencomputers then
  682.                 downloadfile(root:sub(1,#root-1)..split(lhead[x],";")[2],url..split(lhead[x],";")[2])
  683.             else
  684.                 download(split(lhead[x],";")[2],url..split(lhead[x],";")[2])
  685.             end
  686.         end
  687.         if split(lhead[x],";")[1] == "u" then
  688.             if opencomputers then
  689.                 downloadfile(root:sub(1,#root-1)..split(lhead[x],";")[2],split(lhead[x],";")[3])
  690.             else
  691.                 download(split(lhead[x],";")[2],split(lhead[x],";")[3])
  692.             end
  693.         end
  694.     end
  695. end
  696.  
  697. local function run_scripts(url,header)
  698.     local lhead = split(header,"\n")
  699.     local x = 1
  700.     for x = 1, #lhead do
  701.         if split(lhead[x],";")[1] == "s" then
  702.             download("/tmp/ccptpirs",url..split(lhead[x],";")[2])
  703.             shell.run("/tmp/ccptpirs")
  704.             fs.delete("/tmp/ccptpirs")
  705.         end
  706.     end
  707. end
  708.  
  709. local function dep_register(what,onwhat)
  710.     local reg = nil
  711.    
  712.     if fs.exists(dir.."dtree") then
  713.         reg = fs.open(dir.."dtree","a")
  714.     else
  715.         reg = fs.open(dir.."dtree","w")
  716.     end
  717.    
  718.     if reg then
  719.         reg.writeLine(what..";"..onwhat)
  720.         reg.close()
  721.     else
  722.         error("Critical:Could not register dependencies")
  723.     end
  724. end
  725.  
  726. local function dependencies(header,package)
  727.     local lhead = split(header,"\n")
  728.     local x = 1
  729.     for x = 1, #lhead do
  730.         if split(lhead[x],";")[1] == "d" then
  731.             install(split(lhead[x],";")[2])
  732.             dep_register(package,split(lhead[x],";")[2])
  733.         end
  734.     end
  735. end
  736.  
  737. local function filelist(package)
  738.     local freg = fs.open(dir.."files","r")
  739.     if freg then
  740.         local ret = {}
  741.         local x = true
  742.         while x do
  743.             local tline = freg.readLine()
  744.             if tline == nil then
  745.                 x = false
  746.             else
  747.                 row = split(tline,";")
  748.                 if row[1] == package then
  749.                     ret[#ret+1] = row[2]
  750.                 end
  751.             end
  752.         end
  753.         freg.close()
  754.         return ret
  755.     end
  756. end
  757.  
  758. local function get_deps(package)
  759.     local reg = fs.open(dir.."dtree","r")
  760.     if reg then
  761.         local ret = {}
  762.         local x = true
  763.         while x do
  764.             local tline = reg.readLine()
  765.             if tline == nil then
  766.                 x = false
  767.             else
  768.                 local row = split(tline,";")
  769.                 if row[1] == package then
  770.                     ret[#ret+1] = row[2]
  771.                 end
  772.             end
  773.         end
  774.         reg.close()
  775.         return ret
  776.     end
  777. end
  778.  
  779. local function get_refcount(package)
  780.     local reg = fs.open(dir.."dtree","r")
  781.     local ret = 0
  782.     if reg then
  783.         local x = true
  784.         while x do
  785.             local tline = reg.readLine()
  786.             if tline == nil then
  787.                 x = false
  788.             else
  789.                 local row = split(tline,";")
  790.                 if row[2] == package then
  791.                     ret = ret + 1
  792.                 end
  793.             end
  794.         end
  795.         reg.close()
  796.     end
  797.     return ret
  798. end
  799.  
  800. local function get_unused(list)
  801.     local x = 1
  802.     local ret = {}
  803.     if list then
  804.         for x = 1, #list do
  805.             if get_refcount(list[x]) == 0 then
  806.                 ret[#ret + 1] = list[x]
  807.             end
  808.         end
  809.     end
  810.     return ret
  811. end
  812.  
  813. local function unregister(package)
  814.     local reg = fs.open(dir.."installed","r")
  815.     local newbase = {}
  816.     if reg then
  817.         local x = true
  818.         while x do
  819.             local tline = reg.readLine()
  820.             if tline == nil then
  821.                 x = false
  822.             else
  823.                 local row = split(tline,";")
  824.                 if row[1] ~= package then
  825.                     newbase[#newbase+1] = tline
  826.                 end
  827.             end
  828.         end
  829.         reg.close()
  830.     end
  831.     if fs.exists(dir.."installed") then fs.delete(dir.."installed")end
  832.     reg = fs.open(dir.."installed","w")
  833.     if reg then
  834.         local x = 1
  835.         for x = 1, #newbase do
  836.             reg.writeLine(newbase[x])
  837.         end
  838.         reg.close()
  839.     else
  840.         error("CRITICAL: Could not open database for writing")
  841.     end
  842.     reg = fs.open(dir.."files","r")
  843.     newbase = {}
  844.     if reg then
  845.         local x = true
  846.         while x do
  847.             local tline = reg.readLine()
  848.             if tline == nil then
  849.                 x = false
  850.             else
  851.                 local row = split(tline,";")
  852.                 if row[1] ~= package then
  853.                     newbase[#newbase+1] = tline
  854.                 end
  855.             end
  856.         end
  857.         reg.close()
  858.     end
  859.     fs.delete(dir.."files")
  860.     reg = fs.open(dir.."files","w")
  861.     if reg then
  862.         local x = 1
  863.         for x = 1, #newbase do
  864.             reg.writeLine(newbase[x])
  865.         end
  866.         reg.close()
  867.     else
  868.         error("CRITICAL: Could not open file base for writing")
  869.     end
  870. end
  871.  
  872. local function deptree_unregister(package)
  873.     local reg = fs.open(dir.."dtree","r")
  874.     local newbase = {}
  875.     if reg then
  876.         local x = true
  877.         while x do
  878.             local tline = reg.readLine()
  879.             if tline == nil then
  880.                 x = false
  881.             else
  882.                 local row = split(tline,";")
  883.                 if row[1] ~= package then
  884.                     newbase[#newbase+1] = tline
  885.                 end
  886.             end
  887.         end
  888.         reg.close()
  889.     end
  890.     fs.delete(dir.."dtree")
  891.     reg = fs.open(dir.."dtree","w")
  892.     if reg then
  893.         local x = 1
  894.         for x = 1, #newbase do
  895.             reg.writeLine(newbase[x])
  896.         end
  897.         reg.close()
  898.     else
  899.         error("CRITICAL: Could not open dtree database for writing")
  900.     end
  901. end
  902.  
  903. local function get_installed()
  904.     local reg = fs.open(dir.."installed","r")
  905.     local ret = {}
  906.     if reg then
  907.         local x = true
  908.         while x do
  909.             local tline = reg.readLine()
  910.             if tline == nil then
  911.                 x = false
  912.             else
  913.                 local row = split(tline,";")
  914.                 ret[#ret + 1] = {name = row[1], version = tonumber(row[2])}
  915.             end
  916.         end
  917.         reg.close()
  918.     end
  919.     return ret
  920. end
  921.  
  922. local function list_upgardable()
  923.     local installed = get_installed()
  924.     local ret = {}
  925.     for k,val in pairs(installed) do
  926.         det1P("Searching package "..val.name)
  927.         local bpk = base_find(val.name)
  928.         if bpk then
  929.             if val.version ~= bpk.version then
  930.                 ret[#ret + 1] = val.name
  931.             end
  932.         else
  933.             det1P("[Warning]Package "..val.name.." not found in database")
  934.             os.sleep(0.5)
  935.         end
  936.     end
  937.     return ret
  938. end
  939.  
  940. local function ac_conv_header(head,url)
  941.     local ret = ""
  942.     local tline = split(head,"\n")
  943.     for k,val in pairs(tline) do
  944.         local pt = val:find(":")
  945.         if pt ~= nil then
  946.             local t = val:sub(1,pt-1)
  947.             if t == "Executable" then
  948.                 local r = val:sub(pt+2,#val)
  949.                 local fr = val:find(" => ")
  950.                 if fr ~= nil then
  951.                     local rfn = val:sub(pt+2,fr-1)
  952.                     local lfn = val:sub(fr + 4, #val)
  953.                     if lfn:sub(#lfn,#lfn) ~= "/" then
  954.                         ret = ret .. "\nu;/bin/"..lfn..";"..url.."/bin/"..rfn..".lua"
  955.                     end
  956.                 else
  957.                     local fn = r
  958.                     if fn:sub(#fn,#fn) ~= "/" then
  959.                         ret = ret .. "\nu;/bin/" .. fn .. ";" .. url .. "/bin/" .. fn .. ".lua"
  960.                     end
  961.                 end
  962.             elseif t == "Library" then
  963.                 local r = val:sub(pt+2,#val)
  964.                 local fr = val:find(" => ")
  965.                 if fr ~= nil then
  966.                     local rfn = val:sub(pt+2,fr-1)
  967.                     local lfn = val:sub(fr + 4, #val)
  968.                     if lfn:sub(#lfn,#lfn) ~= "/" then
  969.                         ret = ret .. "\nu;/lib/"..lfn..";"..url.."/lib/"..rfn..".lua"
  970.                     end
  971.                 else
  972.                     local fn = r
  973.                     if fn:sub(#fn,#fn) ~= "/" then
  974.                         ret = ret .. "\nu;/lib/" .. fn .. ";" .. url .. "/lib/" .. fn .. ".lua"
  975.                     end
  976.                 end
  977.             elseif t == "Startup" then
  978.                 local r = val:sub(pt+2,#val)
  979.                 local fr = val:find(" => ")
  980.                 if fr ~= nil then
  981.                     local rfn = val:sub(pt+2,fr-1)
  982.                     local lfn = val:sub(fr + 4, #val)
  983.                     if lfn:sub(#lfn,#lfn) ~= "/" then
  984.                         ret = ret .. "\nu;/etc/ac.boot/"..lfn..";"..url.."/startup/"..rfn..".lua"
  985.                     end
  986.                 else
  987.                     local fn = r
  988.                     if fn:sub(#fn,#fn) ~= "/" then
  989.                         ret = ret .. "\nu;/etc/ac.boot/" .. fn .. ";" .. url .. "/startup/" .. fn .. ".lua"
  990.                     end
  991.                 end
  992.             elseif t == "Dependency" then
  993.                 local r = val:sub(pt+2,#val)
  994.                 ret = ret .. "\nd;" .. r
  995.             end
  996.            
  997.         end
  998.     end
  999.     return ret
  1000. end
  1001.  
  1002.  
  1003. local function ppaadd(name)
  1004.     proc = "ppa "..name
  1005.     rState()
  1006.     local list = {}
  1007.     local fh={}
  1008.     if fs.exists(dir.."ppa") then
  1009.         local reg = fs.open(dir.."ppa","r")
  1010.         if reg then
  1011.             local x = true
  1012.             while x do
  1013.                 local ln = reg.readLine()
  1014.                 if ln == nil then
  1015.                     x = false
  1016.                 else
  1017.                     if ln == name then
  1018.                         print("PPA added")
  1019.                         reg.close()
  1020.                         return
  1021.                     end
  1022.                     list[#list + 1] = ln
  1023.                 end
  1024.             end
  1025.             reg.close()
  1026.         end
  1027.     end
  1028.     list[#list + 1] = name
  1029.     local reg = fs.open(dir.."ppa","w")
  1030.     if reg then
  1031.         for k,v in pairs(list) do
  1032.             reg.writeLine(v)
  1033.         end
  1034.     reg.close()
  1035.     end
  1036.     update_list()
  1037.     det1P("PPA added!")
  1038. end
  1039.  
  1040. local function pparm(name)
  1041.     proc = "rm ppa "..name
  1042.     rState()
  1043.     local list = {}
  1044.     if fs.exists(dir.."ppa") then
  1045.         local reg = fs.open(dir.."ppa","r")
  1046.         if reg then
  1047.             local x = true
  1048.             while x do
  1049.                 local ln = reg.readLine()
  1050.                 if ln == nil then
  1051.                     x = false
  1052.                 else
  1053.                     if ln ~= name then
  1054.                         list[#list + 1] = ln
  1055.                     end
  1056.                 end
  1057.             end
  1058.             reg.close()
  1059.         end
  1060.     end
  1061.     local reg = fs.open(dir.."ppa","w")
  1062.     if reg then
  1063.         for k,v in pairs(list) do
  1064.             reg.writeLine(v)
  1065.         end
  1066.     reg.close()
  1067.     end
  1068.     update_list()
  1069.     det1P("PPA removed")
  1070. end
  1071.  
  1072. local function acadd(url)
  1073.     proc = "ac "..url
  1074.     rState()
  1075.     local list = {}
  1076.     local fh={}
  1077.     if fs.exists(dir.."ac") then
  1078.         local reg = fs.open(dir.."ac","r")
  1079.         if reg then
  1080.             local x = true
  1081.             while x do
  1082.             local ln = reg.readLine()
  1083.             if ln == nil then
  1084.                 x = false
  1085.             else
  1086.                 if ln == url then
  1087.                     print("ac-get repo added")
  1088.                     reg.close()
  1089.                     return
  1090.                 end
  1091.                 list[#list + 1] = ln
  1092.             end
  1093.             end
  1094.             reg.close()
  1095.         end
  1096.     end
  1097.     list[#list + 1] = url
  1098.     local reg = fs.open(dir.."ac","w")
  1099.     if reg then
  1100.         for k,v in pairs(list) do
  1101.             reg.writeLine(v)
  1102.         end
  1103.     end
  1104.     reg.close()
  1105.     update_list()
  1106.     det1P("ac-get repo added")
  1107. end
  1108.  
  1109. local function acrm(name)
  1110.     proc = "rm ac "..name
  1111.     rState()
  1112.     local list = {}
  1113.     if fs.exists(dir.."ac") then
  1114.         local reg = fs.open(dir.."ac","r")
  1115.         if reg then
  1116.             local x = true
  1117.             while x do
  1118.                 local ln = reg.readLine()
  1119.                 if ln == nil then
  1120.                     x = false
  1121.                 else
  1122.                     if ln ~= name then
  1123.                         list[#list + 1] = ln
  1124.                     end
  1125.                 end
  1126.             end
  1127.             reg.close()
  1128.         end
  1129.     end
  1130.     local reg = fs.open(dir.."ac","w")
  1131.     if reg then
  1132.         for k,v in pairs(list) do
  1133.             reg.writeLine(v)
  1134.         end
  1135.     reg.close()
  1136.     end
  1137.     update_list()
  1138.     det1P("ac-get repo removed")
  1139. end
  1140.  
  1141. install = function (package)
  1142.     proc = "ins "..package
  1143.     rState()
  1144.     --det1P("Reading Database")
  1145.     local entry = base_find(package)
  1146.     if entry then
  1147.         if entry.type == "ccpt" then
  1148.             det1P("Downloading package header")
  1149.             local header = download(nil, entry.url..entry.name.."/index")
  1150.             det1P("Processing")
  1151.             local vres = validate(entry.name,header)
  1152.             if vres == validator.ok then
  1153.                 --det1P("Checking dependencies")
  1154.                 dependencies(header,package)
  1155.                 det1P("Downloading files")
  1156.                 download_files(entry.url..entry.name,header)
  1157.                 det1P("Setting up")
  1158.                 register(package,entry.version,header)
  1159.                 run_scripts(entry.url..entry.name,header)
  1160.             elseif vres == validator.installed then
  1161.                 det1P("Package already installed")
  1162.             else
  1163.                 det1P("File conflict detected!")
  1164.             end
  1165.         elseif entry.type == "ac" then
  1166.             det1P("Downloading package header")
  1167.             local header = download(nil, entry.url.."/details.pkg")
  1168.             det1P("Processing")
  1169.             local chead = ac_conv_header(header,entry.url)
  1170.            
  1171.             local vres = validate(entry.name,chead)
  1172.             if vres == validator.ok then
  1173.                 --det1P("Checking dependencies")
  1174.                 dependencies(chead,package)
  1175.                 det1P("Downloading files")
  1176.                 download_files(entry.url,chead)
  1177.                 det1P("Setting up")
  1178.                 register(package,entry.version,chead)
  1179.                 --run_scripts(entry.url,chead)
  1180.             elseif vres == validator.installed then
  1181.                 det1P("Package already installed")
  1182.             else
  1183.                 det1P("File conflict detected!")
  1184.             end
  1185.            
  1186.         end
  1187.     else
  1188.         det1P("Package not found!")
  1189.     end
  1190. end
  1191.  
  1192. remove = function (package,nrdeps)
  1193.     proc = "rm "..package
  1194.     rState()
  1195.     --det1P("Reading database")
  1196.     if validate(package,nil) == validator.installed then
  1197.         det1P("Removing files")
  1198.         local list = filelist(package)
  1199.         local removed = 0
  1200.         if list then
  1201.             local x = 1
  1202.             for x = 1, #list do
  1203.                 fs.delete(root..list[x])
  1204.                 det2P("Remove "..list[x])
  1205.                 removed = removed + 1
  1206.             end
  1207.         end
  1208.         det1P(tostring(removed).." files removed")
  1209.         --det1P("Removing from database")
  1210.         unregister(package)
  1211.         --det1P("Removing unused dependencies")
  1212.         if not nrdeps then
  1213.             local deps = get_deps(package)
  1214.             deptree_unregister(package)
  1215.             local remlist = get_unused(deps)
  1216.             for k,val in pairs(remlist) do
  1217.                 remove(val)
  1218.             end
  1219.         end
  1220.     else
  1221.         det1P("Package not installed")
  1222.     end
  1223. end
  1224.  
  1225. local function upgrade()
  1226.     dstart()rState()
  1227.    
  1228.     proc = "Upgrade"
  1229.     rState()
  1230.     det1P("Updating package list")
  1231.     update_list()
  1232.     det1P("Upgrading packages")
  1233.     local todo = list_upgardable()
  1234.     det1P("Upgrading "..tostring(#todo).." packages")
  1235.     for k,val in pairs(todo) do
  1236.         remove(val,true)
  1237.         install(val)
  1238.     end
  1239.     det1P(tostring(#todo).." Packages upgraded")
  1240.     dend()
  1241.     print("Upgraded: ")
  1242.     for k,v in pairs(todo) do
  1243.         write(v.." ")
  1244.     end
  1245.     --print("\n")
  1246.     --term.clearLine()
  1247.     --local uu,cy=term.getCursorPos()
  1248.     --term.setCursorPos(1,cy)
  1249. end
  1250.  
  1251. local function ppa()
  1252.     if argv[3] == nil  then
  1253.         print("Usage:")
  1254.         print("ccpt ppa add [name]")
  1255.         print("ccpt ppa remove [name]")
  1256.     else
  1257.         if argv[2] == "add" then
  1258.             ppaadd(argv[3])
  1259.         elseif argv[2] == "remove" then
  1260.             pparm(argv[3])
  1261.         else
  1262.             print("Usage:")
  1263.             print("ccpt ppa add [name]")
  1264.             print("ccpt ppa remove [name]")
  1265.         end
  1266.     end
  1267. end
  1268.  
  1269. local function ac()
  1270.     if argv[3] == nil  then
  1271.         print("Usage:")
  1272.         print("ccpt ac add [name]")
  1273.         print("ccpt ac remove [name]")
  1274.     else
  1275.         if argv[2] == "add" then
  1276.             acadd(argv[3])
  1277.         elseif argv[2] == "remove" then
  1278.             acrm(argv[3])
  1279.         else
  1280.             print("Usage:")
  1281.             print("ccpt ac add [name]")
  1282.             print("ccpt ac remove [name]")
  1283.         end
  1284.     end
  1285. end
  1286.  
  1287. local function upck()
  1288.     if goroutine then
  1289.         rStat = function()end
  1290.         stateP = function()end
  1291.         det1P = function()end
  1292.         det2P = function()end
  1293.        
  1294.         goroutine.spawnBackground("ccptUck",function()
  1295.                 update_list()
  1296.                 os.queueEvent("cptupg")
  1297.             end)
  1298.         local t1 = os.startTimer(1)
  1299.         local t2 = os.startTimer(4)
  1300.         while true do
  1301.             e = {os.pullEvent()}
  1302.             if e[1] == "cptupg" then
  1303.                 local x,y = term.getCursorPos()
  1304.                 term.clearLine()
  1305.                 term.setCursorPos(1,y)
  1306.                 print("[*]MPT: "..tostring(#list_upgardable()).." Upgradable packages")
  1307.                 return
  1308.             elseif e[1] == "timer" then
  1309.                 if e[2] == t1 then
  1310.                     write("[*]MPT: Checking for upgrades")
  1311.                 elseif e[2] == t2 then
  1312.                     local x,y = term.getCursorPos()
  1313.                     term.clearLine()
  1314.                     term.setCursorPos(1,y)
  1315.                     print("[*]MPT: Timed out")
  1316.                     goroutine.kill("ccptUck")
  1317.                     return
  1318.                 end
  1319.             end
  1320.         end
  1321.     end
  1322. end
  1323.  
  1324. ---MAIN CODE
  1325.  
  1326.  
  1327.  
  1328.  
  1329. if     argv[1] == "init"   then
  1330.     if fs.exists(dir) then
  1331.         print("ComuterCraftPackagingTool already initated")
  1332.     else
  1333.         print("Installing directories")
  1334.         fs.makeDir("/etc/")
  1335.         fs.makeDir(dir)
  1336.  
  1337.         print("Downloading default configuration")
  1338.         downloadln(dir.."sources","http://cc.nativehttp.org/fresh/sources")
  1339.         downloadln(dir.."installed","http://cc.nativehttp.org/fresh/installed")
  1340.         downloadln(dir.."files","http://cc.nativehttp.org/fresh/files")
  1341.         print("Checking for upgrades")
  1342.         upgrade()
  1343.     end
  1344. elseif argv[1] == "update" then
  1345.     dstart()rState()
  1346.     print("Updating package list")
  1347.     update_list()
  1348.     dend()
  1349.     print("\n")
  1350. elseif argv[1] == "install" then
  1351.     dstart()rState()
  1352.     if argv[2] == nil then
  1353.         print("Usage: ccpt install [name]")
  1354.         dend()
  1355.         print("\n")
  1356.     else
  1357.         install(argv[2])
  1358.         dend()
  1359.         print("\n")
  1360.     end
  1361. elseif argv[1] == "remove" then
  1362.     dstart()rState()
  1363.     if argv[2] == nil then
  1364.         print("Usage: ccpt remove [name]")
  1365.         dend()
  1366.         print("\n")
  1367.     else
  1368.         remove(argv[2])
  1369.         dend()
  1370.         print("\n")
  1371.     end
  1372. elseif argv[1] == "upgrade" then
  1373.     upgrade()
  1374.     print("\n")
  1375. elseif argv[1] == "ppa" then
  1376.     dstart()rState()
  1377.     ppa()
  1378.     dend()
  1379.     print("\n")
  1380. elseif argv[1] == "ac" then
  1381.     dstart()rState()
  1382.     ac()
  1383.     dend()
  1384.     print("\n")
  1385. elseif argv[1] == "upck" then --update check on startup
  1386.     upck()
  1387.     print("\n")
  1388. elseif argv[1] == "api" then
  1389.    
  1390. else
  1391.     print("Usage:")
  1392.     print("apt init")
  1393.     print("apt install [name]")
  1394.     print("apt remove [name]")
  1395.     print("apt update")
  1396.     print("apt upgrade")
  1397.     print("apt ppa")
  1398.     print("apt ac")
  1399. end
  1400.  
  1401.  
  1402. --API
  1403.  
  1404. if _G.ccpt then
  1405.     _G.ccpt = nil
  1406. end
  1407. _G.ccpt = {}
  1408.  
  1409. _G.ccpt.update = update_list
  1410. _G.ccpt.upgrade = upgrade
  1411. _G.ccpt.install = install
  1412. _G.ccpt.remove = remove
  1413.  
  1414. _G.ccpt.ppa = {}
  1415. _G.ccpt.ppa.add = ppaadd
  1416. _G.ccpt.ppa.remove = pparm
  1417.  
  1418. _G.ccpt.ac = {}
  1419. _G.ccpt.ac.add = acadd
  1420. _G.ccpt.ac.remove = acrm
  1421.  
  1422.  
  1423. _G.mpt = _G.ccpt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement