-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconnexion.py
executable file
·423 lines (254 loc) · 8.54 KB
/
connexion.py
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
#!/usr/bin/python
# -*- coding: utf-8 -*-
#############################
#############################
## Par William Vincent - william66750 - @ - g m a i l (.) com
## Description : selection de serveur TSE par le biais de l'annuaire LDAP
## Dependances: python-ldap, MySQLdb
#############################
#############################
#############################
####### Libraries
#############################
# Traitement de cmd bash
import os
import subprocess
# traitement de chaine de carractere
import re
# Gestion des fenetres
import pygtk
import gtk , gobject
# Base de donnees
import MySQLdb
#Recuper info machine
import socket, fcntl, struct
#Recuperer le temps
from time import gmtime, strftime
#############################
#############################
####### Classe
#############################
class GTK_Main():
#Definir ip machine
def get_ip_address(ifname):
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
return socket.inet_ntoa(fcntl.ioctl( s.fileno(), 0x8915, struct.pack('256s', ifname[:15]) )[20:24])
### Variables
#Declarer variables globales
global monip, monposte
#Declarer infos
monposte = socket.gethostname()
monip = get_ip_address('eth0')
print "IP %s " % ( monip )
### GENERAL
def __init__(self):
##################
### Fonctions
##################
##################
# Fontion > Log de connexion
def connexion(userLog):
try:
infoid = 0
db = MySQLdb.connect("host","user","passwd","base")
#mise en forme de la date
dateinfo = strftime("%Y-%m-%d %H:%M:%S", gmtime())
cursor = db.cursor()
sql = "INSERT INTO logs VALUES (NULL, '%s', '%s', NULL, '%s', '%s')" % ( userLog, dateinfo , monposte , monip )
cursor.execute(sql)
db.commit()
# recuperer id
infoid = cursor.lastrowid
db.close()
print "log co OK"
except:
print "log co ERREUR"
pass
return infoid
##################
# Fontion > Log de deconnexion
def deconnexion(infoidLog):
try:
db = MySQLdb.connect("host","user","passwd","base")
dateinfoquit = strftime("%Y-%m-%d %H:%M:%S", gmtime())
cursor = db.cursor()
sql = "UPDATE logs SET date_logout='%s' WHERE id=%s" % ( dateinfoquit, infoidLog )
cursor.execute(sql)
db.commit()
db.close()
print "log deco OK"
except:
print "log deco ERREUR"
pass
##################
# Fontion > SESSION RDP
def connexionRDP(userCO , passwdCO , serveurCO, domaine):
#Executer
subprocess.call(['/usr/bin/rdesktop', '-u', userCO, '-p', passwdCO, '-d', 'domaine', '-r', 'sound:local', '-r' , 'disk:CLEUSB=/media/OLYMPUS/', '-NfzP' , '-x' , 'm' ,serveurCO ])
##################
# Fontion > Clic de connexion - Requete LDAP
def loginClicked(loginButton):
#Declarer variables globales
global user, passwd
#Recuperer valeur variables
user = loginUserT.get_text()
passwd = loginPassT.get_text()
#Requete ldap
cmd="ldapsearch -LLL -x -D 'uid=%s,ou=Users,o=mondomaine,dc=mondomaine,dc=fr' -h ldap -w '%s' -b dc=mondomaine,dc=fr memberUid=%s memberOf" % (user,passwd,user)
#Exectuer
proc = subprocess.Popen(cmd,shell=True,stdout=subprocess.PIPE)
proc.wait()
proc.returncode
#Test : MOT DE PASSE
if proc.returncode != 0:
message = gtk.MessageDialog(type=gtk.MESSAGE_ERROR, buttons=gtk.BUTTONS_CLOSE)
message.set_markup("Probleme de mot de passe.")
message.run()
message.destroy()
gtk.main()
# Stockage des groupes LDAP
search = proc.stdout
search = [line.strip('\n') for line in search]
result = dict()
#Variable de tests ( Liste de serveurs ou non )
count = 0
### Mise en forme de la chaine de carractere
for line in search:
# Ne garder que les serveur TSE
if "TSE_" in line:
try:
# Supprimer les champs inutiles
line = re.sub(r'dn: cn=TSE_','',line)
line = re.sub(r',ou=groups,o=mondomaine,dc=mondomaine,dc=fr','',line)
# Afficher les champs
buttonSelect1 = gtk.ToggleButton(line)
buttonSelect1.connect("toggled", boutonClicked, line, ".mondomaine.fr")
selectvbox.pack_start(buttonSelect1, True, True, 0)
# Test
count += 1
serveurUnique = line
dom = ".mondomaine.fr"
except:
pass
# MultiDomaine
if "TSEGROUPE2_" in line:
try:
# Supprimer les champs inutiles
line = re.sub(r'dn: cn=TSEGROUPE2_','',line)
line = re.sub(r',ou=groups,o=mondomaine,dc=mondomaine,dc=fr','',line)
# Afficher les champs
buttonSelect1 = gtk.ToggleButton(line)
buttonSelect1.connect("toggled", boutonClicked, line, ".mondomaine2.be")
selectvbox.pack_start(buttonSelect1, True, True, 0)
# Test
count += 1
serveurUnique = line
dom = ".mondomaine.be"
except:
pass
### Access serveur = 1 -> Connexion
if count == 1:
print "Connexion direct : "
print "log : "
# Log de connexion".mondomaine.fr"
infoid = connexion(user)
print "Session RDP : "
### ConnexionRDP
connexionRDP( user , passwd , serveurUnique , dom)
print "log : "
# Log de deconnexion
deconnexion(infoid)
# Effacer les fenetres
serveur.destroy()
login.destroy()
### Access > 2 Serveurs : Effacer fenetre login + Afficher fenetre liste serveurs
else:
print "Connexion multi serveur : "
# Effacer fenetre login
login.hide()
# Afficher liste de serveurs
serveur.show_all()
##################
# Fontion > Clic sur serveur : Lancer Connexion RDP
def boutonClicked(selectButton, serveurTse, domaine):
print "log : "
# Log de connexion
infoid = connexion(user)
print "Session RDP : "
### ConnexionRDP
connexionRDP( user , passwd , serveurTse , domaine )
print "log : "
# Log de deconnexion
deconnexion(infoid)
# Effacer les fenetres
serveur.destroy()
login.destroy()
##################
# // ###### // FIN DES FONCTIONS
##################
##################
# Mise en forme
##################
##################
# MEF > FORMULAIRE DE CONNEXION
# Options de fenetres
login = gtk.Window()
login.set_size_request(800, 200)
login.set_border_width(10)
# Champs
login.connect("destroy", gtk.main_quit)
login.set_title("Connexion RDP MonDomaine - Login")
loginVbox = gtk.VBox(homogeneous=False)
loginLabel = gtk.Label("Veuillez entrer vos identifiants MonDomaine")
loginHbox1 = gtk.HBox(homogeneous=True, spacing=3)
loginHbox2 = gtk.HBox(homogeneous=True, spacing=3)
loginUserL = gtk.Label("Nom d'utilisateur :")
loginPassL = gtk.Label("Mot de passe :")
loginUserT = gtk.Entry()
loginPassT = gtk.Entry()
loginPassT.set_visibility(False)
# Permet de press enter key afin de connecter directement sans cliquer
loginPassT.connect("activate", loginClicked)
# Logo mondomaine
imageHBox = gtk.Image()
imageHBox.set_from_file("/usr/share/connexion/logo.png")
#Bouton de connection
loginButton = gtk.Button(label="Connexion")
loginButton.connect("clicked", loginClicked)
login.add(loginVbox)
loginVbox.pack_start(imageHBox, expand=True)
loginVbox.pack_start(loginLabel, expand=False)
loginVbox.pack_start(loginHbox1, expand=False)
loginVbox.pack_start(loginHbox2, expand=False)
loginVbox.pack_start(loginButton, False, False, 0)
loginHbox1.pack_start(loginUserL, expand=False)
loginHbox1.pack_start(loginUserT, expand=True)
loginHbox2.pack_start(loginPassL, expand=False)
loginHbox2.pack_start(loginPassT, expand=True)
##################
# MEF > LISTE DES SERVEURS
serveur = gtk.Window()
serveur.connect("destroy", gtk.main_quit)
serveur.set_size_request(800, 400)
serveur.set_border_width(10)
serveur.set_title("Connexion RDP MonDomaine - Connexion")
selectvbox = gtk.VBox(homogeneous=False)
infoLabel = gtk.Label("Veuillez cliquer sur le serveur a connecter :")
infoHbox4 = gtk.HBox(homogeneous=True, spacing=3)
selectvbox.pack_start(infoLabel, expand=False)
selectvbox.pack_start(infoHbox4, expand=False)
serveur.add(selectvbox)
##################
# MEF > Afficher la page de login
login.show_all()
##################
# // ###### // FIN DE MISE EN FORME
##################
#############################
# Generer la page
#############################
# Afficher TOUJOURS
while 1:
#Afficher
GTK_Main()
gtk.main()