コード例 #1
0
ファイル: receiver.py プロジェクト: toantony06/20messages
def handle_postback(raw_event):
    bot = Bot(utils.config["page_access_token"])
    cuser = messages.user(bot.get_user_info(raw_event["sender"]["id"]),
                          raw_event["sender"]["id"])

    payload = raw_event["postback"]["payload"]

    red_user = utils.get_redis(cuser.id)

    # welcome message, user has not signed up yet
    if red_user == None:
        messages.intro_message(bot, cuser)
        return

    # if something is different between the user and the database user
    if red_user.is_different(cuser):
        utils.set_redis(cuser.id, red_user)

    if payload == "starting_gate":
        # and not red_user.looking_for_chat:
        if not red_user.in_chat and not red_user.looking_for_chat:

            red_user.set_looking_for_chat()
            found_chat = red_user.search_for_chat()

            bot.send_text_message(red_user.id, "Searching...")
            if found_chat:
                messages.found_chat_reply(bot, red_user, found_chat)

        elif red_user.looking_for_chat:
            messages.send_in_limbo(bot, red_user)

    elif payload == "decision_time_yes" or payload == "decision_time_no":
        if not red_user.on_edge:
            return

        other_user = utils.get_redis(red_user.in_chat_with)

        if payload == "decision_time_no":
            messages.decision_time_no(bot, red_user, other_user)
        else:
            if red_user.showed_id:
                messages.waiting_for_decision(bot, red_user)
                return
            messages.decision_time_yes(bot, red_user, other_user)

    elif payload == "start_message":
        handle_message(raw_event)
コード例 #2
0
ファイル: receiver.py プロジェクト: toantony06/20messages
def handle_auth_message(user_id, code):
    # get the info used for all messages
    bot = Bot(utils.config["page_access_token"])
    cuser = utils.get_redis(user_id)
    new_user = False

    if cuser == None:
        cuser = messages.user(bot.get_user_info(user_id), user_id)
        new_user = True

    needs_update = cuser.needs_api_update
    cuser.needs_api_update = False
    cuser.set_api_key(code)
    utils.set_redis(user_id, cuser)

    if new_user:
        messages.after_registering(cuser)
    elif needs_update:
        messages.refresh_api_key()
コード例 #3
0
ファイル: receiver.py プロジェクト: toantony06/20messages
def handle_message(raw_event):
    # use pymessenger to make an API call to FB to get the
    # info about the user who send the message
    bot = Bot(utils.config["page_access_token"])
    user_id = raw_event["sender"]["id"]
    user_info = bot.get_user_info(user_id)

    cuser = messages.user(user_info, user_id)

    red_user = utils.get_redis(cuser.id)

    # welcome message, user has not signed up yet
    if red_user == None:
        messages.intro_message(bot, cuser)
        return

    # if something is different between the user and the database user
    if red_user.is_different(cuser):
        utils.set_redis(cuser.id, red_user)

    elif red_user.looking_for_chat:
        messages.send_in_limbo(bot, red_user)

    elif red_user.in_chat:
        if "message" in raw_event.keys():
            raw_message = raw_event["message"]
            messages.handle_chat(bot, red_user, raw_message)
        else:
            bot.send_text_message(user_id, "You are in a chat currently")

    elif red_user.on_edge and not red_user.showed_id:
        messages.send_decision_message(bot, red_user)

    elif red_user.on_edge and red_user.showed_id:
        messages.waiting_for_decision(bot, red_user)

    elif not red_user.in_chat and not red_user.looking_for_chat and not red_user.on_edge:
        messages.send_starting_gate(bot, red_user)
コード例 #4
0
ファイル: chatbot.py プロジェクト: zedaxisllc/OctoRest
    def __init__(self, fb_access_tok='YourFBAccessToken', 
                fb_verify_tok="YourTokenVerification",
                octo_url="http://octopi.local",
                octo_apikey="YouShallNotPass"):
        """
        Initialisation of the ChatBot for OctoWatch
        Parameters:
            fb_access_tok - the Facebook messenger access token given
            fb_verify_tok - the Facebook messenger verification code set
            octo_url - the url of the desired OctoPrint server
            octo_apikey - the apikey found in the OctoPrint settings
        """
        Flask.__init__(self, __name__)

        self.access_token = fb_access_tok
        self.verify_token = fb_verify_tok
        self.url = octo_url
        self.apikey = octo_apikey

        self.bot = Bot(self.access_token)

        self.recipient = None

        self.client = self.make_client(url=self.url, apikey=self.apikey)
コード例 #5
0
ファイル: app.py プロジェクト: sapka12/progress-alert-bot
import os
import rollbar

