Class: NovelConverter

Inherits:
Object
  • Object
show all
Includes:
Narou::Eventable
Defined in:
lib/novelconverter.rb

Constant Summary collapse

NOVEL_TEXT_TEMPLATE_NAME =
"novel.txt"
NOVEL_TEXT_TEMPLATE_NAME_FOR_IBUNKO =
"ibunko_novel.txt"
DAKUTEN_FROM =
["vertical_font_with_dakuten.css", "DMincho.ttf"]
DAKUTEN_TO =
["template/OPS/css_custom/vertical_font.css", "template/OPS/fonts/DMincho.ttf"]
DAKUTEN_ERB =
[true, false]

Constants included from Narou::Eventable

Narou::Eventable::EVENTS_CONTAINER

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Narou::Eventable

#add_event_listener, included, #one, #remove_event_listener, #trigger_event

Constructor Details

#initialize(setting, output_filename = nil, display_inspector = false, output_text_dir = nil, stream_io: $stdout2) ⇒ NovelConverter

Returns a new instance of NovelConverter.



372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
# File 'lib/novelconverter.rb', line 372

def initialize(setting, output_filename = nil, display_inspector = false, output_text_dir = nil, stream_io: $stdout2)
  @setting = setting
  @novel_id = setting.id
  @novel_author = setting.novel_author.empty? ? setting.author : setting.novel_author
  @novel_title = setting.novel_title.empty? ? setting.title : setting.novel_title
  @output_filename = (output_filename || setting.output_filename)
  @output_filename = nil if @output_filename.empty?
  @inspector = Inspector.new(@setting)
  @illustration = Illustration.new(@setting, @inspector)
  @display_inspector = display_inspector
  @use_dakuten_font = false
  @converter = create_converter
  @converter.output_text_dir = output_text_dir
  @data = @novel_id ? Database.instance.get_data("id", @novel_id) : {}
  @stream_io = stream_io
end

Instance Attribute Details

#stream_ioObject (readonly)

Returns the value of attribute stream_io.



27
28
29
# File 'lib/novelconverter.rb', line 27

def stream_io
  @stream_io
end

#use_dakuten_fontObject (readonly)

Returns the value of attribute use_dakuten_font.



27
28
29
# File 'lib/novelconverter.rb', line 27

def use_dakuten_font
  @use_dakuten_font
end

Class Method Details

.activate_dakuten_font_filesObject



92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# File 'lib/novelconverter.rb', line 92

def self.activate_dakuten_font_files
  preset_dir = Narou.preset_dir
  aozora_dir = File.dirname(Narou.aozoraepub3_path)
  line_height = Narou.line_height

  DAKUTEN_FROM.each_with_index do |name, i|
    src = File.join(preset_dir, name)
    dst = File.join(aozora_dir, DAKUTEN_TO[i])
    if DAKUTEN_ERB[i]
      Helper.erb_copy(src, dst, binding)
    else
      FileUtils.mkdir_p(File.dirname(dst))
      FileUtils.copy(src, dst)
    end
  end
end

.clean_up_temp_files(path_list) ⇒ Object



365
366
367
368
369
370
# File 'lib/novelconverter.rb', line 365

def self.clean_up_temp_files(path_list)
  return unless path_list
  path_list.each do |path|
    FileUtils.rm_f(path)
  end
end

.convert(target, options = {}) ⇒ Object

指定の小説を整形・変換する



42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# File 'lib/novelconverter.rb', line 42

def self.convert(target, options = {})
  options = {
    # default paraeters
    output_filename: nil, display_inspector: false,
    ignore_force: false, ignore_default: false
  }.merge(options)
  setting = NovelSetting.load(target, options[:ignore_force], options[:ignore_default])
  if setting
    novel_converter = new(setting, options[:output_filename], options[:display_inspector])
    return {
      converted_txt_paths: novel_converter.convert_main,
      use_dakuten_font: novel_converter.use_dakuten_font
    }
  end
  nil
end

.convert_file(filename, options = {}) ⇒ Object

テキストファイルを整形・変換する



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
# File 'lib/novelconverter.rb', line 62

def self.convert_file(filename, options = {})
  options = {
    # default parameters
    encoding: nil, output_filename: nil, display_inspector: false,
    ignore_force: false, ignore_default: false
  }.merge(options)
  output_filename = options[:output_filename]
  if output_filename
    archive_path = File.dirname(output_filename) + "/"
  else
    archive_path = File.dirname(filename) + "/"
  end
  setting = NovelSetting.create(archive_path, options[:ignore_force], options[:ignore_default])
  setting.author = ""
  setting.title = File.basename(filename)
  novel_converter = new(setting, output_filename, options[:display_inspector])
  text = open(filename, "r:BOM|UTF-8") { |fp| fp.read }.gsub("\r", "")
  if options[:encoding]
    text.force_encoding(options[:encoding]).encode!(Encoding::UTF_8)
  end
  {
    converted_txt_paths: novel_converter.convert_main(text),
    use_dakuten_font: novel_converter.use_dakuten_font
  }
end

.convert_txt_to_ebook_file(txt_path, options) ⇒ Object

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



297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
# File 'lib/novelconverter.rb', line 297

def self.convert_txt_to_ebook_file(txt_path, options)
  options = {
    dst_dir: nil,
    device: nil,
    verbose: false,
    no_epub: false,
    no_mobi: false,
    no_strip: false,
    no_cleanup_txt: false,
    yokogaki: false,
    use_dakuten_font: false,
    stream_io: $stdout2
  }.merge(options)
  stream_io = options[:stream_io]

  device = options[:device]
  clean_up_file_list = []

  return false if options[:no_epub]
  clean_up_file_list << txt_path unless options[:no_cleanup_txt]
  # epub
  status = NovelConverter.txt_to_epub(
    txt_path,
    dst_dir: options[:dst_dir], device: device,
    verbose: options[:verbose], yokogaki: options[:yokogaki],
    use_dakuten_font: options[:use_dakuten_font],
    stream_io: stream_io
  )
  return nil if status != :success
  if device && device.kobo?
    epub_ext = device.ebook_file_ext
  else
    epub_ext = ".epub"
  end
  epub_path = txt_path.sub(/\.txt$/, epub_ext)

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

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

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

  return mobi_path
ensure
  if Narou.economy?("cleanup_temp")
    # 作業用ファイルを削除
    clean_up_temp_files(clean_up_file_list)
  end
end

.epub_to_mobi(epub_path, verbose = false, stream_io: $stdout2) ⇒ Object

EPUBファイルをkindlegenでMOBIへ AozoraEpub3.jar と同じ場所に kindlegen が無ければ何もしない

返り値:正常終了 :success、エラー終了 :error、中断終了 :abort



249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
# File 'lib/novelconverter.rb', line 249

def self.epub_to_mobi(epub_path, verbose = false, stream_io: $stdout2)
  kindlegen_path = Narou.kindlegen_path
  unless File.exist?(kindlegen_path)
    stream_io.error "kindlegenが見つかりませんでした。AozoraEpub3と同じフォルダにインストールして下さい"
    return :error
  end

  if Helper.os_cygwin?
    epub_path = Helper.convert_to_windows_path(epub_path)
  end
  command = +%!"#{kindlegen_path}" -locale ja "#{epub_path}"!
  if Helper.os_windows?
    command.encode!(Encoding::Windows_31J)
  end
  stream_io.print "kindlegen実行中"
  res = Helper::AsyncCommand.exec(command) do
    stream_io.print "."
  end
  stdout_capture, _, proccess_status = res
  stdout_capture.force_encoding(Encoding::UTF_8)

  if verbose
    stream_io.puts
    stream_io.puts "==== kindlegen stdout capture " + "=" * 49
    stream_io.puts stdout_capture.gsub("\n\n", "\n").strip
    stream_io.puts "=" * 79
  end

  if proccess_status.exited?
    if proccess_status.exitstatus == 2
      stream_io.puts
      stream_io.error "kindlegen実行中にエラーが発生したため、MOBIが出力出来ませんでした"
      if stdout_capture.scan(/(エラー\(.+?\):\w+?:.+)$/)
        stream_io.error $1
      end
      return :error
    end
  else
    stream_io.puts
    return :abort
  end
  stream_io.puts "変換しました"
  :success
end

.extensions_of_converted_files(device) ⇒ Object



