====== Pascom Python Dialer ====== ===== Wählen per HTTH-Request ===== Das REST-Interface ist direkt leider nicht geeignet, wenn man aus dem Browser per [[https://addons.mozilla.org/de/firefox/addon/telify/|Telify]] wählen möchte, da Telify keine Json-Calls machen kann sondern nur direkt über einen HTTP-Request mit über die URL übergebenen Parametern wählen kann. Abhilfe schafft dieses kleine Python-Script welches einfach einen Wählstring der per URL übergeben wurde in einen passen REST-Call umsetzt. Voraussetzungen: * Ein Benutzer für die [[https://wiki.pascom.net/confluence/display/MD78DE/REST+API|REST-Schnittstelle]] muss angelegt sein. * [[https://github.com/serverdensity/python-daemon|Python daemonizer]] * [[http://docs.python-requests.org/en/latest/|Requests]] * [[http://bottlepy.org/docs/dev/index.html|Bottle]] Die letzten beiden einfach per "[[https://pypi.python.org/pypi/pip|pip]]" installieren. Den "Python daemonizer" einfach zusammen mit dem Script in ein passendes Verzeichnis legen und das Script starten: python dialer.py Die Variablen sind an die Gegebenheiten anzupassen. Das Script kann, aber muss nicht auf dem MobyDick-Server selbst laufen. In Telify muss dann nur noch die passende URL angegeben werden. Enthält der Benutzername oder der Gerätename Sonderzeichen (auch Leerzeichen), was so gut wie sicher ist, muss dieser [[http://meyerweb.com/eric/tools/dencoder/|URL-Encoded]] werden. Als letzter Paramter wird dann noch "$0" für die Rufnummer angehängt. Die URL muss so aussehen: http://[HOST]:[PORT]/dial/[USER]/[DEVICE]/$0 Beispiel: http://pbx:8123/dial/matthias/Yealink%20001565673707%20%5BMatthias%5D/$0 Telify-Setup: {{:telify-einstellungen_163.png|}} ===== An einer Warteschlange ab- oder anmelden per HTTH-Request ===== Da ich das für einen speziellen Anwendungsfall brauche habe ich das noch hinzugefügt. http://[HOST]:[PORT]/login/[USER]/[QUEUE] http://[HOST]:[PORT]/logout/[USER]/[QUEUE] VB-Script zum An und Abmelden. Kann man beim Login und Logoff ausführen. Call LogEntry() Sub LogEntry() On Error Resume Next Dim objRequest Dim URL URL = "http://pbx:8123/" & WScript.Arguments(0) & "/" & WScript.Arguments(1) & "/" & WScript.Arguments(2) Set objRequest = CreateObject("Microsoft.XMLHTTP") objRequest.open "GET", URL , false objRequest.Send Set objRequest = Nothing End Sub """ Pyhthon Dialer (C) 2014 MHC SoftWare GmbH, Matthias Henze Lizenz: Simplified BSD License All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. """ from bottle import route, run, template import json import requests from requests.auth import HTTPBasicAuth import urllib from daemon import Daemon class Dialer(Daemon): def run(self): listen_host = '192.168.100.2' listen_port = 8123 host = '192.168.100.2' api_user = 'restuser' api_pass = 'password' @route('/') @route('/dial///') def dial(user='',device='',target=''): data = {"action":"dial","destination":target,"prefix":"auto"} url = 'http://'+host+'/services/identity/'+urllib.quote(user)+'/device/'+urllib.quote(device)+'/action' r = requests.post(url, json=data, auth=HTTPBasicAuth(api_user, api_pass)) return template('dial for "{{user}}" via "{{device}}": {{target}}

{{json}}', user=user, device=device, target=target, json=r.text) @route('/queue///') def do(action='',user='',queue=''): if action == 'login': data = {"action":action,"identity":user,"penalty":"0"} else: data = {"action":action,"identity":user} url = 'http://'+host+'/services/queue/'+urllib.quote(queue)+'/action' r = requests.post(url, json=data, auth=HTTPBasicAuth(api_user, api_pass)) return template('"{{action}}" for "{{user}}" on "{{queue}}":

{{json}}', action=action, user=user, queue=queue, json=r.text) run(host=listen_host, port=listen_port, debug=False) dialer = Dialer('/var/run/dialer.pid') dialer.start()