tis-trusted-key-manager icon

Trusted Key Manager

Paquet d’installation silencieuse pour Trusted Key Manager

1.8.0-4

  • package: tis-trusted-key-manager
  • name: Trusted Key Manager
  • version: 1.8.0-4
  • categories: Security
  • maintainer: WAPT Team,Tranquil IT,Clément BAZIRET,Jimmy PELÉ
  • editor: Certeurope
  • licence: proprietary_free,wapt_public
  • locale: all
  • target_os: windows
  • impacted_process: Trusted Key Manager
  • architecture: x64
  • signature_date:
  • size: 131.16 Mo
  • installed_size: 279.87 Mo
  • homepage : https://support.certeurope.fr/

package           : tis-trusted-key-manager
version           : 1.8.0-4
architecture      : x64
section           : base
priority          : optional
name              : Trusted Key Manager
categories        : Security
maintainer        : WAPT Team,Tranquil IT,Clément BAZIRET,Jimmy PELÉ
description       : Electronic Certificate creator software made by Certeurope
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 2.3
sources           : https://support.certeurope.fr/installer-tkm/
installed_size    : 279873807
impacted_process  : Trusted Key Manager
description_fr    : Logiciel de création de certificats électroniques réalisé par Certeurope
description_pl    : Oprogramowanie do tworzenia certyfikatów elektronicznych firmy Certeurope
description_de    : Software zur Erstellung elektronischer Zertifikate von Certeurope
description_es    : Programa de creación de certificados electrónicos de Certeurope
description_pt    : Software de criação de certificados electrónicos fabricado por Certeurope
description_it    : Software per la creazione di certificati elettronici prodotto da Certeurope
description_nl    : Software voor het maken van elektronische certificaten gemaakt door Certeurope
description_ru    : Программа для создания электронных сертификатов, разработанная компанией Certeurope
audit_schedule    : 
editor            : Certeurope
keywords          : electronic,certificate,creator,software,certeurope
licence           : proprietary_free,wapt_public
homepage          : https://support.certeurope.fr/
package_uuid      : b3b6617d-5779-4a56-ab27-d88fc3246f2b
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 10.0
max_os_version    : 
icon_sha256sum    : ff8b2b25b088e5ea64e2ff5f4b5616660ae093558f0b3ae058e3d5cfd2503181
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature         : fxLNgn757x90aVARW242c5vlZc0QxJMKI/xeqIvgYozWdYI8vMF87pM5Ow+y/1TzD2v3GJ6u3rCVksZxT2vE90kwf2byWoZU1XDUYQ5KVh/kEru1MhluXAbiRxcm+RqrooYIw8iDtDAUE82pHLCO7zGq05SoaHN17qlliVOMPF/IgLcTHITtT+SdJUTECC6VcWHoOj39J7Zez3T1Yf3XHim3yHNDvEjsgkoJzDlVBXyk8VF7FI6/lIcyZsfyX0GW1+X0SaGXAHAGQq0om8ppFgnxlrSJpJgUgXyjWT2so1OqiTuhOC0sNBpMgVYCluV4yHIgSRDnHitJv+lhfdWmSQ==
signature_date    : 2024-02-17T14:00:31.309331
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_wapt_version,sources,installed_size,impacted_process,description_fr,description_pl,description_de,description_es,description_pt,description_it,description_nl,description_ru,audit_schedule,editor,keywords,licence,homepage,package_uuid,valid_from,valid_until,forced_install_on,changelog,min_os_version,max_os_version,icon_sha256sum,signer,signer_fingerprint,signature_date,signed_attributes

# -*- coding: utf-8 -*-
from setuphelpers import *

