# -*- coding: utf-8 -*- # # Copyright 2013 whiteleaf. All rights reserved. # require_relative "../narou" require_relative "../helper" require_relative "../device" module Command class Send < CommandBase def oneline_help "変換したEPUB/MOBIを電子書籍端末に送信します" end def initialize super(" [ ...]") @opt.separator <<-EOS ・で指定した小説の電子書籍データ(#{Device::DEVICES.map{|_,d| d::EBOOK_FILE_EXT}.join(", ")})をで指定した端末に送信します。 には現在 #{Device::DEVICES.keys.join(", ")} が指定出来ます。 ・narou setting device=としておけば、の入力を省略できます。 また、convertコマンドで変換時に(端末がPCに接続されていれば)自動でデータを送信するようになります。 ・を省略した場合、管理している小説全てのファイルのタイムスタンプを端末のものと比べて新しければ送信します。 Example: narou send kindle 6 narou send kobo 6 # の省略 narou setting device=kindle narou send 6 narou send # 端末のファイルより新しいファイルがあれば送信 narou send --without-freeze # 凍結済は対象外に Options: EOS @opt.on("--without-freeze", "`全話'送信時に凍結された小説は対象外にする") { @options["without-freeze"] = true } end def get_device(argv) if argv.first && Device.exists?(argv.first) return Narou.get_device(argv.shift) end Narou.get_device end def execute(argv) load_local_settings super device = get_device(argv) unless device error "デバイス名が指定されていないか、間違っています。\n" + "narou setting device=デバイス名 で指定出来ます。\n" + "指定出来るデバイス名:" + Device::DEVICES.keys.join(", ") exit 1 end unless device.physical_support? error "#{device.display_name} への直接送信は対応していません" exit 1 end unless device.connecting? error "#{device.display_name} が接続されていません" exit 1 end send_all = false titles = {} if argv.empty? send_all = true Database.instance.each do |id, data| next if @options["without-freeze"] && Narou.novel_frozen?(id) argv << id titles[id] = data["title"] end end argv.each do |target| ebook_path = Narou.get_ebook_file_path(target, device.ebook_file_ext) unless ebook_path error "#{target} は存在しません" next end unless File.exists?(ebook_path) error "まだファイル(#{File.basename(ebook_path)})が無いようです" unless send_all next end if send_all if device.ebook_file_old?(ebook_path) puts "ID:#{target} #{TermColor.escape(titles[target])}".termcolor else next end end print "#{device.name}へ送信しています" exit_copy = false copy_to_path = nil Thread.new do copy_to_path = device.copy_to_documents(ebook_path) exit_copy = true end until exit_copy print "." sleep(0.5) end if copy_to_path puts puts copy_to_path + " へコピーしました" else error "#{device.name}が見つからなかったためコピー出来ませんでした" exit 1 # next しても次も失敗すると分かりきっているためここで終了する end end end end end