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 # - mettre à jour les numéros de versions (créer une classe)
24 # - création de unit tests (voir eunit) et validation avant la mise en prod
25 # - faire une classe qui vérifie tous les js avec jslint
27 # Classe permettant la vérification du code JS pas jslint.
30 def initialize(dossier
)
35 verifierRecu(@dossier)
38 def verifierRecu(dossier
)
39 Dir
.foreach(dossier
){|fichier
|
40 if fichier !
= '.' and fichier !
= '..' and File
.directory
?(fichier
) and fichier !
= 'dirs'
41 if not verifierRecu(dossier +
'/' + fichier
)
44 elsif fichier
[-3, 3] == '.js'
45 puts
"== Vérification de #{dossier}/#{fichier} =="
46 system("java org.mozilla.javascript.tools.shell.Main jslint.js #{dossier}/#{fichier}")
59 @
@rep_remote = '/var/www/euphorik'
60 @
@host = 'euphorik.ch'
66 def creer_remote_rep(rep
)
68 `ssh #{@@host} "mkdir #{@@rep_remote}/#{rep}"`
73 def compiler_partie_serveuse
74 Dir
.chdir(@
@rep_remote +
'/modules')
77 puts
"Echec de compilation de la partie serveuse"
83 def creer_repertoire_bd
84 # création du repertoire BD
85 creer_remote_rep('BD')
86 creer_remote_rep('BD/backup')
87 `ssh #{@@host} "chmod g+w
#{@@rep_remote}/BD
"`
90 # css, images, html, etc..
91 def copier_partie_statique
92 print `rsync #{$opt_rsync} index.yaws #{$host}:#{$rep_remote}`
93 print `rsync #{$opt_rsync} favicon.ico #{$host}:#{$rep_remote}`
94 print `rsync #{$opt_rsync} -r css #{$host}:#{$rep_remote}`
95 print `rsync #{$opt_rsync} -r pages #{$host}:#{$rep_remote}`
96 print `rsync #{$opt_rsync} -r --exclude 'autres' img #{$host}:#{$rep_remote}`
99 # minification et package des fichiers js dans euphorik.js
101 # copie des js avec minification
103 creer_remote_rep(rep_js)
104 Dir.entries(rep_js).each{|fichier|
105 if fichier[0..0] != '.' and fichier !
= 'debug.js'
106 puts
"Minimisation et copie de #{fichier}"
107 print
`tools/jsmin.rb < #{rep_js}/#{fichier} | ssh #{@@host} "cat > #{@@rep_remote}/#{rep_js}/#{fichier}"`
112 def copie_modules_serveurs
113 # copie des modules erlang
114 creer_remote_rep('modules')
115 `rsync #{@@opt_rsync} -r --exclude 'euphorik_test.beam' modules/ebin #{@@host}:#{@@rep_remote}/modules`
116 `rsync #{@@opt_rsync} -r modules/include #{@@host}:#{@@rep_remote}/modules`
119 def set_droits_fichiers
120 # attribution des droits
121 `ssh #{$host} "chmod -R g+rx
#{$rep_remote}"`
125 # execution du script de mise à jour
126 print `cat tools/mise_en_prod.erl | ssh #{$host} "cat
> /tmp
/mise_en_prod
.erl
"`
127 print `ssh #{$host} "chmod u+x
/tmp/mise_en_prod
.erl
; /tmp/mise_en_prod
.erl
; rm
/tmp/mise_en_prod
.erl
"`
132 v = VerifJS.new("../js
")