mirror of
https://github.com/rumanzo/bt2qbt.git
synced 2024-11-08 20:02:30 +01:00
cca7869d2a
* start refactor * default golang loyaout separate qbittorrent and torrent structures * stage * move flags handle to module and cover it with tests change handle sep with path.join * ugly remove unneeded fields from resume.dat * use path joing prepare for resume structs * Introduce subtests * fix behavior * Move to structures instead of using interfaces * Make main cmd clean, decomposite functions * Make main cmd clean, decomposite functions * Detect torrents functions and tests * Fixes * Fixes * New tests for content layout and file paths reformat code for project change libtorrent version append torrent v2 schema in torrent structs * filepath helper module fix some tests * fileHelpers new functions and tests * new function with cut last part with tests * function description and small fix * rename some variables and structures * beautiful tests handle for savePaths starting refactor savepaths * Refactor HandleSavePath func. Cover with tests Move replace field creation to handle and assign pointer, instead of generate each time with handle resumeItem. Moved opts to transferStructure. * fix some tests * HandleSavePaths covered with tests and little bit fixed * Another one additional test for fully function cover * check for tests * Remove PiecePriority * Refactored HandlePieces functions Removed unused functions * Rename variables. Introduced new tests * Append tests * Rename test funcs * New tests * New tests * move modules * introduce Makefile * Adapt fileHelpers for both windows and linux. Linux tests passed Use slashed paths for search torrents * remove test template * test fileset * Makefile. Version introduce * Fix darwin i386 version build * Bug fix with mappedfiles Need more tests and append new functionality. * tests for HandleSavePaths with absoulte paths in mapped files * additional tests with fileshare * all tests OK * Fix torrent state. Added tests * fixes after code inspection * Magnet link support. Tests * README.md update Co-authored-by: Alexey Kostin <a.kostin@corp.mail.ru>
68 lines
2.0 KiB
Go
68 lines
2.0 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("01-02-2006 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.Println("Can't process convert resume.dat")
|
|
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 config %v is backed up.\n",
|
|
opts.QBitDir, opts.Config)
|
|
color.HiRed("Check that you previously disable option \"Append .!ut/.!bt to incomplete files\" in preferences of uTorrent/Bittorrent \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()
|
|
|
|
}
|