"""
{
    "key": "{B7789A48-5C5D-47C6-B1EF-B5990092198B}",
    "name": "Trusted Key Manager",
    "version": "1.7.3",
    "install_date": "2024-02-12 00:00:00",
    "install_location": "",
    "uninstall_string": "MsiExec.exe /I{B7789A48-5C5D-47C6-B1EF-B5990092198B}",
    "publisher": "Oodrive",
    "system_component": 0,
    "win64": true,
}
{
    "key": "TrustedKeyManager",
    "name": "Trusted Key Manager - Certeurope",
    "version": "",
    "install_date": "",
    "install_location": "",
    "uninstall_string": '"C:\\Program Files\\Certeurope\\Trusted Key Manager\\uninstall.exe"',
    "publisher": "",
    "system_component": 0,
    "win64": false,
}


"""
# C:\Users\username\AppData\Local\Trusted Key Manager\Trusted Key Manager.exe
# C:\Program Files\Trusted Key Manager
# C:\Program Files\Certeurope\Trusted Key Manager


def install():
    # bin_name = glob.glob("TrustedKeyManager64.msi")[0]
    # app_dir = makepath(programfiles, "Trusted Key Manager")
    # properties = {
    #     "APPLICATIONFOLDER": '"%s"' % app_dir,
    # }

    # install_msi_if_needed(
    #     bin_name,
    #     properties=properties,
    #     timeout=600,
    # )

    # Uninstalling older versions of the software
    for to_uninstall in installed_softwares("Trusted Key Manager"):
        if to_uninstall["version"] == "":
            continue
        if Version(to_uninstall["version"]) < Version("1.7.3") or force:  # Please check changelog.txt
            print("Removing: %s (%s)" % (to_uninstall["name"], to_uninstall["version"]))
            killalltasks(ensure_list(control.impacted_process))
            run(uninstall_cmd(to_uninstall["key"]))
            wait_uninstallkey_absent(to_uninstall["key"])
            if isdir(to_uninstall["install_location"]):
                remove_tree(to_uninstall["install_location"])

    # Installing the software
    bin_name = glob.glob("CertEurope_TKM_Suite_*_Installer.exe")[0]
    install_exe_if_needed(
        bin_name,
        silentflags="/S",
        key="TrustedKeyManager",
        min_version="",  # Unable to check version number
        timeout=600,
    )
    app_dir = os.path.dirname(installed_softwares("Trusted Key Manager")[0]["uninstall_string"]).strip('"')
    app_path = makepath(app_dir, "Trusted Key Manager.exe")
    if not running_as_system():
        uninstall()  # Until the uninstall function only removes shortcuts
    create_desktop_shortcut("Trusted Key Manager", app_path, wDir=app_dir)
    create_programs_menu_shortcut("Trusted Key Manager", app_path, wDir=app_dir)


def uninstall():
    # Cleanup shortcuts
    remove_desktop_shortcut("Trusted Key Manager")
    remove_programs_menu_shortcut("Trusted Key Manager")
    remove_programs_menu_folder("Oodrive")
    remove_user_desktop_shortcut("Trusted Key Manager")
    remove_user_programs_menu_shortcut("Trusted Key Manager")
    remove_user_programs_menu_folder("Oodrive")


def remove_user_programs_menu_shortcut(label, folder=None):
    """Remove a shortcut from the start menu of current user

    Args:
        label (str): label of shortcut without extension
    """
    if not (label.endswith(".lnk") or label.endswith(".url")):
        label += ".lnk"
    try:
        user_programs_menu = winshell.programs(common=0)
    except:
        user_programs_menu = makepath(application_data(), "Microsoft", "Windows", "Start Menu", "Programs")
    if isdir(user_programs_menu):
        if folder is None:
            remove_file(makepath(user_programs_menu, label))
        else:
            remove_file(makepath(user_programs_menu, folder, label))


def remove_user_programs_menu_folder(folder):
    """Remove a folder from the start menu of current user

    Args:
        folder(str): folder to remove
    """
    try:
        user_programs_menu = winshell.programs(common=0)
    except:
        user_programs_menu = makepath(application_data(), "Microsoft", "Windows", "Start Menu", "Programs")
    user_programs_menu_folder = makepath(user_programs_menu, folder)
    if isdir(user_programs_menu_folder):
        remove_tree(user_programs_menu_folder)