from flask import Flask, request
from pymessenger2.bot import Bot
from tools.config import Config
from tools.options import Options
from tools.mongo_crud import MongoCrud
from tools.chart import Chart

rollbar.init(Config.ROLLBAR, 'production')

app = Flask(__name__)
bot = Bot(Config.ACCESS_TOKEN)


@app.route("/", methods=['GET', 'POST'])
def receive_message():
    try:
        if request.method == 'GET':
            """Before allowing people to message your bot, Facebook has implemented a verify token
            that confirms all requests that your bot receives came from Facebook."""
            token_sent = request.args.get("hub.verify_token")
            return verify_fb_token(token_sent)
        else:
            output = request.get_json()
            for event in output['entry']:
                messaging = event['messaging']
                for message in messaging:
                    if message.get('message'):
                        recipient_id = message['sender']['id']
コード例 #6
0
# Python libraries that we need to import for our bot
from flask import Flask, request
from pymessenger2.bot import Bot
from PIL import Image
import requests
from io import BytesIO
import BicubicEnhance

app = Flask(__name__)
ACCESS_TOKEN = 'ACCESS_TOKEN'
VERIFY_TOKEN = '4tynswpmkn8s0'
bot = Bot(
    "EAAC1O1Kjh9IBAJQkodbIG8oKgBg9ZChQBWIXrZAM9AZBGYEgmwHpDgCMCMdmsxUR1arISzjNDxQ6J8IQCLJjxl4XMXlQ2OhUomZCrcZBZC5"
    "aEeAwtvHn35uyZChVLmO87zsCDLKoxpdzBDoywH5ZAoO61xlmtWAZBaP4SNmNdjhE62WZCmunrv0FoM"
)


# We will receive messages that Facebook sends our bot at this endpoint
@app.route("/", methods=['GET', 'POST'])
def receive_message():
    if request.method == 'GET':
        """Before allowing people to message your bot, Facebook has implemented a verify token
        that confirms all requests that your bot receives came from Facebook."""
        token_sent = request.args.get("hub.verify_token")
        return verify_fb_token(token_sent)
    # if the request was not get, it must be POST and we can just proceed with sending a message back to user
    else:
        # get whatever message a user sent the bot
        output = request.get_json()
        for event in output['entry']:
            messaging = event['messaging']
