-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
dependency.rb
125 lines (109 loc) · 3.53 KB
/
dependency.rb
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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# ------------------------------------- #
# Fast VM - Magento2 #
# #
# Author: zepgram #
# Git: https://github.com/zepgram/ #
# ------------------------------------- #
require 'getoptlong'
require 'fileutils'
## Get OS
module OS
def OS.is_windows
(/cygwin|mswin|mingw|bccwin|wince|emx/ =~ RUBY_PLATFORM) != nil
end
def OS.is_mac
(/darwin/ =~ RUBY_PLATFORM) != nil
end
def OS.is_linux
!OS.is_windows and not OS.is_mac
end
end
## Check install plugins
def check_plugins(dependencies)
skip_dependency_manager = false
ARGV.each_with_index do |value, index|
case value
when '--skip-dependency-manager'
skip_dependency_manager = true
end
end
if ['up', 'reload'].include?(ARGV[0]) && !skip_dependency_manager
installed_dependencies = []
puts "\033[0m" << "==> Checking dependencies..." << "\e[0m"
raw_output = `vagrant plugin list`
raw_list = raw_output.split("\n")
raw_list.each do |plugin|
if plugin.index("\e[0m") != nil
first = plugin.index("\e[0m") + 4
else
first = 0
end
installed_dependencies.push plugin.slice((first)..(plugin.index("(").to_i-1)).strip
end
dependencies_already_satisfied = true
dependencies.each_with_index do |dependency, index|
if not installed_dependencies.include? dependency
dependencies_already_satisfied = false
puts "\033[0m" << "==> Missing '#{dependency}'!" << "\e[0m"
if not system "vagrant plugin install #{dependency}"
puts "\n\033[0m" << "==> Could not install plugin '#{dependency}'. " << "\e[0m\033[41m" <<"Stopped." << "\e[0m"
exit -1
end
end
end
if dependencies_already_satisfied
puts "\033[0m" << "==> All dependencies are satisfied" << "\e[0m"
else
puts "\033[0m" << "==> Dependencies installed" << "\e[0m"
exec "vagrant " << "--skip-dependency-manager " << ARGV.join(" ")
exit
end
end
if ARGV.include?('--skip-dependency-manager')
ARGV.delete_at(ARGV.index('--skip-dependency-manager'))
end
end
## Force LF
def process_extra_file(config, file)
if File.file?(file)
config.vm.provision 'file', source: file, destination: '/home/vagrant/' + file, run: 'always'
end
end
## Define rsync exluded directories
def rsync_exclude
return [
'generated/code/*', 'var/page_cache/*', 'var/view_preprocessed/*',
'pub/static/adminhtml/*', 'pub/static/base/*', 'pub/static/frontend/*',
'dev', 'node_modules', 'phpserver', 'update'
]
end
## Tiggers
def triggers(config, mount, hostName, hostDirectory)
if mount == 'rsync'
rsync_back = false;
config.trigger.after :up, :reload, :provision do |trigger|
# Run rsync back
trigger.ruby do |env,machine|
if !File.exist?("#{hostDirectory}/app/etc/di.xml");
rsync_back = true;
end
end
# Add post-up message
trigger.info = config.vm.post_up_message
trigger.info+= '---------------------------------------------------------'
if rsync_back;
trigger.warn = "\r\nRsync-back duration: ~10min. Once rsync-back is complete, run 'vagrant reload'"
trigger.run = {inline: "vagrant rsync-back #{hostName}"}
else
# Run rsync auto
trigger.warn = "\r\nRsync-auto is running... Do not close this terminal."
trigger.run = {inline: "vagrant rsync-auto --rsync-chown #{hostName}"}
end
end
config.trigger.after :destroy do |trigger|
trigger.ruby do |env,machine|
File.delete("#{hostDirectory}/app/etc/di.xml") if File.file?("#{hostDirectory}/app/etc/di.xml")
end
end
end
end