-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpersonne.pm
219 lines (190 loc) · 3.92 KB
/
personne.pm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
use strict;
use utf8;
use MyLogger;
#########
#
#
package Personne;
sub new {
my $class = shift;
my @info = @_;
if (testInfo(@info)) {
# eppn == login
my $eppn = shift @info;
push @info, $eppn;
my $self = {
info => \@info,
files => {}
};
return bless $self, $class;
}
return 0;
}
sub inFile {
my $self = shift;
my $file = shift;
my $files = $self->{files};
return $$files{$file}++ ;
}
sub testInfo {
# le 1er champ eppn
foreach my $col (@_) {
if ($col =~ m/^\s*$/) {
return 0;
}
}
return $_[0] =~ m/^(\w|\.|\@|\-)+$/;
}
sub setCodesEtape {
my $self = shift;
my $univ = shift;
my @codesEtape;
my $filtre = $univ->{filtreEtap};
if (@_ > 1 ) {
@codesEtape = map ({s/\s*(\S+)\s*/\1/; $_} @_);
if ($filtre) {
DEBUG! " : ", @codesEtape;
@codesEtape = &$filtre(@codesEtape);
}
} else {
chomp($_[0]);
@codesEtape =split ('@', $_[0]);
if ($filtre) {
@codesEtape = &$filtre(@codesEtape);
}
}
$$self{codesEtape} = \@codesEtape;
}
sub codesEtape {
my $self = shift;
return $self->{codesEtape};
}
sub info {
my $self = shift;
return $self->{info};
}
sub type {
return 0;
}
sub getEntete {
my $class = shift;
my $type = shift;
if ($type eq 'ETU') {
return Etudiant->entete(@_);
}
return Staff->entete(@_);
}
###############
#
#
package Etudiant;
use base qw(Personne);
sub entete {
my $class = shift;
my $univ = shift;
my $annee = shift;
my $etape = shift;
my $typeFile = shift;
my $site = $etape->site;
my $formation = $etape->formation;
my $formation_label = $formation->label;
my $formation_code = $formation->code;
my $cohorte = $etape->cohorte;
return (
["model_code","formation_code", "formation_label", "cohorte"],
[ "kapc/8etudiants.batch-creer-etudiants-authentification-externe",
"${univ}_${site}_${formation_code}",
"${univ}_${site} - ${formation_label}",
"${univ}_${typeFile}"
],
["nomFamilleEtudiant","prenomEtudiant","courrielEtudiant","matriculeEtudiant", "loginEtudiant"]
)
}
sub new {
my $class = shift;
my $univ = shift;
# liste des données en entrée du csv
my $eppn = shift;
my $nom = shift;
my $prenom = shift;
my $courriel = shift;
my $matricule = shift;
# liste des infos en sortie dans csv
my $self = new Personne($eppn, $nom, $prenom, $courriel, $matricule);
if ($self) {
$self->{univ} = $univ;
$self->setCodesEtape($univ, @_);
return bless $self, $class;
}
return 0;
}
sub type {
return 'ETU';
}
###############
#
#
package Staff;
use base qw(Personne);
sub entete {
my $class = shift;
my $univ = shift;
my $annee = shift; # attention $annee et $typeFile ne sont pas utilisé mais sont transmise
my $etape = shift;
my $typeFile = shift;
my $site = $etape->site;
my $formation = $etape->formation;
my $formation_code = $formation->code;
my $formation_label = $formation->label;
my $cohorte = $etape->cohorte;
return (
["model_code","formation_code","formation_label"],
[ "kapc/3enseignants.batch-creer-enseignants-authentification-externe",
"${univ}_${site}_${formation_code}",
"${univ}_${site} - ${formation_label}",
],
["nomFamilleEnseignant","prenomEnseignant","courrielEnseignant", "loginEnseignant"]
)
}
sub new {
my $class = shift;
my $univ = shift;
# liste des données en entrée du csv
my $eppn = shift;
my $nom = shift;
my $prenom = shift;
my $courriel = shift;
# liste des infos en sortie dans csv
my $self = new Personne( $eppn, $nom, $prenom, $courriel);
if ($self) {
$self->{univ} = $univ;
$self->setCodesEtape($univ, @_);
return bless $self, $class;
}
return 0;
}
sub type {
return 'STAFF';
}
##############
#
# SUPERVISEUR
#
package Superviseur;
use base qw(Personne);
sub new {
my $class = shift;
# liste des données en entrée du csv
my $eppn = shift;
my $nom = shift;
my $prenom = shift;
my $courriel = shift;
my $self = new Personne( $eppn, $nom, $prenom, $courriel);
if ($self) {
return bless $self, $class;
}
}
sub type {
return 'SUPERVISEUR';
}
1;