SNRK-87: simple text-insertion of path
This commit is contained in:
parent
f477af64e6
commit
82cd925e35
@ -15,48 +15,65 @@ import kotlinx.css.html
|
|||||||
import java.nio.file.Path
|
import java.nio.file.Path
|
||||||
import space.kscience.snark.storage.Directory
|
import space.kscience.snark.storage.Directory
|
||||||
import space.kscience.snark.storage.local.localStorage
|
import space.kscience.snark.storage.local.localStorage
|
||||||
import kotlin.io.path.createTempDirectory
|
|
||||||
import kotlin.io.path.isDirectory
|
|
||||||
import kotlin.io.path.listDirectoryEntries
|
|
||||||
import kotlin.io.path.name
|
|
||||||
import space.kscience.snark.storage.unzip.unzip
|
import space.kscience.snark.storage.unzip.unzip
|
||||||
|
import java.io.File
|
||||||
|
import kotlin.io.createTempFile
|
||||||
|
import kotlin.io.path.*
|
||||||
|
import kotlin.io.writeBytes
|
||||||
|
|
||||||
public interface DataHolder {
|
public interface DataHolder {
|
||||||
|
|
||||||
fun init() : Directory
|
fun init(relativePath: String = "/") : Directory
|
||||||
fun represent(): String
|
fun represent(relativePath: String = "/"): String
|
||||||
//will be HTML later
|
//will be HTML later
|
||||||
}
|
}
|
||||||
|
|
||||||
class LocalDataHolder: DataHolder {
|
class LocalDataHolder: DataHolder {
|
||||||
private var source: Path? = null
|
private var source: Path? = null
|
||||||
private var response: String = ""
|
private var response: String = ""
|
||||||
override fun init(): Directory {
|
|
||||||
source?.toFile()?.deleteRecursively()
|
private fun getPath(relativePath: String) : Path {
|
||||||
source = createTempDirectory()
|
return source!! / Path(relativePath.drop(1))
|
||||||
return localStorage(source!!)
|
|
||||||
}
|
}
|
||||||
private fun buildResponse(path: Path) {
|
override fun init(relativePath: String): Directory {
|
||||||
for (entry in path.listDirectoryEntries()) {
|
if (source == null) {
|
||||||
|
source = createTempDirectory()
|
||||||
|
}
|
||||||
|
val path = getPath(relativePath)
|
||||||
|
path.createDirectories()
|
||||||
|
path.toFile().deleteRecursively()
|
||||||
|
path.createDirectory()
|
||||||
|
return localStorage(path)
|
||||||
|
}
|
||||||
|
private fun buildResponse(from: Path, cur: Path) {
|
||||||
|
for (entry in cur.listDirectoryEntries()) {
|
||||||
if (entry.isDirectory()) {
|
if (entry.isDirectory()) {
|
||||||
buildResponse(entry)
|
buildResponse(from, entry)
|
||||||
} else {
|
} else {
|
||||||
response += source!!.relativize(entry).toString() + "\n"
|
response += from.relativize(entry).toString() + "\n"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
override fun represent() : String =
|
override fun represent(relativePath: String) : String =
|
||||||
if (source == null) {
|
if (source == null) {
|
||||||
"No data was loaded!"
|
"No data was loaded!"
|
||||||
} else {
|
} else {
|
||||||
response = "List of files:\n"
|
response = "List of files:\n"
|
||||||
buildResponse(source!!)
|
val path = getPath(relativePath)
|
||||||
|
buildResponse(path, path)
|
||||||
response
|
response
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public class SNARKServer(val dataHolder: DataHolder, val port: Int): Runnable {
|
public class SNARKServer(val dataHolder: DataHolder, val port: Int): Runnable {
|
||||||
|
private var relativePath = "/"
|
||||||
|
|
||||||
|
private suspend fun receivePath(call: ApplicationCall) {
|
||||||
|
relativePath = call.receiveText().drop(5).replace("%2F", "/")
|
||||||
|
call.respondText("Path is successfully changed to: " + relativePath)
|
||||||
|
}
|
||||||
private suspend fun renderGet(call: ApplicationCall) {
|
private suspend fun renderGet(call: ApplicationCall) {
|
||||||
call.respondText(dataHolder.represent())
|
call.respondText(dataHolder.represent(relativePath))
|
||||||
}
|
}
|
||||||
private suspend fun renderUpload(call: ApplicationCall) {
|
private suspend fun renderUpload(call: ApplicationCall) {
|
||||||
val multipartData = call.receiveMultipart()
|
val multipartData = call.receiveMultipart()
|
||||||
@ -72,7 +89,7 @@ public class SNARKServer(val dataHolder: DataHolder, val port: Int): Runnable {
|
|||||||
}
|
}
|
||||||
part.dispose()
|
part.dispose()
|
||||||
}
|
}
|
||||||
unzip(tmp.toPath().toString(), dataHolder.init())
|
unzip(tmp.toPath().toString(), dataHolder.init(relativePath))
|
||||||
call.respondText("File is successfully uploaded")
|
call.respondText("File is successfully uploaded")
|
||||||
}
|
}
|
||||||
private suspend fun renderMainPage(call: ApplicationCall) {
|
private suspend fun renderMainPage(call: ApplicationCall) {
|
||||||
@ -86,8 +103,20 @@ public class SNARKServer(val dataHolder: DataHolder, val port: Int): Runnable {
|
|||||||
h1 {
|
h1 {
|
||||||
+"SNARK"
|
+"SNARK"
|
||||||
}
|
}
|
||||||
|
p {
|
||||||
|
+("Path: " + relativePath)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
body {
|
body {
|
||||||
|
postForm(action = "/changePath") {
|
||||||
|
label {
|
||||||
|
+ "Enter new path:"
|
||||||
|
}
|
||||||
|
input(name = "path", type = InputType.text) {}
|
||||||
|
button {
|
||||||
|
+"Change path"
|
||||||
|
}
|
||||||
|
}
|
||||||
postForm (action = "/upload", encType = FormEncType.multipartFormData) {
|
postForm (action = "/upload", encType = FormEncType.multipartFormData) {
|
||||||
label {
|
label {
|
||||||
+"Choose zip archive: "
|
+"Choose zip archive: "
|
||||||
@ -109,6 +138,9 @@ public class SNARKServer(val dataHolder: DataHolder, val port: Int): Runnable {
|
|||||||
get("/") {
|
get("/") {
|
||||||
renderMainPage(call)
|
renderMainPage(call)
|
||||||
}
|
}
|
||||||
|
post("/changePath") {
|
||||||
|
receivePath(call)
|
||||||
|
}
|
||||||
post("/upload") {
|
post("/upload") {
|
||||||
renderUpload(call)
|
renderUpload(call)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user