Class: Lich::Util::Update::ScriptSync
- Inherits:
-
Object
- Object
- Lich::Util::Update::ScriptSync
- Defined in:
- documented/common/update/script_sync.rb
Overview
Handles the synchronization of script repositories.
This class is responsible for downloading scripts and data files from configured SCRIPT_REPOS and user-registered custom repositories, while skipping files that match local SHA1.
Instance Method Summary collapse
-
#filter_syncable_scripts(tree, config) ⇒ Array<Hash>
Filters the scripts that can be synchronized based on the configuration.
-
#initialize(client) ⇒ void
constructor
Initializes a new ScriptSync instance.
-
#sync_all_repos ⇒ void
Synchronizes all configured repositories.
-
#sync_repo(repo_key, force: false) ⇒ void
Synchronizes a specific repository based on the provided key.
-
#sync_subdir(tree, config, _subdir_name, subconfig) ⇒ Array<Array<String>>
Synchronizes a subdirectory within a repository.
Constructor Details
#initialize(client) ⇒ void
Initializes a new ScriptSync instance.
25 26 27 |
# File 'documented/common/update/script_sync.rb', line 25 def initialize(client) @client = client end |
Instance Method Details
#filter_syncable_scripts(tree, config) ⇒ Array<Hash>
Filters the scripts that can be synchronized based on the configuration.
155 156 157 158 159 160 161 162 163 164 165 166 167 |
# File 'documented/common/update/script_sync.rb', line 155 def filter_syncable_scripts(tree, config) candidates = tree.select { |e| e['path'] =~ config[:script_pattern] && e['type'] == 'blob' } case config[:tracking_mode] when :all candidates.reject { |e| File.basename(e['path']).include?('-setup') } when :explicit tracked = TrackedScripts.new.tracked_scripts(config) candidates.select { |e| tracked.include?(File.basename(e['path'])) } else candidates end end |
#sync_all_repos ⇒ void
This method returns an undefined value.
Synchronizes all configured repositories.
This method iterates through all SCRIPT_REPOS and custom repositories, syncing each one.
34 35 36 37 |
# File 'documented/common/update/script_sync.rb', line 34 def sync_all_repos SCRIPT_REPOS.each_key { |repo_key| sync_repo(repo_key) } CustomRepos.all.each_key { |repo_key| sync_repo(repo_key) } end |
#sync_repo(repo_key, force: false) ⇒ void
This method returns an undefined value.
Synchronizes a specific repository based on the provided key.
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 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
# File 'documented/common/update/script_sync.rb', line 44 def sync_repo(repo_key, force: false) config = SCRIPT_REPOS[repo_key] unless config # Check custom repos reg = CustomRepos.all[repo_key] if reg config = CustomRepos.build_config(repo_key, reg) else known = (SCRIPT_REPOS.keys + CustomRepos.all.keys).join(', ') respond "[lich5-update: Unknown repository '#{repo_key}'. Known: #{known}]" return end end if config[:game_filter] && XMLData.game !~ config[:game_filter] return end tree_data = @client.fetch_github_json(config[:api_url]) unless tree_data && tree_data['tree'] respond "[lich5-update: Failed to fetch tree for #{repo_key}.]" return end tree = tree_data['tree'] name = config[:display_name] || repo_key syncable = filter_syncable_scripts(tree, config) StatusReporter.respond_mono("[lich5-update: Syncing #{name} (#{syncable.length} scripts)...]") # Custom repos write to their per-repo subdir; built-in repos to SCRIPT_DIR dest = config[:dest_dir] || SCRIPT_DIR FileUtils.mkdir_p(dest) if config[:custom] local_shas = FileWriter.build_local_sha_map(dest) downloaded_scripts = [] failed_scripts = [] syncable.each do |entry| filename = File.basename(entry['path']) next if !force && local_shas[filename] == entry['sha'] content = @client.http_get("#{config[:raw_base_url]}/#{entry['path']}", auth: false) unless content failed_scripts << filename next end begin FileWriter.safe_write(File.join(dest, filename), content) downloaded_scripts << filename rescue StandardError => e respond "[lich5-update: write failed for #{filename}: #{e.}]" failed_scripts << filename end end downloaded_other = {} failed_other = {} (config[:subdirs] || {}).each do |subdir_name, subconfig| files, failures = sync_subdir(tree, config, subdir_name, subconfig) downloaded_other[subdir_name] = files unless files.empty? failed_other[subdir_name] = failures unless failures.empty? end StatusReporter.render_sync_summary(name, syncable.length, downloaded_scripts, downloaded_other, config[:subdirs]&.keys || [], failed_scripts, failed_other) end |
#sync_subdir(tree, config, _subdir_name, subconfig) ⇒ Array<Array<String>>
Synchronizes a subdirectory within a repository.
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 |
# File 'documented/common/update/script_sync.rb', line 117 def sync_subdir(tree, config, _subdir_name, subconfig) pattern = subconfig[:pattern] dest = subconfig[:dest] return [[], []] unless pattern && dest FileUtils.mkdir_p(dest) entries = tree.select { |e| e['path'] =~ pattern && e['type'] == 'blob' } return [[], []] if entries.empty? local_shas = FileWriter.build_local_sha_map(dest, subconfig[:glob] || '*.yaml') downloaded = [] failed = [] entries.each do |entry| filename = File.basename(entry['path']) next if local_shas[filename] == entry['sha'] content = @client.http_get("#{config[:raw_base_url]}/#{entry['path']}", auth: false) unless content failed << filename next end begin FileWriter.safe_write(File.join(dest, filename), content) downloaded << filename rescue StandardError => e respond "[lich5-update: write failed for #{filename}: #{e.}]" failed << filename end end [downloaded, failed] end |