mirror of
https://github.com/fabianonline/telegram_backup.git
synced 2024-11-22 16:56:16 +00:00
Started partial rewrite because the converter isn't thaaat intelligent.
This commit is contained in:
parent
deb5e316cb
commit
3a4508012a
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user