コード例 #7
0
ファイル: chatbot.py プロジェクト: zedaxisllc/OctoRest
class ChatBot(Flask):

    def __init__(self, fb_access_tok='YourFBAccessToken', 
                fb_verify_tok="YourTokenVerification",
                octo_url="http://octopi.local",
                octo_apikey="YouShallNotPass"):
        """
        Initialisation of the ChatBot for OctoWatch
        Parameters:
            fb_access_tok - the Facebook messenger access token given
            fb_verify_tok - the Facebook messenger verification code set
            octo_url - the url of the desired OctoPrint server
            octo_apikey - the apikey found in the OctoPrint settings
        """
        Flask.__init__(self, __name__)

        self.access_token = fb_access_tok
        self.verify_token = fb_verify_tok
        self.url = octo_url
        self.apikey = octo_apikey

        self.bot = Bot(self.access_token)

        self.recipient = None

        self.client = self.make_client(url=self.url, apikey=self.apikey)
    
    def make_client(self, url=None, apikey=None):
        """
        Creates and returns an instance of the OctoRest client.
        Parameters:
            url - the url to the octoprint server
            apikey - the apikey from the octoprint server found in settings
        """
        if url is None:
            url = self.url
        if apikey is None:
            url = self.apikey
        try:
            client = OctoRest(url=url, apikey=apikey)
            return client
        except ConnectionError as ex:
            print(ex)

    def verify_fb_token(self, token_sent):
        """
        Take token sent by Facebook and verify it matches the verify token
        If they match, allow the request, else return an error
        Parameters:
            token_sent - the token received from Facebook
        """
        if token_sent == self.verify_token:
            return request.args.get("hub.challenge")
        return "Invalid verification token"

    def get_message(self):
        """
        Returns a random message from a list of strings
        """
        sample_responses = ["Your print is okay", "I have spotted an error", "1 hour to go"]
        return random.choice(sample_responses)

    def send_message(self, recipient_id, response):
        """
        Uses PyMessenger to send response to user
        Sends user the text message provided via input response parameter
        Parameters
            recipient_id - the id of the person receiving
            response - the text message to respond with
        """
        self.bot.send_text_message(recipient_id, response)
        return "success"

    def send_image(self, recipient_id, response):
        """
        Uses PyMessenger to send response to user
        Sends user an image provided via the image path in the input response parameter
        Parameters
            recipient_id - the id of the person receiving
            response - the image to respond with given as a path
        """
        self.bot.send_image(recipient_id, response)
        return "success"
    
    def get_printer_info(self):
        """
        Retrieves information about the printer
        and returns a chatbot message with its current state
        """
        message = str(self.client.version) + "\n"
        message += str(self.client.job_info()) + "\n"
        printing = self.client.printer()['state']['flags']['printing']
        if printing:
            message += "Currently printing!\n"
        else:
            message += "Not currently printing...\n"
        return message
    
    def get_version(self):
        """
        Retrieves the OctoPrint version and returns chatbot message
        """
        message = "You are using OctoPrint v" + str(self.client.version['server']) + "\n"
        return message
    
    def get_gcode_file_names(self):
        """
        Retrieves the GCODE file names from the
        OctoPrint server and returns chatbot message
        """
        message = "The GCODE files currently on the printer are:\n\n"
        for k in self.client.files()['files']:
            message += k['name'] + "\n"
        return message
    
    def home(self):
        """
        Homes the 3D printer and returns
        message to inform the user
        """
        message = "Homing your printer... :)"
        self.client.home()
        return message

    def toggle(self):
        """
        Toggles the current print from paused/printing
        states and returns message to inform the user
        """
        message = "Toggling your print!"
        self.client.pause()
        return message
    
    def receive_message(self):
        """
        Method for sending/receiving messages to/from users
        on Facebook. Checks if tokens are valid. Depending on
        the text received will select the appropriate reply.
        Receives JSON from OctoWatch containing information
        about the print if there has been an error.
        """
        if request.method == 'GET':
            """
            Before allowing people to message your bot, Facebook has
            implemented a verify token that confirms all requests 
            that your bot receives came from Facebook.
            """ 
            token_sent = request.args.get("hub.verify_token")
            return self.verify_fb_token(token_sent)
        # if the request was not get, it must be POST and we can just
        # proceed with sending a message back to user
        else:
            # get whatever message a user sent the bot
            output = request.get_json()
            # if it was from messenger
            if 'object' in output and 'entry' in output:
                for event in output['entry']:
                    messaging = event['messaging']
                    for message in messaging:
                        if message.get('message'):
                            # Facebook Messenger ID for user so we know where
                            # to send response back to
                            recipient_id = message['sender']['id']
                            self.recipient = recipient_id
                            text = message['message'].get('text')
                            if text == 'status':
                                self.send_message(recipient_id, self.get_printer_info())
                            elif text == 'version':
                                self.send_message(recipient_id, self.get_version())
                            elif text == 'files':
                                self.send_message(recipient_id, self.get_gcode_file_names())
                            elif text == 'home':
                                self.send_message(recipient_id, self.home())
                            elif text == 'toggle':
                                self.send_message(recipient_id, self.toggle())
                            elif text == 'pause':
                                self.send_message(recipient_id, self.toggle())
                            elif text == 'resume':
                                self.send_message(recipient_id, self.toggle())
                            elif text == 'cancel':
                                self.send_message(recipient_id, self.toggle())
                            elif message['message'].get('text'):
                                response_sent_text = self.get_message()
                                self.send_message(recipient_id, response_sent_text)
                            # if user sends us a GIF, photo,video, 
                            # or any other non-text item
                            if message['message'].get('attachments'):
                                response_sent_nontext = self.get_message()
                                self.send_message(recipient_id, response_sent_nontext)
                return "Message Processed"
            # if not recognised
            else:
                print("Don't recognise...")
                return "failed"
コード例 #8
0
ファイル: app.py プロジェクト: enod/smartcity-chatbot
from flask import Flask, request
from pymessenger2.bot import Bot
import os
from pymessenger2.buttons import URLButton, PostbackButton
from pymessenger2 import Element, QuickReply
import time


app = Flask(__name__)

ACCESS_TOKEN = "EAAKNq3yKyFoBADutBOzIwBYJiBE3tDVjSZA3gFQHChLd0XJmnm2lWqk5TmcZCN8iYheZCSP5GRMxZA6oQaZBrkX0JYejGUeX3jnnO4VL9LEM2LDeZAYl43ZBDC1ygg3a0o7o8m3tZC9GlC2a8pcrbLWphQO9Ku35kLGXppZCl6Vy59gZDZD"
VERIFY_TOKEN = "hi there"
bot = Bot(ACCESS_TOKEN, api_version='2.12')

welcome_msg = '''
Hello {}! I’m SMART CITY chatbot 🤖, I can offer you municipality service everywhere at any time. You can message me about road issues. 
'''
global dialogue
global story
dialogue = []
story = []
timeline = 0
seq = []

