#!/usr/bin/env python3
# coding=utf-8

import argparse
import inspect
import json
import sys
import os
import re

from pathlib import Path
from dptrp1.dptrp1 import DigitalPaper, find_auth_files

def do_screenshot(d, filename):
    pic = d.take_screenshot()
    with open(filename, 'wb') as f:
        f.write(pic)

def do_list_documents(d):
    data = d.list_documents()
    for d in data:
        print(d['entry_path'])

def do_list_folders(d, *remote_paths):
    data = d.list_all()
    for d in data:
        if d['entry_type'] == 'folder':
            print(d['entry_path'] + '/')

def do_move_document(d, old_path, new_path):
    d.move_file(old_path, new_path)

def do_copy_document(d, old_path, new_path):
    d.copy_file(old_path, new_path)

def do_upload(d, local_path, remote_path=''):
    if not remote_path:
        remote_path = 'Document/' + os.path.basename(local_path)
    d.upload_file(local_path, remote_path)

def do_download(d, remote_path, local_path):
    data = d.download(remote_path)

    if os.path.isdir(local_path):
        re.sub('/?$', '/', local_path)
        local_path += os.path.basename(remote_path)

    with open(local_path, 'wb') as f:
        f.write(data)

def do_list_document_info(d, remote_path = False):
    if not remote_path:
        infos = d.list_all()
        for info in infos:
            print(info['entry_path'])
            for key in info:
                print("    - " + key + ": " + info[key])
    else:
        info = d.list_document_info(remote_path)
        print(info['entry_path'])
        for key in info:
            print("    - " + key + ": " + info[key])

def do_update_firmware(d, local_path):
    with open(local_path, 'rb') as fwfh:
        d.update_firmware(fwfh)

def do_delete_document(d, remote_path):
    d.delete_document(remote_path)

def do_delete_folder(d, remote_path):
    d.delete_folder(remote_path)

def do_sync(d, local_path, remote_path = 'Document'):
    """
    Synchronize all PDF documents between a local path (on your PC) and a
    remote path (on the DPT). Older documents will be overwritten by newer ones
    without any additional warning. Also synchronizes the time and date on the
    reader to the computer's time and date.

    Example: dptrp1 sync ~/Dropbox/Papers Document/Papers
    """
    d.sync(local_path, remote_path)

def do_new_folder(d, remote_path):
    d.new_folder(remote_path)

def do_wifi_list(d):
    data = d.wifi_list()
    print(json.dumps(data, indent=2))

def do_wifi_scan(d):
    data = d.wifi_scan()
    print(json.dumps(data, indent=2))

def do_wifi(d):
    print(d.wifi_enabled()['value'])

def do_wifi_enable(d):
    print(d.enable_wifi())

def do_wifi_disable(d):
    print(d.disable_wifi())

def do_add_wifi(d):
    print(d.configure_wifi(ssid = "vecna2",
                     security = "psk",
                     passwd = "elijah is a cat",
                     dhcp = "true",
                     static_address = "",
                     gateway = "",
                     network_mask = "",
                     dns1 = "",
                     dns2 = "",
                     proxy = "false"))

def do_delete_wifi(d):
    print(d.delete_wifi(ssid = "vecna2", security = "psk"))

def do_register(d, key_file, id_file):
    _, key, device_id = d.register()

    with open(key_file, 'w') as f:
        f.write(key)

    with open(id_file, 'w') as f:
        f.write(device_id)

def do_help(d, command):
    """
    Print additional information about a command, if available.
    """
    print(inspect.getdoc(commands[command]))

commands = {
    "screenshot": do_screenshot,
    "list-documents" : do_list_documents,
    "document-info" : do_list_document_info,
    "upload" : do_upload,
    "download" : do_download,
    "delete" : do_delete_document,
    "delete-folder" : do_delete_folder,
    "new-folder" : do_new_folder,
    "move-document": do_move_document,
    "copy-document": do_copy_document,
    "list-folders" : do_list_folders,
    "wifi-list": do_wifi_list,
    "wifi-scan": do_wifi_scan,
    "wifi-add": do_add_wifi,
    "wifi-del": do_delete_wifi,
    "wifi": do_wifi,
    "wifi-enable" : do_wifi_enable,
    "wifi-disable" : do_wifi_disable,
    "register" : do_register,
    "update-firmware": do_update_firmware,
    "sync": do_sync,
    "command-help": do_help
}

def build_parser():
    deviceid, privatekey = find_auth_files()

    p = argparse.ArgumentParser(description = "Remote control for Sony DPT-RP1")
    p.add_argument('--client-id',
            help = "File containing the device's client id",
            default = deviceid)
    p.add_argument('--key',
            help = "File containing the device's private key",
            default = privatekey)
    p.add_argument('--addr',
            help = "Hostname or IP address of the device. Disables auto discovery.",
            default=None)
    p.add_argument('--serial',
            help = "Device serial number for auto discovery. Auto discovery only works for some minutes after the Digital Paper's Wi-Fi setting is switched on.",
            default = None)
    p.add_argument('command',
            help = 'Command to run',
            choices = sorted(commands.keys()))
    p.add_argument('command_args',
            help = 'Arguments for the command',
            nargs = '*')
    return p

def main():
    args = build_parser().parse_args()
    dp = DigitalPaper(addr=args.addr, id=args.serial)
    if args.command == "register":
        do_register(dp, args.key, args.client_id)
        return
    if not os.path.exists(args.key) or not os.path.exists(args.client_id):
        print("Could not read device identifier and private key.")
        print("Please use command 'register' first:")
        print()
        print("    {} register".format(sys.argv[0]))
        print()
        exit(1)
    with open(args.client_id) as fh:
        client_id = fh.readline().strip()
    with open(args.key, 'rb') as fh:
        key = fh.read()
    dp.authenticate(client_id, key)
    commands[args.command](dp, *args.command_args)

if __name__ == "__main__":
    main()



