sPhone/src/sPhone.lua

967 lines
25 KiB
Lua
Raw Normal View History

2015-08-19 11:45:35 +02:00
os.forceShutdown = os.shutdown
2015-07-31 19:59:52 +02:00
local function crash(err)
2015-08-19 11:45:35 +02:00
if not sPhone then
sPhone = {
devMode = false,
}
end
term.setCursorBlink(false)
2015-11-10 16:28:54 +01:00
term.setBackgroundColor(colors.white)
2015-08-19 11:45:35 +02:00
term.clear()
term.setCursorPos(1,1)
2015-11-10 16:28:54 +01:00
term.setTextColor(colors.black)
2015-08-19 11:45:35 +02:00
if not err then
2015-11-10 16:28:54 +01:00
err = "Undefined Error"
2015-08-19 11:45:35 +02:00
end
2015-11-10 16:28:54 +01:00
print("sPhone got an error :(\n")
term.setTextColor(colors.red)
print(err)
term.setTextColor(colors.black)
2015-11-10 16:53:21 +01:00
print("")
2015-11-10 16:28:54 +01:00
if sPhone.version then
2015-11-10 16:53:21 +01:00
print("sPhone "..sPhone.version)
2015-11-10 16:28:54 +01:00
end
print("Computer ID: "..os.getComputerID())
2015-12-01 14:22:06 +01:00
if _CC_VERSION then
print("CC Version: ".._CC_VERSION)
print("MC Version: ".._MC_VERSION)
else
print("CC Version: Under 1.74")
print("MC Version: Undefined")
2015-12-01 14:22:49 +01:00
term.setTextColor(colors.red)
2015-12-01 14:22:06 +01:00
print("Update CC to 1.74 or higher")
2015-12-01 14:22:49 +01:00
term.setTextColor(colors.black)
2015-12-01 14:22:06 +01:00
end
2015-12-01 11:45:59 +01:00
print("LUA Version: ".._VERSION)
print("LUAJ Version: ".._LUAJ_VERSION)
2015-11-10 16:53:21 +01:00
print("Contact sPhone devs: GitHub: Sertex-Team/sPhone")
2015-11-10 16:28:54 +01:00
print("Thanks for using sPhone")
2015-08-19 11:45:35 +02:00
print("Press any key")
repeat
sleep(0)
until os.pullEvent("key")
if not sPhone.devMode then
2015-10-30 20:02:58 +01:00
_G.term = nil
2015-08-19 11:45:35 +02:00
end
term.setBackgroundColor(colors.black)
term.clear()
term.setCursorPos(1,1)
sleep(0.1)
shell.run("/rom/programs/shell")
end
2015-10-11 11:29:26 +02:00
local function recovery()
term.setBackgroundColor(colors.white)
term.setTextColor(colors.black)
term.clear()
term.setCursorPos(1,1)
print("sPhone Recovery")
2015-11-13 23:30:08 +01:00
print("[1] Hard Reset")
print("[2] Update sPhone")
print("[3] Reset User Config")
print("[4] Continue Booting")
2015-11-18 16:54:17 +01:00
print("[5] Boot in safe mode")
2015-10-11 11:29:26 +02:00
while true do
2015-10-11 11:30:42 +02:00
local _, k = os.pullEvent("key")
if k == 2 then
2015-11-10 20:53:44 +01:00
term.setBackgroundColor(colors.black)
term.setTextColor(colors.white)
2015-10-11 11:29:26 +02:00
for k, v in pairs(fs.list("/")) do
if not fs.isReadOnly(v) then
2015-11-10 20:53:44 +01:00
if fs.isDir(v) then
shell.setDir(v)
for k, v in pairs(fs.list("/"..v)) do
fs.delete(v)
print("Removed "..shell.dir().."/"..v)
end
2015-11-10 20:59:59 +01:00
shell.setDir(shell.resolve(".."))
2015-11-10 20:53:44 +01:00
end
2015-10-11 11:29:26 +02:00
fs.delete(v)
2015-11-10 20:53:44 +01:00
print("Removed "..v)
2015-10-11 11:29:26 +02:00
end
end
print("Installing sPhone...")
sleep(0.5)
setfenv(loadstring(http.get("https://raw.githubusercontent.com/Sertex-Team/sPhone/master/src/installer.lua").readAll()),getfenv())()
elseif k == 3 then
2015-10-11 11:30:42 +02:00
setfenv(loadstring(http.get("https://raw.githubusercontent.com/Sertex-Team/sPhone/master/src/installer.lua").readAll()),getfenv())()
elseif k == 4 then
2015-11-13 23:30:08 +01:00
fs.delete("/.sPhone/config")
os.reboot()
elseif k == 5 then
2015-11-18 16:59:41 +01:00
_G.safemode = false
2015-10-11 11:29:26 +02:00
break
2015-11-18 16:54:17 +01:00
elseif k == 6 then
2015-11-18 16:56:20 +01:00
_G.safemode = true
2015-11-18 16:54:17 +01:00
break
2015-10-11 11:29:26 +02:00
end
end
end
2015-07-31 20:27:52 +02:00
local function kernel()
2015-10-10 14:42:32 +02:00
term.setBackgroundColor(colors.white)
term.setCursorPos(1,1)
term.clear()
term.setTextColor(colors.black)
if fs.exists("/.sPhone/interfaces/bootImage") then
local bootImage = paintutils.loadImage("/.sPhone/interfaces/bootImage")
paintutils.drawImage(bootImage, 11,7)
else
print("Missing bootImage")
end
2015-11-11 18:49:25 +01:00
local w, h = term.getSize()
term.setBackgroundColor(colors.white)
term.setTextColor(colors.black)
term.setCursorPos(1,h)
write("Press ALT to recovery mode")
2015-10-11 11:29:26 +02:00
local bootTimer = os.startTimer(1)
while true do
local e,k = os.pullEvent()
if e == "key" and k == 56 then
recovery()
break
elseif e == "timer" then
2015-11-18 16:59:41 +01:00
_G.safemode = false
2015-10-11 11:29:26 +02:00
break
end
end
2015-08-19 11:45:35 +02:00
_G.sPhone = {
2015-11-27 22:50:35 +01:00
version = "Alpha 2.10",
2015-09-02 14:41:09 +02:00
user = "Run sID",
2015-09-26 11:32:04 +02:00
devMode = false,
2015-09-20 16:06:47 +02:00
mainTerm = term.current()
2015-08-19 11:45:35 +02:00
}
2015-11-10 16:17:59 +01:00
2015-10-05 17:30:26 +02:00
if not fs.exists("/.sPhone/config/newIDSystem") then
fs.delete("/.sPhone/config/username")
fs.delete("/.sPhone/config/.sIDpw")
f = fs.open("/.sPhone/config/newIDSystem","w")
f.write("Ignore Me. I just check if you use the new Sertex ID system to fix password issues")
f.close()
end
2015-11-13 23:22:02 +01:00
if not fs.exists("/.sPhone/config/newPassword") and fs.exists("/.sPhone/.password") then
fs.move("/.sPhone/.password","/.sPhone/config/.password")
f = fs.open("/.sPhone/config/newPassword","w")
f.write("Ignore Me. I just check if the password is moved to the config folder")
f.close()
end
2015-11-18 16:54:17 +01:00
if not fs.exists("/.sPhone/apis") then
fs.makeDir("/.sPhone/apis")
end
for k, v in pairs(fs.list("/.sPhone/apis")) do
if not fs.isDir("/.sPhone/apis/"..v) then
os.loadAPI("/.sPhone/apis/"..v)
end
end
2015-09-22 18:49:37 +02:00
if not fs.exists("/.sPhone/autorun") then
fs.makeDir("/.sPhone/autorun")
end
2015-09-23 14:09:20 +02:00
term.setBackgroundColor(colors.white)
term.clear()
2015-10-10 16:18:02 +02:00
term.setCursorPos(1,1)
2015-09-22 18:49:37 +02:00
for k, v in pairs(fs.list("/.sPhone/autorun")) do
2015-09-23 14:09:20 +02:00
term.setTextColor(colors.black)
2015-09-23 14:04:24 +02:00
if not fs.isDir("/.sPhone/autorun/"..v) then
2015-11-18 16:56:20 +01:00
if not safemode then
2015-11-18 16:54:17 +01:00
local f = fs.open("/.sPhone/autorun/"..v,"r")
local script = f.readAll()
f.close()
print("Loading script "..v)
sleep(0)
local ok, err = pcall(function() setfenv(loadstring(script),getfenv())() end)
if not ok then
term.setTextColor(colors.red)
print("Script error: "..v..": "..err)
fs.move("/.sPhone/autorun/"..v, "/.sPhone/autorun/disabled/"..v)
term.setTextColor(colors.blue)
print(v.." disabled to prevent errors")
sleep(0.5)
end
else
print("Script "..v.." not loaded because Safe Mode")
sleep(0)
2015-09-23 14:04:24 +02:00
end
end
2015-09-22 18:49:37 +02:00
end
2015-11-18 16:56:20 +01:00
if safemode then
_G.safemode = nil
end
2015-09-22 18:49:37 +02:00
2015-09-09 17:31:27 +02:00
if runningOnStartup then
fs.open("/startup","r")
end
2015-08-19 11:45:35 +02:00
if fs.exists("/.sPhone/config/username") then
local u = fs.open("/.sPhone/config/username","r")
sPhone.user = u.readLine()
u.close()
end
2015-11-10 16:48:13 +01:00
if not fs.exists("/.sPhone/config/sPhone") then
config.write("/.sPhone/config/sPhone","devMode",false)
end
sPhone.devMode = config.read("/.sPhone/config/sPhone","devMode")
if sPhone.devMode then
sPhone.crash = crash
2015-08-19 11:45:35 +02:00
end
function os.version()
return "sPhone "..sPhone.version
end
local function clear()
term.setBackgroundColor(colors.white)
term.clear()
term.setCursorPos(1,1)
term.setTextColor(colors.black)
end
sPhone.forceShutdown = os.shutdown
sPhone.forceReboot = os.reboot
function os.shutdown()
os.pullEvent = os.pullEventRaw
if sPhone.doneShutdown then
clear()
w, h = term.getSize()
term.setCursorPos( (w/2)- 7, h/2)
write("Press CTRL + S")
while true do
sleep(3600)
end
end
sPhone.doneShutdown = true
clear()
w, h = term.getSize()
2015-09-02 14:47:30 +02:00
term.setCursorPos( (w / 2) - 1, h / 2)
2015-08-19 11:45:35 +02:00
for i = 1,3 do
sleep(0.3)
write(".")
end
sleep(0.2)
sPhone.forceShutdown()
end
function os.reboot()
os.pullEvent = os.pullEventRaw
if sPhone.doneShutdown then
clear()
w, h = term.getSize()
term.setCursorPos( (w/2)- 7, h/2)
write("Press CTRL + R")
while true do
sleep(3600)
end
end
sPhone.doneShutdown = true
clear()
w, h = term.getSize()
2015-08-29 15:32:33 +02:00
term.setCursorPos( (w / 2) - 1, h / 2)
2015-08-19 11:45:35 +02:00
for i = 1,3 do
sleep(0.3)
write(".")
end
sleep(0.2)
sPhone.forceReboot()
end
2015-09-21 21:34:14 +02:00
function sPhone.header(butt)
if not sPhone then
sPhone = {
user = "Unknown",
}
end
local w, h = term.getSize()
paintutils.drawLine(1,1,w,1, colors.blue)
term.setTextColor(colors.white)
term.setCursorPos(1,1)
write(" "..sPhone.user)
term.setCursorPos(w,1)
write("X")
term.setBackgroundColor(colors.white)
term.setTextColor(colors.black)
term.setCursorPos(1,3)
end
function sPhone.menu(items, title, closeButton)
local function cprint(text)
if type(text) ~= 'table' then
text = {text}
end
local w, h = term.getSize()
for i=1,#text do
local x, y = term.getCursorPos()
term.setCursorPos(math.floor(w/2)-math.floor(text[i]:len()/2), y)
print(text[i])
end
end
local function clear()
term.clear()
term.setCursorPos(1, 1)
end
local termWidth, termHeight = term.getSize()
local drawSize = termHeight - 6
local function maxPages()
local itemCount = #items
local pageCount = 0
while itemCount > 0 do
itemCount = itemCount - drawSize
pageCount = pageCount + 1
end
return pageCount
end
local function iif(cond, trueval, falseval)
if cond then
return trueval
else
return falseval
end
end
local function pagedItems()
local ret = {}
for i = 1, maxPages() do
local tmp = {}
local nElements = 0
for j = drawSize*(i-1)+1, iif(drawSize*(i+1) > #items, #items, drawSize*(i+1)) do
if nElements < drawSize then
table.insert(tmp, items[j])
nElements = nElements + 1
end
end
table.insert(ret, tmp)
end
return ret
end
local selected = 1
if start then
selected = start
end
local page = 1
local function redraw()
term.setBackgroundColor(colors.white)
term.setTextColor(colors.black)
term.clear()
term.setCursorPos(1,1)
sPhone.header(closeButton)
term.setCursorPos(1,3)
if not title then
title = "sPhone"
end
cprint(" "..title)
if moreTitle then
head = moreTitle
else
head = {"\n",}
if not allowNil or allowNil == true then
--head[3] = 'Terminate to cancel.'
end
end
for i=1,#head do
print(head[i])
end
if maxPages() > 1 then
pages = "<- (page "..page.." of "..maxPages()..") ->"
print(pages)
end
for i = 1, #pagedItems()[page] do
if selected == drawSize*(page-1)+i then
term.setBackgroundColor(colors.white)
term.setTextColor(colors.black)
else
term.setBackgroundColor(colors.white)
term.setTextColor(colors.black)
end
term.clearLine()
cprint(iif(selected == drawSize*(page-1)+i,"","").." "..pagedItems()[page][i])
term.setBackgroundColor(colors.white)
term.setTextColor(colors.black)
end
end
local function changePage(pW)
if pW == 1 and page < maxPages() then
page = page + 1
if selected + drawSize > #items then
selected = #items
else
selected = selected + drawSize
end
elseif pW == -1 and page > 1 then
page = page - 1
if selected - drawSize < 1 then
selected = 1
else
selected = selected - drawSize
end
end
end
while true do
redraw()
local eventData = {os.pullEventRaw()}
if eventData[1] == 'mouse_click' then
if eventData[4] == 1 and eventData[3] == 26 then
return false, 0
end
if eventData[4] > 3 then
clear()
selected = (eventData[4]-6+((page-1)*drawSize))+1
if selected then
return items[selected], selected
end
end
end
sleep(0)
end
end
2015-08-19 11:45:35 +02:00
2015-09-02 14:47:30 +02:00
function sPhone.yesNo(title, desc, hideUser)
2015-11-02 22:08:38 +01:00
term.setCursorBlink(false)
2015-08-24 20:49:02 +02:00
term.setBackgroundColor(colors.white)
term.clear()
term.setCursorPos(1,1)
term.setTextColor(colors.black)
local w, h = term.getSize()
2015-09-21 21:34:14 +02:00
paintutils.drawLine(1,1,w,1, colors.blue)
2015-08-24 20:49:02 +02:00
term.setTextColor(colors.white)
term.setCursorPos(1,1)
2015-09-02 14:48:37 +02:00
if not hideUser then
2015-09-02 14:47:30 +02:00
if not sPhone.user then
write(" sPhone")
else
write(" "..sPhone.user)
end
2015-08-24 20:49:02 +02:00
end
term.setCursorPos(1,3)
term.setBackgroundColor(colors.white)
term.setTextColor(colors.black)
2015-11-27 22:39:21 +01:00
visum.align("center", " "..title, false, 3)
2015-08-24 20:49:02 +02:00
if desc then
2015-11-27 22:39:21 +01:00
visum.align("center", " "..desc,false,6)
2015-08-24 20:49:02 +02:00
end
paintutils.drawFilledBox(3, 16, 9, 18, colors.green)
paintutils.drawFilledBox(18, 16, 24, 18, colors.red)
term.setTextColor(colors.white)
term.setCursorPos(5,17)
term.setBackgroundColor(colors.green)
write("Yes")
term.setCursorPos(20,17)
term.setBackgroundColor(colors.red)
write("No")
while true do
local _,_,x,y = os.pullEvent("mouse_click")
if (x > 2 and y > 15) and (x < 10 and y < 19) then
return true
elseif (x > 17 and y > 15) and (x < 25 and y < 19) then
return false
end
end
end
2015-08-19 11:45:35 +02:00
function sPhone.winOk(fmessage, smessage, bg, side, text, button)
if not fmessage then
fmessage = ""
end
2015-09-16 15:39:18 +02:00
if not smessage then
smessage = ""
end
2015-08-19 11:45:35 +02:00
if not bg then
2015-09-21 21:34:14 +02:00
bg = colors.lightBlue
2015-08-19 11:45:35 +02:00
end
if not text then
text = colors.white
end
if not button then
2015-09-21 21:36:44 +02:00
button = colors.lightBlue
2015-08-19 11:45:35 +02:00
end
if not side then
2015-09-21 21:34:14 +02:00
side = colors.blue
2015-08-19 11:45:35 +02:00
end
2015-11-02 22:08:38 +01:00
term.setCursorBlink(false)
2015-09-16 15:39:18 +02:00
if #fmessage >= #smessage then
local w, h = term.getSize
term.setBackgroundColor(side)
2015-10-09 17:51:06 +02:00
paintutils.drawBox(12 - math.ceil(#fmessage / 2), 5, 15 + math.ceil(#fmessage / 2), 10, side)
2015-09-16 15:39:18 +02:00
term.setBackgroundColor(bg)
2015-10-09 17:51:06 +02:00
paintutils.drawFilledBox(13 - math.ceil(#fmessage / 2), 6, 14 + math.ceil(#fmessage / 2), 9, bg)
2015-09-16 15:39:18 +02:00
term.setCursorPos(14 - math.ceil(#fmessage / 2), 7)
term.setTextColor(text)
write(fmessage)
term.setCursorPos(14 - math.ceil(#smessage / 2), 8)
write(smessage)
else
local w, h = term.getSize
term.setBackgroundColor(side)
2015-10-09 17:51:06 +02:00
paintutils.drawBox(12 - math.ceil(#smessage / 2), 5, 15 + math.ceil(#smessage / 2), 10, side)
2015-09-16 15:39:18 +02:00
term.setBackgroundColor(bg)
2015-10-09 17:51:06 +02:00
paintutils.drawFilledBox(13 - math.ceil(#smessage / 2), 6, 14 + math.ceil(#smessage / 2), 9, bg)
2015-09-16 15:39:18 +02:00
term.setCursorPos(14 - math.ceil(#fmessage / 2), 7)
term.setTextColor(text)
write(fmessage)
2015-08-19 11:45:35 +02:00
term.setCursorPos(14 - math.ceil(#smessage / 2), 8)
write(smessage)
end
term.setCursorPos(13,10)
term.setBackgroundColor(button)
write("Ok")
while true do
local e, k, x,y = os.pullEvent()
if e == "mouse_click" then
if y == 10 then
if x == 13 or x == 14 then
return
end
end
elseif e == "key" then
if k == 28 then
return
end
end
end
end
2015-10-10 18:28:12 +02:00
function sPhone.run(_rApp)
if not fs.exists(_rApp) or fs.isDir(_rApp) then
sPhone.winOk("App not found")
return
end
local f = fs.open(_rApp, "r")
local script = f.readAll()
f.close()
2015-11-02 22:08:38 +01:00
os.pullEvent = os.oldPullEvent
2015-10-10 18:28:12 +02:00
local ok, err = pcall(function() setfenv(loadstring(script),getfenv())() end)
if not ok then
2015-11-02 22:08:38 +01:00
os.pullEvent = os.pullEventRaw
sPhone.winOk("Crash: "..fs.getName(_rApp), err)
2015-10-10 18:28:12 +02:00
return false
end
2015-11-02 22:08:38 +01:00
os.pullEvent = os.pullEventRaw
return true
2015-10-10 18:28:12 +02:00
end
2015-08-19 11:45:35 +02:00
2015-09-02 14:41:09 +02:00
local function lChat()
2015-08-19 11:45:35 +02:00
clear()
local w, h = term.getSize()
2015-09-21 21:34:14 +02:00
paintutils.drawLine(1,1,w,1,colors.blue)
2015-11-02 22:08:38 +01:00
term.setCursorBlink(false)
2015-08-19 11:45:35 +02:00
term.setTextColor(colors.white)
2015-11-30 11:38:00 +01:00
visum.align("center"," Chat",false,1)
2015-08-19 11:45:35 +02:00
term.setBackgroundColor(colors.white)
term.setTextColor(colors.black)
term.setCursorPos(2, 5)
if not peripheral.isPresent("back") or not peripheral.getType("back") == "modem" then
print("Modem not found")
print(" Press any key")
os.pullEvent("key")
return
end
write("Host: ")
local h = read()
term.setCursorPos(2,6)
shell.run("/rom/programs/rednet/chat", "join", h, sPhone.user)
sleep(1)
end
local function home()
2015-10-11 13:09:18 +02:00
--if not fs.exists("/.sPhone/config/resetDBNews") then
--sPhone.winOk("We wiped sID Database","for security issues")
--local f = fs.open("/.sPhone/config/resetDBNews","w")
--f.write("Ignore me")
--f.close()
--end
2015-11-20 18:38:55 +01:00
if not sPhone.locked then
2015-11-20 18:39:41 +01:00
sPhone.lock()
2015-11-20 18:38:55 +01:00
end
2015-10-11 13:09:18 +02:00
if fs.exists("/.sPhone/config/resetDBNews") then
fs.delete("/.sPhone/config/resetDBNews")
2015-10-06 13:30:45 +02:00
end
2015-08-19 11:45:35 +02:00
local function drawHome()
local function box(x,y,text,bg,colorText,page)
graphics.box(x,y,x+1+#text,y+2,bg)
term.setCursorPos(x+1,y+1)
term.setTextColor(colorText)
write(text)
end
clear()
local w, h = term.getSize()
2015-09-21 21:34:14 +02:00
paintutils.drawLine(1,1,w,1, colors.blue)
2015-08-19 11:45:35 +02:00
term.setTextColor(colors.white)
2015-11-27 22:39:21 +01:00
visum.align("right","vvv ",false,1)
2015-08-19 11:45:35 +02:00
term.setCursorPos(1,1)
2015-09-02 14:41:09 +02:00
if not sPhone.newUpdate then
write(" "..sPhone.user)
else
write(" New Update!")
end
2015-08-19 11:45:35 +02:00
box(2,3,"Shell",colors.black,colors.yellow)
box(19,3,"Lock",colors.lightGray,colors.black)
2015-08-24 15:45:56 +02:00
box(11,3,"sID",colors.red,colors.white)
2015-09-26 11:31:28 +02:00
box(2,7,"Buddies",colors.brown,colors.white)
box(12,7,"Chat", colors.black,colors.white)
2015-08-19 11:45:35 +02:00
box(19,7,"SMS",colors.green,colors.white)
2015-11-01 12:25:21 +01:00
box(3, 11, "KST", colors.green, colors.lime)
2015-08-19 11:45:35 +02:00
box(10, 11, "GPS", colors.red, colors.black)
2015-08-21 15:35:23 +02:00
box(18, 11, "Info", colors.lightGray, colors.black)
2015-08-19 11:45:35 +02:00
end
local function footerMenu()
sPhone.isFooterMenuOpen = true
function redraw()
local w, h = term.getSize()
2015-09-21 21:34:14 +02:00
graphics.box(1,2,w,4,colors.blue)
2015-08-19 11:45:35 +02:00
term.setTextColor(colors.white)
2015-09-21 21:34:14 +02:00
term.setBackgroundColor(colors.blue)
2015-11-27 22:39:21 +01:00
visum.align("right","^^^ ",false,1)
visum.align("right", "Reboot ",false,3)
2015-08-19 11:45:35 +02:00
term.setCursorPos(11,3)
write("Settings")
term.setCursorPos(2,3)
write("Shutdown")
end
while true do
2015-09-20 16:06:47 +02:00
term.redirect(sPhone.mainTerm)
2015-08-19 11:45:35 +02:00
redraw()
local _,_,x,y = os.pullEvent("mouse_click")
if y == 3 then
if x > 1 and x < 10 then
os.shutdown()
elseif x > 19 and x < 26 then
os.reboot()
elseif x > 10 and x < 19 then
shell.run("/.sPhone/apps/system/settings")
drawHome()
end
elseif y == 1 then
if x < 26 and x > 22 then
sPhone.isFooterMenuOpen = false
return
end
end
end
end
while true do
drawHome()
term.setCursorBlink(false)
2015-10-10 23:58:23 +02:00
local autoLockTimer = os.startTimer(120)
local e,m,x,y = os.pullEvent()
if e == "mouse_click" then
if y == 1 then
if x < 26 and x > 22 then
footerMenu()
end
else
if (y > 2 and x > 1) and (y < 6 and x < 9) then
2015-11-13 23:22:02 +01:00
os.pullEvent = os.oldPullEvent
2015-10-10 23:58:23 +02:00
term.setBackgroundColor(colors.black)
term.clear()
term.setCursorPos(1,1)
term.setTextColor(colors.white)
print("Type \"exit\" to close the shell")
2015-10-31 17:49:11 +01:00
sPhone.run("/rom/programs/shell")
2015-10-10 23:58:23 +02:00
elseif (y > 2 and x > 10) and (y < 7 and x < 16) then
2015-10-31 17:49:11 +01:00
sPhone.run("/.sPhone/apps/system/sID")
2015-10-10 23:58:23 +02:00
elseif (y > 2 and x > 18) and (y < 6 and x < 25) then
login()
elseif (y > 6 and x > 1) and (y < 10 and x < 11) then
2015-10-31 17:49:11 +01:00
sPhone.run("/.sPhone/apps/buddies")
2015-10-10 23:58:23 +02:00
elseif (y > 6 and x > 11) and (y < 10 and x < 18) then
lChat()
elseif (y > 6 and x > 18) and (y < 10 and x < 24) then
2015-10-31 17:49:11 +01:00
sPhone.run("/.sPhone/apps/sms")
2015-10-10 23:58:23 +02:00
elseif (y > 10 and x > 2) and (y < 14 and x < 8) then
2015-11-01 12:14:47 +01:00
sPhone.run("/.sPhone/apps/kstwallet")
2015-10-10 23:58:23 +02:00
elseif (y > 10 and x > 9) and (y < 14 and x < 15) then
2015-10-31 17:49:11 +01:00
sPhone.run("/.sPhone/apps/gps")
2015-10-10 23:58:23 +02:00
elseif (y > 10 and x > 17) and (y < 14 and x < 24) then
2015-10-31 17:49:11 +01:00
sPhone.run("/.sPhone/apps/system/info")
2015-10-10 23:58:23 +02:00
end
2015-08-19 11:45:35 +02:00
end
2015-10-10 23:58:23 +02:00
elseif e == "timer" and m == autoLockTimer then
login()
2015-08-19 11:45:35 +02:00
end
end
end
function login()
2015-11-20 18:38:55 +01:00
sPhone.locked = true
2015-11-13 23:24:31 +01:00
if fs.exists("/.sPhone/config/.password") then
2015-08-19 11:45:35 +02:00
while true do
term.clear()
term.setCursorPos(1,1)
paintutils.drawImage(paintutils.loadImage("/.sPhone/interfaces/login"),1,1)
term.setTextColor(colors.white)
2015-09-21 21:34:14 +02:00
term.setBackgroundColor(colors.blue)
2015-08-19 11:45:35 +02:00
term.setCursorPos(1,1)
write(" "..sPhone.user)
if sPhone.wrongPassword then
term.setTextColor(colors.red)
term.setBackgroundColor(colors.white)
2015-11-27 22:39:21 +01:00
visum.align("center"," Wrong Password",false,13)
2015-08-19 11:45:35 +02:00
end
term.setTextColor(colors.black)
term.setBackgroundColor(colors.white)
2015-11-27 22:39:21 +01:00
visum.align("center"," Insert Password",false,7)
2015-09-21 21:34:14 +02:00
local loginTerm = window.create(term.native(), 8,10,12,1, true)
term.redirect(loginTerm)
term.setBackgroundColor(colors.white)
term.clear()
term.setCursorPos(1,1)
term.setTextColor(colors.black)
2015-11-13 23:22:02 +01:00
local passwordLogin = read("*")
2015-09-21 21:34:14 +02:00
term.redirect(sPhone.mainTerm)
2015-11-13 23:22:02 +01:00
local fpw = fs.open("/.sPhone/config/.password","r")
if sha256.sha256(passwordLogin) == fpw.readLine() then
sPhone.wrongPassword = false
home()
else
sPhone.wrongPassword = true
end
end
2015-08-19 11:45:35 +02:00
else
2015-08-25 17:46:25 +02:00
local name
local pw
local pwr
2015-08-25 17:56:00 +02:00
local rServer
2015-08-19 11:45:35 +02:00
while true do
term.clear()
term.setCursorPos(1,1)
paintutils.drawImage(paintutils.loadImage("/.sPhone/interfaces/login"),1,1)
if sPhone.wrongPassword then
term.setTextColor(colors.red)
2015-11-27 22:39:21 +01:00
visum.align("center"," Wrong Password",false,13)
2015-08-19 11:45:35 +02:00
end
term.setTextColor(colors.black)
term.setBackgroundColor(colors.white)
2015-11-27 22:39:21 +01:00
visum.align("center"," Setup",false,3)
visum.align("center"," Insert Password",false,5)
2015-09-21 21:34:14 +02:00
local loginTerm = window.create(term.native(), 8,10,12,1, true)
2015-10-05 17:24:13 +02:00
term.redirect(loginTerm)
term.setBackgroundColor(colors.white)
term.clear()
term.setCursorPos(1,1)
term.setTextColor(colors.black)
2015-09-21 21:34:14 +02:00
local password1 = read("*")
2015-10-05 17:24:13 +02:00
term.redirect(sPhone.mainTerm)
2015-08-19 11:45:35 +02:00
term.clear()
term.setCursorPos(1,1)
paintutils.drawImage(paintutils.loadImage("/.sPhone/interfaces/login"),1,1)
term.setTextColor(colors.black)
term.setBackgroundColor(colors.white)
2015-11-27 22:39:21 +01:00
visum.align("center"," Setup",false,3)
visum.align("center"," Repeat",false,7)
2015-09-21 21:34:14 +02:00
local loginTerm = window.create(term.native(), 8,10,12,1, true)
2015-10-05 17:24:13 +02:00
term.redirect(loginTerm)
term.setBackgroundColor(colors.white)
term.clear()
term.setCursorPos(1,1)
term.setTextColor(colors.black)
2015-09-21 21:34:14 +02:00
local password2 = read("*")
2015-10-05 17:24:13 +02:00
term.redirect(sPhone.mainTerm)
2015-08-19 11:45:35 +02:00
if password1 == password2 then
2015-11-13 23:22:02 +01:00
local f = fs.open("/.sPhone/config/.password", "w")
2015-08-19 11:45:35 +02:00
f.write(sha256.sha256(password1))
f.close()
term.setTextColor(colors.lime)
2015-11-27 22:39:21 +01:00
visum.align("center"," Password set!",false,13)
2015-08-19 11:45:35 +02:00
sleep(2)
break
else
sPhone.wrongPassword = true
end
end
2015-08-29 15:57:40 +02:00
term.setBackgroundColor(colors.white)
term.clear()
term.setCursorPos(1,1)
local w, h = term.getSize()
2015-09-21 21:34:14 +02:00
paintutils.drawLine(1,1,w,1,colors.blue)
2015-08-29 15:57:40 +02:00
term.setTextColor(colors.black)
term.setBackgroundColor(colors.white)
2015-11-27 22:39:21 +01:00
visum.align("center"," Setup Sertex ID",false,3)
2015-11-11 17:42:14 +01:00
local isDown = http.get("http://sertex.x10.bz/status.php").readAll()
2015-08-29 15:57:40 +02:00
if isDown ~= "true" then
2015-11-27 22:39:21 +01:00
visum.align("center", " The server is down",false,5)
visum.align("center", " Run sID on the home",false,6)
2015-08-29 15:57:40 +02:00
name = "Run sID"
sleep(2)
else
2015-10-05 17:24:13 +02:00
2015-09-02 14:47:30 +02:00
local choose = sPhone.yesNo("Setup Sertex ID", "Do you have a Sertex ID?", true)
2015-08-29 15:57:40 +02:00
if not choose then
term.setBackgroundColor(colors.white)
term.clear()
term.setCursorPos(1,1)
local w, h = term.getSize()
2015-09-21 21:34:14 +02:00
paintutils.drawLine(1,1,w,1,colors.blue)
2015-08-29 15:57:40 +02:00
term.setTextColor(colors.black)
term.setBackgroundColor(colors.white)
2015-11-27 22:39:21 +01:00
visum.align("center"," Setup Sertex ID",false,3)
visum.align("center"," Your Username",false,5)
2015-08-29 15:57:40 +02:00
term.setCursorPos(3,8)
name = read()
while true do
2015-11-27 22:39:21 +01:00
visum.align("center", " Your Password",false,9)
2015-08-29 15:57:40 +02:00
term.setCursorPos(3,10)
term.clearLine()
pw = read("*")
2015-11-27 22:39:21 +01:00
visum.align("center", " Repeat",false,11)
2015-08-29 15:57:40 +02:00
term.setCursorPos(3,12)
term.clearLine()
pwr = read("*")
if pw == pwr then
break
else
print(" Wrong Password")
sleep(1)
end
end
2015-11-11 17:42:14 +01:00
local rServer = http.post("http://sertex.x10.bz/register.php", "user="..name.."&password="..pw).readAll()
2015-08-29 15:57:40 +02:00
if rServer ~= "Success!" then
print("Username already exists")
print("Retry later in the app sID")
2015-08-29 16:17:03 +02:00
sleep(2)
else
local f = fs.open("/.sPhone/config/username","w")
f.write(name)
f.close()
local pwf = fs.open("/.sPhone/config/.sIDPw", "w")
2015-10-05 17:24:13 +02:00
pwf.write(sha256.sha256(pw))
2015-08-29 16:17:03 +02:00
pwf.close()
2015-08-24 20:49:02 +02:00
end
2015-08-29 15:57:40 +02:00
else
2015-08-25 17:56:00 +02:00
term.setBackgroundColor(colors.white)
term.clear()
term.setCursorPos(1,1)
local w, h = term.getSize()
2015-09-21 21:34:14 +02:00
paintutils.drawLine(1,1,w,1,colors.blue)
2015-08-25 17:56:00 +02:00
term.setTextColor(colors.black)
term.setBackgroundColor(colors.white)
2015-11-27 22:39:21 +01:00
visum.align("center"," Setup Sertex ID",false,3)
visum.align("center"," Your Username",false,7)
2015-08-25 17:56:00 +02:00
term.setCursorPos(3,8)
name = read()
2015-11-27 22:39:21 +01:00
visum.align("center", " Your Password",false,9)
2015-08-25 17:56:00 +02:00
term.setCursorPos(3,10)
term.clearLine()
pw = read("*")
2015-11-27 22:39:21 +01:00
visum.align("center", " Checking...",false,11)
2015-11-11 17:42:14 +01:00
rServer = http.post("http://sertex.x10.bz/login.php", "user="..name.."&password="..pw).readAll()
2015-08-29 15:57:40 +02:00
if rServer ~= "true" then
2015-08-25 17:56:00 +02:00
print(" Wrong Username/Password")
2015-08-29 15:57:40 +02:00
print(" Run sID")
2015-08-25 17:56:00 +02:00
sleep(2)
else
f = fs.open("/.sPhone/config/username", "w")
f.write(name)
f.close()
f = fs.open("/.sPhone/config/.sIDpw", "w")
2015-10-05 17:24:13 +02:00
f.write(sha256.sha256(pw))
2015-08-25 17:56:00 +02:00
f.close()
end
end
2015-08-24 20:49:02 +02:00
end
2015-11-10 19:11:25 +01:00
sPhone.user = name
os.setComputerLabel(sPhone.user.."'s sPhone")
2015-08-29 16:17:03 +02:00
term.setCursorPos(1,13)
term.clearLine()
2015-11-27 22:39:21 +01:00
visum.align("center"," All Set!",false,13)
2015-08-29 16:17:03 +02:00
term.setCursorPos(1,14)
term.clearLine()
2015-11-27 22:39:21 +01:00
visum.align("center"," Have fun with sPhone",false,14)
2015-08-25 17:56:00 +02:00
sleep(2)
2015-11-20 18:38:55 +01:00
sPhone.locked = false
return
2015-08-19 11:45:35 +02:00
end
end
2015-11-20 18:38:55 +01:00
sPhone.lock = login
2015-11-20 18:39:41 +01:00
sPhone.login = login
2015-08-19 11:45:35 +02:00
2015-09-23 14:05:04 +02:00
local newVersion = http.get("https://raw.githubusercontent.com/Sertex-Team/sPhone/master/src/version").readLine()
2015-09-02 14:41:09 +02:00
if newVersion ~= sPhone.version then
sPhone.newUpdate = true
else
sPhone.newUpdate = false
end
2015-09-02 14:44:57 +02:00
2015-11-20 18:38:55 +01:00
home()
2015-09-02 14:41:09 +02:00
2015-07-31 19:52:45 +02:00
end
2015-09-09 17:31:27 +02:00
local runningOnStartup
2015-09-03 21:52:37 +02:00
term.setBackgroundColor(colors.black)
term.clear()
term.setCursorPos(1,1)
term.setTextColor(colors.white)
2015-08-19 11:45:35 +02:00
if sPhone then
printError("sPhone already started")
return
end
2015-09-03 21:52:37 +02:00
if not pocket or not term.isColor() then
printError("Computer not supported: use an Advanced Pocket Computer or an Advanced Wireless Pocket Computer")
return
end
2015-09-09 17:31:27 +02:00
local tArgs = {...}
2015-08-29 19:11:44 +02:00
os.oldPullEvent = os.pullEvent
os.pullEvent = os.pullEventRaw
2015-08-19 11:45:35 +02:00
2015-09-09 17:31:27 +02:00
local argData = {
["-u"] = false,
["-s"] = false,
}
if #tArgs > 0 then
while #tArgs > 0 do
local tArgs = table.remove(tArgs, 1)
if argData[tArgs] ~= nil then
argData[tArgs] = true
end
end
end
if argData["-u"] then
print("Getting installer...")
setfenv(loadstring(http.get("https://raw.githubusercontent.com/Sertex-Team/sPhone/master/src/installer.lua").readAll()),getfenv())()
end
if argData["-s"] then
runningOnStartup = true
end
2015-08-19 11:45:35 +02:00
local ok, error = pcall(kernel)
2015-07-31 19:52:45 +02:00
if not ok then
2015-08-19 11:45:35 +02:00
crash(error)
2015-07-31 19:52:45 +02:00
end
2015-08-19 11:45:35 +02:00
2015-11-10 16:28:54 +01:00
crash("Something went wrong...")