Class: Command::Tag

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

Constant Summary collapse

COLORS =
%w(green yellow blue magenta cyan red white)
BAN_CHAR =

禁止文字

/[:;"'><$@&^\\\|%'\/`]/
BAN_WORD =

禁止ワード

%w(hotentry)

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

#initializeTag

Returns a new instance of Tag.



22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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
81
82
83
84
85
86
# File 'lib/command/tag.rb', line 22

def initialize
  super("<option> <tagname> <target> [<target2> ...]\n" \
        "<tagname> [<tagname2> ...]")
  @opt.separator <<-EOS

  ・小説にタグを設定します。設定個数の上限はありません
  ・タグ名にはスペース以外の文字が使えます(大文字小文字区別)
  ・タグには自動で色がつきます。自分で指定する場合は--colorを指定して下さい
  ・一部特殊なタグがあります。設定することでlistコマンドに反映されます
  - end: 小説が完結状態
  - 404: 掲載サイトから削除された状態
  ・設定したタグは他のコマンドで指定することで、小説ID指定の代わりにすることができます(一部タグを使えないコマンドも存在します。またaliasでつけた別名よりもタグのほうが優先されます)

  Examples:
narou tag --add fav 0 2     # ID:0と1の小説にfavタグを設定(追加)
narou t -a fav 0 2          # もしくはこの様に書けます
narou t -a "fav later" 0 2  # 一度に複数のタグを指定出来ます
narou t -a fav -c red 0     # favというタグを赤色で設定する
narou tag --delete fav 2    # ID:2の小説のfavタグを外す
narou t -d fav 2

narou tag end               # endタグ(完結)の付いている小説の一覧を表示
narou tag fav later         # fav,laterタグ両方付いている小説を表示
narou list -t "fav later" -rl   # listコマンドでもタグで検索出来ます
narou tag                   # 何も指定しない場合、存在するタグ一覧を表示

# 他のコマンドでタグを使う
narou freeze --on end       # end(完結タグ)が付いた小説を一括で凍結
narou update tag:404        # 404タグを明示する
                            # ID:404 が存在しなければ明示する必要はない

  Options:
  EOS
  @opt.on("-a", "--add TAGS", String, "タグを追加する") { |tags|
    @options["mode"] = :add
    @options["tags"] = tags.split.tap { |array|
      array.each do |tag|
        if tag =~ BAN_CHAR
          error "#{tag} に使用禁止記号が含まれています"
          exit Narou::EXIT_ERROR_CODE
        elsif BAN_WORD.include?(tag)
          error "#{tag} は使用禁止ワードです"
          exit Narou::EXIT_ERROR_CODE
        end
      end
    }
  }
  @opt.on("-d", "--delete TAGS", String, "タグを外す") { |tags|
    @options["mode"] = :delete
    @options["tags"] = tags.split
  }
  @opt.on("-c", "--color COL", String,
          "タグの色を自分で指定する\n" \
          "#{' '*25}COL=#{get_color_list}") { |color|
    color.downcase!
    unless COLORS.include?(color)
      error "#{color}という色は存在しません。色指定は無視されます"
      color = nil
    end
    @options["color"] = color
  }
  @opt.on("--clear", "指定した小説のタグをすべて外す") {
    @options["mode"] = :clear
  }
end

Class Method Details

.get_color(tagname) ⇒ Object



189
190
191
192
193
194
195
196
197
198
199
# File 'lib/command/tag.rb', line 189

def self.get_color(tagname)
  tag_colors = Inventory.load("tag_colors", :local)
  color = tag_colors[tagname]
  return color if color
  last_color = tag_colors.values.last || COLORS.last
  index = (COLORS.index(last_color) + 1) % COLORS.size
  color = COLORS[index]
  tag_colors[tagname] = color
  tag_colors.save
  color
end

.get_tag_list(ids = nil) ⇒ Object

タグ一覧取得

ids: 特定の小説のタグだけ取得するためのIDの配列を指定 @return: { “タグの名前” => タグが付けられた小説の数, … }



94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# File 'lib/command/tag.rb', line 94

def self.get_tag_list(ids = nil)
  database = Database.instance
  tag_list = Hash.new(0)
  database.each do |_, data|
    if ids.kind_of?(Array)
      next unless ids.include?(data["id"])
    end
    tags = data["tags"] || []
    tags.each do |tag|
      tag_list[tag] += 1
    end
  end
  tag_list.default = nil
  tag_list
end

.oneline_helpObject



18
19
20
# File 'lib/command/tag.rb', line 18

def self.oneline_help
  "各小説にタグを設定及び閲覧が出来ます"
end

Instance Method Details

#display_taglistObject



135
136
137
138
139
140
141
142
143
# File 'lib/command/tag.rb', line 135

def display_taglist
  database = Database.instance
  tag_list = Tag.get_tag_list
  puts "タグ一覧"
  puts tag_list.map { |tag, count|
    color = Tag.get_color(tag)
    "<bold><#{color}>#{TermColorLight.escape(tag)}(#{count})</#{color}></bold>"
  }.join(" ").termcolor
end

#edit_tags(argv) ⇒ Object



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
# File 'lib/command/tag.rb', line 149

def edit_tags(argv)
  database = Database.instance
  tagname_to_ids(argv)
  argv.each do |target|
    data = Downloader.get_data_by_target(target)
    unless data
      error "#{target} は存在しません"
      next
    end
    tags = data["tags"] || []
    title = data["title"]
    case @options["mode"]
    when :add
      tags |= @options["tags"]
      puts "#{title} にタグを設定しました"
    when :delete
      tags -= @options["tags"]
      puts "#{title} からタグを外しました"
    when :clear
      tags.clear
      puts "#{title} のタグをすべて外しました"
    end
    if @options["color"] && @options["tags"]
      @options["tags"].each do |tag|
        set_color(tag, @options["color"])
      end
    end
    if tags.size > 0
      print "現在のタグは "
      print tags.map { |tagname|
        color = Tag.get_color(tagname)
        "<bold><#{color}>#{TermColorLight.escape(tagname)}</#{color}></bold>"
      }.join(" ").termcolor
      puts " です"
    end
    database[data["id"]]["tags"] = tags
  end
  database.save_database
end

#execute(argv) ⇒ Object



116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
# File 'lib/command/tag.rb', line 116

def execute(argv)
  super
  @options["mode"] ||= :list
  if argv.empty?
    if @options["mode"] == :list
      display_taglist
      return
    end
    error "対象の小説を指定して下さい"
    exit Narou::EXIT_ERROR_CODE
  else
    if @options["mode"] == :list
      search_novel_by_tag(argv)
    else
      edit_tags(argv)
    end
  end
end

#get_color_listObject



110
111
112
113
114
# File 'lib/command/tag.rb', line 110

def get_color_list
  COLORS.map { |color|
    "<bold><#{color}>#{color}</#{color}></bold>"
  }.join(",").termcolor
end

#search_novel_by_tag(argv) ⇒ Object



145
146
147
# File 'lib/command/tag.rb', line 145

def search_novel_by_tag(argv)
  List.execute!(["--tag", argv.join(" ")])
end

#set_color(tagname, color) ⇒ Object



201
202
203
204
205
# File 'lib/command/tag.rb', line 201

def set_color(tagname, color)
  tag_colors = Inventory.load("tag_colors", :local)
  tag_colors[tagname] = color
  tag_colors.save
end