Oops
[euphorik.git] / tools / tools.rb
1 #!/usr/bin/ruby
2 # coding: utf8
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 # - 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
26
27 # Classe permettant la vérification du code JS pas jslint.
28 class VerifJS
29
30 def initialize(dossier)
31 @dossier = dossier
32 end
33
34 def verifier
35 verifierRecu(@dossier)
36 end
37
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)
42 return false
43 end
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}")
47 if $?.exitstatus > 0
48 return false
49 end
50 end
51 }
52 return true
53 end
54 end
55
56
57
58 class MiseEnProd
59 @@rep_remote = '/var/www/euphorik'
60 @@host = 'euphorik.ch'
61 @@opt_rsync = ''
62
63 def initialize
64 end
65
66 def creer_remote_rep(rep)
67 begin
68 `ssh #{@@host} "mkdir #{@@rep_remote}/#{rep}"`
69 rescue
70 end
71 end
72
73 def compiler_partie_serveuse
74 Dir.chdir(@@rep_remote + '/modules')
75 puts `make`
76 if $?.exitstatus != 0
77 puts "Echec de compilation de la partie serveuse"
78 exit 1
79 end
80 Dir.chdir('..')
81 end
82
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"`
88 end
89
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}`
97 end
98
99 # minification et package des fichiers js dans euphorik.js
100 def pack_js
101 # copie des js avec minification
102 rep_js = 'js'
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}"`
108 end
109 }
110 end
111
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`
117 end
118
119 def set_droits_fichiers
120 # attribution des droits
121 `ssh #{$host} "chmod -R g+rx #{$rep_remote}"`
122 end
123
124 def maj
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"`
128 end
129 end
130
131
132 v = VerifJS.new("../js")
133 v.verifier()