Class: Command::Convert

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

Constant Summary collapse

@@database =
Database.instance

Instance Method Summary collapse

Methods inherited from CommandBase

execute_and_rescue_exit, #load_local_settings

Constructor Details

#initializeConvert

Returns a new instance of Convert.



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
71
72
73
74
75
76
77
78
79
80
81
82
# File 'lib/command/convert.rb', line 21

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

  ・指定した小説を縦書き用に整形及びEPUB、MOBIに変換します。
  ・変換したい小説のNコード、URL、タイトルもしくはIDを指定して下さい。
IDは #{@opt.program_name} list を参照して下さい。
  ・一度に複数の小説を指定する場合は空白で区切って下さい。
  ※-oオプションがない場合、[変換]小説名.txtが小説の保存フォルダに出力されます
  ・管理小説以外にもテキストファイルを変換出来ます。
テキストファイルのファイルパスを指定します。
  ※複数指定した場合に-oオプションがあった場合、ファイル名に連番がつきます。
  ・MOBI化する場合は narou setting device=kindle をして下さい。
  ・device=kobo の場合、.kepub.epub を出力します。

  Example:
narou convert n9669bk
narou convert http://ncode.syosetu.com/n9669bk/
narou convert 異世界迷宮で奴隷ハーレムを
narou convert 1 -o "ハーレム -変換済み-.txt"
narou convert mynovel.txt --enc sjis

  Options:
  EOS
  @opt.on("-o FILE", "--output FILE", "出力ファイル名を指定する。フォルダパス部分は無視される") { |filename|
    @options["output"] = filename
  }
  @opt.on("-e ENCODING", "--enc ENCODING",
          "テキストファイル指定時の文字コードを指定する。デフォルトはUTF-8") { |encoding|
    encoding = "utf-8" if encoding =~ /UTF8/i
    @options["encoding"] = encoding
  }
  @opt.on("--no-epub", "AozoraEpub3でEPUB化しない") {
    @options["no-epub"] = true
  }
  @opt.on("--no-mobi", "kindlegenでMOBI化しない") {
    @options["no-mobi"] = true
  }
  @opt.on("--no-strip", "MOBIをstripしない") {
    @options["no-strip"] = true
  }
  @opt.on("--no-zip", "i文庫用のzipファイルを作らない") {
    @options["no-zip"] = true
  }
  @opt.on("--no-open", "出力時に保存フォルダを開かない") {
    @options["no-open"] = true
  }
  @opt.on("-i", "--inspect", "小説状態の調査結果を表示する") {
    @options["inspect"] = true
  }
  @opt.on("-v", "--verbose", "AozoraEpub3, kindlegen の標準出力を全て表示します") {
    @options["verbose"] = true
  }
  @opt.separator <<-EOS

  Configuration:
--no-epub, --no-mobi, --no-strip, --no-open , --inspect は narou setting コマンドで恒常的な設定にすることが可能です。
convert.copy_to を設定すれば変換したEPUB/MOBIを指定のフォルダに自動でコピー出来ます。
device で設定した端末が接続されていた場合、対応するデータを自動送信します。
詳しくは narou setting --help を参照して下さい。
  EOS
end

Instance Method Details

#archive_ibunko_zipfileObject

i文庫用にテキストと挿絵ファイルをzipアーカイブ化する



237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
# File 'lib/command/convert.rb', line 237

