Class: Command::Alias
- Inherits:
-
CommandBase
- Object
- CommandBase
- Command::Alias
- Defined in:
- lib/command/alias.rb
Constant Summary collapse
- BAN_WORD =
禁止ワード
%w(hotentry)
Class Method Summary collapse
Instance Method Summary collapse
- #execute(argv) ⇒ Object
-
#initialize ⇒ Alias
constructor
A new instance of Alias.
- #output_aliases_list ⇒ Object
Methods inherited from CommandBase
execute!, #force_change_settings_function, help, #hook_call, #load_local_settings, #tagname_to_ids
Constructor Details
#initialize ⇒ Alias
Returns a new instance of Alias.
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
# File 'lib/command/alias.rb', line 17 def initialize super("[<alias_name>=<target> ...] [options]") @opt.separator <<-EOS ・小説のIDに紐付けた好きな別名を作ることが出来ます。IDやNコード等を覚える必要がなくなります。 ・<alias_name>にはアルファベット及び数字、アンダースコアが使用出来ます。 ・<target>は他のコマンドで指定出来るものがそのまま使えますが、すでにダウンロード済みである必要があります。 Examples: narou alias --list narou alias musyoku=n9669bk narou alias harem=1 narou convert harem # 他のコマンドで別名が使えるようになる narou alias harem= # 右辺に何も書かないとその別名を解除できる Options: EOS @opt.on("-l", "--list", "現在の割り当て一覧を表示する") { output_aliases_list exit 0 } end |
Class Method Details
.oneline_help ⇒ Object
13 14 15 |
# File 'lib/command/alias.rb', line 13 def self.oneline_help "小説のIDに紐付けた別名を作成します" end |
Instance Method Details
#execute(argv) ⇒ Object
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
# File 'lib/command/alias.rb', line 49 def execute(argv) super if argv.empty? puts @opt.help return end aliases = Inventory.load("alias") argv.each_with_index do |arg, i| Helper.print_horizontal_rule if i > 0 alias_name, target = arg.split("=", 2) if BAN_WORD.include?(alias_name) error "#{alias_name} は使用禁止ワードです" next end unless alias_name =~ /^\w+$/ error "別名にはアルファベット・数字・アンダースコアしか使えません" next end if target.nil? error "書式が間違っています。#{alias_name}=別名 のように書いて下さい" next end if target == "" aliases.delete(alias_name) puts "#{alias_name} を解除しました" next end unless Downloader.novel_exists?(target) error "#{target} は存在しません" next end data = Downloader.get_data_by_target(target) id = data["id"] title = data["title"] aliases[alias_name] = id puts "#{alias_name} を #{title} の別名に設定しました" end aliases.save end |
#output_aliases_list ⇒ Object
40 41 42 43 44 45 46 47 |
# File 'lib/command/alias.rb', line 40 def output_aliases_list aliases = Inventory.load("alias") database = Database.instance aliases.each do |name, id| title = database[id]["title"] rescue "(すでに削除されています)" puts "<bold><green>#{name}</green></bold>=#{title}".termcolor end end |