79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
|
# File 'lib/lyrics/cli/optionsparser.rb', line 79
def self.parse( args )
opts = OpenStruct.new()
opts.cleanup = true
opts.feat_fix = true
opts.meta = true
opts.sites = ["Lyriki", "LyricWiki"]
opts.submit = nil
opts.review = true
opts.prompt_autogen = false
opts.prompt_no_lyrics = false
opts.proxy = nil
opts.toolkits = TOOLKITS_DEFAULT
parser = OptionParser.new() do |parser|
parser.banner = I18n.get( "cli.usage", "wikilyrics.rb" )
parser.separator I18n.get( "cli.description" )
parser.separator ""
parser.separator I18n.get( "cli.options" )
parser.on( "-a", "--artist [ARTIST]", *split( I18n.get( "cli.options.artist", "batch-file" ) ) ) do |artist|
opts.artist = artist
end
parser.on( "-t", "--title [TITLE]", *split( I18n.get( "cli.options.title", "batch-file" ) ) ) do |title|
opts.title = title
end
parser.on( "-l", "--album [ALBUM]", *split( I18n.get( "cli.options.album" ) ) ) { |album| opts.album = album }
parser.on( "-y", "--year [YEAR]", *split( I18n.get( "cli.options.year" ) ) ) { |year| opts.year = year }
parser.on( "-f", "--[no-]featfix", *split( I18n.get( "cli.options.featfix", I18n.get( "cli.values.true" ) ) ) ) do |feat_fix|
opts.feat_fix = feat_fix
end
parser.separator ""
parser.on( "-b", "--batch-file [FILE]", *split( I18n.get( "cli.options.batchfile" ) ) ) do |batch_file|
opts.batch_file = batch_file
end
parser.separator ""
parser.on( "-c", "--[no-]cleanup", *split( I18n.get( "cli.options.cleanup", I18n.get( "cli.values.true" ) ) ) ) do |cleanup|
opts.cleanup = cleanup
end
parser.separator ""
parser.on( "--sites [SITE1,SITE2...]", Array, *split( I18n.get( "cli.options.sites", opts.sites.join( "," ), "sites-list" ) ) ) { |sites| opts.sites = sites }
parser.on( "--sites-list", *split( I18n.get( "cli.options.sites.list" ) ) ) do
puts I18n.get( "cli.options.sites.list.available" )
Plugins.load_plugins( Plugins.find_plugins() )
plugins = Plugins.all_plugins().sort { |a,b| a.class.name <=> b.class.name }
plugins.each() { |plugin| puts " - #{plugin.class.name.slice(12..-1)} (#{plugin.site_host})" }
exit
end
parser.separator ""
parser.on( "-s", "--submit [Lyriki|LyricWiki]", *split( I18n.get( "cli.options.submit", "username", "password" ) ) ) do |submit|
opts.submit = submit
end
parser.on( "-u", "--username [USERNAME]", *split( I18n.get( "cli.options.username", "submit" ) ) ) do |username|
opts.username = username
end
parser.on( "-p", "--password [PASSWORD]", *split( I18n.get( "cli.options.password", "submit" ) ) ) do |password|
opts.password = password
end
parser.on( "--persist [SESSIONFILE]", *split( I18n.get( "cli.options.persist", "username", "password" ) ) ) do |file|
opts.session_file = file
end
parser.on( "-r", "--[no-]review", *split( I18n.get( "cli.options.prompt.review", I18n.get( "cli.values.true" ), "submit" ) ) ) { |review| opts.review = review }
parser.on( "-g", "--[no-]autogen", *split( I18n.get( "cli.options.prompt.autogen", I18n.get( "cli.values.false" ), "review" ) ) ) { |autogen| opts.prompt_autogen = autogen }
parser.on( "-n", "--[no-]new", *split( I18n.get( "cli.options.prompt.nolyrics", I18n.get( "cli.values.false" ), "review" ) ) ) { |prompt_no_lyrics| opts.prompt_no_lyrics = prompt_no_lyrics }
parser.separator ""
parser.on( "-x", "--proxy [PROXY]", *split( I18n.get( "cli.options.proxy" ) ) ) { |proxy| opts.proxy = proxy }
parser.separator ""
parser.on( "-k", "--toolkits [TK1,TK2...]", Array, *split( I18n.get( "cli.options.toolkits", TOOLKITS_DEFAULT.join( "," ) ) ) ) { |toolkits| opts.toolkits = toolkits ? toolkits : [] }
parser.separator ""
parser.on_tail( "-h", "--help", *split( I18n.get( "cli.options.help" ) ) ) { puts parser; exit }
parser.on_tail( "-v", "--version", *split( I18n.get( "cli.options.version" ) ) ) { puts "#{WIKILYRICS_VERSION}"; exit }
end
begin
parser.parse!( args )
raise ArgumentError, I18n.get( "cli.error.missingoption", "--artist" ) if ! opts.artist && ! opts.batch_file
raise ArgumentError, I18n.get( "cli.error.missingoption", "--title" ) if ! opts.title && ! opts.batch_file
raise ArgumentError, I18n.get( "cli.error.missingoption", "--username" ) if opts.submit && ! opts.username
raise ArgumentError, I18n.get( "cli.error.missingoption", "--password" ) if opts.submit && ! opts.password
if opts.batch_file && (opts.artist || opts.title || opts.album || opts.year)
raise ArgumentError, I18n.get( "cli.error.incompatibleoptions", "-b", "-a/-t/-l/-y" )
end
if opts.prompt_autogen && ( ! opts.submit || ! opts.review )
raise ArgumentError, I18n.get( "cli.error.missingdependency", "-g", "-r" )
end
if opts.prompt_no_lyrics && ( ! opts.submit || ! opts.review )
raise ArgumentError, I18n.get( "cli.error.missingdependency", "-n", "-r" )
end
opts.toolkits.each() do |toolkit|
if ! TOOLKITS_DEFAULT.include?( toolkit )
raise ArgumentError, I18n.get( "cli.error.invalidoptionvalue", "toolkit", toolkit )
end
end
if opts.submit && opts.review && opts.toolkits.empty?
raise ArgumentError, I18n.get( "cli.error.notoolkit" )
end
if opts.submit
if ! ["Lyriki","LyrikiLocal","LyricWiki"].include?( opts.submit )
raise ArgumentError, I18n.get( "cli.error.invalidoptionvalue", "submit", opts.submit )
end
opts.sites = [] if ! opts.sites
opts.sites << opts.submit
end
if ! opts.sites || opts.sites.empty?
raise ArgumentError, I18n.get( "cli.error.nosite" )
else
found_plugins = Plugins.find_plugins()
opts.sites.uniq!()
opts.sites.each() do |site|
if ! found_plugins.include?( site )
raise ArgumentError, I18n.get( "cli.error.invalidoptionvalue", "site", site )
end
end
end
if opts.proxy
begin
opts.proxy = nil if URI.parse( opts.proxy ).to_s() != ""
rescue Exception
raise ArgumentError, I18n.get( "cli.error.invalidoptionvalue", "proxy", opts.proxy )
end
end
return opts
rescue OptionParser::InvalidOption, OptionParser::AmbiguousOption, ArgumentError => ex
puts ex.is_a?( ArgumentError ) ? "error: #{ex}" : ex
puts parser
exit 1
end
end
|