MOD déplacement du dossier 'BD' dans le dossier 'var'
[euphorik.git] / tools / tools.rb
1 #!/usr/bin/ruby
2 # coding: utf-8
3 =begin
4 Copyright 2008 Grégory Burri
5
6 This file is part of Euphorik.
7
8 Euphorik is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
12
13 Euphorik is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with Euphorik. If not, see <http://www.gnu.org/licenses/>.
20 =end
21
22 # TODO :
23 # - création de unit tests (voir eunit) et validation avant la mise en prod
24
25 # Met à disposition plusieurs outils (classes), tel que :
26 # - Vérification du code javascript
27 # - Mise à jour du numéro de version à partir du fichier VERSION
28 # - Mise en production et en preproduction
29 # tools.rb peut s'utiliser à la ligne de commande, exemples :
30 # * Mise en production :
31 # ./tools.rb prod gburri@euphorik.ch:/var/www/euphorik
32 # * Mise en préproduction, l'emplacement de production peut être indiqué pour copier la base
33 # ./tools.rb pre gburri@euphorik.ch:/var/www/euphorik_preprod gburri@euphorik.ch:/var/www/euphorik
34
35 # voir : http://net-ssh.rubyforge.org/ssh/v2/api/index.html
36 # require 'net/ssh'
37
38 # Classe permettant la vérification du code JS pas jslint.
39 # Passe en revu chaque fichier js de manière récursive à partir d'un dossier de départ.s
40 class VerifJS
41
42 def initialize(dossier)
43 @dossier = dossier
44 end
45
46 def verifier
47 verifierRecur(@dossier)
48 end
49
50 def verifierRecur(dossier)
51 Dir.foreach(dossier){|fichier|
52 if fichier != '.' and fichier != '..' and File.directory?(fichier) and fichier != 'dirs'
53 if not verifierRecur(dossier + '/' + fichier)
54 return false
55 end
56 elsif fichier[-3, 3] == '.js'
57 puts "== Vérification de #{dossier}/#{fichier} =="
58 # TODO : mettre un if pour la version windows si dessous
59 #system("java org.mozilla.javascript.tools.shell.Main jslint.js #{dossier}/#{fichier}")
60 system("rhino ./tools/jslint.js #{dossier}/#{fichier}")
61 # puts $?.exitstatus
62 if $?.exitstatus > 0
63 return false
64 end
65 end
66 }
67 return true
68 end
69 end
70
71 # Classe de gestion de la version
72 class Version
73 # @param dossier la racine du site (par exemple "/var/www/euphorik")
74 def initialize(dossier)
75 @dossier = dossier
76 File.open(@dossier + '/VERSION') {|file|
77 @version = file.readline()
78 }
79 # les fichiers HTML dans lesquels mettre à jour la version
80 @fichiers = ['/pages/about.html']
81 @balise = /(<span.+?class.*?=.*?"version".*?>).*?(<\/span>)/
82 end
83
84 # met à jour la version dans les fichiers @fichiers
85 def maj
86 @fichiers.each{|fichier|
87 fichier = @dossier + fichier
88 lines = IO.readlines(fichier)
89 File.open(fichier, 'w') {|io|
90 lines.each{|l|
91 io.write(l.sub(@balise){|m| $1 + @version + $2})
92 }
93 }
94 }
95 end
96 end
97
98 # Permet la mise en production et preproduction
99 class MiseEnProd
100 # obsolète !
101 @@rep_remote = '/var/www/euphorik'
102 @@host = 'euphorik.ch'
103
104 def initialize(racine)
105 Dir.chdir(racine)
106 end
107
108 # L'emplacement ou sont copié les fichiers
109 # A définir avant la mise en prod
110 def uri=(uri)
111 plop = uri.split(':')
112 @uri = plop[0]
113 @rep = plop[1]
114 end
115
116 # Effectue la mise en production.
117 def miseEnProd
118 copierFichiers()
119 maj()
120 end
121
122 # Effectue la mise en préproduction.
123 def miseEnPreProd
124 copierFichiers()
125 copierVAR()
126 lancerYaws()
127 end
128
129 def copierFichiers
130 compiler_partie_serveuse()
131 creer_repertoire_bd()
132 copier_partie_statique()
133 pack_js()
134 copie_modules_serveurs()
135 set_droits_fichiers()
136 end
137
138 def copierVar
139 #TODO
140 end
141
142 def lancerYaws
143 creer_rep("tools")
144 system("rsync tools/yaws.conf #{@uri}:#{@rep}/tools")
145 system("rsync tools/start_yaws.sh #{@uri}:#{@rep}/tools")
146 # TODO
147 end
148
149 def exec(commande)
150 system("ssh #{@uri} \"cd #{@rep} && #{commande}\"")
151 end
152
153 def creer_rep(rep)
154 begin
155 exec("test -d #{rep} || mkdir #{rep}")
156 rescue
157 end
158 end
159
160 def compiler_partie_serveuse
161 Dir.chdir('modules')
162 system("make")
163 if $?.exitstatus != 0
164 puts "Echec de compilation de la partie serveuse"
165 exit 1
166 end
167 Dir.chdir('..')
168 end
169
170 def creer_repertoire_var
171 # création du repertoire BD
172 creer_rep('var')
173 creer_rep('var/images')
174 creer_rep('var/BD/backups')
175 exec("chmod -R g+w var")
176 end
177
178 # css, images, html, etc..
179 def copier_partie_statique
180 uri = "#{@uri}:#{@rep}"
181 system("awk '$0 !~ /prod=\"delete\"/' index.yaws | ssh #{@uri} \" cat > #{@rep}/index.yaws\"")
182 system("rsync favicon.ico #{uri}")
183 system("rsync --delete -r styles #{uri}")
184 system("rsync --delete -r pages #{uri}")
185 system("rsync --delete -r --exclude 'autres' img #{uri}")
186 end
187
188 # minification et package des fichiers js dans euphorik.js
189 def pack_js
190 rep_js = 'js'
191 creer_rep(rep_js)
192 # jquery.js et euphorik.js doivent se trouve en premier
193 fichiers = ['js/libs/jquery.js', 'js/euphorik.js'].concat(get_fichiers_js(rep_js))
194 commande_cat = "cat "
195 fichiers.each{|f|
196 commande_cat += f + " "
197 }
198 #copie des js concaténés avec minification
199 system("#{commande_cat} | tools/jsmin.rb | ssh #{@uri} \"cd #{@rep} && cat > #{rep_js}/euphorik.js\"")
200 end
201
202 #renvoie une liste des fichiers js
203 def get_fichiers_js(rep)
204 fichiers = []
205 Dir.entries(rep).each{|fichier|
206 if fichier[0..0] != '.' and fichier != 'euphorik.js' and fichier != 'jquery.js'
207 fichier = rep + "/" + fichier
208 if File.directory?(fichier)
209 fichiers.concat(get_fichiers_js(fichier))
210 else
211 fichiers << fichier
212 end
213 end
214 }
215 return fichiers
216 end
217
218 def copie_modules_serveurs
219 # copie des modules erlang
220 creer_rep('modules')
221 system("rsync -r --exclude 'euphorik_test.beam' modules/ebin #{@uri}:#{@rep}/modules")
222 system("rsync -r modules/include #{@uri}:#{@rep}/modules")
223 end
224
225 def set_droits_fichiers
226 # attribution des droits
227 exec("chmod -R g+rx .")
228 end
229
230 def maj
231 # execution du script de mise à jour
232 system("cat tools/mise_en_prod.erl | ssh #{@uri} \"cat > /tmp/mise_en_prod.erl\"")
233 system("ssh #{@uri} \"chmod u+x /tmp/mise_en_prod.erl; /tmp/mise_en_prod.erl; rm /tmp/mise_en_prod.erl\"")
234 end
235 end
236
237
238 # Traite la ligne de commande lorsque tools.rb est utilisé comme tel
239 class Commande
240 def initialize
241 Dir.chdir("..")
242 @miseEnProd = MiseEnProd.new(".")
243 @verifJS = VerifJS.new("js")
244 @version = Version.new(".")
245 end
246
247 def traiter
248 if ARGV.size == 0
249 afficherUsage
250 return
251 end
252
253 case ARGV[0]
254 when 'prod'
255 @version.maj()
256 @miseEnProd.uri = "gburri@euphorik.ch:/var/www/euphorik"
257 @miseEnProd.miseEnProd()
258 when 'pre'
259 @version.maj()
260 @miseEnProd.uri = "gburri@euphorik.ch:/var/www/euphorik_preprod"
261 @miseEnProd.miseEnPreProd()
262 when 'js'
263 @verifJS.verifier()
264 when 'version'
265 @version.maj()
266 end
267
268 =begin
269 Net::SSH.start('euphorik.ch', 'gburri') {|ssh|
270 output = ssh.exec!("hostname")
271 stdout = ""
272 ssh.exec!("ls -l /tmp"){|channel, stream, data|
273 stdout << data if stream == :stdout
274 }
275 puts stdout
276 }
277 =end
278 end
279
280 def afficherUsage
281 puts "Usage : tools.rb (prod | pre | js | version)\n" +
282 " prod : Mise en production\n" +
283 " preprod : Mise en préproduction, copie les données en production\n" +
284 " js : vérification des fichiers JavaScript\n" +
285 " version : met à jour la version à partir du fichier VERSION"
286 end
287 end
288
289 cl = Commande.new
290 cl.traiter()