127e3f35b8fcdb3cdfae77c02d2e4c7913a03022
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 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'
105 def initialize(prod_uri
, preprod_uri
)
107 @preprod = preprod_uri
110 # Effectue la mise en production.
114 # Effectue la mise en préproduction.
118 def creer_remote_rep(rep
)
120 `ssh #{@@host} "mkdir #{@@rep_remote}/#{rep}"`
125 def compiler_partie_serveuse
126 Dir
.chdir(@
@rep_remote +
'/modules')
128 if $
?.exitstatus !
= 0
129 puts
"Echec de compilation de la partie serveuse"
135 def creer_repertoire_bd
136 # création du repertoire BD
137 creer_remote_rep('BD')
138 creer_remote_rep('BD/backup')
139 `ssh #{@@host} "chmod g+w
#{@@rep_remote}/BD
"`
142 # css, images, html, etc..
143 def copier_partie_statique
144 print `rsync #{$opt_rsync} index.yaws #{$host}:#{$rep_remote}`
145 print `rsync #{$opt_rsync} favicon.ico #{$host}:#{$rep_remote}`
146 print `rsync #{$opt_rsync} -r css #{$host}:#{$rep_remote}`
147 print `rsync #{$opt_rsync} -r pages #{$host}:#{$rep_remote}`
148 print `rsync #{$opt_rsync} -r --exclude 'autres' img #{$host}:#{$rep_remote}`
151 # minification et package des fichiers js dans euphorik.js
153 # copie des js avec minification
155 creer_remote_rep(rep_js)
156 Dir.entries(rep_js).each{|fichier|
157 if fichier[0..0] != '.' and fichier !
= 'debug.js'
158 puts
"Minimisation et copie de #{fichier}"
159 print
`tools/jsmin.rb < #{rep_js}/#{fichier} | ssh #{@@host} "cat > #{@@rep_remote}/#{rep_js}/#{fichier}"`
164 def copie_modules_serveurs
165 # copie des modules erlang
166 creer_remote_rep('modules')
167 `rsync #{@@opt_rsync} -r --exclude 'euphorik_test.beam' modules/ebin #{@@host}:#{@@rep_remote}/modules`
168 `rsync #{@@opt_rsync} -r modules/include #{@@host}:#{@@rep_remote}/modules`
171 def set_droits_fichiers
172 # attribution des droits
173 `ssh #{$host} "chmod -R g+rx
#{$rep_remote}"`
177 # execution du script de mise à jour
178 print `cat tools/mise_en_prod.erl | ssh #{$host} "cat
> /tmp
/mise_en_prod
.erl
"`
179 print `ssh #{$host} "chmod u+x
/tmp/mise_en_prod
.erl
; /tmp/mise_en_prod
.erl
; rm
/tmp/mise_en_prod
.erl
"`
184 # Traite la ligne de commande lorsque tools.rb est utilisé comme tel
187 @miseEnProd = MiseEnProd.new(
188 "gburri
@euphorik.ch
:/var/www
/euphorik
",
189 "gburri
@euphorik.ch
:/var/www
/euphorik_preprod
"
191 @verifJS = VerifJS.new("../js
")
192 @version = Version.new("..")
204 @miseEnProd.miseEnProd()
207 @miseEnProd.miseEnPreProd()
215 Net::SSH.start('euphorik.ch', 'gburri') {|ssh|
216 output = ssh.exec!("hostname")
218 ssh
.exec!
("ls -l /tmp"){|channel
, stream
, data|
219 stdout << data if stream
== :stdout
227 puts
"Usage : tools.rb (prod | pre | js | version)\n" +
228 " prod : Mise en production\n" +
229 " preprod : Mise en préproduction, copie les données en production\n" +
230 " js : vérification des fichiers JavaScript\n" +
231 " version : met à jour la version à partir du fichier VERSION"