示例#1
0
 def __init__(self, threadID, name, config, logger, hue, pirThread,
              camThread, queue):
     threading.Thread.__init__(self)
     self.threadID = threadID
     self.starttime = time.strftime("%c")
     self.name = name
     self.login = {}  # Dictionary
     self.logger = logger
     self.queue = queue
     self.token = config['TELEGRAM']['token']
     self.password = config['TELEGRAM']['password']
     self.minNotificationIntervall = int(
         config['TELEGRAM']['min_notification_interval'])
     self.path = os.path.dirname(os.path.realpath(__file__))
     self.tr = Translator(self.path, ['en_US', 'de_DE'],
                          config['TELEGRAM']['language'])
     self.offset = 0
     self.timeout = 30
     self.network_delay = 1.0
     self.config = config
     self.process = 0
     self.hue = hue
     self.pirThread = pirThread
     self.camThread = camThread
     self.running = 1
     self.chats = defaultdict(dict)
     self.bot = telegram.Bot(token=self.token)
示例#2
0
def test_extract_from_method_calls(tmpdir):
    tmpdir.join('foo.py').write("""
print tr._('hello')
print tr.gettext('world')
print tr.ngettext('orange', 'oranges', 1)
""")
    tr = Translator(tmpdir, ['it_IT'], autocompile=False)
    tr.extract()
    pot = tmpdir.join('languages', 'template.pot').read()
    assert 'hello' in pot
    assert 'world' in pot
    assert 'orange' in pot
示例#3
0
def test_translate_string(tmpdir):
    languages = ['it_IT']
    tmpdir.join('foo.py').write("print _('hello')")
    tr = Translator(tmpdir, languages, autocompile=False)
    tr.extract()
    it_IT = tr.get_po('it_IT')
    it_IT_text = it_IT.read()
    assert 'hello' in it_IT_text
    #
    add_translation(it_IT, 'hello', 'ciao')
    tr.compile()
    tr.reload()
    assert tr._('hello') == 'ciao'
 def __init__(self,
              rootdir,
              languages,
              dest_language=None,
              autocompile=True,
              engine=None):
     if engine is None:
         raise TypeError('the engine parameter is non-optional')
     Translator.__init__(self, rootdir, languages, dest_language,
                         autocompile)
     self.engine = engine
     self.db = DBModel(engine)
     self.session = self.db.Session()
     self._cache = {}
 def get(msgid, msgid_plural, is_plural):
     entry = self._lookup_entry(msgid, msgid_plural)
     if entry is not None:
         if is_plural:
             return entry.msgstr_plural
         else:
             return entry.msgstr
     else:
         return Translator.ngettext(self, msgid, msgid_plural, n)
示例#6
0
def main(argv):
    from i18n.translator import Translator
    parser = get_parser()
    args = parser.parse_args(argv[1:])
    if args.root.check(dir=False):
        parser.error('Not a directory: %s' % args.root)
    languages = map(str.strip, args.languages.split(','))
    tr = Translator(args.root, languages, autocompile=False)
    if args.command == 'extract':
        tr.extract()
    elif args.command == 'compile':
        tr.compile()
    else:
        parser.error('Invalid command: %s' % args.command)
示例#7
0
def test_extract_and_update(tmpdir):
    languages = ['it_IT']
    tmpdir.join('foo.py').write("print _('hello')")
    tr = Translator(tmpdir, languages, autocompile=False)
    tr.extract()
    # check that the template was extracted
    pot = tmpdir.join('languages', 'template.pot')
    assert 'hello' in pot.read()
    # check that the various translations has been initialized from the template
    it_IT = tmpdir.join('languages', 'it_IT', 'LC_MESSAGES', 'messages.po')
    it_IT_text = it_IT.read()
    assert 'hello' in it_IT_text
    #
    add_translation(it_IT, 'hello', 'ciao')
    #
    # add another string to translate in the source and extract again
    tmpdir.join('foo.py').write("print _('hello'), _('world')")
    tr.extract()
    assert 'world' in pot.read()
    #
    # check that it_IT has been merged correctly
    it_IT_text = it_IT.read()
    assert 'world' in it_IT_text
    assert 'ciao' in it_IT_text
示例#8
0
 def __init__(self):
     self._default = Translator(self.ROOT, self.LANGUAGES, 'en')
     self._dict = dict([(lang, Translator(self.ROOT, self.LANGUAGES, lang))
                        for lang in self.LANGUAGES])
示例#9
0
文件: bot.py 项目: h4p/pi-motion
class TelegramBot (threading.Thread):

    # Process Constants
    START        = 1
    LOGIN        = 2
    LOGOUT       = 3
    CONFIG1      = 4 # Select section
    CONFIG2      = 5 # Seclect config
    CONFIG3      = 6 # Enter Value
    LIST         = 7
    NOTIFICATION = 8 # Enable or disable motion notifications

    def __init__(self, threadID, name, config, logger, pirThread, camThread, queue):
        threading.Thread.__init__(self)
        self.threadID = threadID
        self.starttime = time.strftime("%c")
        self.name = name
        self.login = {} # Dictionary
        self.logger = logger
        self.queue = queue
        self.token = config['TELEGRAM']['token']
        self.password = config['TELEGRAM']['password']
        self.minNotificationIntervall = int(config['TELEGRAM']['min_notification_interval'])
        self.path = os.path.dirname(os.path.realpath(__file__))
        self.tr = Translator(self.path, ['en_US', 'de_DE'], config['TELEGRAM']['language'])
        self.offset = 0
        self.timeout = 30
        self.network_delay=1.0
        self.config = config
        self.process = 0
        self.pirThread = pirThread
        self.camThread = camThread
        self.running = 1
        self.chats = defaultdict(dict)
        self.bot = telegram.Bot(token=self.token)

    def reportMotionDetection(self):
        self.logger.info("Bot Detect motion")
        now = int(time.time())
        for chat_id,values in self.chats.iteritems():
            sendNotification = 0
            for valueskey,valuesvalue in values.iteritems():
                if (valueskey == "notification") and (valuesvalue == "ja"):
                    lastNotification = self.chats[chat_id]['send_notification']
                    durationSinceLastNotificaton = now - lastNotification
                    if durationSinceLastNotificaton > self.minNotificationIntervall:
                        sendNotification = 1
                    else:
                        self.logger.info("Motion detect notification disabled. Duration since last notification: " + str(durationSinceLastNotificaton))
            if sendNotification == 1:
                self.chats[chat_id]['send_notification'] = now
                self.bot.send_message(chat_id=chat_id, text=self.tr._("Motion detected."))
                self.logger.info("Send motion detect notification to " + str(chat_id))
                self.camThread.handleNotification(chat_id)

    def run(self):
        while self.running:
            try:
                updates = self.bot.get_updates( offset=self.offset)
                for update in updates:
                    now = date.today()
                    self.chats[update.message.chat.id]['lastupdate'] = now
                    self.chats[update.message.chat.id]['user'] = update.effective_user.first_name
                    self.bot.send_chat_action( chat_id=update.message.chat_id,
                                               action=telegram.ChatAction.TYPING)
                    self.offset = update.update_id + 1 # Only fetch new updates
                    if update.message.text is None:
                        update.message.reply_text(self.tr._("Sorry, but I don't understand."))
                    else:
                        self.handleUpdate(update)
            except:
                self.logger.error(str(sys.exc_info()))
                #print(traceback.format_exc())
        print "Exiting " + self.name

###############################################################################
#                                                                             # 
#                  Follow up process handler definition                       # 
#                                                                             # 
###############################################################################

    def doProcessLogin(self, update):
        if update.message.text == self.password:
            update.message.reply_text(self.tr._("Login OK"))
            update.message.reply_text(self.tr._("If you need support just enter /help"))
            self.login[update.message.chat.id] = 1
            self.chats[update.message.chat.id]['login'] = "******"
            self.chats[update.message.chat.id]['send_notification'] = 0
            self.process = 0
        else:
            update.message.reply_text(self.tr._("Invalid login. Please try again"))

    def doProcessLogout(self, update):
        yesno = update.message.text.lower()
        if yesno == self.tr._("yes"):
            text = self.tr._("Logout successful")
            self.login[update.message.chat.id] = 0
            self.chats[update.message.chat.id]['login'] = "******"
        else:
            text = self.tr._("Logout cancelled")
        reply_markup = telegram.ReplyKeyboardRemove()
        self.bot.send_message(chat_id=update.message.chat.id, 
                              text=text, 
                              reply_markup=reply_markup)
        self.process = 0

    def doProcessList(self, update):
        self.selectedSection = update.message.text
        if self.existsSection(self.selectedSection):
            text=self.tr._("Configuration values in section ") + self.selectedSection + ":\r\n"
            for option in self.config[self.selectedSection]:  
                option_key = telegram.KeyboardButton(text=option)
                if not option.startswith("_"):
                    text = text + option + "=" + self.config.get(self.selectedSection, option) + "\r\n";
            reply_markup = telegram.ReplyKeyboardRemove()
            self.process = TelegramBot.CONFIG2
        else:
            text = self.tr._("Sorry, invalid section. Enter /list and try again.") 
            reply_markup = telegram.ReplyKeyboardRemove()
            self.process = 0
        self.bot.send_message(chat_id=update.message.chat.id, 
                              text=text, 
                              reply_markup=reply_markup)

    def doProcessNotification(self, update):
        yesno = update.message.text.lower()
        reply_markup = telegram.ReplyKeyboardRemove()
        if yesno == self.tr._("yes"):
            self.chats[update.message.chat.id]['notification'] = yesno
            text = self.tr._("Motion sensor notification enabled")
        elif yesno == self.tr._("no"):
            self.chats[update.message.chat.id]['notification'] = yesno
            text = self.tr._("Motion sensor notification disabled")
        else:
            text = self.tr._("Sorry, but I don't understand.")
        self.bot.send_message(chat_id=update.message.chat.id, 
                              text=text, 
                              reply_markup=reply_markup)
            


    def doProcessEcho(self, update):
        update.message.reply_text(self.tr._("Sorry, but I don't understand."))
        update.message.reply_text(self.tr._("If you need support just enter /help"))
        self.process = 0

    def startProcess(self, process):
        self.process = process

