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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 95eea10bc57ad0710b1f7fcd62eb7c4e81376256
4
- data.tar.gz: b92ad9855bac1ba0072a8d1f5738f6252cc06d83
3
+ metadata.gz: 4123d0ae088d788aae134a9e2ab5bfb5138a61ec
4
+ data.tar.gz: 182d86c5d7633c0a1e2a8cd2aeea3193fb89160e
5
5
  SHA512:
6
- metadata.gz: 703eeacae5a37dc895a43e97193eae58dea34bda9f4c1ccc2325ecc122d566d28b195d518318e2befa7dec131b486661b2daf194ca328520495d61f00f51d539
7
- data.tar.gz: 144829b12bb8a24f7f955d55d94699e828c490844b3cbb2fdb951d4c530b672ea3206b094eda83a88b48ce6367894cc84ee0baa6da48366c2b16b17177b7001c
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 1` flag for automatically download the best torrent. Example:
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 1
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 1
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
- -p, --provider=p From provider name [PROVIDER]
77
- -a, --auto-download=a Auto download best choice
78
- -d, --directory=d Destination torrent download directory
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
  [![See it in action](https://asciinema.org/a/No1Zdfk3gYoCYdGb2XUdFaUyS.png)](https://asciinema.org/a/No1Zdfk3gYoCYdGb2XUdFaUyS)
81
83
 
@@ -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('-p=p', '--provider=p', 'From provider name [PROVIDER]') do |p|
13
- options[:provider] = p
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('-a=a', '--auto-download=a', 'Auto download best choice') do |a|
16
- options[:auto] = a || true
19
+ opts.on('-p=p', '--provider=p', 'Provider name [PROVIDER]') do |p|
20
+ options[:provider] = p
17
21
  end
18
- opts.on('-d=d', '--directory=d', 'Auto download directory') do |d|
19
- options[:directory] = d
22
+ opts.on('-a', '--auto-download', 'Auto download best choice') do
23
+ options[:auto] = true
20
24
  end
21
25
  end.parse!
22
26
 
@@ -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
- @provider = YAML.load_file(File.expand_path("../../../providers/#{from}.yml", __FILE__))
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]) do |renderer|
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 + ' Here: L108'
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 = "😱 Your download directory #{@directory} not found." unless File.exist? @directory or File.directory? @directory
125
- ioerr = "😱 Your download directory #{@directory} not writable." unless File.writable? @directory
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
- Process.kill 9, Process.pid
143
+ abort 'Exiting'
129
144
  end
130
145
  end
131
146
  end
@@ -1,3 +1,3 @@
1
1
  module TorS
2
- VERSION = '0.2.0'.freeze
2
+ VERSION = '0.2.2'.freeze
3
3
  end
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.0
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-30 00:00:00.000000000 Z
11
+ date: 2017-08-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri