Class: Geminabox::Server

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

Class Method Summary collapse

Class Method Details

.allow_delete?Boolean

Returns:

  • (Boolean)


22
23
24
# File 'lib/geminabox/server.rb', line 22

def allow_delete?
  Geminabox.allow_delete
end

.allow_upload?Boolean

Returns:

  • (Boolean)


26
27
28
# File 'lib/geminabox/server.rb', line 26

def allow_upload?
  Geminabox.allow_upload
end

.dependency_cacheObject



65
66
67
# File 'lib/geminabox/server.rb', line 65

def dependency_cache
  @dependency_cache ||= Geminabox::DiskCache.new(File.join(Geminabox.data, "_cache"))
end

.disallow_replace?Boolean

Returns:

  • (Boolean)


18
19
20
# File 'lib/geminabox/server.rb', line 18

def disallow_replace?
  ! Geminabox.allow_replace
end

.file_classObject

This method provides a test hook, as stubbing File is painful…



76
77
78
# File 'lib/geminabox/server.rb', line 76

def file_class
  @file_class ||= File
end

.file_class=(klass) ⇒ Object



80
81
82
# File 'lib/geminabox/server.rb', line 80

def file_class=(klass)
  @file_class = klass
end

.fixup_bundler_rubygems!Object



30
31
32
33
34
# File 'lib/geminabox/server.rb', line 30

def fixup_bundler_rubygems!
  return if @post_reset_hook_applied
  Gem.post_reset{ Gem::Specification.all = nil } if defined? Bundler and Gem.respond_to? :post_reset
  @post_reset_hook_applied = true
end

.indexerObject



61
62
63
# File 'lib/geminabox/server.rb', line 61

def indexer
  Gem::Indexer.new(Geminabox.data, :build_legacy => Geminabox.build_legacy)
end

.reindex(force_rebuild = false) ⇒ Object



36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# File 'lib/geminabox/server.rb', line 36

def reindex(force_rebuild = false)
  fixup_bundler_rubygems!
  force_rebuild = true unless Geminabox.incremental_updates
  if force_rebuild
    indexer.generate_index
    dependency_cache.flush
  else
    begin
      require 'geminabox/indexer'
      updated_gemspecs = Geminabox::Indexer.updated_gemspecs(indexer)
      return if updated_gemspecs.empty?
      Geminabox::Indexer.patch_rubygems_update_index_pre_1_8_25(indexer)
      indexer.update_index
      updated_gemspecs.each { |gem| dependency_cache.flush_key(gem.name) }
    rescue Errno::ENOENT
      with_rlock { reindex(:force_rebuild) }
    rescue => e
      puts "#{e.class}:#{e.message}"
      puts e.backtrace.join("\n")
      with_rlock { reindex(:force_rebuild) }
    end
  end
rescue Gem::SystemExitException
end

.with_rlock(&block) ⇒ Object



69
70
71
72
73
# File 'lib/geminabox/server.rb', line 69

def with_rlock(&block)
  file_class.open(Geminabox.lockfile, File::RDWR | File::CREAT) do |f|
    ReentrantFlock.synchronize(f, File::LOCK_EX | File::LOCK_NB, &block)
  end
end