-
Notifications
You must be signed in to change notification settings - Fork 5
/
arge.py
410 lines (371 loc) · 11.1 KB
/
arge.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
# -*- coding: utf-8 -*-
import sqlite3 as sqlmak
import sys
import datetime
import os
import decimal
import time
import codecs
import random
import re
import sys
import urllib2, urllib
from random import randint
import datetime
from stdnum import ean
import ctypes
import codecs
import subprocess
import crypt
import yaml
import hashlib
import filecmp
class Arge:
def komutCalistir(self,c):
out = subprocess.check_output(c,stderr=subprocess.STDOUT,shell=True,universal_newlines=True)
'''try:
out=subprocess.check_output(c,shell=True,stderr=subprocess.STDOUT)
except subprocess.CalledProcessError as e:
raise RuntimeError("command '{}' return with error (code {}): {}".format(e.cmd, e.returncode, e.output))
return (e.output).replace("\b","")'''
return out.replace("\b","") #encode byte format to string, ugly hack
def dizin_cek(self,dizin='dizin',uzanti=""):
#dizinyol='/'+dizin
flst=[]
lst=os.listdir(dizin)
lst=[x for x in lst if os.path.isfile((dizin+"/"+x))]
if uzanti=="":
return sorted(lst)
else:
for dosya in lst:
if dosya.endswith("."+uzanti):
flst.append(dosya)
return sorted(flst)
def komut_kos(self,komut,onkomut=""):
komut=komut.strip()
komckt="kondarma/"+str(randint(0,1000))+".ckt"
komkos=komckt+".kos"
if onkomut=="":
onkomut="bash "
codecs.open(komkos,"w","utf-8").write(komut)
tumkomut=onkomut+" "+komkos+" 2>"+komckt
process = subprocess.Popen(tumkomut,stdout=subprocess.PIPE,shell=True)
proc_stdout = process.communicate()[0].strip()
hsonuc=codecs.open(komckt,"r").read()
os.system("rm "+komkos)
os.system("rm "+komckt)
return proc_stdout+"<p>"+"---"+"<p>"+hsonuc+"</p>"
def komut_doskos(self,komutdos):
komut=""
komut=codecs.open("komuta/"+komutdos,"r").read()
return self.komut_kos(komut)
def param_al(self,komutdos):
paramlar={}
komut=codecs.open("komuta/"+komutdos,"r",'utf-8').read()
komut=komut.split("\n")
for kom in komut:
if '=' in kom and 'if' not in kom:
baslik=kom.split('=')[0]
deger=kom.split('=')[1]
paramlar[baslik]=deger
return paramlar
def param_guncelle(self,mevcut,guncel):
for baslik in mevcut:
mevcut[baslik]=guncel[baslik]
return mevcut
def calistir(self,sql):
con = sqlmak.connect("sql/bilbet.db")
cur = con.cursor()
cur.execute(sql)
data=cur.fetchall()
return data
con.close()
def calis(self,sql):
con = sqlmak.connect("sql/bilbet.db")
cur = con.cursor()
cur.execute(sql)
con.commit()
con.close()
def hesap_ekle(self,posta,isim,sifre):
con = sqlmak.connect("sql/bilbet.db")
cur = con.cursor()
cur.execute("INSERT INTO hesap (posta,isim,sifre) VALUES (?,?,?)", (posta,isim,sifre))
con.commit()
con.close()
def hesap_dogrula(self,isim,gelen_sifre):
con = sqlmak.connect("sql/bilbet.db")
cur = con.cursor()
cur.execute("select sifre from hesap where isim='"+isim+"'")
sifre=cur.fetchall()[0][0]
print sifre
if sifre==gelen_sifre:
return 1
else:
return 0
con.close()
def girdi_kontrol(self,no):
sql=open('./sql/girdi_kontrol.sql','r').read()
sql=sql.replace('@no@',str(no))
row=self.calistir(sql)
if (row):
if row[0][0]=='e':
return 1
return None
def girdi_ekle(self,isim):
print isim
if self.girdi_kontrol(isim) is None:
sql=open('./sql/girdi_ekle.sql','r').read()
sql=sql.replace('@isim@',str(isim))
print "sql:",sql
print self.calis(sql)
def girdi_sil(self,no):
sql=open('./sql/girdi_sil.sql','r').read()
sql=sql.replace('@no@',str(no))
return self.calis(sql)
def girdi_no(self,isim,sifre):
sql=open('./sql/girdi_no.sql','r').read()
sql=sql.replace('@isim@',str(isim))
sql=sql.replace('@sifre@',str(sifre))
row=self.calistir(sql)
if (row):
return row[0][0]
return None
def sifre_kontrol(self,isim,sifre):
saltkom="sudo getent shadow "+isim+" | cut -d$ -f3"
process = subprocess.Popen(saltkom,stdout=subprocess.PIPE,shell=True)
salt = process.communicate()[0].strip()
epasskom="sudo getent shadow "+isim+" | cut -d: -f2"
process = subprocess.Popen(epasskom,stdout=subprocess.PIPE,shell=True)
epass = process.communicate()[0].strip()
match=crypt.crypt(sifre,"$6$"+salt)
if match==epass:
return 1
else:
return 0
def coklu_topla(self,miktar):
if '+' in str(miktar):
miktarlar=miktar.split('+')
topmik=0
for mik in miktarlar:
if mik.find(",") > 0 :
mik=mik.replace(',','.')
mik=float(mik)
topmik+=mik
miktar=topmik
miktar=str(miktar)
if '*' in str(miktar):
miktarlar=miktar.split('*')
topmik=1
for mik in miktarlar:
if mik.find(",") > 0 :
mik=mik.replace(',','.')
mik=float(mik)
topmik*=mik
miktar=topmik
miktar=str(miktar)
if '/' in str(miktar):
miktarlar=miktar.split('/')
bolnn=miktarlar[0]
bol=miktarlar[1]
if bolnn.find(",") > 0 :
bolnn=bolnn.replace(',','.')
if bol.find(",") > 0 :
bol=bol.replace(',','.')
miktar=float(bolnn)/float(bol)
else:
return miktar
return str(round(float(miktar),3))
def saat_al(self):
saatstr=""
now = datetime.datetime.now()
saatstr=now.strftime("%H:%M:%S")
return saatstr
def dosyaYdizi(self,dosya):
icerik=codecs.open(dosya, "r","latin5")
stoklar=[]
for satir in icerik:
sat=satir.split("\n")[0]
sat=sat.split("\r")[0]
stoklar.append([sat])
return stoklar
def servisler_al(self,dosya="servisler.ayar"):
icerik=codecs.open(dosya, "r","latin5")
servisler=[]
for satir in icerik:
sat=satir.split("\n")[0]
sat=sat.split("\r")[0]
servisler.append(sat)
return servisler
def link_kontrol(self,link):
indirme_komut="curl -s "
komut=indirme_komut+link+" &> /tmp/link_kontrol"
os.system(komut)
sonuc=open("/tmp/link_kontrol","r").read()
if "Not Found" in sonuc or "servis bilinmiyor" in sonuc:
return False
else:
return True
def gitdepo_dosyalar(self):
gitdosyalar=[]
dosyalar=self.komutCalistir("find $PWD/rehber/depolar/* -maxdepth 1 -type f")
rehdosyalar=self.komutCalistir("find $PWD/rehber/* -maxdepth 1 -type f")
rehdosyalar=rehdosyalar.split("\n")
rehdosyalar=filter(None,rehdosyalar)
dosyalar=dosyalar.split("\n")
dosyalar=filter(None,dosyalar)
rapor=""
for dosya in dosyalar:
sonuc=True
for rehdosya in rehdosyalar:
sonuc=filecmp.cmp(dosya,rehdosya)
if sonuc:
break
if sonuc is False:
dosya=dosya.split("depolar/")[1]
gitdosyalar.append(dosya)
return gitdosyalar
def gitdepo_ekle(self,link,mod="e"):
if self.link_kontrol(link):
depoyer="rehber/depolar/"
sonuc=""
hesap=""
depo=""
hesdep=""
depo_ekle_komut="git clone "
if "github.com" in link:
hesdep=link.split("github.com/")[1]
sonuc=hesdep
hesap=hesdep.split("/")[0]
depo=hesdep.split("/")[1]
hesdep=hesap+"-"+depo
depo_ekle_komut+=link+" "
if hesap != "" and depo != "":
if os.path.exists(depoyer+hesdep):
if mod =="e":
return "depo zaten var!"
if mod=="g":
sonuc=self.komutCalistir("cd "+depoyer+hesdep+" && git pull")
if "up-to-date." in sonuc:
return hesdep+"rehber deposu zaten güncel."
else:
return hesdep+"rehber deposu güncellendi."
else:
depo_ekle_komut+=depoyer+hesdep
else:
return "hesap veya depo belirsizliği!"
sonuc=self.komutCalistir(depo_ekle_komut)
return sonuc
else:
return "kırık link!"
def kurulum_oku(self,kurulumdos):
with open("kurulum/"+kurulumdos, 'r') as f:
param = yaml.load(f)
return param
def kurulum_yaz(self,param,kurulumdos):
with open("kurulum/"+kurulumdos, 'w') as outfile:
yaml.dump(param, outfile, default_flow_style=False)
def diskler(self,tip="ext4"):
diskler=[]
komut="blkid | grep "+tip+" | awk '$1 !~ /live/ {print $1}' | sed s'/.$//'"
veriler=self.komutCalistir(komut).split("\n")
diskler=filter(None,veriler)
return diskler
def bolumFormatla(self,hedef):
komut="umount -l "+hedef
if os.path.exists(hedef):
os.system(komut)
komut2="mkfs.ext4 -F " + hedef
try:
os.system(komut2)
print hedef,"formatlandı."
return True
except OSError as e:
time.sleep(1)
return "hata=formatlanamadi!"
else:
time.sleep(1)
return "hata=disk bolumu yok!"
def takasAyarla(self,bolum):
try:
os.system("mkswap "+"/dev/"+bolum)
os.system('echo "`lsblk -ln -o UUID /dev/' + bolum + '` none swap sw 0 0" | tee -a /etc/fstab')
return True
except OSError as e:
time.sleep(1)
return "hata:takas islemi!"
def bolumBagla(self,hedef,baglam):
komut="mount "+hedef+" "+baglam
try:
os.system(komut)
return True
except OSError as e:
time.sleep(1)
return "hata:bolum baglanamadi!"
def kullaniciOlustur(self,isim,kullisim,kullsifre):
try:
os.system("kopar milislinux-"+isim+" "+kullisim)
os.system('echo -e "'+kullsifre+'\n'+kullsifre+'" | passwd '+kullisim)
#masaustu ve diğer ayarların aktarılması
ayar_komut="cp -r /root/.config /home/"+kullisim+"/"
os.system(ayar_komut)
saat_komut="saat_ayarla_tr"
os.system(saat_komut)
print "kullanıcı işlemleri yapıldı."
return True
except OSError as e:
time.sleep(1)
return "hata:kullanici islemleri!"
def sistemOlustur(self,baglam):
komut=""
try:
#bazı dizinleri atlamak için ve hız rsync
yenidizinler=["srv","proc","tmp","mnt","sys","run","dev","media"]
for ydizin in yenidizinler:
komut="mkdir -p "+baglam+"/"+ydizin
os.system(komut)
print "yenidizinler oluşturuldu."
return True
except OSError as e:
time.sleep(1)
return "hata:yeni dizinler olusturma!"
def dizinKopyala(self,kaynak,hedef):
komut="rsync --delete -a /"+kaynak+" "+hedef+" --exclude /proc"
try:
os.system(komut)
print kaynak,"kopyalandı."
return True
except OSError as e:
time.sleep(1)
return "hata:"+kaynak+" dizin kopyalanmasi!"
def initrdOlustur(self,hedef):
try:
if hedef != "":
os.system("mount --bind /dev "+hedef+"/dev")
os.system("mount --bind /sys "+hedef+"/sys")
os.system("mount --bind /proc "+hedef+"/proc")
os.system('chroot '+hedef+' dracut --no-hostonly --add-drivers "ahci" -f /boot/initramfs')
print "intird kuruldu."
return True
else:
return "hata:initrd baglami tanimsiz!"
except OSError as e:
time.sleep(1)
return "hata:initrd olusturulamadi!"
def grubKur(self,hedef,baglam):
hedef = hedef[:-1]
if hedef == "/dev/mmcblk0": #SD kart'a kurulum fix
os.system("grub-install --boot-directory="+baglam+"/boot /dev/mmcblk0")
else:
os.system("grub-install --boot-directory="+baglam+"/boot " + hedef)
os.system("chroot "+baglam+" grub-mkconfig -o /boot/grub/grub.cfg")
print "grub kuruldu."
return True
def bolumCoz(self,hedef):
komut="umount -l "+hedef
try:
os.system(komut)
print hedef,"çözüldü."
return True
except OSError as e:
time.sleep(1)
return "hata:Bolum cozulemedi!"