29
30
31
32
33
34
35
36
37
# File 'lib/novelconverter.rb', line 29

def self.extensions_of_converted_files(device)
  exts = [".txt"]
  if device&.kobo?
    exts.push(device.ebook_file_ext)
  else
    exts.push(".epub", device&.ebook_file_ext)
  end
  exts.compact
end

.get_cover_filename(archive_path) ⇒ Object

表紙用の画像名取得



547
548
549
550
551
552
553
554
555
556
# File 'lib/novelconverter.rb', line 547

def self.get_cover_filename(archive_path)
  [".jpg", ".png", ".jpeg"].each do |ext|
    filename = "cover#{ext}"
    cover_path = File.join(archive_path, filename)
    if File.exist?(cover_path)
      return filename
    end
  end
  nil
end

.inactivate_dakuten_font_filesObject



109
110
111
112
113
114
115
116
117
# File 'lib/novelconverter.rb', line 109

def self.inactivate_dakuten_font_files
  preset_dir = Narou.preset_dir
  aozora_dir = File.dirname(Narou.aozoraepub3_path)
  path_normal_vertical_css = File.join(preset_dir, "vertical_font.css")
  line_height = Narou.line_height

  Helper.erb_copy(path_normal_vertical_css, File.join(aozora_dir, DAKUTEN_TO[0]), binding)
  FileUtils.remove(File.join(aozora_dir, DAKUTEN_TO[1]))
end

.txt_to_epub(filename, dst_dir: nil, device: nil, verbose: false, yokogaki: false, use_dakuten_font: false, stream_io: $stdout2) ⇒ Object

AozoraEpub3でEPUBファイル作成

AozoraEpub3は.jarがあるところがカレントディレクトリじゃないとうまく動かない MEMO: 逆にカレントディレクトリにAozoraEpub3の必須ファイルを置いて手を加えることで、 テンプレート等の差し替えが容易になる

返り値:正常終了 :success、エラー終了 :error、AozoraEpub3が見つからなかった nil



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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
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
233
234
235
236
237
238
239
240
241
# File 'lib/novelconverter.rb', line 129

