#!/usr/bin/python
# coding: utf-8

# Ubuntu Tweak - PyGTK based desktop configure tool
#
# Copyright (C) 2007-2012 TualatriX <tualatrix@gmail.com>
#
# Ubuntu Tweak 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 2 of the License, or
# (at your option) any later version.
#
# Ubuntu Tweak 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 Ubuntu Tweak; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA

import os
import sys
import gettext
import shutil
import subprocess

from gi.repository import Gtk, Gio, GObject

from ubuntutweak.common.consts import *
from ubuntutweak.admins.userdir import UserdirFile
from ubuntutweak.common.debug import run_traceback
from ubuntutweak.gui.dialogs import ErrorDialog
from ubuntutweak.utils import get_command_for_type


class FileChooserDialog(Gtk.FileChooserDialog):
    """Show a dialog to select a folder, or to do more thing
    The default operation is select folder"""
    def __init__(self, title=None, parent=None,
                 action=Gtk.FileChooserAction.SELECT_FOLDER,
                 buttons=((Gtk.STOCK_CANCEL, Gtk.ResponseType.CANCEL),
                          (Gtk.STOCK_OPEN, Gtk.ResponseType.ACCEPT))
                 ):
        GObject.GObject.__init__(self, title=title, parent=parent,
                                 action=action)
        for button in buttons:
            self.add_button(*button)


class FileOperation:
    """Do the real operation"""
    @classmethod
    def permission_test(cls, dest):
        dirname = os.path.dirname(dest)
        if not os.access(dirname, os.R_OK | os.W_OK | os.X_OK):
            ErrorDialog(_("You don't have permission to write in %s") % dirname).launch()
            return False
        else:
            return True

    @classmethod
    def do_copy(cls, source, dest):
        if cls.permission_test(dest):
            if os.path.isfile(source):
                if not os.path.exists(dest):
                    shutil.copy(source, dest)
                else:
                    ErrorDialog(_('The file "%s" already exists!') % dest).launch()
            elif os.path.isdir(source):
                if not os.path.exists(dest):
                    shutil.copytree(source, dest)
                else:
                    ErrorDialog(_('The folder "%s" already exists!') % dest).launch()

    @classmethod
    def do_move(cls, source, dest):
        if cls.permission_test(dest):
            if not os.path.exists(dest):
                shutil.move(source, dest)
            else:
                ErrorDialog(_('The target "%s" already exists!') % dest).launch()

    @classmethod
    def do_link(cls, source, dest):
        if cls.permission_test(dest):
            if not os.path.exists(dest):
                os.symlink(source, dest)
            else:
                ErrorDialog(_('The target "%s" already exists!') % dest).launch()

    @classmethod
    def do_hard_link(cls, source, dest):
        if cls.permission_test(dest):
            if not os.path.exists(dest):
                os.link(source, dest)
            else:
                ErrorDialog(_('The target "%s" already exists!') % dest).launch()


    @classmethod
    def copy(cls, source, dest):
        """Copy the file or folder with necessary notice"""
        dest = os.path.join(dest, os.path.basename(source))
        cls.do_copy(source, dest)

    @classmethod
    def copy_to_xdg(cls, source, xdg):
        if xdg == 'HOME':
            dest = os.path.join(os.path.expanduser('~'), os.path.basename(source))
        else:
            dest = os.path.join(UserdirFile()[xdg], os.path.basename(source))
        cls.do_copy(source, dest)

    @classmethod
    def move(cls, source, dest):
        """Move the file or folder with necessary notice"""
        dest = os.path.join(dest, os.path.basename(source))
        cls.do_move(source, dest)

    @classmethod
    def move_to_xdg(cls, source, xdg):
        if xdg == 'HOME':
            dest = os.path.join(os.path.expanduser('~'), os.path.basename(source))
        else:
            dest = os.path.join(UserdirFile()[xdg], os.path.basename(source))
        cls.do_move(source, dest)

    @classmethod
    def link(cls, source, dest):
        """Link the file or folder with necessary notice"""
        dest = os.path.join(dest, os.path.basename(source))
        cls.do_link(source, dest)

    @classmethod
    def hardlink(cls, source, dest):
        """Link the file or folder with necessary notice"""
        dest = os.path.join(dest, os.path.basename(source))
        cls.do_hard_link(source, dest)

    @classmethod
    def link_to_xdg(cls, source, xdg):
        if xdg == 'HOME':
            dest = os.path.join(os.path.expanduser('~'), os.path.basename(source))
        else:
            dest = os.path.join(UserdirFile()[xdg], os.path.basename(source))
        cls.do_link(source, dest)

    @classmethod
    def open(cls, source):
        """Open the file with gedit"""
        exe = get_command_for_type('text/plain')
        if exe:
            if source[-1] == "root":
                cmd = ["gksu", "-m", _("Enter your password to perform the administrative tasks") , exe]
                cmd.extend(source[:-1])
            else:
                cmd = [exe]
                cmd.extend(source)
            subprocess.call(cmd)
        else:
            ErrorDialog(_("Coudn't find any text editor in your system!")).launch()

    @classmethod
    def browse(cls, source):
        """Browser the folder as root"""
        if source[-1] == "root":
            cmd = ["gksu", "-m", _("Enter your password to perform the administrative tasks") , "nautilus"]
            cmd.extend(source[:-1])
            subprocess.call(cmd)
        else:
            cmd = ["nautilus"]
            cmd.extend(source)
            subprocess.call(cmd)

    @classmethod
    def get_local_path(cls, uri):
        """Convert the URI to local path"""
        vfs = Gio.Vfs.get_default()
        return vfs.get_file_for_uri(uri).get_path()


class Worker:
    """The worker to do the real operation, with getattr to instrospect the operation"""
    def __init__(self, argv):
        try:
            command = argv[1]
            paras = argv[2:]

            if command in ('copy', 'move', 'link', 'hardlink'):
                dialog = FileChooserDialog(_("Select a folder"))
                dialog.set_current_folder(os.path.expanduser('~'))
                if dialog.run() == Gtk.ResponseType.ACCEPT:
                    folder = dialog.get_filename()

                    dialog.destroy()

                    work = getattr(FileOperation, command)
                    for file in paras:
                        if file.startswith('file'):
                            file = FileOperation.get_local_path(file)
                        work(file, folder)
            elif command in ('copy_to_xdg', 'move_to_xdg', 'link_to_xdg'):
                xdg = paras[-1]
                paras = paras[:-1]

                work = getattr(FileOperation, command)

                for file in paras:
                    if file.startswith('file'):
                        file = FileOperation.get_local_path(file)
                    work(file, xdg)
            else:
                getattr(FileOperation, command)(paras)
        except:
            run_traceback('fatal')

if __name__ == "__main__":
#    ErrorDialog(`sys.argv`).launch()
    if len(sys.argv) <= 2:
        ErrorDialog(_("Please select a target (files or folders).")).launch()
    if len(sys.argv) > 2:
        Worker(sys.argv)
