2022-09-14 16:11:38 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
from flipper.app import App
|
2023-03-14 14:29:28 +00:00
|
|
|
from flipper.storage import FlipperStorage, FlipperStorageOperations
|
2022-09-14 16:11:38 +00:00
|
|
|
from flipper.utils.cdc import resolve_port
|
|
|
|
|
|
|
|
import os
|
2023-03-14 14:29:28 +00:00
|
|
|
import posixpath
|
|
|
|
from functools import reduce
|
|
|
|
import operator
|
2022-09-14 16:11:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Main(App):
|
|
|
|
def init(self):
|
|
|
|
self.parser.add_argument("-p", "--port", help="CDC Port", default="auto")
|
2023-01-11 10:13:07 +00:00
|
|
|
self.parser.add_argument(
|
2023-03-14 14:29:28 +00:00
|
|
|
"--sources",
|
|
|
|
"-s",
|
|
|
|
nargs="+",
|
|
|
|
action="append",
|
|
|
|
default=[],
|
|
|
|
help="Files to send",
|
2023-01-11 10:13:07 +00:00
|
|
|
)
|
2022-09-14 16:11:38 +00:00
|
|
|
self.parser.add_argument(
|
2023-03-14 14:29:28 +00:00
|
|
|
"--targets",
|
|
|
|
"-t",
|
|
|
|
nargs="+",
|
|
|
|
action="append",
|
|
|
|
default=[],
|
|
|
|
help="File destinations (must be same length as -s)",
|
2022-09-14 16:11:38 +00:00
|
|
|
)
|
2023-03-14 14:29:28 +00:00
|
|
|
self.parser.add_argument(
|
|
|
|
"--host-app",
|
|
|
|
"-a",
|
|
|
|
help="Host app to launch",
|
|
|
|
)
|
|
|
|
|
2022-09-14 16:11:38 +00:00
|
|
|
self.parser.set_defaults(func=self.install)
|
|
|
|
|
2023-03-14 14:29:28 +00:00
|
|
|
@staticmethod
|
|
|
|
def flatten(l):
|
|
|
|
return reduce(operator.concat, l, [])
|
2022-09-14 16:11:38 +00:00
|
|
|
|
|
|
|
def install(self):
|
2023-03-14 14:29:28 +00:00
|
|
|
self.args.sources = self.flatten(self.args.sources)
|
|
|
|
self.args.targets = self.flatten(self.args.targets)
|
|
|
|
|
|
|
|
if len(self.args.sources) != len(self.args.targets):
|
|
|
|
self.logger.error(
|
|
|
|
f"Error: sources ({self.args.sources}) and targets ({self.args.targets}) must be same length"
|
|
|
|
)
|
2022-09-14 16:11:38 +00:00
|
|
|
return 1
|
|
|
|
|
2023-03-14 14:29:28 +00:00
|
|
|
if not (port := resolve_port(self.logger, self.args.port)):
|
|
|
|
return 2
|
2022-09-14 16:11:38 +00:00
|
|
|
|
|
|
|
try:
|
2023-03-14 14:29:28 +00:00
|
|
|
with FlipperStorage(port) as storage:
|
|
|
|
storage_ops = FlipperStorageOperations(storage)
|
|
|
|
for fap_local_path, fap_dst_path in zip(
|
|
|
|
self.args.sources, self.args.targets
|
|
|
|
):
|
|
|
|
self.logger.info(f'Installing "{fap_local_path}" to {fap_dst_path}')
|
2022-09-14 16:11:38 +00:00
|
|
|
|
2023-03-14 14:29:28 +00:00
|
|
|
storage_ops.recursive_send(fap_dst_path, fap_local_path, False)
|
2022-09-14 16:11:38 +00:00
|
|
|
|
2023-03-14 14:29:28 +00:00
|
|
|
fap_host_app = self.args.targets[0]
|
|
|
|
startup_command = f'"Applications" {fap_host_app}'
|
|
|
|
if self.args.host_app:
|
|
|
|
startup_command = self.args.host_app
|
2022-09-14 16:11:38 +00:00
|
|
|
|
2023-03-14 14:29:28 +00:00
|
|
|
self.logger.info(f"Launching app: {startup_command}")
|
|
|
|
storage.send_and_wait_eol(f"loader open {startup_command}\r")
|
2022-09-14 16:11:38 +00:00
|
|
|
|
2023-03-14 14:29:28 +00:00
|
|
|
if len(result := storage.read.until(storage.CLI_EOL)):
|
2023-01-11 10:13:07 +00:00
|
|
|
self.logger.error(f"Unexpected response: {result.decode('ascii')}")
|
2023-03-14 14:29:28 +00:00
|
|
|
return 3
|
|
|
|
return 0
|
2022-09-14 16:11:38 +00:00
|
|
|
|
2023-03-14 14:29:28 +00:00
|
|
|
except Exception as e:
|
|
|
|
self.logger.error(f"Error: {e}")
|
|
|
|
# raise
|
|
|
|
return 4
|
2022-09-14 16:11:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
Main()()
|