示例#1
0
def poll_api():
    with app.app_context():
        api = NSApi(app.config['NS_AUTH_STRING'])
        for subscription_id, config in db().hgetall('train_delays:api_queue').iteritems():
            user_settings = json.loads(config)

            today = dt.datetime.today()
            time_slot_begin = dt.datetime.combine(today, dt.datetime.strptime(user_settings['time_slot_begin'], '%H:%M').time())
            delays = api.get(user_settings['from_station'], user_settings['to_station'], time_slot_begin)
            time_slot_end = dt.datetime.combine(today, dt.datetime.strptime(user_settings['time_slot_end'], '%H:%M').time())

            # filter delays to match time frame
            delays = [d for d in delays if d['departure_actual'] <= time_slot_end.time()]
            if delays:
                send_to_printer(subscription_id, delays, user_settings)
示例#2
0
def check_time_frames():
    with app.app_context():
        for subscription_id, config in db().hgetall('train_delays:subscriptions').iteritems():
            user_settings = json.loads(config)

            # create datetime objects
            now = dt.datetime.now().time()
            time_slot_begin = dt.datetime.strptime(user_settings['time_slot_begin'], '%H:%M').time()
            time_slot_end = dt.datetime.strptime(user_settings['time_slot_end'], '%H:%M').time()

            # check offset if we need to call api earlier
            minutes_delta = dt.timedelta(seconds=int(['push_offset_minutes']) * 60)
            offset_time = (dt.datetime.combine(dt.date(1,1,1), time_slot_begin) - minutes_delta).time()

            # within timeframe?
            if offset_time <= now <= time_slot_end:
                # exists already?
                if not db().hexists('train_delays:api_queue', subscription_id):
                    # add to api queue
                    db().hset('train_delays:api_queue', subscription_id, config)
            elif db().hexists('train_delays:api_queue', subscription_id):
                # otherwise delete
                db().hdel('train_delays:api_queue', subscription_id)