def archive_ibunko_zipfile
  return false if @options["no-zip"]
  require "zip"
  Zip.unicode_names = true
  dirpath = File.dirname(@converted_txt_path)
  translate_illust_chuki_to_img_tag
  zipfile_path = @converted_txt_path.sub(/.txt$/, @device.ebook_file_ext)
  File.delete(zipfile_path) if File.exists?(zipfile_path)
  Zip::File.open(zipfile_path, Zip::File::CREATE) do |zip|
    zip.add(File.basename(@converted_txt_path), @converted_txt_path)
    illust_dirpath = File.join(dirpath, Illustration::ILLUST_DIR)
    # 挿絵
    if File.exists?(illust_dirpath)
      Dir.glob(File.join(illust_dirpath, "*")) do |img_path|
        zip.add(File.join(Illustration::ILLUST_DIR, File.basename(img_path)), img_path)
      end
    end
    # 表紙画像
    cover_name = NovelConverter.get_cover_filename(dirpath)
    if cover_name
      zip.add(cover_name, File.join(dirpath, cover_name))
    end
  end
  puts File.basename(zipfile_path) + " を出力しました"
  puts "<bold><green>#{@device.display_name}用ファイルを出力しました</green></bold>".termcolor
  return zipfile_path
end

#change_settings_for_ibunkoObject

i文庫用に設定を強制設定する



268
269
270
271
272
273
274
275
276
277
278
279
280
# File 'lib/command/convert.rb', line 268

def change_settings_for_ibunko
  settings = LocalSetting.get["local_setting"]
  modified = false
  %w(enable_half_indent_bracket enable_dakuten_font).each do |word|
    name = "force.#{word}"
    if settings[name].nil? || settings[name] == true
      settings[name] = false
      puts "#{name}#{@device.display_name}用に false に強制変更しました"
      modified = true
    end
  end
  LocalSetting.get.save_settings("local_setting") if modified
end

#convert_novels(argv) ⇒ Object



112
113
114
115
116
117
118
119
120
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
160
161
162
163
164
165
166
167
168
169
170
# File 'lib/command/convert.rb', line 112

def convert_novels(argv)
  argv.each.with_index(1) do |target, i|
    Helper.print_horizontal_rule if i > 1
    if @basename
      @basename << " (#{i})" if argv.length > 1
      @output_filename = @basename + @ext
    end

    if File.file?(target.to_s)
      @argument_target_type = :file
      res = convert_txt(target)
    else
      @argument_target_type = :novel
      unless Downloader.novel_exists?(target)
        error "#{target} は存在しません"
        next
      end
      res = NovelConverter.convert(target, @output_filename, @options["inspect"])
    end
    next unless res
    @converted_txt_path = res[:converted_txt_path]
    @use_dakuten_font = res[:use_dakuten_font]

    if @device && @device.ibunko?
      ebook_file = archive_ibunko_zipfile
    else
      ebook_file = convert_txt_to_ebook_file
    end
    next if ebook_file.nil?
    if ebook_file
      copied_file_path = copy_to_converted_file(ebook_file)
      if copied_file_path
        puts copied_file_path.encode(Encoding::UTF_8) + " へコピーしました"
      end
      if @device && @device.physical_support? &&
         @device.connecting? && File.extname(ebook_file) == @device.ebook_file_ext
        if @argument_target_type == :novel
          Send.execute_and_rescue_exit([@device.name, target])
        else
          puts @device.name + "へ送信しています"
          copy_to_path = @device.copy_to_documents(ebook_file)
          if copy_to_path
            puts copy_to_path.encode(Encoding::UTF_8) + " へコピーしました"
          else
            error "送信に失敗しました"
          end
        end
      end
    end

    unless @options["no-open"]
      Helper.open_directory(File.dirname(@converted_txt_path), "小説の保存フォルダを開きますか")
    end
  end
rescue Interrupt
  puts
  puts "変換を中断しました"
  exit 1
end

#convert_txt(target) ⇒ Object

直接指定されたテキストファイルを変換する



175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
# File 'lib/command/convert.rb', line 175

def convert_txt(target)
  return NovelConverter.convert_file(target, @enc, @output_filename, @options["inspect"])
rescue ArgumentError => e
  if e.message =~ /invalid byte sequence in UTF-8/
    error "テキストファイルの文字コードがUTF-8ではありません。" +
          "--enc オプションでテキストの文字コードを指定して下さい"
    warn "(#{e.message})"
    return nil
  else
    raise
  end