def self.txt_to_epub(filename, dst_dir: nil, device: nil, verbose: false, yokogaki: false, use_dakuten_font: false, stream_io: $stdout2)
  abs_srcpath = File.expand_path(filename)
  src_dir = File.dirname(abs_srcpath)

  cover_option = ""
  # MEMO: 外部実行からだと -c FILENAME, -c 1 オプションはぬるぽが出て動かない
  cover_filename = get_cover_filename(src_dir)
  if cover_filename
    cover_option = "-c 0"   # 先頭の挿絵を表紙として利用
  end

  dst_option = ""
  if dst_dir
    dst_option = %!-dst "#{File.expand_path(dst_dir)}"!
  end

  ext_option = ""
  device_option = ""
  if device
    case device.name
    when "Kobo"
      ext_option = "-ext " + device.ebook_file_ext
    when "Kindle"
      device_option = "-device kindle"
    end
  end

  yokogaki_option = yokogaki ? "-hor" : ""

  pwd = Dir.pwd

  aozoraepub3_path = Narou.aozoraepub3_path
  unless aozoraepub3_path
    error "AozoraEpub3が見つからなかったのでEPUBが出力出来ませんでした。" +
          "narou initでAozoraEpub3の設定を行なって下さい"
    return nil
  end
  aozoraepub3_basename = File.basename(aozoraepub3_path)
  aozoraepub3_dir = File.dirname(aozoraepub3_path)

  java_encoding = "-Dfile.encoding=UTF-8" +
                  " -Dstdout.encoding=UTF-8 -Dstderr.encoding=UTF-8" +
                  " -Dsun.stdout.encoding=UTF-8 -Dsun.stderr.encoding=UTF-8"

  if Helper.os_cygwin?
    abs_srcpath = Helper.convert_to_windows_path(abs_srcpath)
  end
  Dir.chdir(aozoraepub3_dir)
  command = %!java #{java_encoding} -cp #{aozoraepub3_basename} AozoraEpub3 -enc UTF-8 -of #{device_option} ! +
            %!#{cover_option} #{dst_option} #{ext_option} #{yokogaki_option} "#{abs_srcpath}"!
  if Helper.os_windows?
    command = "cmd /c #{command}".encode(Encoding::Windows_31J)
  end
  activate_dakuten_font_files if use_dakuten_font
  stream_io.print "AozoraEpub3でEPUBに変換しています"
  begin
    res = Helper::AsyncCommand.exec(command) do
      stream_io.print "."
    end
  ensure
    Dir.chdir(pwd)
    inactivate_dakuten_font_files if use_dakuten_font
  end

  # AozoraEpub3はエラーだとしてもexitコードは0なので、
  # 失敗した場合はjavaが実行できない場合と確定できる
  unless res[2].success?
    stream_io.puts
    stream_io.puts res
    stream_io.error "JavaがインストールされていないかAozoraEpub3実行時にエラーが発生しました。EPUBを作成出来ませんでした"
    return :error
  end

  stdout_capture = res[0]

  # Javaの実行環境に由来するであろうエラー
  if stdout_capture =~ /Error occurred during initialization of VM/
    stream_io.puts
    stream_io.puts stdout_capture.strip
    stream_io.puts "-" * 70
    stream_io.error "Javaの実行エラーが発生しました。EPUBを作成出来ませんでした\n" \
                   "Hint: 複数のJava環境が混じっていると起きやすいエラーのようです"
    return :error
  end

  error_list = stdout_capture.scan(/^(?:\[ERROR\]|エラーが発生しました :).+$/)
  warn_list = stdout_capture.scan(/^\[WARN\].+$/)
  info_list = stdout_capture.scan(/^\[INFO\].+$/)

  if verbose
    stream_io.puts
    stream_io.puts "==== AozoraEpub3 stdout capture " + "=" * 47
    stream_io.puts stdout_capture.strip
    stream_io.puts "=" * 79
  end

  if !error_list.empty? || !warn_list.empty?
    unless verbose
      stream_io.puts
      stream_io.puts error_list, warn_list
    end
    unless error_list.empty?
      # AozoraEpub3 のエラーにはEPUBが出力されないエラーとEPUBが出力されるエラーの2種類ある。
      # EPUBが出力される場合は「変換完了」という文字があるのでそれを検出する
      if stdout_capture !~ /^変換完了/
        stream_io.error "AozoraEpub3実行中にエラーが発生したため、EPUBが出力出来ませんでした"
        return :error
      end
    end
  end
  stream_io.puts "変換しました"
  :success
end

Instance Method Details

#add_date_to_title(title) ⇒ Object

タイトルに日付を付与する。 日付の種類は title_date_target で指定する

strftime の書式の他に拡張書式として $s, $t をサポートする $s 2035年くらいまでの残り時間を10分単位の36進数(4桁) $t タイトル自身。書式の中で自由な位置にタイトルを埋め込める $ns 小説が掲載されているサイト名 $nt 小説種別(短編 or 連載) $ntag 小説のタグをカンマ区切りにしたもの

※ $t を使用した場合、title_date_align を無視する



490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
# File 'lib/novelconverter.rb', line 490

def add_date_to_title(title)
  result = title

  if @setting.enable_add_date_to_title
    new_arrivals_date = @data[@setting.title_date_target] || Time.now
    special_format_chars = [
      ["$s", calc_reverse_short_time(new_arrivals_date)],
      ["$ns", @data["sitename"]],
      ["$ntag", tags_join_comma(@data)],
      ["$nt", Narou.novel_type_text(@data["novel_type"])],
      ["$t", title]
    ]

    date_str = new_arrivals_date.strftime(@setting.title_date_format)
    doller_t_included = date_str.include?("$t")

    special_format_chars.each do |(symbol, replace_text)|
      date_str.gsub!(symbol, replace_text)
    end

    if doller_t_included
      # $t で任意の位置にタイトルを埋め込むために title_date_align は無視する
      result = date_str
    else
      if @setting.title_date_align == "left"
        result = date_str + result
      else  # right
        result = title + date_str
      end
    end
  end
  result
end

#calc_reverse_short_time(time) ⇒ Object

2035年くらいまでの残り時間を10分単位の36進数で取得する hyff のような文字列が取得可能 小説家になろうで、もっとも古い作品が2004年5月1日11時49分なので、 その小説がちょうど4桁の zzzz となるように調整してある



