contacts.py 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. from exchangelib import OAUTH2, Configuration, Account, DELEGATE, OAuth2Credentials, Identity
  2. import vcard
  3. def normalize_name(full_name):
  4. return full_name.replace('/', '-').replace('\\', '-')[:40]
  5. def normalize_phone_number(phone_number: str):
  6. if phone_number.startswith('0'):
  7. phone_number = '+49 ' + phone_number[1:]
  8. for c in '()/?':
  9. phone_number = phone_number.replace(c, '')
  10. return phone_number.replace(' -', '-').replace('- ', '-').replace(' ', ' ')
  11. def login(email=None) -> Account:
  12. credentials = OAuth2Credentials(
  13. client_id='925f74dc-f96a-4718-9ca7-d6cc3fa43e1e',
  14. client_secret='SS~8Q~QpBZV9toZuwkzW1XGGen2Hn833spNMtdq5',
  15. tenant_id='2ad0dff5-07ce-4cc2-a852-99ce8b91c218',
  16. identity=Identity(primary_smtp_address='bedner@global-cube.de'),
  17. )
  18. # credentials = Credentials(username='bedner@global-cube.de', password='platinum512#')
  19. config = Configuration(
  20. server='outlook.office365.com',
  21. credentials=credentials,
  22. auth_type=OAUTH2
  23. )
  24. if not email:
  25. email = 'adressbuch@global-cube.net'
  26. account = Account(
  27. primary_smtp_address=email, config=config,
  28. autodiscover=False, access_type=DELEGATE
  29. )
  30. return account
  31. def export_contact_list(account: Account):
  32. # folder = account.root / 'AllContacts'
  33. phone_types = {
  34. 'BusinessPhone': 'gesch.', 'MobilePhone': 'Mobil',
  35. 'OtherFax': 'Andere', 'HomePhone': 'privat',
  36. 'CarPhone': 'Andere2', 'OtherTelephone': 'Andere3',
  37. 'Pager': 'Pager'
  38. }
  39. contact_list = []
  40. # organizations = vcard.get_orgs()
  41. organizations = {}
  42. for p in account.contacts.all():
  43. # print(p.display_name)
  44. p_name = p.display_name
  45. if p.company_name:
  46. p_name = p.display_name + ' - ' + p.company_name
  47. elif p_name in organizations:
  48. p.company_name = organizations[p_name][0]
  49. p_name = p.display_name + ' - ' + p.company_name
  50. p.save(update_fields=['company_name'])
  51. p_name = normalize_name(p_name)
  52. for entry in p.phone_numbers[:2]:
  53. if entry.phone_number:
  54. phone = normalize_phone_number(entry.phone_number)
  55. contact_list.append(p_name + ' (' + phone_types.get(entry.label, '') + ');' + phone)
  56. # print(phone_types)
  57. block_size = 997
  58. blocks = (len(contact_list) // block_size) + 1
  59. for b in range(blocks):
  60. with open(f'contacts/export/kontakte_{b}.csv', 'w', encoding='utf-8') as fwh:
  61. fwh.write('generiert mit Templateversion:;v16.1.00\n')
  62. fwh.write('Voll-Lieferung\n')
  63. fwh.write('Nr.;Name;Rufnummer\n')
  64. for i, c in enumerate(contact_list[block_size * b:block_size * (b + 1)], 1):
  65. fwh.write(str(block_size * b + i) + ';' + c + '\n')
  66. print('--')
  67. def main():
  68. account = login()
  69. # export_contact_list(account)
  70. for p in account.contacts.all()[0:1]:
  71. print(p)
  72. account2 = login('m.geiss@global-cube.de')
  73. for p in account2.contacts.all()[0:1]:
  74. print(p)
  75. # for f in account.root.children.folders:
  76. # print(f.name)
  77. # gal = account.contacts / 'GAL Contacts'
  78. # for p in account.protocol.resolve_names()[:10]:
  79. # print(p.display_name)
  80. # print(account.root.tree())
  81. if __name__ == '__main__':
  82. main()