Class: Command::Init

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

Instance Attribute Summary

Attributes inherited from CommandBase

#stream_io

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from CommandBase

#disable_logging, #display_help!, execute!, #execute!, #force_change_settings_function, help, #hook_call, #load_local_settings, #tagname_to_ids

Constructor Details

#initializeInit

Returns a new instance of Init.



20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/command/init.rb', line 20

def initialize
  super("[options]")
  if Narou.already_init?
    opt_message(<<-MSG)
  ・AozoraEpub3 の再設定を行います。
    MSG
  else
    opt_message(<<-MSG)
  ・現在のフォルダを小説格納用フォルダとして初期化します。
  ・初期化されるまでは他のコマンドは使えません。
    MSG
  end
  @opt.on("-p", "--path FOLDER", "指定したフォルダの AozoraEpub3 を利用する") { |dirname|
    # no check here since global_setting is not loaded yet
    @options["aozora_dirname"] = dirname
  }
  @opt.on("-l", "--line-height SIZE", "行の高さを変更する(単位em)。オススメは1.8") do |line_height|
    begin
      @options["line_height"] = Helper.string_cast_to_type(line_height, :float)
    rescue Helper::InvalidVariableType => e
      error e.message
      exit Narou::EXIT_ERROR_CODE
    end
  end
end

Class Method Details

.oneline_helpObject



12
13
14
15
16
17
18
# File 'lib/command/init.rb', line 12

def self.oneline_help
  if Narou.already_init?
    "AozoraEpub3 の再設定を行います"
  else
    "現在のフォルダを小説用に初期化します"
  end
end

Instance Method Details

#ask_aozoraepub3_pathObject



141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
# File 'lib/command/init.rb', line 141

def ask_aozoraepub3_path
  puts
  print "<bold><green>AozoraEpub3のあるフォルダを入力して下さい:</green></bold>\n(未入力でスキップ".termcolor
  if @global_setting["aozoraepub3dir"]
    puts "、:keep で現在と同じ場所を指定)"
    print "(現在の場所:#{@global_setting["aozoraepub3dir"]}"
  end
  print ")\n>"
  while (input = $stdin.gets)
    break if input.strip! == ""
    checked_input = normalize_aozoraepub3_path(input)
    return checked_input if checked_input
    print "\n<bold><green>入力されたフォルダにAozoraEpub3がありません。" \
          "もう一度入力して下さい:</green></bold>\n&gt;".termcolor
  end
  nil
end

#ask_line_heightObject



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
# File 'lib/command/init.rb', line 159

def ask_line_height
  # 後方互換のために未設定時の line_height デフォルトは 1.6 だが、
  # オススメは 1.8 なので入力時のデフォルトは 1.8 にする
  line_height = Narou.line_height(default: 1.8)
  puts
  puts(<<-MSG.termcolor)
