mirror of
https://github.com/rumanzo/bt2qbt.git
synced 2024-11-08 11:52:31 +01:00
e41bda56fe
update go version better error printing yet another user notification
69 lines
2.1 KiB
Go
69 lines
2.1 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/fatih/color"
|
|
"github.com/rumanzo/bt2qbt/internal/options"
|
|
"github.com/rumanzo/bt2qbt/internal/transfer"
|
|
"github.com/rumanzo/bt2qbt/pkg/helpers"
|
|
"github.com/rumanzo/bt2qbt/pkg/utorrentStructs"
|
|
"github.com/zeebo/bencode"
|
|
"log"
|
|
"os"
|
|
"path"
|
|
"runtime"
|
|
"time"
|
|
)
|
|
|
|
var version, commit, date, buildImage string
|
|
|
|
func main() {
|
|
opts := options.MakeOpts()
|
|
|
|
if opts.Version {
|
|
date = time.Now().Format("2006-01-02 15:04:05")
|
|
fmt.Printf("Version: %v\nCommit: %v\nGolang version: %v\nBuild image: %v\nBuild date: %v\n", version, commit, runtime.Version(), buildImage, date)
|
|
os.Exit(0)
|
|
}
|
|
|
|
resumeFilePath := path.Join(opts.BitDir, "resume.dat")
|
|
if _, err := os.Stat(resumeFilePath); os.IsNotExist(err) {
|
|
log.Println("Can't find uTorrent\\Bittorrent resume file")
|
|
time.Sleep(30 * time.Second)
|
|
os.Exit(1)
|
|
}
|
|
resumeFile := map[string]interface{}{}
|
|
err := helpers.DecodeTorrentFile(resumeFilePath, resumeFile)
|
|
if err != nil {
|
|
log.Println("Can't decode uTorrent\\Bittorrent resume file")
|
|
time.Sleep(30 * time.Second)
|
|
os.Exit(1)
|
|
}
|
|
// hate utorrent for heterogeneous resume.dat scheme
|
|
delete(resumeFile, ".fileguard")
|
|
delete(resumeFile, "rec")
|
|
b, _ := bencode.EncodeBytes(resumeFile)
|
|
resumeItems := map[string]*utorrentStructs.ResumeItem{}
|
|
err = bencode.DecodeBytes(b, &resumeItems)
|
|
if err != nil {
|
|
log.Printf("Can't convert resume.dat. Err: %v\n", err)
|
|
time.Sleep(30 * time.Second)
|
|
os.Exit(1)
|
|
}
|
|
|
|
color.Green("It will be performed processing from directory %v to directory %v\n", opts.BitDir, opts.QBitDir)
|
|
color.HiRed("Check that the qBittorrent is turned off and the directory %v and %v is backed up.\n",
|
|
opts.QBitDir, opts.Categories)
|
|
color.HiRed("Check that you previously disable option \"Append .!ut/.!bt to incomplete files\" in preferences of uTorrent/Bittorrent \n")
|
|
color.HiRed("Close uTorrent/Bittorrent and qBittorrent previously\n\n")
|
|
fmt.Println("Press Enter to start")
|
|
fmt.Scanln()
|
|
log.Println("Started")
|
|
|
|
transfer.HandleResumeItems(opts, resumeItems)
|
|
|
|
fmt.Println("\nPress Enter to exit")
|
|
fmt.Scanln()
|
|
|
|
}
|