@app.route("/", methods=['GET', 'POST'])
def hello():
    if request.method == 'GET':
        if request.args.get("hub.verify_token") == VERIFY_TOKEN:
            return request.args.get("hub.challenge")
        else:
            return 'Invalid verification token'
コード例 #9
0
import os
import requests

from pymessenger2 import Element, QuickReply
from pymessenger2.buttons import URLButton, PostbackButton
from pymessenger2.bot import Bot

TOKEN = os.environ.get('TOKEN')
APP_SECRET = os.environ.get('APP_SECRET')

bot = Bot(TOKEN, app_secret=APP_SECRET)

recipient_id = os.environ.get('RECIPIENT_ID')


def test_wrong_format_message():
    result = bot.send_text_message(recipient_id, {'text': "its a test"})
    assert type(result) is dict
    assert result.get('message_id') is None


def test_text_message():
    result = bot.send_text_message(recipient_id, "test")
    assert type(result) is dict
    assert result.get('message_id') is not None
    assert result.get('recipient_id') is not None


def test_elements():
    image_url = 'https://lh4.googleusercontent.com/-dZ2LhrpNpxs/AAAAAAAAAAI/AAAAAAAA1os/qrf-VeTVJrg/s0-c-k-no-ns/photo.jpg'
    elements = []
コード例 #10
0
from threading import Thread

from flask import Flask, request
from gpiozero import LED
from pymessenger2.bot import Bot

from sensors import camera, humidity, light, temperature
import replies
import secrets

green = LED(9)
green.on()

# Globals ---------------------------------------------------------------------
app = Flask(__name__)
bot = Bot(secrets.PAGE_ACCESS_TOKEN)


def log(message):
    print(message)
    sys.stdout.flush()


# Webhook verification --------------------------------------------------------
@app.route('/', methods=['GET'])
def verify():
    mode = request.args.get('hub.mode')
    token = request.args.get('hub.verify_token')
    challenge = request.args.get('hub.challenge')
    if mode and token:
        if mode == 'subscribe' and token == secrets.FACEBOOK_VERIFY_TOKEN:
コード例 #11
0

import json
import logging

from django.shortcuts import render
from django.http import HttpResponse
from django.views.decorators.csrf import csrf_exempt
from django.forms.models import model_to_dict
from pymessenger2.bot import Bot
from dateparser import parse

from fantastik.settings import TOKEN


bot = Bot(TOKEN)


# Get an instance of a logger
logger = logging.getLogger(__name__)


def get_text_message(data):    
    for entry in data['entry']:
        for messaging_event in entry['messaging']:
            if messaging_event.get('message'):
                if 'text' in messaging_event['message']:
                    return messaging_event['message']['text']

    return 'f**k you'
コード例 #12
0
#interpreter = RasaNLUInterpreter("models/nlu/default/vegabot",, lazy_init=False)

MODEL_PATH = "models/dialogue/"
#
# agent = Agent.load(MODEL_PATH,interpreter=interpreter)
#
# print(agent)

app = Flask(__name__)
#ACCESS_TOKEN = 'EAAEJrZBTxYqoBABc0lXzaZBqai7M6CpZC9CZCgkSYqX6SmpDivG7T1rIbHn88ft7pe2iguWWl1o71hoU87DqblFZAgKzqzReA66SnbZAhGuhFVMb3gPTzLqmmrkonhtlJlANjJbNbBbZB49uc9ldNGrkApG2NEZBXguyIGOMcQD6GwZDZD'
#VERIFY_TOKEN = 'VERIFY_TOKEN'

ACCESS_TOKEN = os.eviron['ACCESS_TOKEN']
VERIFY_TOKEN = os.environ['VERIFY_TOKEN']

bot = Bot(ACCESS_TOKEN)

import pymysql

connection = pymysql.connect(host='127.0.0.1',
                             user='******',
                             password='******',
                             port=8889)


def train_bot(data_json, config_file, model_dir):
    training_data = load_data(data_json)
    trainer = Trainer(config.load(config_file))
    trainer.train(training_data)
    model_directory = trainer.persist(model_dir, fixed_model_name='vegabot')
コード例 #13
0
def refresh_api_key(cuser):
    bot = Bot(utils.config["page_access_token"])

    bot.send_text_message(cuser.id,
                          "The API was refreshed. Everthing looks good!")
    send_starting_gate(bot, cuser)
コード例 #14
0
def after_registering(cuser):
    bot = Bot(utils.config["page_access_token"])

    bot.send_text_message(cuser.id, "You are now registered!")
    send_starting_gate(bot, cuser)