Class: Command::Alias

Inherits:
CommandBase show all
Defined in:
lib/command/alias.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from CommandBase

execute!, #force_change_settings_function, help, #hook_call, #load_local_settings, #tagname_to_ids

Constructor Details

#initializeAlias

Returns a new instance of Alias.



14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# File 'lib/command/alias.rb', line 14

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_helpObject



10
11
12
# File 'lib/command/alias.rb', line 10

def self.oneline_help
  "小説のIDに紐付けた別名を作成します"
end

Instance Method Details

#execute(argv) ⇒ Object



46
47
48
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
# File 'lib/command/alias.rb', line 46

def execute(argv)
  super
  if argv.empty?
    puts @opt.help
    return
  end
  aliases = Inventory.load("alias", :local)
  argv.each_with_index do |arg, i|
    Helper.print_horizontal_rule if i > 0
    alias_name, target = arg.split("=", 2)
    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_listObject



37
38
39
40
41
42
43
44
# File 'lib/command/alias.rb', line 37

def output_aliases_list
  aliases = Inventory.load("alias", :local)
  database = Database.instance
  aliases.each do |name, id|
    title = database[id]["title"] rescue "(すでに削除されています)"
    puts "<bold><green>#{name}</green></bold>=#{title}".termcolor
  end
end