mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-08-24 01:33:50 +08:00
81 lines
2.6 KiB
Python
81 lines
2.6 KiB
Python
#!/usr/bin/env python3.8
|
|
# The MIT License
|
|
#
|
|
# Copyright (c) 2019-, Rick Lan, dragonpilot community, and a number of other of contributors.
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
# in the Software without restriction, including without limitation the rights
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
# furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in
|
|
# all copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
# THE SOFTWARE.
|
|
|
|
import subprocess
|
|
import os
|
|
import json
|
|
|
|
FILE = '/data/media/0/appd/appd.json'
|
|
|
|
class Appd():
|
|
|
|
def __init__(self):
|
|
self.started = False
|
|
|
|
if os.path.exists(FILE):
|
|
with open(FILE) as f:
|
|
self.app_data = json.load(f)
|
|
else:
|
|
self.app_data = None
|
|
|
|
def update(self, started):
|
|
if self.app_data is not None:
|
|
if started:
|
|
if not self.started:
|
|
self.started = True
|
|
self.onroad()
|
|
else:
|
|
if self.started:
|
|
self.started = False
|
|
self.offroad()
|
|
|
|
def onroad(self):
|
|
for app in self.app_data:
|
|
if app['app'] == 'lan.rick.pandagpsservice' and self.installed(app['app']):
|
|
self.system('pm uninstall lan.rick.pandagpsservice')
|
|
pass
|
|
if not self.installed(app['app']) and os.path.exists(app['apk']):
|
|
self.system("pm install -r %s" % app['apk'])
|
|
for cmd in app['onroad_cmd']:
|
|
self.system(cmd)
|
|
|
|
def offroad(self):
|
|
for app in self.app_data:
|
|
if self.installed(app['app']):
|
|
for cmd in app['offroad_cmd']:
|
|
self.system(cmd)
|
|
|
|
def installed(self, app_name):
|
|
try:
|
|
result = subprocess.check_output(["dumpsys", "package", app_name, "|", "grep", "versionName"], encoding='utf8')
|
|
if len(result) > 12:
|
|
return True
|
|
except:
|
|
pass
|
|
return False
|
|
|
|
def system(self, cmd):
|
|
try:
|
|
subprocess.check_output(cmd, stderr=subprocess.STDOUT, shell=True)
|
|
except:
|
|
pass |