473
474
475
# File 'lib/novelconverter.rb', line 473

def calc_reverse_short_time(time)
  ((2091149000 - time.to_i) / (10 * 60)).to_s(36).rjust(4, "0")
end

#convert_main(text = nil) ⇒ Object

変換処理メインループ



392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
# File 'lib/novelconverter.rb', line 392

def convert_main(text = nil)
  display_header
  initialize_event

  if text
    array_of_converted_text = convert_main_for_text(text)
  else
    array_of_converted_text = convert_main_for_novel
    update_latest_convert_novel
  end
  inspect_novel(array_of_converted_text)

  array_of_output_path = []
  array_of_converted_text.each_with_index do |converted_text, i|
    output_path = create_output_path(text, converted_text, i + 1)
    File.write(output_path, converted_text)
    array_of_output_path.push(output_path)
  end

  display_footer

  array_of_output_path
end

#convert_main_for_novel(subtitles = nil, is_hotentry = false) ⇒ Object

管理小説変換時の実質的なメイン処理

引数 subtitles にデータを渡した場合はそれを直接使う is_hotentry を有効にすると出力されるテキストファイルにあらすじや作品タイトル等が含まれなくなる また、 is_hotentry を有効にすると分割も行われなくなる



635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
# File 'lib/novelconverter.rb', line 635

def convert_main_for_novel(subtitles = nil, is_hotentry = false)
  toc = Downloader.get_toc_data(@setting.archive_path)
  unless subtitles
    subtitles = cut_subtitles(toc["subtitles"])
  end
  if is_hotentry == false && @setting.slice_size > 0 && subtitles.length > @setting.slice_size
    stream_io.puts "#{@setting.slice_size}話ごとに分割して変換します"
    array_of_subtitles = subtitles.each_slice(@setting.slice_size).to_a
  else
    array_of_subtitles = [subtitles]
  end
  toc["story"] = @converter.convert(toc["story"], "story")
  site_setting = SiteSetting.find(toc["toc_url"])
  html = HTML.new
  html.strip_decoration_tag = @setting.enable_strip_decoration_tag
  html.set_illust_setting(
    current_url: site_setting["illust_current_url"],
    grep_pattern: site_setting["illust_grep_pattern"]
  )
  array_of_converted_text = []
  array_of_subtitles.each_with_index do |sliced_subtitles, index|
    @converter.subtitles = sliced_subtitles
    html.clear
    sections = subtitles_to_sections(sliced_subtitles, html)
    array_of_converted_text.push(
      create_novel_text_by_template(
        sections, toc, is_hotentry,
        array_of_subtitles.length == 1 ? nil : index + 1
      )
    )
  end

  if is_hotentry
    array_of_converted_text[0]
  else
    array_of_converted_text
  end
end

#convert_main_for_text(text) ⇒ Object

テキストファイル変換時の実質的なメイン処理



613
614
615
616
617
618
619
620
621
622
623
624
625
626
# File 'lib/novelconverter.rb', line 613

def convert_main_for_text(text)
  result = @converter.convert(text, "textfile")
  unless @setting.enable_enchant_midashi
    @inspector.info "テキストファイルの処理を実行しましたが、改行直後の見出し付与は有効になっていません。" +
                    "setting.ini の enable_enchant_midashi を true にすることをお薦めします。"
  end
  splited = result.split("\n", 3)
  # 表紙の挿絵注記を3行目に挟み込む
  converted_text = [splited[0], splited[1], create_cover_chuki, splited[2]].join("\n")

  @use_dakuten_font = @converter.use_dakuten_font

  [converted_text]
end

#create_converterObject

各小説用の converter.rb 変換オブジェクトを生成



573
574
575
# File 'lib/novelconverter.rb', line 573

def create_converter
  load_converter(@setting.archive_path).new(@setting, @inspector, @illustration)
end

#create_cover_chukiObject

表紙用挿絵注記作成



561
562
563
564
565
566
567
568
# File 'lib/novelconverter.rb', line 561

def create_cover_chuki
  cover_filename = self.class.get_cover_filename(@setting.archive_path)
  if cover_filename
    "[#挿絵(#{cover_filename})入る]"
  else
    ""
  end