<bold><green>行間の調整を行います。小説の行の高さを設定して下さい(単位 em):</green></bold>
1em = 1文字分の高さ
行の高さ=1文字分の高さ+行間の高さ
オススメは 1.8
1.6 で若干行間狭め。1.8 だと一般的な小説程度。2.0 くらいにするとかなりスカスカ
(未入力で #{line_height} を採用)
  MSG
  print ">"
  while (input = $stdin.gets)
    break if input.strip! == ""
    begin
      line_height = Helper.string_cast_to_type(input, :float)
      break
    rescue Helper::InvalidVariableType => e
      error e.message
      print "<bold><green>もう一度入力して下さい:</green></bold>\n&gt;".termcolor
    end
  end
  line_height
end

#execute(argv) ⇒ Object



71
72
73
74
75
76
77
78
79
80
81
82
83
# File 'lib/command/init.rb', line 71

def execute(argv)
  super
  if Narou.already_init?
    init_aozoraepub3(true)
  else
    Narou.init
    puts "-" * 30
    init_aozoraepub3
    puts "初期化が完了しました!"
    puts "現在のフォルダ下で各種コマンドが使用出来るようになりました。"
    puts "まずは narou help で簡単な説明を御覧ください。"
  end
end

#init_aozoraepub3(force = false) ⇒ Object



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
111
# File 'lib/command/init.rb', line 85

def init_aozoraepub3(force = false)
  @global_setting = Inventory.load("global_setting", :global)
  if !force && @global_setting["aozoraepub3dir"]
    return
  end
  puts "<bold><green>AozoraEpub3の設定を行います</green></bold>".termcolor
  unless @global_setting["aozoraepub3dir"]
    puts "<bold><red>#{"!!!WARNING!!!".center(70)}</red></bold>".termcolor
    puts "AozoraEpub3の構成ファイルを書き換えます。narouコマンド用に別途新規インストールしておくことをオススメします"
  end
  if @options["aozora_dirname"]
    path = normalize_aozoraepub3_path(@options["aozora_dirname"])
    print "\n<bold><green>指定されたフォルダにAozoraEpub3がありません。</green></bold>\n".termcolor unless path
  end
  aozora_path = path || ask_aozoraepub3_path
  unless aozora_path
    puts "設定をスキップしました。あとで " + "<bold><yellow>narou init</yellow></bold>".termcolor + " で再度設定出来ます"
    return
  end
  line_height = @options["line_height"] || ask_line_height
  puts
  rewrite_aozoraepub3_files(aozora_path, line_height)
  @global_setting["aozoraepub3dir"] = aozora_path
  @global_setting["line-height"] = line_height
  @global_setting.save
  puts "<bold><green>AozoraEpub3の設定を終了しました</green></bold>".termcolor
end

#normalize_aozoraepub3_path(input) ⇒ Object



186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# File 'lib/command/init.rb', line 186

def normalize_aozoraepub3_path(input)
  if Helper.os_windows?
    input.force_encoding(Encoding::Windows_31J).encode!(Encoding::UTF_8)
  end
  input.delete!("\"")
  path = File.expand_path(input)
  if input == ":keep"
    aozora_dir = @global_setting["aozoraepub3dir"]
    if aozora_dir && Narou.aozoraepub3_directory?(aozora_dir)
      return aozora_dir
    end
  elsif Narou.aozoraepub3_directory?(path)
    return path
  end
  nil
end

#opt_message(description) ⇒ Object



46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# File 'lib/command/init.rb', line 46

def opt_message(description)
  @opt.separator <<-MSG

#{description}
  Examples:
narou init
narou init -p /opt/narou/aozora    # AozoraEpub3 のフォルダを直接指定
narou init -p :keep                # 設定済みと同じ場所を指定(既に初期化済の場合)

# 行の高さの調整
narou init --line-height 1.8       # 行の高さを1.8emに設定(1.8文字分相当)
# 行の高さなので、行間を1文字分あけたいという場合は 1+1 で 2 を指定する
# (未設定のまま小説変換すると 1.6 で計算される)
# 参考情報:Kindle Voyage で文字サイズ4番目の大きさの場合、
#   1.6em : 1ページに15行
#   1.8em : 1ページに13行
# の表示行数になる

# 入力を省略したい場合、-p と -l を両方指定してやる必要あり
narou init -p /path/to/aozora -l 1.8

  Options:
  MSG
end

#rewrite_aozoraepub3_files(aozora_path, line_height) ⇒ Object



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
# File 'lib/command/init.rb', line 113

def rewrite_aozoraepub3_files(aozora_path, line_height)
  # chuki_tag.txt の書き換え
  custom_chuki_tag_path = File.join(Narou.preset_dir, "custom_chuki_tag.txt")
  chuki_tag_path = File.join(aozora_path, "chuki_tag.txt")
  custom_chuki_tag = File.read(custom_chuki_tag_path, mode: "r:BOM|UTF-8")
  chuki_tag = File.read(chuki_tag_path, mode: "r:BOM|UTF-8")
  embedded_mark = "### Narou.rb embedded custom chuki ###"
  if chuki_tag =~ /#{embedded_mark}/
    chuki_tag.gsub!(/#{embedded_mark}.+#{embedded_mark}/m, custom_chuki_tag)
  else
    chuki_tag << "\n" + custom_chuki_tag
  end
  File.write(chuki_tag_path, chuki_tag)
  puts "(次のファイルを書き換えました)"
  puts chuki_tag_path
  puts
  # ファイルコピー
  src = ["AozoraEpub3.ini", "vertical_font.css"]
  dst = ["AozoraEpub3.ini", "template/OPS/css_custom/vertical_font.css"]
  puts "(次のファイルをコピーor上書きしました)"
  src.size.times do |i|
    src_full_path = File.join(Narou.preset_dir, src[i])
    dst_full_path = File.join(aozora_path, dst[i])
    Helper.erb_copy(src_full_path, dst_full_path, binding)
    puts dst_full_path
  end
end