1

Pythonを使用してプッシュオーバーから確認を取得しようとしても問題があります。

私のスクリプトでは、dict を使用して同じメッセージを 2 人に送信し、メッセージが確認されたら記録します。私がグループではなくこのようにしている理由は、1 人が承認すると残りの呼び出しがキャンセルされるため、1 人がそれを見て承認し、別の人が承認しない場合、グループのアラートが停止するためです。

これまでのところ、私のコードは両方の uid のメッセージを送信しますが、確認すると印刷されません

import time
import requests
import datetime
dict = {'u56pt7jQXxgmtGnX5MBgsnUz4kgqKS': 'User1', 'uoREW3cuvy3SbSnyc7Ra737nVbrBQh': 'user2'}
app = "app id"
for k in dict:
        user = k
        params = {
        'token': app,
        'user': user,
        'title': 'lala',
        'message': 'test',
        'retry': 300, 
        'expire': 40,
        'priority': 2 ,
        'sound': 'siren',
        }
        msg = requests.post('https://api.pushover.net/1/messages.json', data=params)
        print "POSTed message to " + k
        json_data = msg.json()
        print json_data['receipt']
        time.sleep(5)
        d = json_data['receipt']
        v = requests.get("https://api.pushover.net/1/receipts/"+ d + ".json?token=" + app)
        out = v.json()
while out['acknowledged'] is 0:
 print "not yet" #placed for debugging
 time.sleep(5)
 v = requests.get("https://api.pushover.net/1/receipts/"+ d + ".json?token=" + app)
if out['acknowledged'] is 1:
 ack = out['acknowledged_by']
 for k in dict:
  if ack in k:
   acked = dict[k]
   t = datetime.datetime.strftime(datetime.datetime.now(), '%H:%M')
   print (acked + " acknowledged at " + t)

アップデート

以下に示すコードを使用すると、while ステートメントが再チェックされますが、それでも 2 番目の dict エントリのみが確認されます。

コードを見てみると、

v = requests.get("https://api.pushover.net/1/receipts/"+ d + ".json?token=" + app)

両方ではなく、2番目のdictエントリのみをチェックしています。

4

1 に答える 1

1

最初のテスト ループで

while out['acknowledged'] is 0:
    print "not yet" #placed for debugging
    time.sleep(5)
    v = requests.get("https://api.pushover.net/1/receipts/"+ d + ".json?token=" + app)
    out = v.json() #update the out, so you can check again

2 番目の部分では、全員が確認を行った後に終了するループに変換する必要があります。

if out['acknowledged'] is 1:
    while not all_acknowledged(dict): # custom function to check whether all users have made an acknowledgement 
        ack = out['acknowledged_by']
        for k in dict:
            if ack in k:
                acked = dict[k]
                dict[k]['ack'] = True #We must update this when we come across an acknowledged user
                t = datetime.datetime.strftime(datetime.datetime.now(), '%H:%M')
                print (acked + " acknowledged at " + t)
        v = requests.get("https://api.pushover.net/1/receipts/"+ d + ".json?token=" + app)
        out = v.json() #update the out, so you can check again

全員の承認を収集するには、そのユーザーが承認するかどうかを保持する各ユーザーの dict に追加のエントリが必要になるか、すべての承認を追跡するための別のデータ構造が必要になります (任意の多くのユーザーの場合)。

for k in dict:
    user = k
    params = {
    'token': app,
    'user': user,
    'title': 'lala',
    'message': 'test',
    'retry': 300, 
    'expire': 40,
    'priority': 2 ,
    'sound': 'siren',
    'ack': False
    }

フィールドを追加したらack、2 番目のループでフィールドを更新して関数を作成できます。

def all_acknowledged(dict):
    for k in dict:
        if not dict[k]['ack']:
            return False
    return True

したがって、最終的には次のようになります。

import time
import requests
import datetime
dict = {'u56pt7jQXxgmtGnX5MBgsnUz4kgqKS': 'User1', 'uoREW3cuvy3SbSnyc7Ra737nVbrBQh': 'user2'}
app = "app id"
for k in dict:
    user = k
    params = {
    'token': app,
    'user': user,
    'title': 'lala',
    'message': 'test',
    'retry': 300, 
    'expire': 40,
    'priority': 2 ,
    'sound': 'siren',
    'ack': False
    }
    msg = requests.post('https://api.pushover.net/1/messages.json', data=params)
    print "POSTed message to " + dict[k]
    json_data = msg.json()
    print json_data['receipt']
    time.sleep(5)
    d = json_data['receipt']
    v = requests.get("https://api.pushover.net/1/receipts/"+ d + ".json?token=" + app)
    out = v.json()
while out['acknowledged'] is 0:
    print "not yet" #placed for debugging
    time.sleep(5)
    v = requests.get("https://api.pushover.net/1/receipts/"+ d + ".json?token=" + app)
    out = v.json() #update the out, so you can check again

def all_acknowledged(dict):
    for user in params:
        if not params['ack']:
            return False
    return True

# Line below is commented out because if we got this far we have at least one acknowledgement 
# if out['acknowledged'] is 1: 
while not all_acknowledged(dict): # custom function to check whether all users have made an acknowledgement 
    ack = out['acknowledged_by']
    for k in dict:
        if ack in k:
            acked = dict[k]
            params['ack'] = True # We must update this when we come across an acknowledged user
            t = datetime.datetime.strftime(datetime.datetime.now(), '%H:%M')
            print (acked + " acknowledged at " + t)
    v = requests.get("https://api.pushover.net/1/receipts/"+ d + ".json?token=" + app)
    out = v.json() #update the out, so you can check again
于 2016-02-14T06:41:12.980 に答える