Class: Command::Update::GeneralLastupUpdater
- Inherits:
-
Object
- Object
- Command::Update::GeneralLastupUpdater
- Defined in:
- lib/command/update/general_lastup_updater.rb
Instance Method Summary collapse
-
#initialize(options) ⇒ GeneralLastupUpdater
constructor
A new instance of GeneralLastupUpdater.
- #prepare ⇒ Object
- #save ⇒ Object
- #update_narou_novels ⇒ Object
- #update_other_novels ⇒ Object
Constructor Details
#initialize(options) ⇒ GeneralLastupUpdater
Returns a new instance of GeneralLastupUpdater.
11 12 13 14 15 16 17 |
# File 'lib/command/update/general_lastup_updater.rb', line 11 def initialize() @options = @database = Database.instance @narou_novels = Hash.new { |hash, key| hash[key] = [] } @other_novels = [] prepare end |
Instance Method Details
#prepare ⇒ Object
23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/command/update/general_lastup_updater.rb', line 23 def prepare @database.each_key do |id| next if Narou.novel_frozen?(id) setting = Downloader.get_sitesetting_by_target(id) if setting["narou_api_url"] @narou_novels[setting["narou_api_url"]] << setting["ncode"] else @other_novels << id end setting.clear end end |
#save ⇒ Object
19 20 21 |
# File 'lib/command/update/general_lastup_updater.rb', line 19 def save @database.save_database end |
#update_narou_novels ⇒ Object
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/command/update/general_lastup_updater.rb', line 36 def update_narou_novels @narou_novels.each do |api_url, ncodes| api = Narou::API.new(api_url: api_url, ncodes: ncodes, of: "nu-gl-l") api.request.each do |result| ncode = result["ncode"] data = Downloader.get_data_by_target(ncode) last_check_date = data["last_check_date"] || data["last_update"] if result["novelupdated_at"] > last_check_date data["novelupdated_at"] = result["novelupdated_at"] data["general_lastup"] = result["general_lastup"] data["length"] = result["length"] = data["tags"] ||= [] << Narou::MODIFIED_TAG unless .include?(Narou::MODIFIED_TAG) end data["last_check_date"] = Time.now end @other_novels += api.private_novels end end |
#update_other_novels ⇒ Object
56 57 58 59 60 61 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 87 |
# File 'lib/command/update/general_lastup_updater.rb', line 56 def update_other_novels = ProgressBar.new(@other_novels.size - 1) interval = Interval.new(@options["interval"]) @other_novels.each_with_index do |id, index| .output(index) interval.wait begin downloader = Downloader.new(id) next unless downloader.get_latest_table_of_contents(through_error: true) dates = { "novelupdated_at" => downloader.get_novelupdated_at, "general_lastup" => downloader.get_general_lastup, "length" => downloader.novel_length } rescue OpenURI::HTTPError, Errno::ECONNRESET next end data = @database[id] data.merge!(dates) last_check_date = data["last_check_date"] || data["last_update"] novelupdated_at = data["novelupdated_at"] if novelupdated_at && novelupdated_at > last_check_date = @database[id]["tags"] ||= [] << Narou::MODIFIED_TAG unless .include?(Narou::MODIFIED_TAG) end data["last_check_date"] = Time.now downloader.setting.clear end ensure .clear if end |