tors 0.2.0 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +8 -6
- data/lib/tors.rb +10 -6
- data/lib/tors/search.rb +23 -8
- data/lib/tors/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4123d0ae088d788aae134a9e2ab5bfb5138a61ec
|
4
|
+
data.tar.gz: 182d86c5d7633c0a1e2a8cd2aeea3193fb89160e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bb9a2272db7c209518fc1cfc3fc102a10a9800596455dbd2b11697dc4cc09be990550f06ec1b4b06218fb37eb5f6872c6d398d28ac6f5c6971a52f2051f392ad
|
7
|
+
data.tar.gz: 55b54cfcc54c3e98730c782cf7cf9f77d5dcce590950ed5709bc0a3dcc08b6676e45759b9c10ea4dbb5f7b80707c47ae9b95e8510496fd2bcfcd4ba6f93b9cc3
|
data/README.md
CHANGED
@@ -60,22 +60,24 @@ Use `-p PROVIDER` flag for scrape another providers.
|
|
60
60
|
|
61
61
|
And then It will ask for **which torrent you want to download?** You can answer with a torrent number seen on list.
|
62
62
|
|
63
|
-
You can use `-a
|
63
|
+
You can use `-a` or `--auto-download` flag for automatically download the best torrent. Example:
|
64
64
|
|
65
|
-
$ tors -s 'game of thrones' -p 1337x -a
|
65
|
+
$ tors -s 'game of thrones' -p 1337x -a
|
66
66
|
|
67
67
|
You can use `-d TARGET` flag for set destination storage path. Example:
|
68
68
|
|
69
|
-
$ tors -s 'Assassins' -d $HOME/Downloads -a
|
69
|
+
$ tors -s 'Assassins' -d $HOME/Downloads -a
|
70
70
|
|
71
71
|
And you can list all active providers and usage instructions with `-h` or `--help` flag.
|
72
72
|
|
73
73
|
$ tors -h
|
74
74
|
Usage: tors [options]
|
75
|
+
-h, --help Show usage instructions
|
75
76
|
-s, --search=s Search term [SEARCH]
|
76
|
-
-
|
77
|
-
-
|
78
|
-
-
|
77
|
+
-d, --directory=d Destination path for download torrent [DIRECTORY]
|
78
|
+
-p, --provider=p Provider name [PROVIDER]
|
79
|
+
-a, --auto-download Auto download best choice
|
80
|
+
|
79
81
|
|
80
82
|
[](https://asciinema.org/a/No1Zdfk3gYoCYdGb2XUdFaUyS)
|
81
83
|
|
data/lib/tors.rb
CHANGED
@@ -6,17 +6,21 @@ require 'optparse'
|
|
6
6
|
module TorS
|
7
7
|
options = {}
|
8
8
|
OptionParser.new do |opts|
|
9
|
+
opts.on('-h', '--help', 'Show usage instructions') do |s|
|
10
|
+
puts opts
|
11
|
+
abort
|
12
|
+
end
|
9
13
|
opts.on('-s=s', '--search=s', 'Search term [SEARCH]') do |s|
|
10
14
|
options[:search] = s
|
11
15
|
end
|
12
|
-
opts.on('-
|
13
|
-
options[:
|
16
|
+
opts.on('-d=d', '--directory=d', 'Destination path for download torrent [DIRECTORY]') do |d|
|
17
|
+
options[:directory] = d
|
14
18
|
end
|
15
|
-
opts.on('-
|
16
|
-
options[:
|
19
|
+
opts.on('-p=p', '--provider=p', 'Provider name [PROVIDER]') do |p|
|
20
|
+
options[:provider] = p
|
17
21
|
end
|
18
|
-
opts.on('-
|
19
|
-
options[:
|
22
|
+
opts.on('-a', '--auto-download', 'Auto download best choice') do
|
23
|
+
options[:auto] = true
|
20
24
|
end
|
21
25
|
end.parse!
|
22
26
|
|
data/lib/tors/search.rb
CHANGED
@@ -8,7 +8,13 @@ require 'tty-prompt'
|
|
8
8
|
module TorS
|
9
9
|
class Search
|
10
10
|
def initialize(query = '', from = 'katcr', auto = false, directory = Dir.pwd)
|
11
|
-
|
11
|
+
yaml = File.expand_path("../../../providers/#{from}.yml", __FILE__)
|
12
|
+
if File.exists? yaml
|
13
|
+
@provider = YAML.load_file(yaml)
|
14
|
+
else
|
15
|
+
not_exists_provider
|
16
|
+
end
|
17
|
+
|
12
18
|
@query = query
|
13
19
|
@from = from
|
14
20
|
@auto = auto
|
@@ -70,9 +76,7 @@ module TorS
|
|
70
76
|
puts 'From : ' + @from
|
71
77
|
|
72
78
|
table = TTY::Table.new %i[# Category Title Size Seed Leech], @rows
|
73
|
-
puts table.render(:unicode, padding: [0, 1, 0, 1])
|
74
|
-
renderer.border.style = :green
|
75
|
-
end
|
79
|
+
puts table.render(:unicode, padding: [0, 1, 0, 1])
|
76
80
|
|
77
81
|
if @auto
|
78
82
|
download @downloads.find { |v| v[:key] == 1 }
|
@@ -105,7 +109,7 @@ module TorS
|
|
105
109
|
puts 'Downloading ' + target_file_name
|
106
110
|
File.write(target_file, source)
|
107
111
|
rescue IOError => e
|
108
|
-
puts '😵 There is an error! ' + e.message
|
112
|
+
puts '😵 There is an error! ' + e.message
|
109
113
|
ensure
|
110
114
|
puts '🥂 Downloaded!'
|
111
115
|
end
|
@@ -119,13 +123,24 @@ module TorS
|
|
119
123
|
|
120
124
|
private
|
121
125
|
|
126
|
+
def not_exists_provider
|
127
|
+
puts "☠️ There is not found #{@from} provider."
|
128
|
+
|
129
|
+
puts 'You must choose from this list.'
|
130
|
+
Dir[File.expand_path('providers/*.yml')].each do |f|
|
131
|
+
puts '- ' + File.basename(f).split('.').first
|
132
|
+
end
|
133
|
+
|
134
|
+
abort 'Exiting'
|
135
|
+
end
|
136
|
+
|
122
137
|
def check_download_directory
|
123
138
|
ioerr = false
|
124
|
-
ioerr = "😱
|
125
|
-
ioerr = "😱
|
139
|
+
ioerr = "😱 Directory #{@directory} not found." unless File.exist? @directory or File.directory? @directory
|
140
|
+
ioerr = "😱 Directory #{@directory} not writable." unless File.writable? @directory
|
126
141
|
if ioerr
|
127
142
|
puts ioerr
|
128
|
-
|
143
|
+
abort 'Exiting'
|
129
144
|
end
|
130
145
|
end
|
131
146
|
end
|
data/lib/tors/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tors
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Murat Bastas
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-08-
|
11
|
+
date: 2017-08-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: nokogiri
|