Advertisement
Guest User

startup

a guest
Mar 1st, 2013
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.94 KB | None | 0 0
  1. -- file protector
  2. -- v1.0
  3. -- made by wilcomega
  4. local configFile = "files.conf"
  5. local defaultConfig = { { "acces-password", "password" }, { "filemanager-usepass", "0" }, { "filemanager-password", "password" }, { "files", { } } }
  6. local files = { }
  7. _G["fileapi"] = { }
  8.  
  9. function split( str, pat )
  10.   local t = { }
  11.   local fpat = "(.-)" .. pat
  12.   local last_end = 1
  13.   local s, e, cap = str:find( fpat, 1 )
  14.   while s do
  15.     if s ~= 1 or cap ~= "" then
  16.       table.insert( t, cap )
  17.     end
  18.     last_end = e + 1
  19.     s, e, cap = str:find( fpat, last_end )
  20.   end
  21.   if last_end <= #str then
  22.     cap = str:sub( last_end )
  23.     table.insert( t, cap )
  24.   end
  25.   return t
  26. end
  27.  
  28. function getFree( t )
  29.   i = 1
  30.   while true do
  31.     if t[i] == nil then return i end
  32.     i = i + 1
  33.   end
  34. end
  35.  
  36. function saveFile( file, data )
  37.   local f = fs.open( file, "w" )
  38.   f.write( data )
  39.   f.close( )
  40. end
  41.  
  42. function readFile( file )
  43.   if not fs.exists( file ) then return end
  44.   local f = fs.open( file, "r" )
  45.   local ins = f.readAll( )
  46.   f.close( )
  47.   return ins
  48. end
  49.  
  50. function readConfig( file )
  51.   local text = readFile( file )
  52.   if not text then return end
  53.   local lines = split( text, "\n" )
  54.   for i = 1, #lines do
  55.     lines[i] = split( lines[i], "=" )
  56.     if lines[i][2]:sub( 1, 1 ) == "{" then
  57.       local mini = { }
  58.       for k,v in pairs( lines[i] ) do mini[k] = v end
  59.       table.remove( mini, 1 )
  60.       mini = table.concat( mini, "=" )
  61.       lines[i][2] = textutils.unserialize( mini )
  62.     end
  63.   end
  64.   return lines
  65. end
  66.  
  67. function saveConfig( file, conf )
  68.   for i = 1, #conf do
  69.     --print( i, ";1;", type( conf[i] ), ";", conf[i] )
  70.     --print( i, ";2;", type( conf[i][2] ), ";", conf[i][2] )
  71.     if type( conf[i][2] ) == "table" then conf[i][2] = textutils.serialize( conf[i][2] ) end
  72.     --print( i, ";1;", type( conf[i] ), ";", conf[i] )
  73.     --print( i, ";2;", type( conf[i][2] ), ";", conf[i][2] )
  74.     conf[i] = table.concat( conf[i], "=" )
  75.     --print( i, ";3;", type( conf[i] ), ";", conf[i] )
  76.   end
  77.   local text = table.concat( conf, "\n" )
  78.   saveFile( file, text )
  79. end
  80.  
  81. function findValueByKeyInConfig( conf, key )
  82.   for i = 1, #conf do
  83.     if conf[i][1] == key then
  84.       return conf[i][2]
  85.     end
  86.   end
  87. end
  88.  
  89. fileapi.readFile = readFile
  90. fileapi.saveFile = saveFile
  91. fileapi.saveConfig = saveConfig
  92. fileapi.readConfig = readConfig
  93. fileapi.getConfigValue = findValueByKeyInConfig
  94.  
  95. fileapi.protect = function( file, conf )
  96.   local i = getFree( files )
  97.   if type( i ) ~= "number" then error( "something went wrong!" ) end
  98.   print( type( files ), ";", type( files[i] ) )
  99.   files[i] = { }
  100.   files[i].name = fs.getName( file )
  101.   files[i].path = file
  102.   files[i].data = readFile( file )
  103.   files[i].conf = conf
  104.  
  105.   if conf.hide then
  106.     fs.delete( file )
  107.   end
  108. end
  109.  
  110. fileapi.unprotect = function( path )
  111.   local file = ""
  112.   local index = 0
  113.   for i = 1, #files do
  114.     if files[i].path == path then
  115.       file = files[i]
  116.       index = i
  117.     end
  118.   end
  119.   if file.conf.hide then
  120.     saveFile( file.path, file.data )
  121.   end
  122.   table.remove( files, index )
  123. end
  124.  
  125. fileapi.getTable = function( pass )
  126.   local thepassword = findValueByKeyInConfig( loadedConf, "acces-password" )
  127.   local redi = files
  128.   if thepassword == pass then
  129.     return redi
  130.   end
  131. end
  132.  
  133. print "prepaired functions and variables"
  134.  
  135. local backup = { }
  136. backup.shutdown = os.shutdown
  137. backup.reboot = os.reboot
  138. os.shutdown = function( )
  139.   local index = findValueByKeyInConfig( loadedConf, "files" )
  140.   index = files
  141.   saveConfig( configFile, loadedConf )
  142.   backup.shutdown( )
  143. end
  144. os.reboot = function( )
  145.   local index = findValueByKeyInConfig( loadedConf, "files" )
  146.   index = files
  147.   saveConfig( configFile, loadedConf )
  148.   backup.reboot( )
  149. end
  150.  
  151. print "redefined os.shutdown and os.reboot for your file safety"
  152.  
  153. if not fs.exists( configFile ) then
  154.   saveConfig( configFile, defaultConfig )
  155. end
  156. loadedConf = readConfig( configFile )
  157. files = findValueByKeyInConfig( loadedConf, "files" )
  158.  
  159. if type( files ) == "string" then error( "something went wrong while loading the config" ) end
  160.  
  161. print( type( files ), ";", files )
  162.  
  163. print "loaded the config file"
  164.  
  165. function runShell( )
  166.   os.run( { ["shell"] = shell }, "rom/programs/shell" )
  167. end
  168.  
  169. function fileManager( )
  170.   while true do
  171.     local ev = { os.pullEventRaw( ) }
  172.    
  173.     for i, v in ipairs( files ) do
  174.       if files[i] and not files[i].conf.hide and files[i].conf.protect then
  175.         if not fs.exists( files[i].path ) then
  176.           saveFile( files[i].path, files[i].data )
  177.         else
  178.           local newdata = readFile( files[i].path )
  179.           if newdata ~= files[i].data then saveFile( files[i].path, files[i].data ) end
  180.         end
  181.       end
  182.       if files[i] and files[i].conf.hide and not files[i].conf.protect then
  183.         if fs.exists( files[i].path ) then fs.delete( files[i].path ) end
  184.       end
  185.     end
  186.   end  
  187. end
  188.  
  189. print "starting"
  190. sleep( 1 )
  191. parallel.waitForAny( runShell, fileManager )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement