Documentation
¶
Index ¶
- Constants
- Variables
- type Client
- func (c *Client) GetAPIVersion() (string, error)
- func (c *Client) GetBuildInfo() (string, error)
- func (c *Client) GetDefaultSavePath() (string, error)
- func (c *Client) GetLog(req *GetLogRequest) (*GetLogResponse, error)
- func (c *Client) GetPreferences() (p Preferences, err error)
- func (c *Client) GetTorrentGenericProperties(req *GetTorrentGenericPropertiesRequest) (*GetTorrentGenericPropertiesResponse, error)
- func (c *Client) GetTorrentList(req *GetTorrentListRequest) (*GetTorrentListResponse, error)
- func (c *Client) GetTorrentPiecesHash()
- func (c *Client) GetTorrentPiecesStates()
- func (c *Client) GetTorrentTrackers(req *GetTorrentTrackersRequest) (*GetTorrentTrackersResponse, error)
- func (c *Client) GetTorrentWebSeeds()
- func (c *Client) GetVersion() (string, error)
- func (c *Client) Login(username, password string) error
- func (c *Client) Logout() error
- func (c *Client) SetPreferences() error
- func (c *Client) Shutdown() error
- func (c *Client) TorrentAdd(req *TorrentAddRequest) error
- func (c *Client) TorrentAddTracker()
- func (c *Client) TorrentAddURL()
- func (c *Client) TorrentDelete()
- func (c *Client) TorrentEditTracker()
- func (c *Client) TorrentPause()
- func (c *Client) TorrentReannounce()
- func (c *Client) TorrentRecheck()
- func (c *Client) TorrentRemoveTracker()
- func (c *Client) TorrentResume()
- type GetLogRequest
- type GetLogResponse
- type GetLogResponseData
- type GetTorrentGenericPropertiesRequest
- type GetTorrentGenericPropertiesResponse
- type GetTorrentListRequest
- type GetTorrentListResponse
- type GetTorrentTrackersRequest
- type GetTorrentTrackersResponse
- type Preferences
- type Torrent
- type TorrentAddRequest
- type TorrentAddResponse
- type TorrentProperties
- type TorrentState
- type TorrentTracker
Constants ¶
View Source
const ( TorrentStateError = "error" // Some error occurred, applies to paused torrents TorrentStateMissingFiles = "missingFiles" // Torrent data files is missing TorrentStateUploading = "uploading" // Torrent is being seeded and data is being transferred TorrentStatePausedUP = "pausedUP" // Torrent is paused and has finished downloading TorrentStateQueuedUP = "queuedUP" // Queuing is enabled and torrent is queued for upload TorrentStateStalledUP = "stalledUP" // Torrent is being seeded, but no connection were made TorrentStateCheckingUP = "checkingUP" // Torrent has finished downloading and is being checked TorrentStateForcedUP = "forcedUP" // Torrent is forced to uploading and ignore queue limit TorrentStateAllocating = "allocating" // Torrent is allocating disk space for download TorrentStateDownloading = "downloading" // Torrent is being downloaded and data is being transferred TorrentStateMetaDL = "metaDL" // Torrent has just started downloading and is fetching metadata TorrentStatePausedDL = "pausedDL" // Torrent is paused and has NOT finished downloading TorrentStateQueuedDL = "queuedDL" // Queuing is enabled and torrent is queued for download TorrentStateStalledDL = "stalledDL" // Torrent is being downloaded, but no connection were made TorrentStateCheckingDL = "checkingDL" // Same as checkingUP, but torrent has NOT finished downloading TorrentStateForceDL = "forceDL" // Torrent is forced to downloading to ignore queue limit TorrentStateCheckingResumeData = "checkingResumeData" // Checking resume data on qBt startup TorrentStateMoving = "moving" // Torrent is moving to another location TorrentStateUnknown = "unknown" // Unknown status )
.
Variables ¶
View Source
var (
ErrNoImplementation = errors.New("No implementation")
)
.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct { BaseURL string Cookies http.CookieJar Host string Authorize string // contains filtered or unexported fields }
Client .
func (*Client) GetDefaultSavePath ¶
GetDefaultSavePath .
func (*Client) GetLog ¶ added in v1.0.3
func (c *Client) GetLog(req *GetLogRequest) (*GetLogResponse, error)
GetLog .
func (*Client) GetPreferences ¶
func (c *Client) GetPreferences() (p Preferences, err error)
GetPreferences .
func (*Client) GetTorrentGenericProperties ¶
func (c *Client) GetTorrentGenericProperties(req *GetTorrentGenericPropertiesRequest) (*GetTorrentGenericPropertiesResponse, error)
GetTorrentGenericProperties .
func (*Client) GetTorrentList ¶
func (c *Client) GetTorrentList(req *GetTorrentListRequest) (*GetTorrentListResponse, error)
GetTorrentList .
func (*Client) GetTorrentPiecesHash ¶
func (c *Client) GetTorrentPiecesHash()
GetTorrentPiecesHash .
func (*Client) GetTorrentPiecesStates ¶
func (c *Client) GetTorrentPiecesStates()
GetTorrentPiecesStates .
func (*Client) GetTorrentTrackers ¶
func (c *Client) GetTorrentTrackers(req *GetTorrentTrackersRequest) (*GetTorrentTrackersResponse, error)
GetTorrentTrackers .
func (*Client) TorrentRemoveTracker ¶
func (c *Client) TorrentRemoveTracker()
TorrentRemoveTracker .
type GetLogRequest ¶ added in v1.0.3
GetLogRequest .
type GetLogResponse ¶ added in v1.0.3
type GetLogResponse struct {
Data []GetLogResponseData
}
GetLogResponse .
type GetLogResponseData ¶ added in v1.0.3
GetLogResponseData .
type GetTorrentGenericPropertiesRequest ¶
type GetTorrentGenericPropertiesRequest struct {
Hash string
}
GetTorrentGenericPropertiesRequest .
type GetTorrentGenericPropertiesResponse ¶
type GetTorrentGenericPropertiesResponse struct {
TorrentProperties TorrentProperties
}
GetTorrentGenericPropertiesResponse .
type GetTorrentListRequest ¶
type GetTorrentListRequest struct { Filter string Category string Sort string Reverse string Limit int Offset int Hashes []string }
GetTorrentListRequest .
type GetTorrentListResponse ¶
type GetTorrentListResponse struct {
Torrents []Torrent
}
GetTorrentListResponse .
type GetTorrentTrackersRequest ¶
type GetTorrentTrackersRequest struct {
Hash string
}
GetTorrentTrackersRequest .
type GetTorrentTrackersResponse ¶
type GetTorrentTrackersResponse struct {
TorrentTracker TorrentTracker
}
GetTorrentTrackersResponse .
type Preferences ¶
type Preferences struct { Locale string `json:"locale,omitempty"` SavePath string `json:"save_path,omitempty"` TempPathEnabled bool `json:"temp_path_enabled,omitempty"` TempPath string `json:"temp_path,omitempty"` ScanDirs map[string]string `json:"scan_dirs,omitempty"` ExportDirEnabled bool `json:"export_dir_enabled,omitempty"` ExportDir string `json:"export_dir,omitempty"` MailNotificationEnabled bool `json:"mail_notification_enabled,omitempty"` MailNotificationEmail string `json:"mail_notification_email,omitempty"` MailNotificationSMTP string `json:"mail_notification_smtp,omitempty"` MailNotificationSSLEnabled bool `json:"mail_notification_ssl_enabled,omitempty"` MailNotificationAuthEnabled bool `json:"mail_notification_auth_enabled,omitempty"` MailNotificationUsername string `json:"mail_notification_username,omitempty"` MailNotificationPassword string `json:"mail_notification_password,omitempty"` AutorunEnable bool `json:"autorun_enable,omitempty"` AutorunProgram string `json:"autorun_program,omitempty"` PreallocateAll bool `json:"preallocate_all,omitempty"` QueuingEnabled bool `json:"queuing_enabled,omitempty"` MaxActiveDownloads int `json:"max_active_downloads,omitempty"` MaxActiveTorrents int `json:"max_active_torrents,omitempty"` MaxActiveUploads int `json:"max_active_uploads,omitempty"` DontCountSlowTorrents bool `json:"dont_count_slow_torrents,omitempty"` MaxRatioEnabled bool `json:"max_ratio_enabled,omitempty"` MaxRatio float32 `json:"max_ratio,omitempty"` MaxRatioAct int `json:"max_ratio_act,omitempty"` IncompleteFileExt bool `json:"incomplete_file_ext,omitempty"` ListenPort int `json:"listen_port,omitempty"` UPNP bool `json:"upnp,omitempty"` RandomPort bool `json:"random_port,omitempty"` DlLimit int `json:"dl_limit,omitempty"` UpLimit int `json:"up_limit,omitempty"` MaxConnec int `json:"max_connec,omitempty"` MaxConnecPerTorrent int `json:"max_connec_per_torrent,omitempty"` MaxUploads int `json:"max_uploads,omitempty"` MaxUploadPerTorrent int `json:"max_upload_per_torrent,omitempty"` EnableUTP bool `json:"enable_utp,omitempty"` LimitUTPRate bool `json:"limit_utp_rate,omitempty"` LimitTCPOverhead bool `json:"limit_tcp_overhead,omitempty"` AltDlLimit int `json:"alt_dl_limit,omitempty"` AltUpLimit int `json:"alt_up_limit,omitempty"` SchedulerEnabled bool `json:"scheduler_enabled,omitempty"` ScheduleFromHour int `json:"schedule_from_hour,omitempty"` ScheduleFromMin int `json:"schedule_from_min,omitempty"` ScheduleToHour int `json:"schedule_to_hour,omitempty"` ScheduleToMin int `json:"schedule_to_min,omitempty"` SchedulerDays int `json:"scheduler_days,omitempty"` DHT bool `json:"dht,omitempty"` DHTSameAsBT bool `json:"dht_same_as_bt,omitempty"` DHTPort int `json:"dht_port,omitempty"` PEX bool `json:"pex,omitempty"` LSD bool `json:"lsd,omitempty"` Encryption int `json:"encryption,omitempty"` AnonymousMode bool `json:"anonymous_mode,omitempty"` ProxyType int `json:"proxy_type,omitempty"` ProxyIP string `json:"proxy_ip,omitempty"` ProxyPort int `json:"proxy_port,omitempty"` ProxyPeerConnections bool `json:"proxy_peer_connections,omitempty"` ForceProxy bool `json:"force_proxy,omitempty"` ProxyAuthEnabled bool `json:"proxy_auth_enabled,omitempty"` ProxyUsername string `json:"proxy_username,omitempty"` ProxyPassword string `json:"proxy_password,omitempty"` IPFilterEnabled bool `json:"ip_filter_enabled,omitempty"` IPFilterPath string `json:"ip_filter_path,omitempty"` IPFilterTrackers bool `json:"ip_filter_trackers,omitempty"` WebUIPort int `json:"web_ui_port,omitempty"` WebUIUPNP bool `json:"web_uiupnp,omitempty"` WebUIUsername string `json:"web_ui_username,omitempty"` WebUIPassword string `json:"web_ui_password,omitempty"` BypassLocalAuth bool `json:"bypass_local_auth,omitempty"` BypassAuthSubnetWhitelistEnabled bool `json:"bypass_auth_subnet_whitelist_enabled,omitempty"` BypassAuthSubnetWhiteList string `json:"bypass_auth_subnet_white_list,omitempty"` UseHTTPS bool `json:"use_https,omitempty"` SSLKey string `json:"ssl_key,omitempty"` SSLCert string `json:"ssl_cert,omitempty"` DyndnsEnabled bool `json:"dyndns_enabled,omitempty"` DyndnsService int `json:"dyndns_service,omitempty"` DyndnsUsername string `json:"dyndns_username,omitempty"` DyndnsPassword string `json:"dyndns_password,omitempty"` DyndnsDomain string `json:"dyndns_domain,omitempty"` }
Preferences .
type Torrent ¶
type Torrent struct { Hash string `json:"hash,omitempty"` Name string `json:"name,omitempty"` Size int `json:"size,omitempty"` Progress float32 `json:"progress,omitempty"` DownloadSpeed int `json:"dlspeed,omitempty"` UploadSpeed int `json:"upspeed,omitempty"` Priority int `json:"priority,omitempty"` NumSeeds int `json:"num_seeds,omitempty"` NumComplete int `json:"num_complete,omitempty"` NumLeechs int `json:"num_leechs,omitempty"` NumIncomplete int `json:"num_incomplete,omitempty"` Ratio int `json:"ratio,omitempty"` ETA int `json:"eta,omitempty"` State string `json:"state,omitempty"` SeqDl bool `json:"seq_dl,omitempty"` FLPiecePrio bool `json:"f_l_piece_prio,omitempty"` Category string `json:"category,omitempty"` SuperSeeding bool `json:"super_seeding,omitempty"` ForceStart bool `json:"force_start,omitempty"` }
Torrent .
type TorrentAddRequest ¶
type TorrentAddRequest struct { Files []string Option struct { SavePath string Cookie string Category string SkipChecking bool Paused bool RootFolder bool Rename string UploadLimit uint64 DownloadLimit uint64 SequentialDownload bool FirstLastPiecePrio bool } }
TorrentAddRequest .
type TorrentProperties ¶
type TorrentProperties struct { SavePath string `json:",save_path,omitempty"` CreationDate int `json:",creation_date,omitempty"` PieceSize int `json:",piece_size,omitempty"` Comment string `json:",comment,omitempty"` TotalWasted int `json:",total_wasted,omitempty"` TotalUploaded int `json:",total_uploaded,omitempty"` TotalUploadedSession int `json:",total_uploaded_session,omitempty"` TotalDownloaded int `json:",total_downloaded,omitempty"` TotalDownloadedSession int `json:",total_downloaded_session,omitempty"` UpLimit int `json:",up_limit,omitempty"` DlLimit int `json:",dl_limit,omitempty"` TimeElapsed int `json:",time_elapsed,omitempty"` SeedingTime int `json:",seeding_time,omitempty"` NbConnections int `json:",nb_connections,omitempty"` NbConnectionsLimit int `json:",nb_connections_limit,omitempty"` AdditionDate int `json:",addition_date,omitempty"` CompletionDate int `json:",completion_date,omitempty"` CreatedBy string `json:",created_by,omitempty"` DlSpeedAvg int `json:",dl_speed_avg,omitempty"` DlSpeed int `json:",dl_speed,omitempty"` Eta int `json:",eta,omitempty"` LastSeen int `json:",last_seen,omitempty"` Peers int `json:",peers,omitempty"` PeersTotal int `json:",peers_total,omitempty"` PiecesHave int `json:",pieces_have,omitempty"` PiecesNum int `json:",pieces_num,omitempty"` Reannounce int `json:",reannounce,omitempty"` Seeds int `json:",seeds,omitempty"` SeedsTotal int `json:",seeds_total,omitempty"` TotalSize int `json:",total_size,omitempty"` UpSpeedAvg int `json:",up_speed_avg,omitempty"` UpSpeed int `json:",up_speed,omitempty"` }
TorrentProperties .
type TorrentTracker ¶
type TorrentTracker struct { URL string `json:"url,omitempty"` // Tracker url Status int `json:"status,omitempty"` // Tracker status. See the table below for possible values Tier int `json:"tier,omitempty"` // Tracker priority tier. Lower tier trackers are tried before higher tiers NumPeers int `json:"num_peers,omitempty"` // Number of peers for current torrent, as reported by the tracker NumSeeds int `json:"num_seeds,omitempty"` // Number of seeds for current torrent, asreported by the tracker NumLeeches int `json:"num_leeches,omitempty"` // Number of leeches for current torrent, as reported by the tracker NumDownloaded int `json:"num_downloaded,omitempty"` // Number of completed downlods for current torrent, as reported by the tracker Msg string `json:"msg,omitempty"` // Tracker message (there is no way of knowing what this message is - it's up to tracker admins) }
TorrentTracker .
Click to show internal directories.
Click to hide internal directories.