4 Copyright 2008 Grégory Burri
6 This file is part of Euphorik.
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.
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.
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/>.
23 # - création de unit tests (voir eunit) et validation avant la mise en prod
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
35 # voir : http://net-ssh.rubyforge.org/ssh/v2/api/index.html
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
42 def initialize(dossier
)
47 verifierRecur(@dossier)
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
)
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}")
71 # Classe de gestion de la version
73 # @param dossier la racine du site (par exemple "/var/www/euphorik")
74 def initialize(dossier
)
76 File
.open(@dossier +
'/VERSION') {|file
|
77 @version = file
.readline()
79 # les fichiers HTML dans lesquels mettre à jour la version
80 @fichiers = ['/pages/about.html']
81 @balise = /(<span.+?class.*?=.*?"version".*?>).*?(<\/span
>)/
84 # met à jour la version dans les fichiers @fichiers
86 @fichiers.each
{|fichier
|
87 fichier
= @dossier + fichier
88 lines
= IO
.readlines(fichier
)
89 File
.open(fichier
, 'w') {|io
|
91 io
.write(l
.sub(@balise){|m
| $1 +
@version +
$2})
98 # Permet la mise en production et preproduction
101 @
@rep_remote = '/var/www/euphorik'
102 @
@host = 'euphorik.ch'
104 def initialize(racine
)
108 # L'emplacement ou sont copié les fichiers
109 # A définir avant la mise en prod
111 plop
= uri
.split(':')
116 # Effectue la mise en production.
122 # Effectue la mise en préproduction.
130 compiler_partie_serveuse()
131 creer_repertoire_bd()
132 copier_partie_statique()
134 copie_modules_serveurs()
135 set_droits_fichiers()
145 system("rsync tools/yaws.conf #{@uri}:#{@rep}/tools")
146 system("rsync tools/start_yaws.sh #{@uri}:#{@rep}/tools")
151 system("ssh #{@uri} \"cd #{@rep} && #{commande}\"")
156 exec("test -d #{rep} || mkdir #{rep}")
161 def compiler_partie_serveuse
164 if $
?.exitstatus !
= 0
165 puts
"Echec de compilation de la partie serveuse"
171 def creer_repertoire_var
172 # création du repertoire BD
174 creer_rep('var/images')
175 creer_rep('var/BD/backups')
176 exec("chmod -R g+w var
")
179 # css, images, html, etc..
180 def copier_partie_statique
181 uri = "#{@uri}:#{@rep}"
182 system("awk
'$0 !~
/prod=\"delete\"/' index.yaws | ssh #{@uri} \" cat > #{@rep}/index.yaws\"")
183 system("rsync favicon.ico #{uri}")
184 system("rsync --delete -r styles #{uri}")
185 system("rsync --delete -r pages #{uri}")
186 system("rsync --delete -r --exclude 'autres
' img #{uri}")
189 # minification et package des fichiers js dans euphorik.js
193 # jquery.js et euphorik.js doivent se trouve en premier
194 fichiers = ['js
/libs
/jquery
.js
', 'js
/euphorik
.js
'].concat(get_fichiers_js(rep_js))
195 commande_cat = "cat "
197 commande_cat += f +
" "
199 #copie des js concaténés avec minification
200 system("#{commande_cat} | tools/jsmin.rb | ssh #{@uri} \"cd #{@rep} && cat > #{rep_js}/euphorik.js\"")
203 #renvoie une liste des fichiers js
204 def get_fichiers_js(rep
)
206 Dir
.entries(rep
).each
{|fichier
|
207 if fichier
[0..0] !
= '.' and fichier !
= 'euphorik.js' and fichier !
= 'jquery.js'
208 fichier
= rep +
"/" + fichier
209 if File
.directory
?(fichier
)
210 fichiers
.concat(get_fichiers_js(fichier
))
219 def copie_modules_serveurs
220 # copie des modules erlang
222 system("rsync -r --exclude 'euphorik_test.beam' modules/ebin #{@uri}:#{@rep}/modules")
223 system("rsync -r modules/include #{@uri}:#{@rep}/modules")
226 def set_droits_fichiers
227 # attribution des droits
228 exec("chmod -R g+rx
.")
232 # execution du script de mise à jour
233 system("cat tools
/mise_en_prod
.erl
| ssh
#{@uri} \"cat
> /tmp
/mise_en_prod
.erl
\"")
234 system("ssh
#{@uri} \"chmod u+x
/tmp/mise_en_prod
.erl
; /tmp/mise_en_prod
.erl
; rm
/tmp/mise_en_prod
.erl
\"")
239 # Traite la ligne de commande lorsque tools.rb est utilisé comme tel
243 @miseEnProd = MiseEnProd.new(".")
244 @verifJS = VerifJS.new("js
")
245 @version = Version.new(".")
257 @miseEnProd.uri = "gburri
@euphorik.ch
:/var/www
/euphorik
"
258 @miseEnProd.miseEnProd()
261 @miseEnProd.uri = "gburri
@euphorik.ch
:/var/www
/euphorik_preprod
"
262 @miseEnProd.miseEnPreProd()
270 Net::SSH.start('euphorik.ch', 'gburri') {|ssh|
271 output = ssh.exec!("hostname")
273 ssh
.exec!
("ls -l /tmp"){|channel
, stream
, data|
274 stdout << data if stream
== :stdout
282 puts
"Usage : tools.rb (prod | pre | js | version)\n" +
283 " prod : Mise en production\n" +
284 " pre : Mise en préproduction, copie les données en production\n" +
285 " js : vérification des fichiers JavaScript\n" +
286 " version : met à jour la version à partir du fichier VERSION"