flickrage 0.1.1 → 0.1.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: cf60b6c67ea4268d0d646cdd9b6b475744c49af2
4
- data.tar.gz: 9e529fabe4ab52ace9e86add2d03a6b238c85b6f
3
+ metadata.gz: 79e1e5010a8973cdb15ce3cb3aa4aed0c57b2f55
4
+ data.tar.gz: d91a251a0c0ba6ec7953e28366a5fa38c49fcfe3
5
5
  SHA512:
6
- metadata.gz: 161e305af9402fef2d2af2c0dc24349d014b47087db640da2d79511f66a68b624db902b2f5be22010fc3582cb73fc2e171243977b6a724b15d2aed3b3592dbc9
7
- data.tar.gz: e5436fba5048ff0ad7ae1c0ea6bdb73f1e0a053930a864557045c2a6a0b7d1b3cc46091f90dd0c8d2156ce4ef303f0e70fb92144d10d12b3fb4af11e851e58bd
6
+ metadata.gz: 69b1337687d72f9e5e3ba06d0fa56741986ab0d12e8a4758786b59f7037712aa1a028f75020f5e65023afe0629ce0ec6e2643d056fdb18c30c5d9071cd3962f5
7
+ data.tar.gz: 85b9cd46ccf7b32c33468fb4486c888c46bd414d5bd766871396fd7d01eb54da859c3a7fc435eb3412b0aeac6c8d43980acc4f482649e767d77bc1675497cb93
data/lib/flickrage/cli.rb CHANGED
@@ -135,8 +135,8 @@ module Flickrage
135
135
  init_flickraw
136
136
 
137
137
  pipeline.run
138
- rescue Flickrage::NoKeysError, Flickrage::SearchError, Flickrage::DownloadError,
139
- Flickrage::NumberError, Flickrage::PathError => e
138
+ rescue Flickrage::NoKeysError, Flickrage::SearchError, Flickrage::DownloadError, Flickrage::CollageError,
139
+ Flickrage::ResizeError, Flickrage::NumberError, Flickrage::PathError => e
140
140
  error_simple(e)
141
141
  rescue => e
142
142
  error_with_backtrace(e)
@@ -160,12 +160,12 @@ module Flickrage
160
160
  no_commands do
161
161
  def error_simple(e)
162
162
  logger.error e.message
163
- raise e
163
+ raise e if Flickrage.config.verbose
164
164
  end
165
165
 
166
166
  def error_with_backtrace(e)
167
167
  logger.error e.message
168
- backtrace(e) if options.include? 'trace'
168
+ backtrace(e) if Flickrage.config.verbose
169
169
  raise e
170
170
  end
171
171
 
@@ -174,11 +174,14 @@ module Flickrage
174
174
  end
175
175
 
176
176
  def cleanup
177
- return unless options['output']
178
- return unless Dir.exist?(options['output'])
177
+ return logger.debug('Output directory not exists, cleanup skipped') unless cleanup?
179
178
  FileUtils.rm_rf("#{options['output']}/.", secure: true)
180
179
  end
181
180
 
181
+ def cleanup?
182
+ options['output'] && Dir.exist?(options['output'])
183
+ end
184
+
182
185
  def setup_config
183
186
  Flickrage.configure do |config|
184
187
  config.logger = ::Logger.new(options['log']) if options['log']
@@ -32,7 +32,7 @@ module Flickrage
32
32
 
33
33
  speaker.add_padding
34
34
 
35
- raise CollageError, 'Try again later...' unless valid_list?(list)
35
+ raise Flickrage::CollageError, 'Try again later...' unless valid_list?(list)
36
36
 
37
37
  logger.warn("Congrats! You can find composed collage at #{list.collage_path}")
38
38
 
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module Flickrage
3
- VERSION = '0.1.1'
3
+ VERSION = '0.1.2'
4
4
  end
@@ -37,7 +37,12 @@ module Flickrage
37
37
  def increment_error_counter(error, value)
38
38
  @opts[:ask_error_counter] += 1
39
39
 
40
- raise error, value if opts[:ask_error_counter] > MAX_ASK_ERRORS
40
+ return unless opts[:ask_error_counter] >= MAX_ASK_ERRORS
41
+ return yield if block_given?
42
+ raise error, value
43
+ rescue SystemCallError => e
44
+ logger.error(e.message)
45
+ raise error, value
41
46
  end
42
47
 
43
48
  def reset_error_counter
@@ -58,17 +58,21 @@ module Flickrage
58
58
  def init_output
59
59
  return if validate_output
60
60
 
61
- output = speaker.ask('Please enter the path of the output directory:',
61
+ output = speaker.ask('Please enter existing path of the output directory:',
62
62
  path: true)
63
63
 
64
- unless valid_output?(output)
65
- increment_error_counter(Flickrage::PathError, output)
66
- return init_output
67
- end
64
+ if valid_output?(output)
65
+ reset_error_counter
68
66
 
69
- reset_error_counter
67
+ Flickrage.config.output = output
68
+ end
70
69
 
71
- Flickrage.config.output = output
70
+ increment_error_counter(Flickrage::PathError, output) do
71
+ raise Flickrage::PathError, output unless speaker.yes?("Do you want create path, #{output}?")
72
+ FileUtils.mkdir_p(output)
73
+ Flickrage.config.output = output
74
+ end
75
+ init_output
72
76
  end
73
77
 
74
78
  def validate_output
data/lib/flickrage.rb CHANGED
@@ -31,7 +31,7 @@ module Flickrage
31
31
  setting :pool_size, 5
32
32
  setting :pool
33
33
 
34
- setting :grid, 5
34
+ setting :grid, 2
35
35
  setting :max, 10
36
36
  setting :output
37
37
 
@@ -172,7 +172,7 @@ module Flickrage
172
172
  end
173
173
  end
174
174
 
175
- # Here is something with imagemagick?
175
+ # Something wrong with the process?
176
176
  #
177
177
  class CollageError < BaseError
178
178
  def initialize(*args)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flickrage
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexander Merkulov