예제 #1
0
 def get_utc(self):
     """
     Return the time in UTC as a datetime object.
     """
     value = self._get_sub_text('utc')
     if value == '':
         return xep_0082.parse(xep_0082.datetime())
     return xep_0082.parse('%sZ' % value)
예제 #2
0
파일: stanza.py 프로젝트: 2M1R/SleekXMPP
 def get_utc(self):
     """
     Return the time in UTC as a datetime object.
     """
     value = self._get_sub_text('utc')
     if value == '':
         return xep_0082.parse(xep_0082.datetime())
     return xep_0082.parse('%sZ' % value)
예제 #3
0
 def get_timestamp(self):
     """
     Return the value of the <timestamp> element as a DateTime.
     """
     p = self._get_sub_text('timestamp')
     if not p:
         return None
     else:
         return xep_0082.datetime(p)
예제 #4
0
 def get_timestamp(self):
     """
     Return the value of the <timestamp> element as a DateTime.
     """
     p = self._get_sub_text('timestamp')
     if not p:
         return None
     else:
         return xep_0082.datetime(p)
예제 #5
0
    def set_timestamp(self, timestamp):
        """
        Set the value of the <timestamp> element.

        Arguments:
            timestamp -- UTC timestamp specifying the moment when
                         the reading was taken
        """
        self._set_sub_text('timestamp', text=str(xep_0082.datetime(timestamp)))
        return self
예제 #6
0
    def set_timestamp(self, timestamp):
        """
        Set the value of the <timestamp> element.

        Arguments:
            timestamp -- UTC timestamp specifying the moment when
                         the reading was taken
        """
        self._set_sub_text('timestamp', text=str(xep_0082.datetime(timestamp)))
        return self
예제 #7
0
파일: time.py 프로젝트: taoGit/SleekXMPP
    def plugin_init(self):
        """Start the XEP-0203 plugin."""
        self.tz_offset = self.config.get('tz_offset', 0)

        # As a default, respond to time requests with the
        # local time returned by XEP-0082. However, a
        # custom function can be supplied which accepts
        # the JID of the entity to query for the time.
        self.local_time = self.config.get('local_time', None)
        if not self.local_time:
            self.local_time = lambda x: xep_0082.datetime(offset=self.tz_offset
                                                          )

        self.xmpp.registerHandler(
            Callback('Entity Time', StanzaPath('iq/entity_time'),
                     self._handle_time_request))
        register_stanza_plugin(Iq, stanza.EntityTime)

        self.xmpp['xep_0030'].add_feature('urn:xmpp:time')
예제 #8
0
    def plugin_init(self):
        """Start the XEP-0203 plugin."""
        self.tz_offset = self.config.get('tz_offset', 0)

        # As a default, respond to time requests with the
        # local time returned by XEP-0082. However, a
        # custom function can be supplied which accepts
        # the JID of the entity to query for the time.
        self.local_time = self.config.get('local_time', None)
        if not self.local_time:
            self.local_time = lambda x: xep_0082.datetime(offset=self.tz_offset)

        self.xmpp.registerHandler(
            Callback('Entity Time',
                 StanzaPath('iq/entity_time'),
                 self._handle_time_request))
        register_stanza_plugin(Iq, stanza.EntityTime)

        self.xmpp['xep_0030'].add_feature('urn:xmpp:time')
예제 #9
0
파일: time.py 프로젝트: AmiZya/emesene
 def default_local_time(jid):
     return xep_0082.datetime(offset=self.tz_offset)
예제 #10
0
파일: time.py 프로젝트: sie249aa/ThingPot
 def default_local_time(jid):
     return xep_0082.datetime(offset=self.tz_offset)