Class: Command::Remove
Instance Attribute Summary
Attributes inherited from CommandBase
#stream_io
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from CommandBase
#disable_logging, #display_help!, execute!, #execute!, #force_change_settings_function, help, #hook_call, #load_local_settings, #tagname_to_ids
Constructor Details
#initialize ⇒ Remove
Returns a new instance of Remove.
17
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
|
# File 'lib/command/remove.rb', line 17
def initialize
super("<target> [<target2> ...] [options]")
@opt.separator <<-EOS
・削除したい小説のNコード、URL、タイトルもしくはIDを指定して下さい。
IDは #{@opt.program_name} list を参照して下さい。
・一度に複数の小説を指定する場合は空白で区切って下さい。
・削除確認をスキップするには -y オプションを有効にして下さい。
・削除するのはデータベースのインデックスだけで、変換済みテキストファイルやMOBIファイル等はそのまま残ります。ファイルをすべて削除する場合は --with-file オプションを指定して下さい。
Examples:
narou remove n9669bk
narou remove http://ncode.syosetu.com/n9669bk/
narou remove n9669bk http://ncode.syosetu.com/n4259s/
narou remove 0 1 -y
narou remove n9669bk --with-file # ファイルも完全に削除する
narou remove --all-ss # 連載小説をすべて削除する
narou remove --all-ss --with-file # 短編小説をファイルも含めてすべて削除
narou r 0 -wy # ID:0を確認メッセージなしにファイルも含めて完全に削除する
Options:
EOS
@opt.on("-y", "--yes", "削除確認メッセージを表示しない") {
@options["yes"] = true
}
@opt.on("-w", "--with-file", "小説の保存フォルダ・ファイルも全て削除する") {
@options["with-file"] = true
}
@opt.on("--all-ss", "短編小説をすべて削除する") {
@options["all-ss"] = true
}
end
|
Class Method Details
.oneline_help ⇒ Object
13
14
15
|
# File 'lib/command/remove.rb', line 13
def self.oneline_help
"小説を削除します"
end
|
Instance Method Details
#execute(argv) ⇒ Object
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/remove.rb', line 54
def execute(argv)
super
if @options["all-ss"]
novels = get_all_short_story
if novels.size == 0
puts "短編小説がひとつもありません"
return
end
argv += novels.map { |n| n["id"].to_s }
end
display_help! if argv.empty?
tagname_to_ids(argv)
argv.each_with_index do |target, i|
Helper.print_horizontal_rule if i > 0
data = Downloader.get_data_by_target(target)
unless data
error "#{target} は存在しません"
next
end
title = data["title"]
if Narou.locked?(target)
error "#{title} は変換中なため削除出来ませんでした"
next
elsif Narou.novel_frozen?(target)
puts "#{title} は凍結中です\n削除を中止しました"
next
end
unless @options["yes"]
next unless Narou::Input.confirm("#{title} を#{(@options["with-file"] ? "“完全に”" : "")}削除しますか")
end
Downloader.remove_novel(target, @options["with-file"])
puts "<bold><green>#{TermColorLight.escape(title)} を削除しました</green></bold>".termcolor
end
end
|
#get_all_short_story ⇒ Object
50
51
52
|
# File 'lib/command/remove.rb', line 50
def get_all_short_story
Database.instance.get_object.values.select { |v| v["novel_type"] == 2 }
end
|