Module: TxCatcher::Initializer

Defined in:
lib/txcatcher/initializer.rb

Defined Under Namespace

Modules: ConfigFile

Constant Summary collapse

GEM_ROOT =
File.expand_path('../..', File.dirname(__FILE__))
MIGRATIONS_ROOT =
GEM_ROOT + '/db/migrations/'

Instance Method Summary collapse

Instance Method Details

#add_route(path, &block) ⇒ Object



59
60
61
# File 'lib/txcatcher/initializer.rb', line 59

def add_route(path, &block)
  @routes[path] = block
end

#connect_to_dbObject



95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# File 'lib/txcatcher/initializer.rb', line 95

def connect_to_db

  # symbolize keys for convenience
  db_config = TxCatcher::Config.db.keys_to_sym

  db_name = if db_config[:adapter] == 'sqlite'
    if db_config[:db_path].start_with?("/")
      db_config[:db_path]
    else
      "#{File.dirname(ConfigFile.path)}/#{db_config[:db_path]}"
    end
  else
    db_config[:db_name]
  end

  TxCatcher.db_connection = Sequel.connect(
    "#{db_config[:adapter]}://"                                                   +
    "#{db_config[:user]}#{(":" if db_config[:user])}"                             +
    "#{db_config[:password]}#{("@" if db_config[:user] || db_config[:password])}" +
    "#{db_config[:host]}#{(":" if db_config[:port])}"                             +
    "#{db_config[:port]}#{("/" if db_config[:host] || db_config[:port])}"         +
    "#{db_name}"
  )
end

#connect_to_rpc_nodeObject

Connects to all bitcoin daemons listed in config



121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
# File 'lib/txcatcher/initializer.rb', line 121

def connect_to_rpc_node
  n = TxCatcher::Config.rpcnode
  print "Checking #{n["name"]} RPC connection... "
  TxCatcher.rpc_node = BitcoinRPC.new("http://#{n["user"]}:#{n["password"]}@#{n["host"]}:#{n["port"]}")
  
  i = 0 # try to connect to RPC 100 times before exiting with error
  until TxCatcher.current_block_height
    begin
      TxCatcher.current_block_height = TxCatcher.rpc_node.getblockcount
    rescue Errno::ECONNREFUSED, BitcoinRPC::JSONRPCError => e
      if i > 100
        print "ERROR, cannot connect using connection data #{n["name"]}\n"
        exit
      else
        print "Bitcoin RPC connection error: #{e.to_s}; will try again in 1 sec...\n"
        i += 1
        sleep 1
      end
    end
  end
  print "current block height: #{TxCatcher.current_block_height}\n"
end

#create_config_filesObject



63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# File 'lib/txcatcher/initializer.rb', line 63

def create_config_files
  FileUtils.mkdir_p(ConfigFile.path) unless File.exist?(ConfigFile.path)

  unless File.exist?(ConfigFile.path)
    puts "\e[1;33mWARNING!\e[0m \e[33mNo file #{ConfigFile.path} was found. Created a sample one for you.\e[0m"
    puts "You should edit it and try starting the server again.\n"

    FileUtils.cp(GEM_ROOT + '/templates/config.yml', ConfigFile.path)
    config_contents = File.read(ConfigFile.path)
    config_contents.sub!("$home", File.expand_path('~'))
    File.open(ConfigFile.path, "w") { |f| f.write(config_contents) }
    puts "Shutting down now.\n\n"
    exit
  end

end

#initialize_sentryObject



155
156
157
158
159
# File 'lib/txcatcher/initializer.rb', line 155

def initialize_sentry
  Raven.configure do |config|
    config.dsn = Config["sentry_dsn"]
  end if Config["sentry_dsn"]
end

#migrations_pending?Boolean

Returns:

  • (Boolean)


151
152
153
# File 'lib/txcatcher/initializer.rb', line 151

def migrations_pending?
  !Sequel::Migrator.is_current?(TxCatcher.db_connection, MIGRATIONS_ROOT)
end

#prepareObject



48
49
50
51
52
53
54
55
56
57
# File 'lib/txcatcher/initializer.rb', line 48

def prepare
  ConfigFile.set!
  initialize_sentry
  create_config_files
  read_config_file
  connect_to_db
  connect_to_rpc_node
  run_migrations if migrations_pending?
  set_goliath_args
end

#read_config_fileObject



80
81
82
83
84
# File 'lib/txcatcher/initializer.rb', line 80

def read_config_file
  YAML.load_file(ConfigFile.path).each do |k,v|
    TxCatcher::Config.send(k + '=', v)
  end
end

#run_migrationsObject



144
145
146
147
148
149
# File 'lib/txcatcher/initializer.rb', line 144

def run_migrations
  Sequel.extension :migration
  print "\nPending migrations for the database detected. Migrating..."
  Sequel::Migrator.run(TxCatcher.db_connection, MIGRATIONS_ROOT)
  print "done\n\n"
end

#set_goliath_argsObject



86
87
88
89
90
91
92
93
# File 'lib/txcatcher/initializer.rb', line 86

def set_goliath_args
  # Setting default port to 9498
  unless ARGV.include?("-p")
    ARGV.push "-p"
    Config.server_port ? ARGV.push(Config.server_port.to_s) : ARGV.push("9498")
    Config.daemonize   ? ARGV.push("-d") : ""
  end
end