###############################################################################
#                                                                             # 
#                            Handler definition                               # 
#                                                                             # 
###############################################################################

    def handleUpdate(self, update):
        self.logger.info(str(update.message.chat.id) + " " + update.message.text)
        print str(update.message.chat.id) + " " + update.message.text
        if   update.message.text == '/start':
            self.handleStart(update)
        elif update.message.text == '/help':
            self.handleHelp(update)
        elif update.message.text == '/login':
            self.handleLogin(update)
        elif update.message.text == '/logout':
            self.handleLogout(update)
        elif update.message.text == '/status':
            self.handleStatus(update)
        elif update.message.text == '/photo':
            self.handlePhoto(update)
        elif update.message.text == '/video':
            self.handleVideo(update)
        elif update.message.text == '/list':
            self.handleList(update)
        elif update.message.text == '/notification':
            self.handleNotification(update)
        elif update.message.text == '/restart':
            self.handleExit(update)
        else:
            self.handleMessage(update)

    def handleMessage(self, update):
        if self.process == TelegramBot.LOGIN:
            self.doProcessLogin(update)
        elif self.process == TelegramBot.LOGOUT: 
            self.doProcessLogout(update)
        elif self.process == TelegramBot.LIST: 
            self.doProcessList(update)
        elif self.process == TelegramBot.NOTIFICATION:
            self.doProcessNotification(update)
        else:
            self.doProcessEcho(update)

    def handleStart(self, update):
        self.login[update.message.chat.id] = 0
        self.startProcess (TelegramBot.START)
        update.message.reply_text(self.tr._("Welcome to the the world's smartest motion tracker.") + self.tr._("If you need support just enter /help"))

    def handleStatus(self, update):
        if self.isLoggedIn(update):
            self.startProcess (TelegramBot.START)
            update.message.reply_text(self.tr._("Bot is up and running since ") + str(self.starttime))
            for key,values in self.chats.iteritems():
                chatMessage = ""
                for valueskey,valuesvalue in values.iteritems():
                    chatMessage = chatMessage + "\r\n" + str(valueskey) + ":= " + str(valuesvalue)
                update.message.reply_text(self.tr._("Chat") + " " + str(key) + chatMessage)
        else:
            self.loginRequred(update)


    def handleHelp(self, update):
        update.message.reply_text(self.tr._("I can help youe with your motion sensor.") + "\r\n" +
                                  self.tr._("You can control me by sending these commands:") + "\r\n" +
                                  self.tr._("/login - You have to login before you can use me") + "\r\n" + 
                                  self.tr._("/logout - Logout from the motion sensor") + "\r\n" + 
                                  self.tr._("/notification - Enable/disable motion sensor notifications") + "\r\n" + 
                                  self.tr._("/list - Show motion sensor configuration") + "\r\n" +
                                  self.tr._("/status - Get current status of ther motion sensor") + "\r\n" + 
                                  self.tr._("/restart - In case of problems, you can restart the motion sensor") + "\r\n" + 
                                  self.tr._("/photo - Capture a photo") + "\r\n" + 
                                  self.tr._("/video - Capture a short video") + "\r\n")

    def camHandler(self, filename, chat_id, type):
        self.logger.info("camHandler chat_id: " + str(chat_id) + " filename: " + str(filename) + " type: " + str(type))
        timeString = str(time.strftime("%Y-%m-%d %H:%M"))
        if type == "jpg": 
            self.bot.send_photo(chat_id=chat_id, photo=open(str(filename), 'rb'))
            self.bot.send_message(chat_id=chat_id, text=self.tr._("Photo:") + " " + timeString)
        elif type == "h264":
            self.bot.send_video(chat_id=chat_id, video=open(str(filename), 'rb'), timeout=180) # 180 sec. timeout
            self.bot.send_message(chat_id=chat_id, text=self.tr._("Video:") + " " + timeString)
        elif type == "dis":
            self.bot.send_message(chat_id=chat_id, text=self.tr._("Camera is disabled by configurataion."))
        elif type == "err":
            self.bot.send_message(chat_id=chat_id, text=self.tr._("Error convertig video file:") + " " + filename)
        else:
            self.logger.info("camHandler unknown type: " + camElement.type)
        
    def handlePhoto(self, update):
        if self.isLoggedIn(update):
            update.message.reply_text(self.tr._("Please wait a moment until the photo is taken"))
            self.camThread.takePhoto(update.message.chat.id)
        else:
            self.loginRequred(update)

    def handleVideo(self, update):
        if self.isLoggedIn(update):
            update.message.reply_text(self.tr._("Please wait a moment. Video capturing will be performed"))
            self.camThread.takeVideo(update.message.chat.id)
        else:
            self.loginRequred(update)

    def handleNotification(self, update):
        if self.isLoggedIn(update):
            self.startProcess (TelegramBot.NOTIFICATION)
            yes_key = telegram.KeyboardButton(text=self.tr._("Yes"))
            no_key  = telegram.KeyboardButton(text=self.tr._("No"))
            yes_no_keyboard = [[ yes_key, no_key ]]
            reply_markup = telegram.ReplyKeyboardMarkup(yes_no_keyboard)
            self.bot.send_message(chat_id=update.message.chat.id,
                                 text=self.tr._("Do you want to get notified in case of motion detection?"),
                                 reply_markup=reply_markup)
        else:
            self.loginRequred(update)

    def handleList(self, update):
        if self.isLoggedIn(update):
            self.startProcess (TelegramBot.LIST)
            message=self.tr._("Which section of the configuration do you want to inspect?")
            self.showSectionKeyboardMessage (update, message)
        else:
            self.loginRequred(update)

    def handleLogin(self, update):
        self.startProcess (TelegramBot.LOGIN)
        update.message.reply_text(self.tr._("Enter your password:"******"Yes"))
            no_key  = telegram.KeyboardButton(text=self.tr._("No"))
            yes_no_keyboard = [[ yes_key, no_key ]]
            reply_markup = telegram.ReplyKeyboardMarkup(yes_no_keyboard)
            self.bot.send_message(chat_id=update.message.chat.id,
                                 text=self.tr._("Do you want to logout?"),
                                 reply_markup=reply_markup)
        else:
            update.message.reply_text(self.tr._("You are not logged in. You don't need to logout."))

    def handleExit(self, update):
        if self.isLoggedIn(update):
            update.message.reply_text(self.tr._("Restart will occur now."))
            self.bot.get_updates( offset=self.offset, timeout=1, network_delay=1)
            self.running = 0
            self.pirThread.quit()
            self.camThread.quit()
            sys.exit()
        else:
            self.loginRequred(update)

