Class: NovelInfo
- Inherits:
-
Object
- Object
- NovelInfo
- Defined in:
- lib/novelinfo.rb
Constant Summary collapse
- REFRESH_INTERVAL =
キャッシュを捨てて再取得するまでの時間(s)
10 * 60
- @@novel_info_parameters =
{}
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(setting, toc_source = nil) ⇒ NovelInfo
constructor
A new instance of NovelInfo.
- #parse_novel_info ⇒ Object
Constructor Details
#initialize(setting, toc_source = nil) ⇒ NovelInfo
Returns a new instance of NovelInfo.
19 20 21 22 23 24 |
# File 'lib/novelinfo.rb', line 19 def initialize(setting, toc_source = nil) @setting = setting @ncode = @setting["ncode"] @toc_source = toc_source @@novel_info_parameters[@setting["name"]] ||= {} end |
Class Method Details
.load(setting, toc_source = nil) ⇒ Object
14 15 16 17 |
# File 'lib/novelinfo.rb', line 14 def self.load(setting, toc_source = nil) info = new(setting, toc_source) info.parse_novel_info end |
Instance Method Details
#parse_novel_info ⇒ Object
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 |
# File 'lib/novelinfo.rb', line 26 def parse_novel_info info_url = @setting["novel_info_url"] or return nil result = @@novel_info_parameters[@setting["name"]][@ncode] ||= {} need_reload = false unless result.empty? # WEB UI でプロセスが常駐している間に小説情報(タイトルやあらすじ等)が # 変更される場合があるので、一定時間過ぎたら再取得をする必要がある if Time.now < result["last_load_time"] + REFRESH_INTERVAL return result # まだ一定時間過ぎていないのでキャッシュを返す end need_reload = true end of = "t-nt-ga-s-gf-nu-gl-w" request_output_parameters = of.split("-") info_source = "" if @setting["novel_info_url"] == @setting["toc_url"] && @toc_source && !need_reload # 目次ページのHTML(オプション)。目次と小説情報が同じページにある場合、 # 同じページを二度取得するのは非効率なので、使い回す info_source = @toc_source else = @setting["cookie"] || "" = ("Cookie" => , allow_redirections: :safe) open(info_url, ) do |fp| info_source = Helper.restor_entity(Helper.pretreatment_source(fp.read, @setting["encoding"])) raise Downloader::DownloaderNotFoundError if Downloader.(@setting, info_source) end end @setting.multi_match(info_source, *request_output_parameters) result["last_load_time"] = Time.now result["title"] = @setting["title"] novel_status = @setting["novel_type_string"][@setting["novel_type"]] || 1 result["end"] = novel_status == 3 result["novel_type"] = case novel_status when 1, 3 # 連載 1 when 2 # 短編 ga = @setting["general_all_no"] # ハーメルンで短編なのに連載形式のがあるため ga && ga > "1" ? 1 : 2 end story_html = HTML.new(@setting["story"]) story_html.strip_decoration_tag = true result["story"] = story_html.to_aozora result["writer"] = @setting["writer"] %w(general_firstup novelupdated_at general_lastup).each do |elm| result[elm] = Helper.date_string_to_time(@setting[elm]) end result["novelupdated_at"] ||= result["general_firstup"] result["general_lastup"] ||= result["novelupdated_at"] result end |