end

#create_novel_text_by_template(sections, toc, is_hotentry = false, index = nil) ⇒ Object

is_hotentry を有効にすると、テンプレートで作成するテキストファイルに あらすじ、作品タイトル、本の読み終わり表示が付与されなくなる



454
455
456
457
458
459
460
461
462
463
464
465
# File 'lib/novelconverter.rb', line 454

def create_novel_text_by_template(sections, toc, is_hotentry = false, index = nil)
  cover_chuki = create_cover_chuki
  device = Narou.get_device
  setting = @setting
  toc["title"] = setting.novel_title unless setting.novel_title.empty?
  toc["author"] = setting.novel_author unless setting.novel_author.empty?
  processing_title = toc["title"]
  processing_title += "_#{index}" if index
  processed_title = decorate_title(processing_title)
  template_name = (device && device.ibunko? ? NOVEL_TEXT_TEMPLATE_NAME_FOR_IBUNKO : NOVEL_TEXT_TEMPLATE_NAME)
  Template.get(template_name, binding, 1.1)
end

#create_output_path(is_text_file_mode, converted_text, index) ⇒ Object

最終的に出力するパスを生成



580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
# File 'lib/novelconverter.rb', line 580

def create_output_path(is_text_file_mode, converted_text, index)
  output_path = +""
  if @output_filename
    output_path = File.join(@setting.archive_path, File.basename(@output_filename))
  else
    if is_text_file_mode
      info = get_title_and_author_by_text(converted_text)
      info["ncode"] = info["title"]
      info["domain"] = "text"
    else
      info = {
        "id" => @novel_id,
        "author" => @novel_author, "title" => @novel_title
      }
    end
    filename = Narou.create_novel_filename(info)
    output_path = File.join(@setting.archive_path, filename)
  end
  if output_path !~ /\.\w+$/
    output_path += ".txt"
  end
  # change output_path to "basename_#{index}.ext" if index is greater than 1
  if index > 1
    ext = File.extname(output_path)
    output_path = File.join(File.dirname(output_path), File.basename(output_path, ext))
    output_path += "_#{index}#{ext}"
  end
  output_path
end

#cut_subtitles(subtitles) ⇒ Object



674
675
676
677
678
679
680
681
682
683
684
685
686
# File 'lib/novelconverter.rb', line 674

def cut_subtitles(subtitles)
  case cut_size = @setting.cut_old_subtitles
  when 0
    result = subtitles
  when 1...subtitles.size
    stream_io.puts "#{cut_size}話分カットして変換します"
    result = subtitles[cut_size..-1]
  else
    stream_io.puts "最新話のみ変換します"
    result = [subtitles[-1]]
  end
  result
end

#decorate_title(title) ⇒ Object



529
530
531
532
533
534
535
536
537
538
539
540
541
542
# File 'lib/novelconverter.rb', line 529

def decorate_title(title)
  processed_title = add_date_to_title(title)
  # タイトルに完結したかどうかを付加する
  if @setting.enable_add_end_to_title
    tags = @data["tags"] || []
    if tags.include?("end")
      processed_title += " (完結)"
    end
  end
  # タイトルがルビ化されてしまうのを抑制
  processed_title = processed_title.gsub("", "※[#始め二重山括弧]")
                                   .gsub("", "※[#終わり二重山括弧]")
  processed_title
end


435
436
437
# File 'lib/novelconverter.rb', line 435

def display_footer
  stream_io.puts "縦書用の変換が終了しました"
end

#display_headerObject



430
431
432
433
# File 'lib/novelconverter.rb', line 430

def display_header
  stream_io.print "ID:#{@novel_id} " if @novel_id
  stream_io.puts "#{@novel_title} の変換を開始"
end

#get_title_and_author_by_text(text) ⇒ Object

テキストデータ先頭二行からタイトルと作者名を取得



728
729
730
731
# File 'lib/novelconverter.rb', line 728

def get_title_and_author_by_text(text)
  title, author = text.split("\n", 3)
  { "title" => title, "author" => author }
end

#initialize_eventObject



416
417
418
419
420
421
422
423
424
425
426
427
428
# File 'lib/novelconverter.rb', line 416