###############################################

    def showSectionKeyboardMessage (self, update, message):
        sections = self.config.sections()
        section_keyboard = [[],[]]
        row = 0
        for section in sections:
            section_key = telegram.KeyboardButton(text=section) 
            section_keyboard[row].append(section_key)
            row = (row + 1) % 2
        reply_markup = telegram.ReplyKeyboardMarkup(section_keyboard)
        self.bot.send_message(chat_id=update.message.chat.id,
                              text=message,
                              reply_markup=reply_markup)

    def isValidOptionValue(self, section, option, value):
        return True # TODO Input validation

    def existsOption(self, section, option):
        return self.config.has_option(section, option)

    def existsSection(self, section):
        return self.config.has_section(section) 

    def isLoggedIn(self, update):
        if update.message.chat.id in self.login and self.login[update.message.chat.id] == 1:
            return 1
        else:
            return 0

    def loginRequred(self, update):
        update.message.reply_text(self.tr._("Login required. Please /login first."))
示例#10
0
 def _do_compile(self, *args):
     self.compile_count += 1
     Translator._do_compile(self, *args)
示例#11
0
def test_pass_string_to_init(tmpdir):
    path = str(tmpdir)
    tr = Translator(path, ['it_IT'])
    assert tr.rootdir.strpath == path
 def get(msgid):
     entry = self._lookup_entry(msgid)
     if entry is not None:
         return entry.msgstr
     else:
         return Translator.gettext(self, msgid)
 def reload(self):
     Translator.reload(self)
     self.clear_cache()