Class: Command::Mail
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 ⇒ Mail
Returns a new instance of Mail.
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# File 'lib/command/mail.rb', line 15
def initialize
super("[<target1> ...] [options]")
@opt.separator <<-EOS
・主にSend to Kindleを使うためのコマンドです。
・<target>で指定した小説の電子書籍データメールで送信します。
・<target>を省略した場合、新着があった小説を全て送信します。
・メールの送信設定は、#{Mailer::SETTING_FILE}ファイルを編集します。
(初めてコマンドを使うときに自動で作成されます)
Examples:
narou mail 6 # 新着関係なくメール(送信済みフラグは立つ)
narou update
narou mail # updateで新着があった小説を全てメール
narou mail --force # 凍結済以外の全ての小説を強制的にメール(使い方に注意)
Options:
EOS
@opt.on("-f", "--force", "全ての小説を強制的に送信") {
@options["force"] = true
}
end
|
Class Method Details
.oneline_help ⇒ Object
11
12
13
|
# File 'lib/command/mail.rb', line 11
def self.oneline_help
"変換したEPUB/MOBIをメールで送信します"
end
|
Instance Method Details
#alter_database_add_column_last_mail_date ⇒ Object
121
122
123
124
125
126
127
|
# File 'lib/command/mail.rb', line 121
def alter_database_add_column_last_mail_date
database = Database.instance
database.each do |id, data|
data["last_mail_date"] ||= Time.now
end
database.save_database
end
|
#execute(argv) ⇒ Object
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
# File 'lib/command/mail.rb', line 41
def execute(argv)
super
send_all = false
device = Narou.get_device
database = Database.instance
begin
mailer = Mailer.create
rescue Mailer::SettingNotFound => e
install_mailer_setting
return
rescue Mailer::SettingUncompleteError => e
error e.message
exit 1
end
if argv.empty?
send_all = true
database.each_key do |id|
next if Narou.novel_frozen?(id)
argv << id
end
end
tagname_to_ids(argv)
argv.each do |target|
ebook_path = Narou.get_ebook_file_path(target, device ? device.ebook_file_ext : ".epub")
unless ebook_path
error "#{target} は存在しません" unless send_all
next
end
data = Downloader.get_data_by_target(target)
if send_all && !@options["force"]
new_arrivals_date = data["new_arrivals_date"] || Time.now
if data["last_mail_date"] && new_arrivals_date < data["last_mail_date"]
next end
end
unless File.exists?(ebook_path)
error "まだファイル(#{File.basename(ebook_path)})が無いようです" unless send_all
next
end
id = data["id"]
title = data["title"]
puts "<bold><green>ID:#{id} #{TermColor.escape(title)}</green></bold>".termcolor
print "メールを送信しています"
exit_mail = false
mail_result = nil
Thread.new do
mail_result = mailer.send(File.basename(ebook_path), ebook_path)
exit_mail = true
end
until exit_mail
print "."
sleep(0.5)
end
puts
if mail_result
puts File.basename(ebook_path) + " をメールで送信しました"
database[id]["last_mail_date"] = Time.now
else
error "#{mailer.error_message}"
exit 1 end
end
rescue Interrupt
puts "メール送信を中断しました"
exit 1
ensure
database.save_database if database
end
|
#install_mailer_setting ⇒ Object