Started partial rewrite because the converter isn't thaaat intelligent.

This commit is contained in:
Fabian Schlenz 2017-12-08 06:09:16 +01:00
parent deb5e316cb
commit 3a4508012a
1 changed files with 8 additions and 11 deletions

View File

@ -45,19 +45,16 @@ import org.apache.commons.io.FileUtils
abstract class AbstractMediaFileManager(protected var message: TLMessage, protected var user: UserManager, protected var client: TelegramClient) {
var isEmpty = false
protected set
abstract val size: Int
abstract val extension: String
val isDownloaded: Boolean
get() = File(targetPathAndFilename).isFile()
val isDownloading: Boolean
get() = File(targetPathAndFilename + ".downloading").isFile()
val targetPath: String
get() {
val path = user.getFileBase() + Config.FILE_FILES_BASE + File.separatorChar
File(path).mkdirs()
return path
}
fun isDownloaded() { return File(targetPathAndFilename).isFile() }
fun isDownloading() {return File(targetPathAndFilename + ".downloading").isFile() }
fun targetPath() {
val path = user.getFileBase() + Config.FILE_FILES_BASE + File.separatorChar
File(path).mkdirs()
return path
}
val targetFilename: String
get() = if (message.getToId() is TLPeerChannel) {
"channel_" + (message.getToId() as TLPeerChannel).getChannelId() + "_" + message.getId() + "." + extension