瀏覽代碼

Transférer les fichiers vers ''

Alexis BALAGUER 1 年之前
父節點
當前提交
ce124088fa
共有 2 個文件被更改,包括 110 次插入0 次删除
  1. 27 0
      call.py
  2. 83 0
      callerid.py

+ 27 - 0
call.py

@@ -0,0 +1,27 @@
+import sys
+import win32com.client,time
+tapi = win32com.client.Dispatch("TAPI.TAPI")
+tapi.Initialize()
+for item in tapi.Addresses: print(item.AddressName)
+modemAll = True
+modem = "USB"
+
+if len(sys.argv) > 1:
+    sNumber = sys.argv[1]
+else:
+    exit("Send a phone number to the program")
+
+found = False
+modemList = []
+for item in tapi.Addresses:
+   if modemAll or modem in item.AddressName:
+     found = True
+     gobjCall = item.CreateCall(sNumber, 1, 0x8)
+     gobjCall.Connect (False)
+     if not modemAll:
+        break
+   else:
+     modemList.append(item.AddressName)
+if not found:
+   modemList = str(modemList).strip('[]').replace(',', '\n')
+   print(f"No modem matched {modem} in\n{modemList}")

+ 83 - 0
callerid.py

@@ -0,0 +1,83 @@
+import pythoncom, time
+import win32com.client
+import subprocess
+
+cls="TAPI.TAPI"
+# need for gen_py
+ti = win32com.client.Dispatch(cls)._oleobj_.GetTypeInfo()
+tlb, index = ti.GetContainingTypeLib()
+tla = tlb.GetLibAttr()
+win32com.client.gencache.EnsureModule(tla[0], tla[1], tla[3], tla[4], bValidateFile=0)
+
+tapi=win32com.client.Dispatch(cls)
+tapi.Initialize() # must run after Dispatch and before TapiEvents
+
+
+
+class TapiEvents(win32com.client.getevents(cls)):
+    def OnEvent(self, ev1,ev2): 
+        constants = win32com.client.constants
+        if ev1 == constants.TE_CALLNOTIFICATION:
+            call = win32com.client.Dispatch(ev2).Call
+            try:
+               print_check_error(f"CIS_CALLEDIDNAME", call, constants.CIS_CALLEDIDNAME)
+               print_check_error(f"CIS_CALLERIDNUMBER", call, constants.CIS_CALLERIDNUMBER)
+               print_check_error(f"CIS_CALLEDIDNUMBER", call, constants.CIS_CALLEDIDNUMBER)
+               print_check_error(f"CIS_CONNECTEDIDNAME", call, constants.CIS_CONNECTEDIDNAME)
+               print_check_error(f"CIS_CONNECTEDIDNUMBER", call, constants.CIS_CONNECTEDIDNUMBER)
+               print_check_error(f"CIS_REDIRECTIONIDNAME", call, constants.CIS_REDIRECTIONIDNAME)
+               print_check_error(f"CIS_REDIRECTIONIDNUMBER", call, constants.CIS_REDIRECTIONIDNUMBER)
+               print_check_error(f"CIS_REDIRECTINGIDNAME", call, constants.CIS_REDIRECTINGIDNAME)
+               print_check_error(f"CIS_REDIRECTINGIDNUMBER", call, constants.CIS_REDIRECTINGIDNUMBER)
+               print_check_error(f"CIS_CALLEDPARTYFRIENDLYNAME", call, constants.CIS_CALLEDPARTYFRIENDLYNAME)
+               print_check_error(f"CIS_COMMENT", call, constants.CIS_COMMENT)
+               print_check_error(f"CIS_DISPLAYABLEADDRESS", call, constants.CIS_DISPLAYABLEADDRESS)
+               print_check_error(f"CIS_CALLINGPARTYID", call, constants.CIS_CALLINGPARTYID)
+            except:
+               pass
+
+events=TapiEvents(tapi)
+tapi.EventFilter = 0x1FFFF
+for item in tapi.Addresses: ext = item.AddressName.split(' ',)[0]
+
+def counter():
+  if not hasattr(counter, "counter"):
+     counter.counter = 0  # it doesn't exist yet, so initialize it
+  counter.counter += 1
+
+def print_check_error(str, obj, code):
+    
+
+    try:
+        output = obj.CallInfoString(code)
+        if bool(output):
+            if (code == 1) and (len(output) > len(ext) ) :
+                
+                counter()
+                if counter.counter % 2 == 0 :
+                    print(f"Ouvrir fiche du {output}")
+                    command = f".\\navista.exe {output} nom https://api.navista/"
+
+                    subprocess.Popen(command,shell=True,stdout=subprocess.PIPE)
+
+                else :    
+                    print(f"Appel entrant de {output}")
+    except:
+        pass
+
+
+
+for addr in tapi.Addresses: 
+    try:
+        tapi.RegisterCallNotifications(addr,True,True,8,0)
+    except:
+        pass
+
+
+
+try:
+ while True:
+    pythoncom.PumpWaitingMessages()
+    time.sleep(0.01)  # Don't use up all our CPU checking constantly
+except KeyboardInterrupt:
+ pass