pull/1985/head
kunfei 2 years ago
parent adad04b48f
commit 94c6be7202
  1. 8
      app/src/main/java/io/legado/app/lib/webdav/WebDavFile.kt
  2. 18
      app/src/main/java/io/legado/app/ui/book/remote/manager/RemoteBookWebDav.kt

@ -12,4 +12,10 @@ class WebDavFile(
val size: Long,
val contentType: String,
val lastModify: Long
) : WebDav(urlStr, authorization)
) : WebDav(urlStr, authorization) {
val isDir by lazy {
contentType == "httpd/unix-directory"
}
}

@ -41,21 +41,15 @@ object RemoteBookWebDav : RemoteBookManager() {
val remoteBooks = mutableListOf<RemoteBook>()
AppWebDav.authorization?.let {
//读取文件列表
var remoteWebDavFileList: List<WebDavFile>? = null
kotlin.runCatching {
remoteWebDavFileList = WebDav(remoteBookUrl, it).listFiles()
}
//逆序文件排序
remoteWebDavFileList = remoteWebDavFileList!!.reversed()
val remoteWebDavFileList: List<WebDavFile> = WebDav(remoteBookUrl, it).listFiles()
//转化远程文件信息到本地对象
remoteWebDavFileList!!.forEach { webDavFile ->
remoteWebDavFileList.forEach { webDavFile ->
var webDavFileName = webDavFile.displayName
var webDavUrlName = "${remoteBookUrl}${File.separator}${webDavFile.displayName}"
webDavFileName = URLDecoder.decode(webDavFileName,"utf-8")
webDavUrlName = URLDecoder.decode(webDavUrlName,"utf-8")
// 转码
//val trueFileName = String(webDavFileName.toByteArray(Charset.forName("GBK")), Charset.forName("UTF-8"))
//val trueUrlName = String(webDavUrlName.toByteArray(Charset.forName("GBK")), Charset.forName("UTF-8"))
webDavFileName = URLDecoder.decode(webDavFileName, "utf-8")
webDavUrlName = URLDecoder.decode(webDavUrlName, "utf-8")
webDavFile.isDir
//分割后缀
val fileExtension = webDavFileName.substringAfterLast(".")

Loading…
Cancel
Save