opus/sys/apps/Files.lua

553 lines
14 KiB
Lua
Raw Normal View History

local Config = require('config')
local Event = require('event')
2019-04-11 12:41:23 +00:00
local pastebin = require('http.pastebin')
local UI = require('ui')
local Util = require('util')
2016-12-11 19:24:52 +00:00
2017-10-08 21:45:01 +00:00
local colors = _G.colors
local fs = _G.fs
local multishell = _ENV.multishell
local os = _G.os
local shell = _ENV.shell
2017-10-08 03:03:18 +00:00
2019-03-26 13:08:39 +00:00
local FILE = 1
2016-12-11 19:24:52 +00:00
UI:configure('Files', ...)
2018-12-30 03:33:58 +00:00
local config = Config.load('Files', {
showHidden = false,
showDirSizes = false,
2018-12-30 03:33:58 +00:00
})
config.associations = config.associations or {
nft = 'pain',
}
2016-12-11 19:24:52 +00:00
local copied = { }
local marked = { }
local directories = { }
local cutMode = false
2017-10-08 03:03:18 +00:00
local function formatSize(size)
2016-12-11 19:24:52 +00:00
if size >= 1000000 then
return string.format('%dM', math.floor(size/1000000, 2))
elseif size >= 1000 then
return string.format('%dK', math.floor(size/1000, 2))
end
return size
end
local Browser = UI.Page {
menuBar = UI.MenuBar {
buttons = {
2017-10-06 17:39:47 +00:00
{ text = '^-', event = 'updir' },
{ text = 'File', dropdown = {
2019-04-11 12:41:23 +00:00
{ text = 'Run', event = 'run', flags = FILE },
{ text = 'Edit e', event = 'edit', flags = FILE },
{ text = 'Cloud edit c', event = 'cedit', flags = FILE },
{ text = 'Pastebin put p', event = 'pastebin', flags = FILE },
2019-03-26 13:08:39 +00:00
{ text = 'Shell s', event = 'shell' },
{ spacer = true },
2019-03-26 13:08:39 +00:00
{ text = 'Quit q', event = 'quit' },
2017-10-06 17:39:47 +00:00
} },
{ text = 'Edit', dropdown = {
{ text = 'Cut ^x', event = 'cut' },
{ text = 'Copy ^c', event = 'copy' },
2018-02-20 03:19:49 +00:00
{ text = 'Copy path ', event = 'copy_path' },
2017-10-06 17:39:47 +00:00
{ text = 'Paste ^v', event = 'paste' },
{ spacer = true },
2017-10-06 17:39:47 +00:00
{ text = 'Mark m', event = 'mark' },
{ text = 'Unmark all u', event = 'unmark' },
{ spacer = true },
2017-10-06 17:39:47 +00:00
{ text = 'Delete del', event = 'delete' },
} },
{ text = 'View', dropdown = {
{ text = 'Refresh r', event = 'refresh' },
{ text = 'Hidden ^h', event = 'toggle_hidden' },
{ text = 'Dir Size ^s', event = 'toggle_dirSize' },
} },
2019-01-05 15:35:25 +00:00
{ text = '\187',
2018-12-30 03:33:58 +00:00
x = -3,
dropdown = {
{ text = 'Associations', event = 'associate' },
} },
2016-12-11 19:24:52 +00:00
},
},
grid = UI.ScrollingGrid {
2017-10-08 03:03:18 +00:00
columns = {
2017-09-30 02:30:01 +00:00
{ heading = 'Name', key = 'name' },
{ key = 'flags', width = 2 },
2017-10-08 03:03:18 +00:00
{ heading = 'Size', key = 'fsize', width = 5 },
2017-09-30 02:30:01 +00:00
},
2016-12-11 19:24:52 +00:00
sortColumn = 'name',
2017-09-30 02:30:01 +00:00
y = 2, ey = -2,
2016-12-11 19:24:52 +00:00
},
statusBar = UI.StatusBar {
2017-10-08 03:03:18 +00:00
columns = {
2017-09-30 02:30:01 +00:00
{ key = 'status' },
{ key = 'totalSize', width = 6 },
2016-12-11 19:24:52 +00:00
},
},
notification = UI.Notification { },
2018-12-30 03:33:58 +00:00
associations = UI.SlideOut {
backgroundColor = colors.cyan,
menuBar = UI.MenuBar {
buttons = {
{ text = 'Save', event = 'save' },
{ text = 'Cancel', event = 'cancel' },
},
},
grid = UI.ScrollingGrid {
x = 2, ex = -6, y = 3, ey = -5,
columns = {
2018-12-30 14:50:02 +00:00
{ heading = 'Extension', key = 'name' },
{ heading = 'Program', key = 'value' },
2018-12-30 03:33:58 +00:00
},
2018-12-30 14:50:02 +00:00
autospace = true,
2018-12-30 03:33:58 +00:00
sortColumn = 'name',
accelerators = {
delete = 'remove_entry',
},
},
remove = UI.Button {
x = -4, y = 6,
text = '-', event = 'remove_entry', help = 'Remove',
},
form = UI.Form {
x = 3, y = -3, ey = -2,
margin = 1,
manualControls = true,
[1] = UI.TextEntry {
width = 20,
2018-12-30 14:50:02 +00:00
formLabel = 'Extension', formKey = 'name',
2018-12-30 03:33:58 +00:00
shadowText = 'extension',
required = true,
2018-12-30 18:54:09 +00:00
limit = 64,
2018-12-30 03:33:58 +00:00
},
[2] = UI.TextEntry {
2018-12-30 18:54:09 +00:00
width = 20,
2018-12-30 14:50:02 +00:00
formLabel = 'Program', formKey = 'value',
2018-12-30 03:33:58 +00:00
shadowText = 'program',
required = true,
2018-12-30 18:54:09 +00:00
limit = 128,
2018-12-30 03:33:58 +00:00
},
add = UI.Button {
x = -11, y = 1,
text = 'Add', event = 'add_association',
},
},
statusBar = UI.StatusBar {
backgroundColor = colors.cyan,
},
},
2016-12-11 19:24:52 +00:00
accelerators = {
q = 'quit',
2019-01-13 18:24:37 +00:00
c = 'cedit',
2016-12-11 19:24:52 +00:00
e = 'edit',
s = 'shell',
2019-03-26 13:08:39 +00:00
p = 'pastebin',
2016-12-11 19:24:52 +00:00
r = 'refresh',
2019-04-25 18:44:36 +00:00
[ ' ' ] = 'mark',
m = 'mark',
2016-12-11 19:24:52 +00:00
backspace = 'updir',
u = 'unmark',
d = 'delete',
delete = 'delete',
[ 'control-h' ] = 'toggle_hidden',
2017-10-08 03:03:18 +00:00
[ 'control-s' ] = 'toggle_dirSize',
2016-12-11 19:24:52 +00:00
[ 'control-x' ] = 'cut',
[ 'control-c' ] = 'copy',
paste = 'paste',
},
}
function Browser:enable()
UI.Page.enable(self)
self:setFocus(self.grid)
end
2017-10-06 17:39:47 +00:00
function Browser.menuBar:getActive(menuItem)
local file = Browser.grid:getSelected()
2019-03-26 13:08:39 +00:00
if menuItem.flags == FILE then
return file and not file.isDir
2017-10-06 17:39:47 +00:00
end
return true
end
2016-12-11 19:24:52 +00:00
function Browser.grid:sortCompare(a, b)
if self.sortColumn == 'fsize' then
return a.size < b.size
elseif self.sortColumn == 'flags' then
return a.flags < b.flags
end
if a.isDir == b.isDir then
return a.name:lower() < b.name:lower()
end
return a.isDir
end
2017-10-08 03:03:18 +00:00
function Browser.grid:getRowTextColor(file)
2016-12-11 19:24:52 +00:00
if file.marked then
return colors.green
end
if file.isDir then
return colors.cyan
end
if file.isReadOnly then
return colors.pink
end
return colors.white
end
2017-05-12 05:44:49 +00:00
function Browser.grid:eventHandler(event)
if event.type == 'copy' then -- let copy be handled by parent
return false
end
2017-10-03 04:50:54 +00:00
return UI.ScrollingGrid.eventHandler(self, event)
2017-05-12 05:44:49 +00:00
end
2016-12-11 19:24:52 +00:00
function Browser.statusBar:draw()
if self.parent.dir then
local info = '#:' .. Util.size(self.parent.dir.files)
local numMarked = Util.size(marked)
if numMarked > 0 then
info = info .. ' M:' .. numMarked
end
self:setValue('info', info)
self:setValue('totalSize', formatSize(self.parent.dir.totalSize))
UI.StatusBar.draw(self)
end
end
function Browser:setStatus(status, ...)
self.notification:info(string.format(status, ...))
2016-12-11 19:24:52 +00:00
end
function Browser:unmarkAll()
2017-10-08 21:45:01 +00:00
for _,m in pairs(marked) do
2016-12-11 19:24:52 +00:00
m.marked = false
end
Util.clear(marked)
end
function Browser:getDirectory(directory)
local s, dir = pcall(function()
local dir = directories[directory]
if not dir then
dir = {
name = directory,
size = 0,
files = { },
totalSize = 0,
index = 1
}
directories[directory] = dir
end
self:updateDirectory(dir)
return dir
end)
return s, dir
end
function Browser:updateDirectory(dir)
dir.size = 0
dir.totalSize = 0
Util.clear(dir.files)
2017-08-05 08:17:06 +00:00
local files = fs.listEx(dir.name)
2016-12-11 19:24:52 +00:00
if files then
dir.size = #files
for _, file in pairs(files) do
file.fullName = fs.combine(dir.name, file.name)
file.flags = ''
if not file.isDir then
dir.totalSize = dir.totalSize + file.size
file.fsize = formatSize(file.size)
else
if config.showDirSizes then
file.size = fs.getSize(file.fullName, true)
dir.totalSize = dir.totalSize + file.size
file.fsize = formatSize(file.size)
end
2016-12-11 19:24:52 +00:00
file.flags = 'D'
end
if file.isReadOnly then
file.flags = file.flags .. 'R'
end
if config.showHidden or file.name:sub(1, 1) ~= '.' then
2016-12-11 19:24:52 +00:00
dir.files[file.fullName] = file
end
end
end
-- self.grid:update()
-- self.grid:setIndex(dir.index)
self.grid:setValues(dir.files)
end
function Browser:setDir(dirName, noStatus)
self:unmarkAll()
if self.dir then
self.dir.index = self.grid:getIndex()
end
2017-10-08 21:45:01 +00:00
local DIR = fs.combine('', dirName)
2016-12-11 19:24:52 +00:00
shell.setDir(DIR)
local s, dir = self:getDirectory(DIR)
if s then
self.dir = dir
elseif noStatus then
error(dir)
else
self:setStatus(dir)
self:setDir('', true)
return
end
if not noStatus then
self.statusBar:setValue('status', '/' .. self.dir.name)
self.statusBar:draw()
end
self.grid:setIndex(self.dir.index)
end
2018-01-20 12:18:13 +00:00
function Browser:run(...)
if multishell then
local tabId = shell.openTab(...)
multishell.setFocus(tabId)
else
shell.run(...)
Event.terminate = false
self:draw()
end
2016-12-11 19:24:52 +00:00
end
function Browser:hasMarked()
if Util.size(marked) == 0 then
local file = self.grid:getSelected()
if file then
file.marked = true
marked[file.fullName] = file
self.grid:draw()
end
end
return Util.size(marked) > 0
end
function Browser:eventHandler(event)
local file = self.grid:getSelected()
if event.type == 'quit' then
Event.exitPullEvents()
elseif event.type == 'edit' and file then
2017-09-24 04:38:14 +00:00
self:run('edit', file.name)
2016-12-11 19:24:52 +00:00
2019-01-13 18:24:37 +00:00
elseif event.type == 'cedit' and file then
self:run('cedit', file.name)
2019-03-26 13:08:39 +00:00
self:setStatus('Started cloud edit')
2019-01-13 18:24:37 +00:00
2016-12-11 19:24:52 +00:00
elseif event.type == 'shell' then
2019-02-12 22:03:50 +00:00
self:run('sys/apps/shell.lua')
2016-12-11 19:24:52 +00:00
elseif event.type == 'refresh' then
self:updateDirectory(self.dir)
self.grid:draw()
self:setStatus('Refreshed')
2018-12-30 03:33:58 +00:00
elseif event.type == 'associate' then
self.associations:show()
2019-03-26 13:08:39 +00:00
elseif event.type == 'pastebin' then
if file and not file.isDir then
local s, m = pastebin.put(file.fullName)
if s then
os.queueEvent('clipboard_copy', s)
2019-04-11 12:41:23 +00:00
self.notification:success(string.format('Uploaded as %s', s), 0)
2019-03-26 13:08:39 +00:00
else
self.notification:error(m)
end
end
2016-12-11 19:24:52 +00:00
elseif event.type == 'toggle_hidden' then
config.showHidden = not config.showHidden
Config.update('Files', config)
2016-12-11 19:24:52 +00:00
self:updateDirectory(self.dir)
self.grid:draw()
if not config.showHidden then
2016-12-11 19:24:52 +00:00
self:setStatus('Hiding hidden')
else
self:setStatus('Displaying hidden')
end
elseif event.type == 'toggle_dirSize' then
config.showDirSizes = not config.showDirSizes
Config.update('Files', config)
self:updateDirectory(self.dir)
self.grid:draw()
if config.showDirSizes then
self:setStatus('Displaying dir sizes')
end
2016-12-11 19:24:52 +00:00
elseif event.type == 'mark' and file then
file.marked = not file.marked
if file.marked then
marked[file.fullName] = file
else
marked[file.fullName] = nil
end
self.grid:draw()
self.statusBar:draw()
elseif event.type == 'unmark' then
self:unmarkAll()
self.grid:draw()
self:setStatus('Marked files cleared')
elseif event.type == 'grid_select' or event.type == 'run' then
if file then
if file.isDir then
self:setDir(file.fullName)
else
2018-12-30 03:33:58 +00:00
local ext = file.name:match('%.(%w+)$')
if ext and config.associations[ext] then
self:run(config.associations[ext], '/' .. file.fullName)
else
self:run(file.name)
end
2016-12-11 19:24:52 +00:00
end
end
elseif event.type == 'updir' then
local dir = (self.dir.name:match("(.*/)"))
self:setDir(dir or '/')
elseif event.type == 'delete' then
if self:hasMarked() then
local width = self.statusBar:getColumnWidth('status')
self.statusBar:setColumnWidth('status', UI.term.width)
self.statusBar:setValue('status', 'Delete marked? (y/n)')
self.statusBar:draw()
self.statusBar:sync()
local _, ch = os.pullEvent('char')
if ch == 'y' or ch == 'Y' then
2017-10-08 03:03:18 +00:00
for _,m in pairs(marked) do
2016-12-11 19:24:52 +00:00
pcall(function()
fs.delete(m.fullName)
end)
end
end
marked = { }
self.statusBar:setColumnWidth('status', width)
self.statusBar:setValue('status', '/' .. self.dir.name)
self:updateDirectory(self.dir)
self.statusBar:draw()
self.grid:draw()
self:setFocus(self.grid)
end
elseif event.type == 'copy' or event.type == 'cut' then
if self:hasMarked() then
cutMode = event.type == 'cut'
Util.clear(copied)
Util.merge(copied, marked)
--self:unmarkAll()
self.grid:draw()
self:setStatus('Copied %d file(s)', Util.size(copied))
end
2018-02-20 03:19:49 +00:00
elseif event.type == 'copy_path' then
if file then
os.queueEvent('clipboard_copy', file.fullName)
end
2016-12-11 19:24:52 +00:00
elseif event.type == 'paste' then
2017-10-08 03:03:18 +00:00
for _,m in pairs(copied) do
2016-12-11 19:24:52 +00:00
local s, m = pcall(function()
if cutMode then
fs.move(m.fullName, fs.combine(self.dir.name, m.name))
else
fs.copy(m.fullName, fs.combine(self.dir.name, m.name))
end
end)
end
self:updateDirectory(self.dir)
self.grid:draw()
self:setStatus('Pasted ' .. Util.size(copied) .. ' file(s)')
else
return UI.Page.eventHandler(self, event)
end
self:setFocus(self.grid)
return true
end
2018-12-30 03:33:58 +00:00
--[[ Associations slide out ]] --
function Browser.associations:show()
self.grid.values = { }
for k, v in pairs(config.associations) do
table.insert(self.grid.values, {
name = k,
value = v,
})
end
self.grid:update()
UI.SlideOut.show(self)
self:setFocus(self.form[1])
end
function Browser.associations:eventHandler(event)
if event.type == 'remove_entry' then
local row = self.grid:getSelected()
if row then
Util.removeByValue(self.grid.values, row)
self.grid:update()
self.grid:draw()
end
elseif event.type == 'add_association' then
if self.form:save() then
local entry = Util.find(self.grid.values, 'name', self.form[1].value) or { }
entry.name = self.form[1].value
entry.value = self.form[2].value
table.insert(self.grid.values, entry)
self.form[1]:reset()
self.form[2]:reset()
self.grid:update()
self.grid:draw()
end
elseif event.type == 'cancel' then
self:hide()
elseif event.type == 'save' then
config.associations = { }
for _, v in pairs(self.grid.values) do
config.associations[v.name] = v.value
end
Config.update('Files', config)
self:hide()
else
return UI.SlideOut.eventHandler(self, event)
end
return true
end
2016-12-11 19:24:52 +00:00
--[[-- Startup logic --]]--
local args = { ... }
Browser:setDir(args[1] or shell.dir())
UI:setPage(Browser)
Event.pullEvents()
UI.term:reset()