def remove_user_desktop_shortcut(label):
    """Remove a shortcut from the desktop of current user

    Args:
        label (str): label of shortcut without extension
    """
    if not (label.endswith(".lnk") or label.endswith(".url")):
        label += ".lnk"
    try:
        user_desktop = winshell.desktop(common=0)
    except:
        user_desktop = makepath(user_home_directory(), "Desktop")
    if isdir(user_desktop):
        remove_file(makepath(user_desktop, label))

# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *


def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    update_dict = {
        "bin_contains": {
            "windows-x64": "-Win64.exe",
            "mac-x64": "-MacOS-x86-64.pkg",
        },
        "latest_bin": {
            "windows-x64": "MicrosoftEdgeWebView2RuntimeInstallerX64.exe",
            "windows-x86": "MicrosoftEdgeWebView2RuntimeInstallerX86.exe",
            "windows-arm64": "MicrosoftEdgeWebView2RuntimeInstallerARM64.exe",
        },
        "download_url": {
            "windows-x64": "https://go.microsoft.com/fwlink/?linkid=2124701",
            "windows-x86": "https://go.microsoft.com/fwlink/?linkid=2099617",
            "windows-arm64": "https://go.microsoft.com/fwlink/?linkid=2099616",
        },
    }
    url = "https://support.certeurope.fr/telechargements/"

    # Getting latest version from official sources
    print("URL used is: %s" % url)
    bs_search = bs_find(url, "i", "class", "icon-download_toolbarre", proxies=proxies).parent
    download_url = bs_search["href"]
    latest_bin = download_url.split("/")[-1]
    version = latest_bin.split("_")[-2]

    # Downloading latest binaries
    print("Latest %s version is: %s" % (control.name, version))
    print("Download URL is: %s" % download_url)
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(download_url, latest_bin, proxies=proxies)
    else:
        print("Binary is present: %s" % latest_bin)

    # Deleting outdated binaries
    remove_outdated_binaries(latest_bin)
    # arch_list = ensure_list(control.architecture)
    # remove_outdated_binaries(version, filename_contains=("x64" if "x64" in arch_list else "x86" if "x86" in arch_list else []))

    # # Checking version from file
    # if get_os_name() == "Windows" and "windows" in control.target_os.lower():
    #     version_from_file = get_version_from_binary(latest_bin)
    #     if Version(version_from_file, 4) == Version(version, 4):
    #         print(f"INFO: Binary file version ({version_from_file}) corresponds to online version ({version})")
    #     else:
    #         error(f"ERROR: Binary file version ({version_from_file}) do NOT corresponds to online version ({version})")

    # Changing version of the package
    if Version(version, 4) > Version(control.get_software_version(), 4):
        print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
        package_updated = True
    else:
        print("Software version up-to-date (%s)" % Version(version))
    control.set_software_version(version)
    control.save_control_to_wapt()

    # Validating or not update-package-sources
    return package_updated

    # # Changing version of the package and validating update-package-sources
    # return complete_control_version(control, version)

9a7a67f3d522b14fd504f120523473d43a3a6bf98556e21446153ea512e621ff : setup.py
37ad340ab29fbe835e1ef95c683fbbd86c83ef32533a310ee3eba60b4c50416f : CertEurope_TKM_Suite_1.8.0_Installer.exe
d86e173e84c304d2d65f0dc9c0b3f1bd517deaa7ecc396aa5293a4fc3a282ab3 : update_package.py
ff8b2b25b088e5ea64e2ff5f4b5616660ae093558f0b3ae058e3d5cfd2503181 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
1acf56502ff0e479efe2c5faf9ce22d0e0bd1fc3cf539548210090426293db4e : WAPT/changelog.txt
8527a1fbce9ffc39dfd431583580761c3eca37e91c24d5ad748f9e70e5e7d2b7 : luti.json
d11b44c3667d1d57d9c281c65902a40284deace8514387d0e4760f9eb1c59ccb : WAPT/control

1.8.0-4
===
Migration de MSI vers la version EXE du logiciel comme recommandé par l'éditeur :
WINDOWS 11, 10		1.8.0	Désinstaller les anciennes versions du TKM au besoin