mirror of
https://github.com/20kdc/OC-KittenOS.git
synced 2024-11-09 03:58:08 +11:00
46d60df1ec
Yes, I made sure to ask Mimiru about permission to target the uploader there.
36 lines
1.0 KiB
Lua
36 lines
1.0 KiB
Lua
-- This is released into the public domain.
|
|
-- No warranty is provided, implied or otherwise.
|
|
-- app-pclogix-upload: Upload to PCLogix Hastebin (paste.pc-logix.com)
|
|
local inet = neo.requireAccess("c.internet", "to upload").list()()
|
|
assert(inet, "no internet card")
|
|
local event = require("event")(neo)
|
|
local neoux = require("neoux")(event, neo)
|
|
|
|
local f = neoux.fileDialog(false)
|
|
if not f then return end
|
|
local data = f.read("*a")
|
|
f.close()
|
|
|
|
local s = inet.request("http://paste.pc-logix.com/documents", data)
|
|
assert(s, "no socket")
|
|
s.finishConnect()
|
|
local code, msg = s.response()
|
|
local res = tostring(code) .. " " .. tostring(msg) .. "\n"
|
|
while true do
|
|
local chk, err = s.read(neo.readBufSize)
|
|
if not chk then
|
|
res = res .. "\n" .. tostring(err)
|
|
break
|
|
end
|
|
if chk == "" then
|
|
event.sleepTo(os.uptime() + 0.05)
|
|
else
|
|
res = res .. chk
|
|
end
|
|
end
|
|
res = res .. "\nPrefix ID with http://paste.pc-logix.com/raw/"
|
|
neoux.startDialog(res, "result", true)
|
|
s.close()
|
|
-- that's a hastebin client for OC!
|
|
-- done! now I'll upload this with itself.
|
|
-- - 20kdc |