You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

112 lines
3.4 KiB

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
4 years ago
6 years ago
4 years ago
6 years ago
6 years ago
4 years ago
6 years ago
4 years ago
4 years ago
4 years ago
6 years ago
6 years ago
4 years ago
6 years ago
6 years ago
6 years ago
  1. #!/usr/bin/python3
  2. # coding=utf-8
  3. import csv
  4. import sys
  5. import MySQLdb
  6. dbconn = {'host': '10.3.11.226',
  7. 'user': 'readonlyuser',
  8. 'pass': 'Readonly@2006',
  9. 'base': 'techgrow'}
  10. sql = 'select * from LDAP'
  11. ad_groups_users = ['vpn-users', 'gogs']
  12. ad_groups_bitrix = ['vpn-web-vpn', 'gogs']
  13. ad_groups_1c = ['vpn-1c-vpn', 'Domain Users']
  14. ad_group_xserv = 'ics'
  15. ad_group_rdp = 'Пользователи удаленного рабочего стола'
  16. def mysql_reader(dbconn, sql):
  17. data = tuple
  18. err = False
  19. try:
  20. conn = MySQLdb.connect(host=dbconn['host'], user=dbconn['user'],
  21. passwd=dbconn['pass'], db=dbconn['base'], charset="utf8")
  22. cur = conn.cursor(MySQLdb.cursors.DictCursor)
  23. cur.execute(sql)
  24. data = cur.fetchall()
  25. cur.close()
  26. except MySQLdb.Error as exc:
  27. print("Connection error: {}".format(err))
  28. conn.close()
  29. err = exc
  30. else:
  31. conn.commit()
  32. conn.close()
  33. return data, err
  34. def users_make_zayavka(users):
  35. res = {}
  36. for i in users:
  37. usrname = str(i['LoginEmail']).split('@')[0]
  38. if usrname in res:
  39. continue
  40. enabled = False
  41. pwchange = False
  42. toremove = False
  43. res[usrname] = {}
  44. # преобразуем флаги в удобную форму
  45. if i['Activ'] == 'Y':
  46. enabled = True
  47. if i['Changes'] == 'Y':
  48. pwchange = True
  49. if i['Delete'] == 'Y':
  50. toremove = True
  51. # размечаем группы, в которых должен быть пользователь
  52. memberof = []
  53. if str(i['Otdel']) == 'Users':
  54. memberof = ad_groups_users[:]
  55. elif str(i['Otdel']) == '1C':
  56. memberof = ad_groups_1c[:]
  57. elif str(i['Otdel']) == 'Bitrix':
  58. memberof = ad_groups_bitrix[:]
  59. if str(i['XServ']) == '1':
  60. memberof.append(ad_group_xserv)
  61. if str(i['RDP']) == '1':
  62. memberof.append(ad_group_rdp)
  63. # собственно добавляем в мапу
  64. res[usrname] = {'id': str(i['ID']),
  65. 'samAccountName': usrname,
  66. 'memberOf': memberof,
  67. 'usrPass': str(i['Pass']),
  68. 'groupSet': str(i['Otdel']),
  69. 'enabled': enabled,
  70. 'pwChange': pwchange,
  71. 'toRemove': toremove,
  72. 'email': i['LoginEmail']
  73. }
  74. return res
  75. def mailboxes(data):
  76. mboxes = []
  77. for user in data:
  78. domain = user['LoginEmail'].split('@')[1]
  79. name = user['LoginEmail'].split('@')[0]
  80. mbox = ["Администратор", domain, name, user['Pass'], user['Changes'], user['Delete']]
  81. mboxes.append(mbox)
  82. return mboxes
  83. def main():
  84. data, err = mysql_reader(dbconn, sql)
  85. if len(sys.argv) == 1:
  86. if not err:
  87. users = users_make_zayavka(data)
  88. x = ''
  89. for user in users:
  90. print(user, users[user])
  91. input(x)
  92. else:
  93. print(err)
  94. else:
  95. csvFile = sys.argv[1];
  96. with open(csvFile, 'w') as f:
  97. write = csv.writer(f, quoting=csv.QUOTE_ALL)
  98. write.writerows(mailboxes(data))
  99. if __name__ == '__main__':
  100. main()

Powered by TurnKey Linux.