Sha256: c21756e616a6f988aa2fa2fee3f9aeb930c993aaa2794112ef22e0da8a798ea4

Contents?: true

Size: 1.72 KB

Versions: 9

Compression:

Stored size: 1.72 KB

Contents

# -*- coding: utf-8 -*-
#
# Copyright 2013 whiteleaf. All rights reserved.
#

require "fileutils"
require_relative "../downloader"
require_relative "../inspector"
require_relative "../novelsetting"
require_relative "../inventory"

module Command
  class Inspect < CommandBase
    def self.oneline_help
      "小説状態の調査状況ログを表示します"
    end

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

  ・引数を指定しなかった場合は直前に変換した小説の状態調査状況ログを表示します。
  ・小説を指定した場合はその小説のログを表示します。
  ・narou setting convert.inspect=true とすれば変換時に常に表示されるようになります。

  Examples:
    narou inspect     # 直前の変換時のログを表示
    narou inspect 6   # ログを表示したい小説を指定する
      EOS
    end

    def execute(argv)
      super
      if argv.empty?
        latest_id = Inventory.load("latest_convert")["id"]
        if latest_id
          data = Downloader.get_data_by_target(latest_id)
          display_log(data["title"])
        end
        return
      end
      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
        display_log(data["title"])
      end
    end

    def display_log(title)
      puts "(#{title} の小説状態調査状況ログ)"
      novel_setting = NovelSetting.load(title, false, false)
      puts Inspector.read_messages(novel_setting) || "調査ログがまだ無いようです"
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
narou-2.9.0 lib/command/inspect.rb
narou-2.8.3.1 lib/command/inspect.rb
narou-2.8.3 lib/command/inspect.rb
narou-2.8.2 lib/command/inspect.rb
narou-2.8.1 lib/command/inspect.rb
narou-2.8.0 lib/command/inspect.rb
narou-2.7.2 lib/command/inspect.rb
narou-2.7.1 lib/command/inspect.rb
narou-2.7.0 lib/command/inspect.rb