Class: Command::Tag
Constant Summary
collapse
- COLORS =
%w(green yellow blue magenta cyan red white)
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
#initialize ⇒ Tag
Returns a new instance of Tag.
18
19
20
21
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
|
# File 'lib/command/tag.rb', line 18
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(完結タグ)が付いた小説を一括で凍結
Options:
EOS
@opt.on("-a", "--add TAGS", String, "タグを追加する") { |tags|
@options["mode"] = :add
@options["tags"] = tags.split
}
@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}".termcolor) { |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
161
162
163
164
165
166
167
168
169
170
171
|
# File 'lib/command/tag.rb', line 161
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.count
color = COLORS[index]
@@tag_colors[tagname] = color
@@tag_colors.save
color
end
|
.oneline_help ⇒ Object
14
15
16
|
# File 'lib/command/tag.rb', line 14
def self.oneline_help
"各小説にタグを設定及び閲覧が出来ます"
end
|
Instance Method Details
#display_taglist ⇒ Object
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
# File 'lib/command/tag.rb', line 97
def display_taglist
database = Database.instance
tags_list = {}
database.each do |_, data|
tags = data["tags"] || []
tags.each do |tag|
if tags_list[tag]
tags_list[tag] += 1
else
tags_list[tag] = 1
end
end
end
puts "タグ一覧"
puts tags_list.map { |tag, count|
color = Tag.get_color(tag)
"<bold><#{color}>#{TermColor.escape(tag)}(#{count})</#{color}></bold>"
}.join(" ").termcolor
end
|
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
|
# File 'lib/command/tag.rb', line 121
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.count > 0
print "現在のタグは "
print tags.map { |tagname|
color = Tag.get_color(tagname)
"<bold><#{color}>#{TermColor.escape(tagname)}</#{color}></bold>"
}.join(" ").termcolor
puts " です"
end
database[data["id"]]["tags"] = tags
end
database.save_database
end
|
#execute(argv) ⇒ Object
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
# File 'lib/command/tag.rb', line 78
def execute(argv)
super
@options["mode"] ||= :list
if argv.empty?
if @options["mode"] == :list
display_taglist
return
end
error "対象の小説を指定して下さい"
exit 1
else
if @options["mode"] == :list
search_novel_by_tag(argv)
else
edit_tags(argv)
end
end
end
|
#get_color_list ⇒ Object
72
73
74
75
76
|
# File 'lib/command/tag.rb', line 72
def get_color_list
COLORS.map { |color|
"<bold><#{color}>#{color}</#{color}></bold>"
}.join(",")
end
|
#search_novel_by_tag(argv) ⇒ Object
117
118
119
|
# File 'lib/command/tag.rb', line 117
def search_novel_by_tag(argv)
List.execute!(["--tag", argv.join(" ")])
end
|
#set_color(tagname, color) ⇒ Object
173
174
175
176
177
|
# File 'lib/command/tag.rb', line 173
def set_color(tagname, color)
@@tag_colors ||= Inventory.load("tag_colors", :local)
@@tag_colors[tagname] = color
@@tag_colors.save
end
|