Module: Narou
Defined Under Namespace
Classes: API
Constant Summary collapse
- LOCAL_SETTING_DIR =
".narou"
- GLOBAL_SETTING_DIR =
".narousetting"
- AOZORAEPUB3_JAR_NAME =
"AozoraEpub3.jar"
- AOZORAEPUB3_DIR =
"./AozoraEpub3"
- PRESET_DIR =
"./preset"
- @@root_dir =
nil
- @@local_setting_dir =
nil
- @@global_setting_dir =
nil
- @@aozora_jar_path =
nil
- @@preset_dir =
nil
Instance Method Summary collapse
- #alias_to_id(target) ⇒ Object
- #already_init? ⇒ Boolean
- #aozoraepub3_directory?(path) ⇒ Boolean
- #create_aozoraepub3_jar_path(*paths) ⇒ Object
- #create_novel_filename(novel_data, ext = "") ⇒ Object
-
#get_aozoraepub3_path ⇒ Object
AozoraEpub3 の実行ファイル(.jar)のフルパス取得 検索順序 1.
- #get_device(device_name = nil) ⇒ Object
- #get_ebook_file_path(target, ext) ⇒ Object
- #get_global_setting_dir ⇒ Object
- #get_local_setting_dir ⇒ Object
- #get_mobi_path(target) ⇒ Object
- #get_preset_dir ⇒ Object
- #get_root_dir ⇒ Object
- #get_script_dir ⇒ Object
- #init ⇒ Object
- #novel_frozen?(target) ⇒ Boolean
Instance Method Details
#alias_to_id(target) ⇒ Object
79 80 81 82 83 84 85 |
# File 'lib/narou.rb', line 79 def alias_to_id(target) aliases = Inventory.load("alias", :local) if aliases[target] return aliases[target] end target end |
#already_init? ⇒ Boolean
68 69 70 |
# File 'lib/narou.rb', line 68 def already_init? !!get_root_dir end |
#aozoraepub3_directory?(path) ⇒ Boolean
102 103 104 |
# File 'lib/narou.rb', line 102 def aozoraepub3_directory?(path) File.exists?(create_aozoraepub3_jar_path(path)) end |
#create_aozoraepub3_jar_path(*paths) ⇒ Object
98 99 100 |
# File 'lib/narou.rb', line 98 def create_aozoraepub3_jar_path(*paths) File.(File.join(*paths, AOZORAEPUB3_JAR_NAME)) end |
#create_novel_filename(novel_data, ext = "") ⇒ Object
133 134 135 136 137 138 |
# File 'lib/narou.rb', line 133 def create_novel_filename(novel_data, ext = "") , title = %w(author title).map { |k| Helper.replace_filename_special_chars(novel_data[k], true) } "[#{}] #{title}#{ext}" end |
#get_aozoraepub3_path ⇒ Object
AozoraEpub3 の実行ファイル(.jar)のフルパス取得 検索順序
-
グローバルセッティング (global_setting aozoraepub3dir)
-
小説保存ディレクトリ(Narou.get_root_dir) 直下の AozoraEpub3
-
スクリプト保存ディレクトリ(Narou.get_script_dir) 直下の AozoraEpub3
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 |
# File 'lib/narou.rb', line 113 def get_aozoraepub3_path return @@aozora_jar_path if @@aozora_jar_path global_setting_aozora_path = Inventory.load("global_setting", :global)["aozoraepub3dir"] if global_setting_aozora_path aozora_jar_path = create_aozoraepub3_jar_path(global_setting_aozora_path) if File.exists?(aozora_jar_path) @@aozora_jar_path = aozora_jar_path return aozora_jar_path end end [Narou.get_root_dir, Narou.get_script_dir].each do |dir| aozora_jar_path = create_aozoraepub3_jar_path(dir, AOZORAEPUB3_DIR) if File.exists?(aozora_jar_path) @@aozora_jar_path = aozora_jar_path return aozora_jar_path end end nil end |
#get_device(device_name = nil) ⇒ Object
153 154 155 156 157 158 159 |
# File 'lib/narou.rb', line 153 def get_device(device_name = nil) device_name = Inventory.load("local_setting", :local)["device"] unless device_name if device_name && Device.exists?(device_name) return Device.create(device_name) end nil end |
#get_ebook_file_path(target, ext) ⇒ Object
144 145 146 147 148 149 |
# File 'lib/narou.rb', line 144 def get_ebook_file_path(target, ext) data = Downloader.get_data_by_target(target) return nil unless data dir = Downloader.get_novel_data_dir_by_target(target) File.join(dir, create_novel_filename(data, ext)) end |
#get_global_setting_dir ⇒ Object
55 56 57 58 59 60 61 62 |
# File 'lib/narou.rb', line 55 def get_global_setting_dir return @@global_setting_dir if @@global_setting_dir @@global_setting_dir = File.(File.join("~", GLOBAL_SETTING_DIR)) unless File.exists?(@@global_setting_dir) FileUtils.mkdir(@@global_setting_dir) end @@global_setting_dir end |
#get_local_setting_dir ⇒ Object
46 47 48 49 50 51 52 53 |
# File 'lib/narou.rb', line 46 def get_local_setting_dir return @@local_setting_dir if @@local_setting_dir root_dir = get_root_dir if root_dir @@local_setting_dir = File.join(root_dir, LOCAL_SETTING_DIR) end @@local_setting_dir end |
#get_mobi_path(target) ⇒ Object
140 141 142 |
# File 'lib/narou.rb', line 140 def get_mobi_path(target) get_ebook_file_path(target, ".mobi") end |
#get_preset_dir ⇒ Object
92 93 94 95 96 |
# File 'lib/narou.rb', line 92 def get_preset_dir return @@preset_dir if @@preset_dir @@preset_dir = File.(File.join(get_script_dir, PRESET_DIR)) @@preset_dir end |
#get_root_dir ⇒ Object
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/narou.rb', line 28 def get_root_dir return @@root_dir if @@root_dir path = File.(File.dirname(".")) drive_letter = "" if Helper.os_windows? path.gsub!(/^[a-z]:/i, "") drive_letter = $& end while path != "" if File.directory?("#{drive_letter}#{path}/#{LOCAL_SETTING_DIR}") @@root_dir = drive_letter + path break end path.gsub!(%r!/[^/]*$!, "") end @@root_dir end |
#get_script_dir ⇒ Object
64 65 66 |
# File 'lib/narou.rb', line 64 def get_script_dir @@script_dir ||= File.(File.join(File.dirname(__FILE__), "..")) end |
#init ⇒ Object
72 73 74 75 76 77 |
# File 'lib/narou.rb', line 72 def init return nil if already_init? FileUtils.mkdir(LOCAL_SETTING_DIR) puts LOCAL_SETTING_DIR + "/ を作成しました" Database.init end |
#novel_frozen?(target) ⇒ Boolean
87 88 89 90 |
# File 'lib/narou.rb', line 87 def novel_frozen?(target) id = Downloader.get_id_by_target(target) or return false Inventory.load("freeze", :local).include?(id) end |