rescue Encoding::UndefinedConversionError, Encoding::InvalidByteSequenceError
  warn "#{target}:"
  error "テキストファイルの文字コードは#{@options["encoding"]}ではありませんでした。" +
        "正しい文字コードを指定して下さい"
  return nil
end

#convert_txt_to_ebook_fileObject

変換された整形済みテキストファイルをデバイスに対応した書籍データに変換する



196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
# File 'lib/command/convert.rb', line 196

def convert_txt_to_ebook_file
  return false if @options["no-epub"]
  # epub
  status = NovelConverter.txt_to_epub(@converted_txt_path, @use_dakuten_font, nil, @device, @options["verbose"])
  return nil if status != :success
  if @device && @device.kobo?
    epub_ext = @device.ebook_file_ext
  else
    epub_ext = ".epub"
  end
  epub_path = @converted_txt_path.sub(/.txt$/, epub_ext)

  if !@device || !@device.kindle? || @options["no-mobi"]
    puts File.basename(epub_path) + " を出力しました"
    puts "<bold><green>EPUBファイルを出力しました</green></bold>".termcolor
    return epub_path
  end

  # mobi
  status = NovelConverter.epub_to_mobi(epub_path, @options["verbose"])
  return nil if status != :success
  mobi_path = epub_path.sub(/\.epub$/, @device.ebook_file_ext)

  # strip
  unless @options["no-strip"]
    puts "kindlestrip実行中"
    begin
      SectionStripper.strip(mobi_path, nil, false)
    rescue StripException => e
      error "#{e.message}"
    end
  end
  puts File.basename(mobi_path).encode(Encoding::UTF_8) + " を出力しました"
  puts "<bold><green>MOBIファイルを出力しました</green></bold>".termcolor

  return mobi_path
end

#copy_to_converted_file(src_path) ⇒ Object

convert.copy_to で指定されたディレクトリに書籍データをコピーする



294
295
296
297
298
299
300
301
302
303
304
# File 'lib/command/convert.rb', line 294

def copy_to_converted_file(src_path)
  copy_to_dir = @options["copy_to"]
  return nil unless copy_to_dir
  if File.directory?(copy_to_dir)
    FileUtils.copy(src_path, copy_to_dir)
    return File.join(copy_to_dir, File.basename(src_path))
  else
    error "#{copy_to_dir} はフォルダではないかすでに削除されています。コピー出来ませんでした"
    return nil
  end
end

#execute(argv) ⇒ Object



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
109
110
# File 'lib/command/convert.rb', line 84

def execute(argv)
  load_local_settings    # @opt.on 実行前に設定ロードしたいので super 前で実行する
  super
  if argv.empty?
    puts @opt.help
    return
  end
  @output_filename = @options["output"]
  if @output_filename
    @ext = File.extname(@output_filename)
    @basename = File.basename(@output_filename, @ext)
  else
    @basename = nil
  end
  if @options["encoding"]
    @enc = Encoding.find(@options["encoding"]) rescue nil
    unless @enc
      error "--enc で指定された文字コードは存在しません。sjis, eucjp, utf-8 等を指定して下さい"
      return
    end
  end
  @device = Narou.get_device
  if @device && @device.ibunko?
    change_settings_for_ibunko
  end
  convert_novels(argv)
end

#oneline_helpObject



17
18
19
# File 'lib/command/convert.rb', line 17

def oneline_help
  "小説を変換します。管理小説以外にテキストファイルも変換可能"
end

#translate_illust_chuki_to_img_tagObject

i文庫用に挿絵注記をimgタグに変換する



285
286
287
288
289
# File 'lib/command/convert.rb', line 285

def translate_illust_chuki_to_img_tag
  data = File.read(@converted_txt_path, encoding: Encoding::UTF_8)
  data.gsub!(/[#挿絵((.+?))入る]/, "<img src=\"\\1\">")
  File.write(@converted_txt_path, data)
end