import gettext
import os
from pathlib import Path
import webbrowser

from mintreport import InfoReport, InfoReportAction

class Report(InfoReport):

    def __init__(self):

        gettext.install("mintreport", "/usr/share/locale", names="ngettext")

        self.title = _("Perform usrmerge conversion")
        self.icon = "folder-symbolic"
        self.has_ignore_button = True

    def is_pertinent(self):
        # from convert-usrmerge script
        directories = ["bin", "sbin", "lib", "libx32", "lib64", "lib32"]

        for dirname in directories:
            link_path = Path(os.path.join("/", dirname))
            target_path = Path(os.path.join("/", "usr", dirname))

            if (not link_path.exists()) and (not target_path.exists()):
                # print("skipping: %s (doesn't exist)" % link_path)
                continue

            # print("checking: %s --> %s" % (link_path, target_path))

            if not (link_path.is_symlink() and link_path.samefile(target_path)):
                return True
        return False

    def get_descriptions(self):
        # Return the descriptions
        descriptions = []
        descriptions.append(_("We recommend you convert your system with usrmerge."))
        descriptions.append(_("This is done already for new installations of Linux Mint."))
        descriptions.append(_("To convert your system, open a terminal and type:"))
        descriptions.append("\n<span font_family='monospace'>apt install usrmerge</span>\n")
        descriptions.append(_("You should reboot the computer once this completes."))
        return descriptions

    def get_actions(self):
        # Return available actions
        actions = []
        action = InfoReportAction(label=_("More information"), callback=self.more_info)
        actions.append(action)
        return actions

    def more_info(self, data=None):
        webbrowser.open("https://www.freedesktop.org/wiki/Software/systemd/TheCaseForTheUsrMerge")

if __name__ == "__main__":
    report = Report()
    print(report.is_pertinent())
