mirror of
https://github.com/liberatedsystems/Sideband_CE.git
synced 2024-09-03 04:13:27 +02:00
Map loading from mbtiles and storage permissions
This commit is contained in:
parent
abe736cbee
commit
f6e07f58b3
@ -1,4 +1,4 @@
|
|||||||
__debug_build__ = False
|
__debug_build__ = True
|
||||||
__disable_shaders__ = False
|
__disable_shaders__ = False
|
||||||
__version__ = "0.7.0"
|
__version__ = "0.7.0"
|
||||||
__variant__ = "beta"
|
__variant__ = "beta"
|
||||||
@ -45,8 +45,12 @@ from kivymd.uix.list import OneLineIconListItem
|
|||||||
from kivy.properties import StringProperty
|
from kivy.properties import StringProperty
|
||||||
from kivymd.uix.pickers import MDColorPicker
|
from kivymd.uix.pickers import MDColorPicker
|
||||||
from kivymd.uix.button import BaseButton, MDIconButton
|
from kivymd.uix.button import BaseButton, MDIconButton
|
||||||
|
from kivymd.uix.filemanager import MDFileManager
|
||||||
|
from kivymd.toast import toast
|
||||||
from sideband.sense import Telemeter
|
from sideband.sense import Telemeter
|
||||||
from mapview import CustomMapMarker
|
from mapview import CustomMapMarker
|
||||||
|
from mapview.mbtsource import MBTilesMapSource
|
||||||
|
from mapview.source import MapSource
|
||||||
|
|
||||||
if RNS.vendor.platformutils.get_platform() == "android":
|
if RNS.vendor.platformutils.get_platform() == "android":
|
||||||
from sideband.core import SidebandCore
|
from sideband.core import SidebandCore
|
||||||
@ -62,6 +66,7 @@ if RNS.vendor.platformutils.get_platform() == "android":
|
|||||||
from jnius import autoclass
|
from jnius import autoclass
|
||||||
from android import mActivity
|
from android import mActivity
|
||||||
from android.permissions import request_permissions, check_permission
|
from android.permissions import request_permissions, check_permission
|
||||||
|
from android.storage import primary_external_storage_path, secondary_external_storage_path
|
||||||
|
|
||||||
from kivymd.utils.set_bars_colors import set_bars_colors
|
from kivymd.utils.set_bars_colors import set_bars_colors
|
||||||
android_api_version = autoclass('android.os.Build$VERSION').SDK_INT
|
android_api_version = autoclass('android.os.Build$VERSION').SDK_INT
|
||||||
@ -464,7 +469,7 @@ class SidebandApp(MDApp):
|
|||||||
def check_storage_permission(self):
|
def check_storage_permission(self):
|
||||||
storage_permissions_ok = False
|
storage_permissions_ok = False
|
||||||
if android_api_version < 30:
|
if android_api_version < 30:
|
||||||
if check_permission("android.permission.WRITE_EXTERNAL_STORAGE"):
|
if check_permission("android.permission.WRITE_EXTERNAL_STORAGE") and check_permission("android.permission.READ_EXTERNAL_STORAGE"):
|
||||||
storage_permissions_ok = True
|
storage_permissions_ok = True
|
||||||
else:
|
else:
|
||||||
self.request_storage_permission()
|
self.request_storage_permission()
|
||||||
@ -478,7 +483,7 @@ class SidebandApp(MDApp):
|
|||||||
ok_button = MDRectangleFlatButton(text="OK",font_size=dp(18))
|
ok_button = MDRectangleFlatButton(text="OK",font_size=dp(18))
|
||||||
dialog = MDDialog(
|
dialog = MDDialog(
|
||||||
title="Storage Permission",
|
title="Storage Permission",
|
||||||
text="Sideband needs permission to write to external storage to export, share and print paper messages.\n\nOn this Android version, the Manage All Files permission is needed, since normal external storage permission is no longer supported.\n\nSideband will only ever read and write to files in the \"Sideband\" folder of your external storage, and does not read any other data from your system.",
|
text="Sideband needs external storage permission to to read offline map files.\n\nOn this Android version, the Manage All Files permission is needed, since normal external storage permission is no longer supported.\n\nSideband will only ever read and write to files you select, and does not read any other data from your system.",
|
||||||
buttons=[ ok_button ],
|
buttons=[ ok_button ],
|
||||||
)
|
)
|
||||||
def dl_ok(s):
|
def dl_ok(s):
|
||||||
@ -3215,6 +3220,75 @@ class SidebandApp(MDApp):
|
|||||||
### Map Screen
|
### Map Screen
|
||||||
######################################
|
######################################
|
||||||
|
|
||||||
|
def map_fm_got_path(self, path):
|
||||||
|
self.map_fm_exited()
|
||||||
|
# TODO: Remove
|
||||||
|
toast(path)
|
||||||
|
###
|
||||||
|
try:
|
||||||
|
source = MBTilesMapSource(path)
|
||||||
|
self.map_update_source(source)
|
||||||
|
self.sideband.config["map_storage_file"] = path
|
||||||
|
self.sideband.save_configuration()
|
||||||
|
except Exception as e:
|
||||||
|
RNS.log(f"Error while loading map \"{path}\": "+str(e), RNS.LOG_ERROR)
|
||||||
|
selfmap_update_source()
|
||||||
|
|
||||||
|
def map_fm_exited(self, *args):
|
||||||
|
RNS.log("Closing file manager", RNS.LOG_DEBUG)
|
||||||
|
self.sideband.config["map_storage_file"] = None
|
||||||
|
self.sideband.save_configuration()
|
||||||
|
self.manager_open = False
|
||||||
|
self.file_manager.close()
|
||||||
|
self.map_update_source()
|
||||||
|
|
||||||
|
def map_get_source(self):
|
||||||
|
current_map_path = self.sideband.config["map_storage_file"]
|
||||||
|
source = None
|
||||||
|
|
||||||
|
if current_map_path:
|
||||||
|
try:
|
||||||
|
source = MBTilesMapSource(current_map_path)
|
||||||
|
except Exception as e:
|
||||||
|
RNS.log(f"Error while loading map from \"{current_map_path}\": "+str(e))
|
||||||
|
self.sideband.config["map_storage_file"] = None
|
||||||
|
self.sideband.save_configuration()
|
||||||
|
|
||||||
|
if source == None:
|
||||||
|
source = MapSource.from_provider("osm")
|
||||||
|
|
||||||
|
return source
|
||||||
|
|
||||||
|
def map_update_source(self, source=None):
|
||||||
|
ns = source or self.map_get_source()
|
||||||
|
if self.map != None:
|
||||||
|
self.map.map_source = ns
|
||||||
|
|
||||||
|
def map_test_action(self, sender=None):
|
||||||
|
perm_ok = False
|
||||||
|
if RNS.vendor.platformutils.is_android():
|
||||||
|
perm_ok = self.check_storage_permission()
|
||||||
|
|
||||||
|
if self.sideband.config["map_storage_external"]:
|
||||||
|
path = secondary_external_storage_path()
|
||||||
|
if path == None: path = primary_external_storage_path()
|
||||||
|
else:
|
||||||
|
path = primary_external_storage_path()
|
||||||
|
|
||||||
|
else:
|
||||||
|
perm_ok = True
|
||||||
|
path = os.path.expanduser("~")
|
||||||
|
|
||||||
|
if perm_ok and path != None:
|
||||||
|
self.file_manager = MDFileManager(
|
||||||
|
exit_manager=self.map_fm_exited,
|
||||||
|
select_path=self.map_fm_got_path,
|
||||||
|
)
|
||||||
|
self.file_manager.ext = [".mbtiles"]
|
||||||
|
self.file_manager.show(path)
|
||||||
|
else:
|
||||||
|
toast("No file access, check permissions!")
|
||||||
|
|
||||||
def map_action(self, sender=None, direction="left"):
|
def map_action(self, sender=None, direction="left"):
|
||||||
if not self.root.ids.screen_manager.has_screen("map_screen"):
|
if not self.root.ids.screen_manager.has_screen("map_screen"):
|
||||||
self.map_screen = Builder.load_string(layout_map_screen)
|
self.map_screen = Builder.load_string(layout_map_screen)
|
||||||
@ -3222,9 +3296,10 @@ class SidebandApp(MDApp):
|
|||||||
self.root.ids.screen_manager.add_widget(self.map_screen)
|
self.root.ids.screen_manager.add_widget(self.map_screen)
|
||||||
|
|
||||||
from mapview import MapView
|
from mapview import MapView
|
||||||
mapview = MapView(zoom=self.sideband.config["map_zoom"], lat=self.sideband.config["map_lat"], lon=self.sideband.config["map_lon"])
|
mapview = MapView(map_source=self.map_get_source(), zoom=self.sideband.config["map_zoom"], lat=self.sideband.config["map_lat"], lon=self.sideband.config["map_lon"])
|
||||||
mapview.snap_to_zoom = False
|
mapview.snap_to_zoom = False
|
||||||
mapview.double_tap_zoom = True
|
mapview.double_tap_zoom = True
|
||||||
|
self.map = mapview
|
||||||
self.map_screen.ids.map_layout.map = mapview
|
self.map_screen.ids.map_layout.map = mapview
|
||||||
self.map_screen.ids.map_layout.add_widget(self.map_screen.ids.map_layout.map)
|
self.map_screen.ids.map_layout.add_widget(self.map_screen.ids.map_layout.map)
|
||||||
|
|
||||||
@ -3244,11 +3319,16 @@ class SidebandApp(MDApp):
|
|||||||
if hasattr(self, "location_error_dialog") and self.location_error_dialog != None:
|
if hasattr(self, "location_error_dialog") and self.location_error_dialog != None:
|
||||||
self.location_error_dialog.dismiss()
|
self.location_error_dialog.dismiss()
|
||||||
|
|
||||||
|
def map_object_list(self, sender):
|
||||||
|
pass
|
||||||
|
|
||||||
def map_show(self, location):
|
def map_show(self, location):
|
||||||
if hasattr(self.map_screen.ids.map_layout, "map") and self.map_screen.ids.map_layout.map:
|
if hasattr(self, "map") and self.map:
|
||||||
self.map_screen.ids.map_layout.map.lat = location["latitude"]
|
self.map.center_on(location["latitude"],location["longtitude"])
|
||||||
self.map_screen.ids.map_layout.map.lon = location["longtitude"]
|
# self.map.lat = location["latitude"]
|
||||||
self.map_screen.ids.map_layout.map.zoom = 16
|
# self.map.lon = location["longtitude"]
|
||||||
|
self.map.zoom = 16
|
||||||
|
self.map.trigger_update(True)
|
||||||
|
|
||||||
def map_show_peer_location(self, context_dest):
|
def map_show_peer_location(self, context_dest):
|
||||||
location = self.sideband.peer_location(context_dest)
|
location = self.sideband.peer_location(context_dest)
|
||||||
@ -3457,8 +3537,7 @@ class SidebandApp(MDApp):
|
|||||||
|
|
||||||
self.last_map_update = time.time()
|
self.last_map_update = time.time()
|
||||||
if changes:
|
if changes:
|
||||||
mv = self.map_screen.ids.map_layout.map
|
self.map.trigger_update(True)
|
||||||
mv.trigger_update(True)
|
|
||||||
|
|
||||||
### Guide screen
|
### Guide screen
|
||||||
######################################
|
######################################
|
||||||
|
@ -516,6 +516,12 @@ class SidebandCore():
|
|||||||
self.config["map_lon"] = 0.0
|
self.config["map_lon"] = 0.0
|
||||||
if not "map_zoom" in self.config:
|
if not "map_zoom" in self.config:
|
||||||
self.config["map_zoom"] = 3
|
self.config["map_zoom"] = 3
|
||||||
|
if not "map_storage_external" in self.config:
|
||||||
|
self.config["map_storage_external"] = False
|
||||||
|
if not "map_storage_path" in self.config:
|
||||||
|
self.config["map_storage_path"] = None
|
||||||
|
if not "map_storage_file" in self.config:
|
||||||
|
self.config["map_storage_file"] = None
|
||||||
|
|
||||||
# Make sure we have a database
|
# Make sure we have a database
|
||||||
if not os.path.isfile(self.db_path):
|
if not os.path.isfile(self.db_path):
|
||||||
@ -1691,7 +1697,7 @@ class SidebandCore():
|
|||||||
|
|
||||||
if packed_telemetry != None:
|
if packed_telemetry != None:
|
||||||
extras["packed_telemetry"] = packed_telemetry
|
extras["packed_telemetry"] = packed_telemetry
|
||||||
|
|
||||||
extras = msgpack.packb(extras)
|
extras = msgpack.packb(extras)
|
||||||
|
|
||||||
query = "INSERT INTO lxm (lxm_hash, dest, source, title, tx_ts, rx_ts, state, method, t_encrypted, t_encryption, data, extra) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"
|
query = "INSERT INTO lxm (lxm_hash, dest, source, title, tx_ts, rx_ts, state, method, t_encrypted, t_encryption, data, extra) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"
|
||||||
|
Loading…
Reference in New Issue
Block a user