goat

command module
v0.0.0-...-25adc38 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 3, 2014 License: MIT Imports: 9 Imported by: 0

README

goat Build Status

goat: Go __A__wesome __T__racker. BitTorrent tracker implementation, written in Go. MIT Licensed.

Full documentation for goat may be found on GoDoc.

For convenience, these links are provided to quickly jump to specific areas of documentation:

Installation

To download, build, and install goat, simply run:

go get github.com/mdlayher/goat

Documentation

Overview

Command goat provides an implementation of a BitTorrent tracker, written in Go.

Installation

goat can be built using Go 1.1+. It can be downloaded, built, and installed, simply by running:

$ go get github.com/mdlayher/goat

In addition, goat depends on a MySQL server for data storage. After creating a database and user for goat, its database schema may be imported from the SQL files located in 'res/'. goat will not run unless MySQL is installed, and a database and user are properly configured for its use.

Optionally, goat can be built to use ql (https://github.com/cznic/ql) as its storage backend. This is done by supplying the 'ql' tag in the go get command:

$ go get -tags='ql' github.com/mdlayher/goat

A blank ql database file is located under 'res/ql/goat.db', and will be copied to '~/.config/goat/goat.db' on UNIX systems. goat is now able to use ql as its storage backend, for those who do not wish to use an external, MySQL backend.

Listeners

goat is capable of listening for torrent traffic in three modes: HTTP, HTTPS, and UDP. HTTP/HTTPS are the recommended methods, and are required in order for goat to serve its API, and to allow use of private tracker passkeys.

HTTP is considered the standard mode of operation for goat. HTTP allows gathering a great number of metrics, use of passkeys, use of a client whitelist, and access to goat's RESTful API, when configured. For most trackers, this will be the only listener which is necessary in order for goat to function properly.

The HTTPS listener provides a method to encrypt traffic to the tracker, but must be used with caution. Unless the SSL certificate in use is signed by a proper certificate authority, it will distress most clients, and they may outright refuse to announce to it. If you are in possession of a certificate signed by a certificate authority, this mode may be more ideal, as it provides added security for your clients.

The UDP listener is the most unusual method of the three, and should only be used for public trackers. The BitTorrent UDP tracker protocol specifies a very specific packet format, meaning that additional information or parameters cannot be packed into a UDP datagram in a standard way. The UDP tracker may be the fastest and least bandwidth-intensive, but as stated, should only be used for public trackers.

API

A new feature goat added to goat in order to allow better interoperability with many languages is a RESTful API, which is served using the HTTP or HTTPS listeners. This API enables easy retrieval of tracker statistics, while allowing goat to run as a completely independent process.

It should be noted that the API is only enabled when configured, and when a HTTP or HTTPS listener is enabled. Without a transport mechanism, the API will be inaccessible.

Currently, the API is read-only, and only allows use of the HTTP GET method. This may change in the future, but as of now, it doesn't make any sense to modify tracker parameters without doing a proper announce or scrape via BitTorrent client.

The API will feature several modes of authentication, including HTTP Basic and HMAC-SHA1. For the time being, only HTTP Basic is implemented. This method makes use of a username/password pair using the user's username, and an API key as the password.

API Calls

This list contains all API calls currently recognized by goat. Each call must be authenticated using the aforementioned methods.

GET /api/files

$ curl --user username:password http://localhost:8080/api/files
[
	{
		"id":1,
		"infoHash":"abcdef0123456789",
		"verified":true,
		"createTime":1389737644,
		"updateTime":1389737644
	}
]

Retrieve a list of all files tracked by goat. Some extended attributes are not added to reduce strain on database, and to provide a more general overview.

GET /api/files/:id

$ curl --user username:password http://localhost:8080/api/files/1
{
	"id":1,
	"infoHash":"abcdef0123456789",
	"verified":true,
	"createTime":1389737644,
	"updateTime":1389737644,
	"completed":0,
	"seeders":0,
	"leechers":0,
	"fileUsers": [
		{
			"fileId":1,
			"userId":1,
			"ip":"8.8.8.8",
			"active":true,
			"completed":false,
			"announced":1,
			"uploaded":0,
			"downloaded":0,
			"left":0,
			"time":1389983002
		}
	]
}

Retrieve extended attributes about a specific file with matching ID. This provides counts for number of completions, seeders, leechers, and a list of fileUser relationships associated with a given file.

GET /api/status

$ curl --user username:password http://localhost:8080/api/status
{
	"pid":27796,
	"hostname":"goat",
	"platform":"linux",
	"architecture":"amd64",
	"numCpu":4,
	"numGoroutine":14,
	"memoryMb":1.03678,
	"http": {
		"current":1,
		"total":11
	},
	"udp": {
		"current":1,
		"total":2
	}
}

Retrieve a variety of metrics about the current status of goat, including its PID, hostname, memory usage, number of HTTP/UDP hits, etc.

Configuration

goat is configured using a JSON file, which will be created under '~/.config/goat/config.json' on UNIX systems. Here is an example configuration, describing the settings available to the user.

{
	// Port: the port number on which goat will listen using both HTTP and UDP
	"Port": 8080,

	// Passkey: require that a valid passkey is present in HTTP tracker requests
	// note: this setting is typically used only for private trackers
	// ex: http://localhost:8080/0123456789ABCDEF/announce
	"Passkey": true,

	// Whitelist: require clients to be whitelisted for use with the tracker
	// note: this setting is typically used only for private trackers
	"Whitelist": true,

	// Interval: number of seconds clients should wait between announces
	"Interval": 3600,

	// HTTP: enable listening for client connections via HTTP
	"HTTP": true,

	// API: enable a HTTP RESTful API, used to pull statistics from goat
	// note: only enabled when HTTP/HTTPS is enabled
	"API": true,

	// UDP: enable listening for client connections via UDP
	// note: it is not possible to use a passkey with this listener, so this
	// listener should only be used for public trackers
	"UDP": false,

	// SSL: HTTPS configuration
	"SSL": {
		// Enabled: enable listening for client connections via HTTPS
		"Enabled": false,

		// Port: the port number on which goat will listen using HTTPS
		"Port": 8443,

		// Certificate: the path to the certificate file used for HTTPS
		"Certificate": "goat.crt",

		// Key: the path to the key file used for HTTPS
		"Key": "goat.key"
	},

	// DB: MySQL database configuration
	"DB": {
		// Host: the host and port of the MySQL database server
		"Host": "localhost:3306",

		// Database: the database goat will use to store its tracker data
		"Database": "goat",

		// Username: the username used to access goat's database
		"Username": "goat",

		// Password: the password used to access goat's database
		"Password": "goat"
	},

	// Redis: Redis cache configuration
	"Redis": {
		// Enabled: enable caching and rate limiting features using Redis
		"Enabled": false,

		// Host: the host and port of the Redis cache server
		"Host": "localhost:6379",

		// Password: optional, the password used to connect to Redis
		// note: if left blank, goat will not attempt to authenticate to Redis
		"Password": ""
	}
}

Directories

Path Synopsis
Package goat provides the back-end implementation of the goat BitTorrent tracker.
Package goat provides the back-end implementation of the goat BitTorrent tracker.
api
Package api provides the HTTP API implementation of the goat BitTorrent tracker.
Package api provides the HTTP API implementation of the goat BitTorrent tracker.
common
Package common provides shared functionality of the goat BitTorrent tracker.
Package common provides shared functionality of the goat BitTorrent tracker.
data
Package data provides the data structures and database backends used by the goat BitTorrent tracker.
Package data provides the data structures and database backends used by the goat BitTorrent tracker.
data/udp
Package udp provides the UDP-related data structures and methods for the goat BitTorrent tracker.
Package udp provides the UDP-related data structures and methods for the goat BitTorrent tracker.
tracker
Package tracker provides HTTP and UDP BitTorrent tracker logic for the goat BitTorrent tracker.
Package tracker provides HTTP and UDP BitTorrent tracker logic for the goat BitTorrent tracker.
res

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL