Class: Gemirro::Server

Inherits:
Sinatra::Base
  • Object
show all
Defined in:
lib/gemirro/server.rb

Overview

Launch Sinatra server to easily download gems.

Constant Summary collapse

URI_REGEXP =

rubocop:disable Metrics/LineLength

/^(.*)-(\d+(?:\.\d+){1,4}.*?)(?:-(x86-(?:(?:mswin|mingw)(?:32|64)).*?|java))?\.(gem(?:spec\.rz)?)$/
GEMSPEC_TYPE =
'gemspec.rz'.freeze
GEM_TYPE =
'gem'.freeze

Instance Method Summary collapse

Instance Method Details

#*nil

Try to get all request and download files if files aren’t found.

Returns:

  • (nil)


111
112
113
114
115
116
117
118
119
120
# File 'lib/gemirro/server.rb', line 111

get('*') do |path|
  resource = "#{settings.public_folder}#{path}"

  # Try to download gem
  fetch_gem(resource) unless File.exist?(resource)
  # If not found again, return a 404
  return not_found unless File.exist?(resource)

  send_file(resource)
end

#/nil

Display home page containing the list of gems already downloaded on the server

Returns:

  • (nil)


81
82
83
# File 'lib/gemirro/server.rb', line 81

get('/') do
  erb(:index, {}, gems: Utils.gems_collection)
end

#fetch_gem(resource) ⇒ Indexer

Try to fetch gem and download its if it’s possible, and build and install indicies.

Parameters:

  • resource (String)

Returns:



129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
# File 'lib/gemirro/server.rb', line 129

def fetch_gem(resource)
  return unless Utils.configuration.fetch_gem
  name = File.basename(resource)
  result = name.match(URI_REGEXP)
  return unless result

  gem_name, gem_version, gem_platform, gem_type = result.captures
  return unless gem_name && gem_version

  begin
    gem = Utils.stored_gem(gem_name, gem_version, gem_platform)
    gem.gemspec = true if gem_type == GEMSPEC_TYPE

    # rubocop:disable Metrics/LineLength
    return if Utils.gems_fetcher.gem_exists?(gem.filename(gem_version)) && gem_type == GEM_TYPE
    return if Utils.gems_fetcher.gemspec_exists?(gem.gemspec_filename(gem_version)) && gem_type == GEMSPEC_TYPE
    # rubocop:enable Metrics/LineLength

    Utils.logger
         .info("Try to download #{gem_name} with version #{gem_version}")
    Utils.gems_fetcher.source.gems.clear
    Utils.gems_fetcher.source.gems.push(gem)
    Utils.gems_fetcher.fetch

    update_indexes if Utils.configuration.update_on_fetch
  rescue StandardError => e
    Utils.logger.error(e)
  end
end

#gem_dependencies(gem_name) ⇒ Array

List of versions and dependencies of each version from a gem name.

Returns:

  • (Array)


209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
# File 'lib/gemirro/server.rb', line 209

def gem_dependencies(gem_name)
  Utils.cache.cache(gem_name) do
    gems = Utils.gems_collection(false)
    gem_collection = gems.find_by_name(gem_name)

    return '' if gem_collection.nil?

    gem_collection = Parallel.map(gem_collection, in_threads: 4) do |gem|
      [gem, spec_for(gem.name, gem.number, gem.platform)]
    end
    gem_collection.reject! do |_, spec|
      spec.nil?
    end

    Parallel.map(gem_collection, in_threads: 4) do |gem, spec|
      dependencies = spec.dependencies.select do |d|
        d.type == :runtime
      end

      dependencies = Parallel.map(dependencies, in_threads: 4) do |d|
        [d.name.is_a?(Array) ? d.name.first : d.name, d.requirement.to_s]
      end

      {
        name: gem.name,
        number: gem.number,
        platform: gem.platform,
        dependencies: dependencies
      }
    end
  end
end

#query_gemsArray

Return all gems pass to query

Returns:

  • (Array)


183
184
185
# File 'lib/gemirro/server.rb', line 183

def query_gems
  params[:gems].to_s.split(',')
end

#query_gems_listArray

Return gems list from query params

Returns:

  • (Array)


192
193
194
195
196
197
198
199
200
201
# File 'lib/gemirro/server.rb', line 192

def query_gems_list
  Utils.gems_collection(false) # load collection
  gems = Parallel.map(query_gems, in_threads: 4) do |query_gem|
    gem_dependencies(query_gem)
  end

  gems.flatten!
  gems.reject!(&:empty?)
  gems
end

#update_indexesIndexer

Update indexes files

Returns:



164
165
166
167
168
169
170
171
172
173
174
175
176
# File 'lib/gemirro/server.rb', line 164

def update_indexes
  indexer = Gemirro::Indexer.new(Utils.configuration.destination)
  indexer.only_origin = true
  indexer.ui = ::Gem::SilentUI.new

  Utils.logger.info('Generating indexes')
  indexer.update_index
  indexer.updated_gems.each do |gem|
    Utils.cache.flush_key(File.basename(gem))
  end
rescue SystemExit => e
  Utils.logger.info(e.message)
end