blob: 06db3b48348dcdca48864aa47ed622c79b00c873 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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
|
#
# The Leapfile is the bootstrap configuration file for a LEAP provider.
#
# It is akin to a Gemfile, Rakefile, or Capfile (e.g. it is a ruby file that gets eval'ed)
#
module LeapCli
def self.leapfile
@leapfile ||= Leapfile.new
end
class Leapfile
attr_accessor :platform_directory_path
attr_accessor :provider_directory_path
attr_accessor :custom_vagrant_vm_line
attr_accessor :leap_version
attr_accessor :log
attr_accessor :vagrant_network
attr_accessor :platform_branch
attr_accessor :allow_production_deploy
def initialize
@vagrant_network = '10.5.5.0/24'
end
def load
directory = File.expand_path(find_in_directory_tree('Leapfile'))
if directory == '/'
return nil
else
@provider_directory_path = directory
read_settings(directory + '/Leapfile')
read_settings(ENV['HOME'] + '/.leaprc')
@platform_directory_path = File.expand_path(@platform_directory_path || '../leap_platform', @provider_directory_path)
if @allow_production_deploy.nil?
# by default, only allow production deploys from 'master' or if not a git repo
@allow_production_deploy = !LeapCli::Util.is_git_directory?(@provider_directory_path) ||
LeapCli::Util.current_git_branch(@provider_directory_path) == 'master'
end
return true
end
end
private
def read_settings(file)
if File.exists? file
Util::log 2, :read, file
instance_eval(File.read(file), file)
validate(file)
end
end
def find_in_directory_tree(filename)
search_dir = Dir.pwd
while search_dir != "/"
Dir.foreach(search_dir) do |f|
return search_dir if f == filename
end
search_dir = File.dirname(search_dir)
end
return search_dir
end
PRIVATE_IP_RANGES = /(^127\.0\.0\.1)|(^10\.)|(^172\.1[6-9]\.)|(^172\.2[0-9]\.)|(^172\.3[0-1]\.)|(^192\.168\.)/
def validate(file)
Util::assert! vagrant_network =~ PRIVATE_IP_RANGES do
Util::log 0, :error, "in #{file}: vagrant_network is not a local private network"
end
end
end
end
|