You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jade-gui/jade_gui/functions/timezone_screen.py

174 lines
5.7 KiB
Python

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# timezone_screen.py
#
# Copyright 2022 user
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from gi.repository import Gtk, Adw
from gettext import gettext as _
import requests
from jade_gui.classes.jade_screen import JadeScreen
from jade_gui.widgets.timezone import TimezoneEntry
from jade_gui.utils.gtk_helpers import set_list_text
from datetime import datetime, timedelta
from pytz import timezone
import pytz
from tzlocal import get_localzone_name
@Gtk.Template(resource_path="/al/getcryst/jadegui/pages/timezone/timezone_screen.ui")
class TimezoneScreen(JadeScreen, Adw.Bin):
__gtype_name__ = "TimezoneScreen"
event_controller = Gtk.EventControllerKey.new()
### Page and widgets on timezone screen
timezone_search_button = Gtk.Template.Child()
status_page = Gtk.Template.Child()
region_preview_list = Gtk.Template.Child()
location_preview_list = Gtk.Template.Child()
preview = Gtk.Template.Child()
preview_row = Gtk.Template.Child()
chosen_timezone = None
move_to_summary = False
guessed_timezone = None
def __init__(self, window, locations, set_valid, application, **kwargs):
super().__init__(set_valid=set_valid, **kwargs)
self.window = window
builder = Gtk.Builder.new_from_resource(
"/al/getcryst/jadegui/pages/timezone/timezone_dialog.ui"
)
self.search_dialog = builder.get_object("search_dialog")
self.search_dialog.set_transient_for(self.window)
self.search_dialog.set_modal(self.window)
self.timezone_entry_search = builder.get_object("timezone_entry_search")
self.timezone_list = builder.get_object("timezone_list")
self.timezone_search = builder.get_object("timezone_search")
self.event_controller.connect("key-released", self.search_timezones)
self.timezone_entry_search.add_controller(self.event_controller)
self.timezone_list.connect("row-selected", self.select_timezone)
self.timezone_search_button.connect("clicked", self.present_dialog)
tz = get_localzone_name()
# It is sad that ListBox does not have a .length or something
# like that
#
# ˄˄ real
self._timezone_list_length = 0
for i in locations:
for locale in i:
row = TimezoneEntry(
window=window,
region=locale.region,
location=locale.location,
locale=locale.locales,
application=application,
**kwargs,
)
if tz == str(row):
self.update_from_row(row)
self.chosen_timezone = row
self.timezone_list.append(row)
self._timezone_list_length += 1
def present_dialog(self, *_):
self.search_dialog.present()
def update_from_row(self, row):
set_list_text(self.location_preview_list, row.location)
set_list_text(self.region_preview_list, row.region)
tz = row.get_timezone()
utc_now = datetime.now(pytz.utc)
tz_now = utc_now.astimezone(tz)
self.preview.set_visible(True)
self.preview.set_title("Preview")
self.preview.set_description(f"Time in {tz_now.strftime('%Z (UTC %z)')}")
self.preview_row.set_title(tz_now.strftime("%H:%M:%S"))
self.preview_row.set_subtitle(tz_now.strftime("%a %-d %B %Y"))
def ip_request_timezone(self):
print("guessing your timezone")
try:
r = requests.get("https://geoip.kde.org/v1/calamares")
self.guessed_timezone = r.json()["time_zone"]
split = self.guessed_timezone.split("/")
for i in range(self._timezone_list_length):
row = self.timezone_list.get_row_at_index(i)
if row.region == split[0] and row.location == split[1]:
self.chosen_timezone = row
self.set_valid(True)
self.update_from_row(row)
self.status_page.set_description(
f"Automatically detected {row.location}."
)
print(f'Guessed timezone as "{self.guessed_timezone}"!')
break
except Exception as e:
print("Failed to detect IP timezone!", e)
def select_timezone(self, widget, row):
self.search_dialog.hide()
self.status_page.set_description("")
self.update_from_row(row)
if row is not None or row is not self.timezone_search:
print(row.get_title())
self.chosen_timezone = row
self.set_valid(True)
else:
print("row is none!!")
def search_timezones(self, *args):
terms = self.timezone_entry_search.get_text()
self.timezone_list.set_filter_func(self.filter_timezones, terms)
@staticmethod
def filter_timezones(row, terms=None):
try:
text = row.get_title()
text = text.lower() + row.get_subtitle().lower()
if terms.lower() in text:
return True
except:
return True
return False