1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
|
###
# Copyright (c) 2021, Valentin Lorentz
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice,
# this list of conditions, and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions, and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of the author of this software nor the name of
# contributors to this software may be used to endorse or promote products
# derived from this software without specific prior written consent.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
###
import datetime
import re
from supybot import conf, utils, plugins, ircutils, callbacks
from supybot.commands import *
from supybot.i18n import PluginInternationalization
from . import nominatim
from . import wikidata
_ = PluginInternationalization("Geography")
def timezone_from_uri(irc, uri):
try:
return wikidata.timezone_from_uri(uri)
except utils.time.UnknownTimeZone as e:
irc.error(
format(_("Could not understand timezone: %s"), e.args[0]),
Raise=True,
)
except utils.time.TimezoneException as e:
irc.error(e.args[0], Raise=True)
class Geography(callbacks.Plugin):
"""Provides geography facts, such as timezones.
This plugin uses data from `Wikidata <https://wikidata.org/>`_
and `OSM/Nominatim <https://nominatim.openstreetmap.org/>`.
"""
threaded = True
@wrap(["text"])
def localtime(self, irc, msg, args, query):
"""<location name to search>
Returns the current used in the given location. For example,
the name could be "Paris" or "Paris, France". The response is
formatted according to supybot.reply.format.time
This uses data from Wikidata and Nominatim."""
osmids = nominatim.search_osmids(query)
if not osmids:
irc.error(_("Could not find the location"), Raise=True)
for osmid in osmids:
uri = wikidata.uri_from_osmid(osmid)
if not uri:
continue
# Get the timezone object (and handle various errors)
timezone = timezone_from_uri(irc, uri)
if timezone is None:
continue
# Get the local time
now = datetime.datetime.now(tz=timezone)
format_ = conf.supybot.reply.format.time.getSpecific(
channel=msg.channel, network=irc.network
)()
# Return it
irc.reply(now.strftime(format_))
return
irc.error(
_("Could not find the timezone of this location."), Raise=True
)
def _format_utc_offset(self, offset_seconds):
sign = "+" if offset_seconds >= 0 else "-"
# Make modulos work as expected
offset_seconds = abs(offset_seconds)
(offset_minutes, offset_seconds) = divmod(offset_seconds, 60)
(offset_hours, offset_minutes) = divmod(offset_minutes, 60)
offset = f"{offset_hours}:{offset_minutes:02}:{offset_seconds:02}"
# hide seconds and minutes if they are zero
offset = re.sub("(:00)+$", "", offset)
return f"UTC{sign}{offset}"
@wrap(["text"])
def timezone(self, irc, msg, args, query):
"""<location name to search>
Returns the timezone used in the given location. For example,
the name could be "Paris" or "Paris, France".
This uses data from Wikidata and Nominatim."""
osmids = nominatim.search_osmids(query)
if not osmids:
irc.error(_("Could not find the location"), Raise=True)
now = datetime.datetime.now(tz=datetime.timezone.utc)
for osmid in osmids:
uri = wikidata.uri_from_osmid(osmid)
if not uri:
continue
# Get the timezone object (and handle various errors)
timezone = timezone_from_uri(irc, uri)
if timezone is None:
continue
offset_seconds = int(
datetime.datetime.now(tz=timezone).utcoffset().total_seconds()
)
offset = self._format_utc_offset(offset_seconds)
# Extract a human-friendly name, depending on the type of
# the timezone object:
if hasattr(timezone, "key"):
# instance of zoneinfo.ZoneInfo
irc.reply(format("%s (currently %s)", timezone.key, offset))
return
else:
# probably datetime.timezone built from a constant offset
try:
offset = int(timezone.utcoffset(now).total_seconds())
except NotImplementedError:
continue
irc.reply(self._format_utc_offset(offset))
return
irc.error(
_("Could not find the timezone of this location."), Raise=True
)
Class = Geography
# vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79:
|