def initialize_event
  progressbar = nil

  on(:"convert_main.init") do |subtitles|
    progressbar = ProgressBar.new(subtitles.size, io: stream_io)
  end
  on(:"convert_main.loop") do |i|
    progressbar.output(i) if progressbar
  end
  on(:"convert_main.finish") do
    progressbar.clear if progressbar
  end
end

#inspect_novel(array_of_text) ⇒ Object



733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
# File 'lib/novelconverter.rb', line 733

def inspect_novel(array_of_text)
  if @setting.enable_inspect
    array_of_text.each do |text|
      @inspector.inspect_end_touten_conditions(text)   # 行末読点の現在状況を調査する
      @inspector.countup_return_in_brackets(text)      # カギ括弧内の改行状況を調査する
    end
  end

  if !@display_inspector
    unless @inspector.empty?
      @inspector.display_summary(stream_io)
    end
  else
    # 小説の監視・検査状況を表示する
    if @inspector.error? || @inspector.warning?
      stream_io.puts "<bold><yellow>―――― 小説にエラーもしくは警告が存在します ――――</yellow></bold>".termcolor
      stream_io.puts
      @inspector.display(Inspector::ERROR | Inspector::WARNING)
      stream_io.puts
    end
    if @inspector.info?
      stream_io.puts "<bold><yellow>―――― 小説の検査状況を表示します ――――</yellow></bold>".termcolor
      stream_io.puts
      @inspector.display(Inspector::INFO)
      stream_io.puts
    end
  end

  @inspector.save
end

#load_novel_section(subtitle_info, section_save_dir) ⇒ Object



439
440
441
442
443
444
445
446
447
448
449
450
# File 'lib/novelconverter.rb', line 439

def load_novel_section(subtitle_info, section_save_dir)
  file_subtitle = subtitle_info["file_subtitle"] || subtitle_info["subtitle"]   # 互換性維持のため
  path = section_save_dir.join("#{subtitle_info["index"]} #{file_subtitle}.yaml")
  YAML.unsafe_load_file(path)
rescue Errno::ENOENT => e
  stream_io.puts
  stream_io.error(<<~MSG.termcolor)
    <yellow>"#{path.basename}"</yellow> を見つけることが出来ませんでした。
    対象の小説を一度 Update を実行することで、ファイルをダウンロード出来ます。
  MSG
  exit Narou::EXIT_ERROR_CODE
end

#subtitles_to_sections(subtitles, html) ⇒ Object

subtitle info から変換処理をする



691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
# File 'lib/novelconverter.rb', line 691

def subtitles_to_sections(subtitles, html)
  sections = []
  section_save_dir = Downloader.get_novel_section_save_dir(@setting.archive_path)

  trigger(:"convert_main.init", subtitles)

  subtitles.each_with_index do |subinfo, i|
    trigger(:"convert_main.loop", i)
    @converter.current_index = i
    section = load_novel_section(subinfo, section_save_dir)
    if section["chapter"].length > 0
      section["chapter"] = @converter.convert(section["chapter"], "chapter")
    end

    @inspector.subtitle = section["subtitle"]
    section["subtitle"] = @converter.convert(section["subtitle"], "subtitle")
    element = section["element"]
    data_type = element.delete("data_type") || "text"
    @converter.data_type = data_type
    element.each do |text_type, elm_text|
      if data_type != "text"
        html.string = elm_text
        elm_text = html.to_aozora(pre_html: data_type == "pre_html")
      end
      element[text_type] = @converter.convert(elm_text, text_type)
    end
    sections << section
  end
  @use_dakuten_font = @converter.use_dakuten_font
  sections
ensure
  trigger(:"convert_main.finish")
end

#tags_join_comma(data) ⇒ Object



524
525
526
527
# File 'lib/novelconverter.rb', line 524

def tags_join_comma(data)
  tags = data["tags"] || []
  tags.sort.join(",")
end

#update_latest_convert_novelObject

最近変換した小説IDを記録更新



767
768
769
770
771
772
773
# File 'lib/novelconverter.rb', line 767

def update_latest_convert_novel
  id = Downloader.get_id_by_target(@novel_title)
  Inventory.load("latest_convert").tap { |inv|
    inv["id"] = id
    inv.save
  }
end